/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #0B5FA5;
    --primary-light: #0d6fc4;
    --primary-dark: #094d87;
    --secondary-color: #FF6A00;
    --secondary-light: #ff8533;
    --secondary-dark: #e55a00;
    --accent-color: #0B5FA5;
    --dark-color: #1a3a52;
    --light-color: #E6F4FF;
    --light-blue: #E6F4FF;
    --text-color: #2c3e50;
    --text-light: #555555;
    --white: #FFFFFF;
    --shadow: 0 4px 15px rgba(11, 95, 165, 0.15);
    --shadow-lg: 0 8px 30px rgba(11, 95, 165, 0.2);
    --shadow-hover: 0 12px 40px rgba(11, 95, 165, 0.3);
    --shadow-orange: 0 4px 15px rgba(255, 106, 0, 0.2);
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --gradient-primary: linear-gradient(135deg, #0B5FA5 0%, #0d6fc4 100%);
    --gradient-hero: linear-gradient(135deg, #094d87 0%, #0B5FA5 50%, #0d6fc4 100%);
    --gradient-orange: linear-gradient(135deg, #FF6A00 0%, #ff8533 100%);
}

body {
    font-family: 'Segoe UI', -apple-system, BlinkMacSystemFont, 'Roboto', 'Oxygen', 'Ubuntu', 'Cantarell', sans-serif;
    line-height: 1.8;
    color: var(--text-color);
    background-color: #cae5ff;
    direction: rtl;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}

html[dir="ltr"] body {
    direction: ltr;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Navigation */
.navbar {
    background: var(--white);
    box-shadow: 0 2px 30px rgba(11, 95, 165, 0.08);
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 1.5rem 0;
    border-bottom: 3px solid transparent;
    border-image: linear-gradient(90deg, var(--primary-color) 0%, var(--secondary-color) 100%) 1;
}

.nav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.logo a {
    display: inline-flex;
    align-items: center;
}

.logo-image {
    display: block;
    width: auto;
    max-width: 260px;
    max-height: 95px;
    object-fit: contain;
    mix-blend-mode: multiply;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
    align-items: center;
}

.nav-menu a {
    text-decoration: none;
    color: var(--text-color);
    font-weight: 500;
    transition: var(--transition);
    position: relative;
    padding: 0.5rem 0;
    font-size: 0.95rem;
}

.nav-menu a:hover {
    color: var(--primary-color);
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    right: 0;
    width: 0;
    height: 3px;
    background: var(--gradient-orange);
    border-radius: 2px;
    transition: var(--transition);
    transform: skewX(-20deg);
}

.nav-menu a:hover::after {
    width: 100%;
}

.lang-switcher {
    display: flex;
    gap: 0.5rem;
}

.lang-btn {
    padding: 0.5rem 1rem;
    border: 2px solid var(--primary-color);
    background: var(--white);
    color: var(--primary-color);
    cursor: pointer;
    border-radius: 8px;
    transition: var(--transition);
    font-size: 0.9rem;
    font-weight: 500;
}

.lang-btn:hover,
.lang-btn.active {
    background: var(--gradient-primary);
    color: var(--white);
    border-color: transparent;
    transform: translateY(-2px);
    box-shadow: var(--shadow);
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: var(--dark-color);
    transition: var(--transition);
}

/* Hero Section */
.hero {
    position: relative;
    height: 700px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--white);
    overflow: hidden;
    clip-path: polygon(0 0, 100% 0, 100% 95%, 0 100%);
}

.hero-slider {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1.5s ease-in-out;
}

.hero-slide.active {
    opacity: 1;
    z-index: 1;
}

.hero-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.hero::after {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(255, 106, 0, 0.15) 0%, transparent 70%);
    border-radius: 50%;
    animation: float 20s ease-in-out infinite;
}

.hero::before {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(11, 95, 165, 0.2) 0%, transparent 70%);
    border-radius: 50%;
    animation: float 15s ease-in-out infinite reverse;
}

@keyframes float {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    50% { transform: translate(30px, -30px) rotate(180deg); }
}


.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(11, 95, 165, 0.42) 0%, rgba(9, 77, 135, 0.5) 100%);
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 3;
    max-width: 800px;
    padding: 0 20px;
}

.hero-title {
    font-size: 4rem;
    margin-bottom: 1.5rem;
    font-weight: 900;
    line-height: 1.1;
    text-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
    animation: fadeInUp 1s ease;
    letter-spacing: -2px;
    position: relative;
    z-index: 2;
    text-transform: uppercase;
    font-size: clamp(2.5rem, 5vw, 4.5rem);
}

.hero-title::first-letter {
    font-size: 1.2em;
    color: var(--secondary-color);
}

.hero-subtitle {
    font-size: 1.4rem;
    margin-bottom: 2.5rem;
    opacity: 0.95;
    font-weight: 300;
    line-height: 1.6;
    animation: fadeInUp 1s ease 0.2s both;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    animation: fadeInUp 1s ease 0.4s both;
}

.hero-dots {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 12px;
    z-index: 4;
}

.hero-dots .dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: var(--transition);
    border: 2px solid rgba(255, 255, 255, 0.8);
}

.hero-dots .dot.active {
    background: var(--secondary-color);
    border-color: var(--secondary-color);
    transform: scale(1.3);
    box-shadow: 0 0 15px rgba(255, 106, 0, 0.6);
}

.hero-dots .dot:hover {
    background: rgba(255, 255, 255, 0.8);
    transform: scale(1.2);
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 1rem 2.5rem;
    text-decoration: none;
    border-radius: 0;
    font-weight: 700;
    transition: var(--transition);
    border: none;
    cursor: pointer;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    overflow: hidden;
    clip-path: polygon(0 0, calc(100% - 10px) 0, 100% 10px, 100% 100%, 10px 100%, 0 calc(100% - 10px));
}

.btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.btn:hover::before {
    width: 300px;
    height: 300px;
}

.btn-primary {
    background: var(--gradient-orange);
    color: var(--white);
    border: none;
    box-shadow: var(--shadow-orange);
    font-weight: 600;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255, 106, 0, 0.35);
    background: linear-gradient(135deg, #e55a00 0%, #FF6A00 100%);
}

.btn-secondary {
    background: transparent;
    backdrop-filter: blur(10px);
    color: var(--white);
    border: 3px solid var(--white);
    clip-path: polygon(0 0, calc(100% - 10px) 0, 100% 10px, 100% 100%, 10px 100%, 0 calc(100% - 10px));
}

.btn-secondary:hover {
    background: var(--white);
    color: var(--primary-color);
    border-color: var(--white);
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 15px 40px rgba(255, 255, 255, 0.3);
}

.btn-outline {
    background: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.btn-outline:hover {
    background: var(--primary-color);
    color: var(--white);
    border-color: var(--primary-color);
    transform: translateY(-2px);
    box-shadow: var(--shadow);
}

.btn-large {
    padding: 1rem 3rem;
    font-size: 1.1rem;
}

.btn-block {
    width: 100%;
    text-align: center;
}

.btn-whatsapp {
    background: #25d366;
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.btn-whatsapp:hover {
    background: #20ba5a;
}

/* Services Preview */
.services-preview {
    padding: 8rem 0;
    background: var(--white);
    position: relative;
    margin-top: -50px;
    z-index: 10;
}

.services-preview::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 100px;
    background: var(--white);
    clip-path: polygon(0 0, 100% 50px, 100% 0);
}

.section-title {
    text-align: center;
    font-size: 3.2rem;
    margin-bottom: 5rem;
    color: var(--dark-color);
    position: relative;
    font-weight: 800;
    letter-spacing: -1px;
    text-transform: uppercase;
}

.section-title::before {
    content: attr(data-i18n);
    position: absolute;
    top: -30px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 1rem;
    font-weight: 600;
    color: var(--secondary-color);
    letter-spacing: 3px;
    opacity: 0.7;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -20px;
    right: 50%;
    transform: translateX(50%) skewX(-20deg);
    width: 120px;
    height: 6px;
    background: var(--gradient-orange);
    border-radius: 3px;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.service-card {
    background: linear-gradient(145deg, var(--white) 0%, #f8fcff 100%);
    padding: 3.5rem 2.5rem;
    border-radius: 24px;
    box-shadow: 0 15px 50px rgba(11, 95, 165, 0.12);
    text-align: center;
    transition: var(--transition);
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 6px;
    background: var(--gradient-orange);
    transform: scaleX(0);
    transform-origin: left;
    transition: var(--transition);
    pointer-events: none;
}

.service-card::after {
    content: '';
    position: absolute;
    bottom: -100%;
    left: 0;
    right: 0;
    height: 100%;
    background: linear-gradient(to top, rgba(255, 106, 0, 0.05), transparent);
    transition: var(--transition);
    pointer-events: none;
}

.service-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 25px 70px rgba(255, 106, 0, 0.25);
    border-color: var(--secondary-light);
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-card:hover::after {
    bottom: 0;
}

.service-icon {
    width: 100px;
    height: 100px;
    margin: 0 auto 2rem;
    background: var(--gradient-orange);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    color: var(--white);
    transition: var(--transition);
    box-shadow: 0 10px 30px rgba(255, 106, 0, 0.3);
    position: relative;
}

.service-icon::before {
    content: '';
    position: absolute;
    inset: -5px;
    border-radius: 50%;
    background: var(--gradient-orange);
    opacity: 0;
    z-index: -1;
    filter: blur(20px);
    transition: var(--transition);
}

.service-card:hover .service-icon {
    transform: scale(1.1);
    box-shadow: 0 15px 40px rgba(255, 106, 0, 0.5);
}

.service-card:hover .service-icon::before {
    opacity: 0.6;
}

.service-card h3 {
    color: var(--dark-color);
    margin-bottom: 1.2rem;
    font-size: 1.5rem;
    font-weight: 700;
    letter-spacing: -0.5px;
    position: relative;
    z-index: 1;
    line-height: 1.3;
}

.service-card p {
    color: var(--text-light);
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.service-card .btn,
.service-card a.btn {
    position: relative;
    z-index: 2;
}

/* About Section */
.about-section {
    padding: 8rem 0;
    background: var(--light-blue);
    position: relative;
    overflow: hidden;
}

.about-section::before {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 400px;
    height: 400px;
    background: var(--gradient-primary);
    opacity: 0.1;
    border-radius: 50%;
    transform: rotate(45deg);
}

.about-section::after {
    content: '';
    position: absolute;
    bottom: -150px;
    left: -150px;
    width: 500px;
    height: 500px;
    background: var(--gradient-orange);
    opacity: 0.1;
    border-radius: 50%;
    transform: rotate(-45deg);
}

.about-wrapper {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 5rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

.about-content h2 {
    text-align: right;
    margin-bottom: 2rem;
}

.about-text {
    color: var(--text-light);
    line-height: 1.9;
    margin-bottom: 1.5rem;
    font-size: 1.05rem;
}

.about-features {
    display: flex;
    gap: 2rem;
    margin-top: 2rem;
    flex-wrap: wrap;
}

.about-feature {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    padding: 0.8rem 1.5rem;
    background: var(--light-blue);
    border-radius: 25px;
    color: var(--primary-color);
    font-weight: 600;
}

.about-feature i {
    font-size: 1.2rem;
}

.about-image {
    position: relative;
}

.about-placeholder {
    width: 100%;
    height: 450px;
    background: var(--gradient-hero);
    border-radius: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 7rem;
    color: var(--white);
    opacity: 0.9;
    box-shadow: 0 20px 60px rgba(11, 95, 165, 0.3);
    clip-path: polygon(20px 0, 100% 0, 100% calc(100% - 20px), calc(100% - 20px) 100%, 0 100%, 0 20px);
    position: relative;
    overflow: hidden;
}

.about-placeholder::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    animation: rotate 10s linear infinite;
}

@keyframes rotate {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Statistics Section */
.stats-section {
    padding: 6rem 0;
    background: var(--gradient-hero);
    color: var(--white);
    position: relative;
    overflow: hidden;
    clip-path: polygon(0 10%, 100% 0, 100% 90%, 0 100%);
}

.stats-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 30%, rgba(11, 95, 165, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(13, 111, 196, 0.15) 0%, transparent 50%);
    pointer-events: none;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 3rem;
    position: relative;
    z-index: 1;
}

.stat-item {
    text-align: center;
    padding: 3rem 2rem;
    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(15px);
    border-radius: 0;
    border: 2px solid rgba(255, 255, 255, 0.3);
    transition: var(--transition);
    clip-path: polygon(10px 0, 100% 0, 100% calc(100% - 10px), calc(100% - 10px) 100%, 0 100%, 0 10px);
    position: relative;
    overflow: hidden;
}

.stat-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: var(--transition);
}

.stat-item:hover {
    transform: translateY(-10px) scale(1.05);
    background: rgba(255, 255, 255, 0.2);
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.3);
    border-color: var(--secondary-color);
}

.stat-item:hover::before {
    left: 100%;
    transition: left 0.5s ease;
}

.stat-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    opacity: 0.9;
}

.stat-number {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    background: linear-gradient(135deg, #ffffff 0%, rgba(255, 255, 255, 0.8) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stat-label {
    font-size: 1.1rem;
    opacity: 0.9;
    font-weight: 500;
}

.stat-card {
    text-align: center;
    padding: 3rem 2rem;
    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(15px);
    border-radius: 0;
    border: 2px solid rgba(255, 255, 255, 0.3);
    transition: var(--transition);
    clip-path: polygon(10px 0, 100% 0, 100% calc(100% - 10px), calc(100% - 10px) 100%, 0 100%, 0 10px);
    position: relative;
    overflow: hidden;
}

.stat-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: var(--transition);
}

.stat-card:hover {
    transform: translateY(-10px) scale(1.05);
    background: rgba(255, 255, 255, 0.2);
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.3);
    border-color: var(--secondary-color);
}

.stat-card:hover::before {
    left: 100%;
    transition: left 0.5s ease;
}

.stat-card .stat-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    opacity: 0.9;
}

.stat-card .stat-number {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    background: linear-gradient(135deg, #ffffff 0%, rgba(255, 255, 255, 0.8) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stat-card .stat-label {
    font-size: 1.1rem;
    opacity: 0.95;
    font-weight: 500;
}

/* About Main Section */
.about-main-section {
    padding: 6rem 0;
    background: var(--white);
}

.about-main-wrapper {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 5rem;
    align-items: center;
}

.about-main-content h2 {
    color: var(--dark-color);
    font-size: 2.5rem;
    margin-bottom: 2rem;
    font-weight: 700;
}

.about-intro {
    font-size: 1.2rem;
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.about-main-content p {
    color: var(--text-light);
    line-height: 1.9;
    margin-bottom: 1.5rem;
    font-size: 1.05rem;
}

.about-main-image {
    position: relative;
}

.about-image-placeholder {
    width: 100%;
    height: 450px;
    background: var(--gradient-hero);
    border-radius: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 7rem;
    color: var(--white);
    opacity: 0.9;
    box-shadow: 0 20px 60px rgba(11, 95, 165, 0.3);
    clip-path: polygon(20px 0, 100% 0, 100% calc(100% - 20px), calc(100% - 20px) 100%, 0 100%, 0 20px);
    position: relative;
    overflow: hidden;
}

.about-image-placeholder::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    animation: rotate 10s linear infinite;
}

/* Mission & Vision Section */
.mission-vision-section {
    padding: 6rem 0;
    background: var(--light-blue);
    position: relative;
    overflow: hidden;
}

.mission-vision-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
}

.mission-card,
.vision-card {
    background: var(--white);
    padding: 3rem;
    border-radius: 0;
    box-shadow: var(--shadow);
    transition: var(--transition);
    clip-path: polygon(15px 0, 100% 0, 100% calc(100% - 15px), calc(100% - 15px) 100%, 0 100%, 0 15px);
    position: relative;
    overflow: hidden;
}

.mission-card::before,
.vision-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 5px;
    height: 100%;
    background: var(--gradient-primary);
    transition: var(--transition);
}

.vision-card::before {
    background: var(--gradient-orange);
}

.mission-card:hover,
.vision-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
}

.mission-icon,
.vision-icon {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.vision-icon {
    background: var(--gradient-orange);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.mission-card h3,
.vision-card h3 {
    color: var(--dark-color);
    font-size: 2rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.mission-card p,
.vision-card p {
    color: var(--text-light);
    line-height: 1.9;
    font-size: 1.05rem;
}

/* Why Choose Section */
.why-choose-section {
    padding: 6rem 0;
    background: var(--white);
}

.why-choose-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
    margin-top: 3rem;
}

.why-item {
    text-align: center;
    padding: 2.5rem 2rem;
    background: var(--light-blue);
    border-radius: 0;
    transition: var(--transition);
    clip-path: polygon(10px 0, 100% 0, 100% calc(100% - 10px), calc(100% - 10px) 100%, 0 100%, 0 10px);
    position: relative;
    overflow: hidden;
}

.why-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--gradient-primary);
    transform: scaleX(0);
    transition: var(--transition);
}

.why-item:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
    background: var(--white);
}

.why-item:hover::before {
    transform: scaleX(1);
}

.why-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
    transition: var(--transition);
}

.why-item:hover .why-icon {
    transform: scale(1.1);
    color: var(--secondary-color);
}

.why-item h4 {
    color: var(--dark-color);
    font-size: 1.4rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.why-item p {
    color: var(--text-light);
    line-height: 1.8;
    font-size: 1rem;
}

/* Values Section */
.values-section {
    padding: 6rem 0;
    background: var(--light-blue);
    position: relative;
    overflow: hidden;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2.5rem;
    margin-top: 3rem;
}

.value-item {
    text-align: center;
    padding: 2.5rem 2rem;
    background: var(--white);
    border-radius: 0;
    transition: var(--transition);
    clip-path: polygon(10px 0, 100% 0, 100% calc(100% - 10px), calc(100% - 10px) 100%, 0 100%, 0 10px);
    position: relative;
    overflow: hidden;
}

.value-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--gradient-orange);
    transform: scaleX(0);
    transition: var(--transition);
}

.value-item:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.value-item:hover::before {
    transform: scaleX(1);
}

.value-item i {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    background: var(--gradient-orange);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    transition: var(--transition);
}

.value-item:hover i {
    transform: scale(1.1) rotate(5deg);
}

.value-item h4 {
    color: var(--dark-color);
    font-size: 1.4rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.value-item p {
    color: var(--text-light);
    line-height: 1.8;
    font-size: 1rem;
}

/* Why Choose Us */
.why-choose {
    padding: 6rem 0;
    background: var(--white);
    position: relative;
}

.why-choose::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 10% 20%, rgba(11, 95, 165, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 90% 80%, rgba(13, 111, 196, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
}

.feature-item {
    text-align: center;
    padding: 3rem 2rem;
    background: var(--white);
    border-radius: 0;
    box-shadow: 0 10px 30px rgba(11, 95, 165, 0.1);
    transition: var(--transition);
    border: 3px solid transparent;
    position: relative;
    clip-path: polygon(0 0, calc(100% - 15px) 0, 100% 15px, 100% 100%, 15px 100%, 0 calc(100% - 15px));
    overflow: hidden;
}

.feature-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--gradient-orange);
    opacity: 0;
    transition: var(--transition);
    z-index: 0;
}

.feature-item:hover {
    transform: translateY(-10px) rotate(2deg);
    box-shadow: 0 20px 50px rgba(255, 106, 0, 0.3);
    border-color: var(--secondary-color);
}

.feature-item:hover::before {
    opacity: 0.05;
}

.feature-item i {
    font-size: 3.5rem;
    background: var(--gradient-orange);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1.5rem;
    transition: var(--transition);
    position: relative;
    z-index: 1;
    display: inline-block;
}

.feature-item:hover i {
    transform: scale(1.2) rotate(15deg);
}

.feature-item h4 {
    color: var(--dark-color);
    font-size: 1.3rem;
    font-weight: 700;
    position: relative;
    z-index: 1;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Testimonials Section */
.testimonials-section {
    padding: 6rem 0;
    background: linear-gradient(to bottom, var(--white) 0%, var(--light-blue) 100%);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.testimonial-card {
    background: var(--white);
    padding: 3rem;
    border-radius: 0;
    box-shadow: 0 15px 40px rgba(11, 95, 165, 0.15);
    border: none;
    transition: var(--transition);
    position: relative;
    clip-path: polygon(0 0, 100% 0, 100% calc(100% - 30px), calc(100% - 30px) 100%, 0 100%);
    transform: skewY(-1deg);
}

.testimonial-card:nth-child(even) {
    transform: skewY(1deg);
}

.testimonial-card::before {
    content: '"';
    position: absolute;
    top: 1rem;
    right: 2rem;
    font-size: 8rem;
    background: var(--gradient-orange);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    opacity: 0.15;
    font-family: serif;
    line-height: 1;
    font-weight: 900;
}

.testimonial-card:hover {
    transform: skewY(0deg) translateY(-10px) scale(1.02);
    box-shadow: 0 25px 60px rgba(255, 106, 0, 0.25);
    z-index: 5;
}

.testimonial-rating {
    color: #ffc107;
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}

.testimonial-text {
    color: var(--text-color);
    line-height: 1.8;
    margin-bottom: 2rem;
    font-style: italic;
    position: relative;
    z-index: 1;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(11, 95, 165, 0.1);
}

.author-avatar {
    width: 50px;
    height: 50px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.3rem;
    flex-shrink: 0;
}

.author-info h4 {
    color: var(--dark-color);
    margin-bottom: 0.3rem;
    font-size: 1rem;
    font-weight: 600;
}

.author-info p {
    color: var(--text-light);
    font-size: 0.9rem;
}

/* Special Offers Section */
.offers-section {
    padding: 8rem 0;
    background: linear-gradient(135deg, #f8fcff 0%, var(--light-blue) 100%);
    position: relative;
    overflow: hidden;
}

.offers-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(11, 95, 165, 0.08) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.offers-section::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(255, 106, 0, 0.06) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.offers-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    position: relative;
    z-index: 1;
}

.offer-card {
    background: linear-gradient(145deg, var(--white) 0%, #f8fcff 100%);
    padding: 0;
    border-radius: 24px;
    box-shadow: 0 18px 50px rgba(11, 95, 165, 0.15);
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
    transition: var(--transition);
    text-align: center;
    transform: translateY(0);
}

.offer-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 6px;
    background: var(--gradient-orange);
    transform: scaleX(0);
    transform-origin: left;
    transition: var(--transition);
    z-index: 1;
}

.offer-card::after {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(255, 106, 0, 0.12) 0%, transparent 70%);
    transition: var(--transition);
    opacity: 0;
    pointer-events: none;
}

.offer-card:hover {
    transform: translateY(-15px) scale(1.02);
    box-shadow: 0 30px 80px rgba(255, 106, 0, 0.3);
    border-color: var(--secondary-light);
}

.offer-card:hover::before {
    transform: scaleX(1);
}

.offer-card:hover::after {
    opacity: 1;
    top: -20%;
    right: -20%;
}

.offer-card-content {
    padding: 2rem 1.5rem;
    position: relative;
    z-index: 2;
}

.offer-badge {
    position: absolute;
    top: 1.2rem;
    right: 1.2rem;
    background: var(--gradient-orange);
    color: var(--white);
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.7rem;
    font-weight: 700;
    box-shadow: 0 6px 15px rgba(255, 106, 0, 0.4);
    text-transform: uppercase;
    letter-spacing: 1.2px;
    z-index: 3;
    transform: rotate(5deg);
    transition: var(--transition);
}

.offer-card:hover .offer-badge {
    transform: rotate(0deg) scale(1.1);
    box-shadow: 0 12px 30px rgba(255, 106, 0, 0.5);
}

.offer-card h3 {
    color: var(--dark-color);
    font-size: 1.5rem;
    margin-bottom: 1rem;
    margin-top: 0.3rem;
    font-weight: 800;
    letter-spacing: -0.5px;
    position: relative;
    z-index: 2;
}

.offer-desc {
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
    position: relative;
    z-index: 2;
}

.offer-percent {
    position: absolute;
    top: -20px;
    left: -20px;
    width: 110px;
    height: 110px;
    background: var(--gradient-orange);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    font-weight: 900;
    line-height: 1.2;
    text-align: center;
    box-shadow: 0 10px 30px rgba(255, 106, 0, 0.5);
    z-index: 4;
    transition: var(--transition);
    overflow: hidden;
    border: 5px solid var(--white);
    padding: 0.5rem;
}

.offer-percent::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent 30%, rgba(255, 255, 255, 0.3) 50%, transparent 70%);
    transform: rotate(45deg);
    animation: shine 3s infinite;
}

.offer-card:hover .offer-percent {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 15px 40px rgba(255, 106, 0, 0.6);
}

.offer-percent::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent 30%, rgba(255, 255, 255, 0.2) 50%, transparent 70%);
    transform: rotate(45deg);
    animation: shine 3s infinite;
}

@keyframes shine {
    0% { transform: translateX(-100%) translateY(-100%) rotate(45deg); }
    100% { transform: translateX(100%) translateY(100%) rotate(45deg); }
}

.offer-card .btn {
    margin-top: 1.5rem;
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 220px;
    margin-left: auto;
    margin-right: auto;
    padding: 0.85rem 2rem;
    font-size: 0.95rem;
}

/* CTA Section */
.cta-section {
    padding: 5rem 0;
    background: var(--gradient-hero);
    color: var(--white);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 30% 30%, rgba(11, 95, 165, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 70% 70%, rgba(13, 111, 196, 0.15) 0%, transparent 50%);
    pointer-events: none;
}

.cta-section h2 {
    font-size: 2.8rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
    position: relative;
    z-index: 1;
}

.cta-section p {
    font-size: 1.3rem;
    margin-bottom: 2.5rem;
    opacity: 0.95;
    position: relative;
    z-index: 1;
    font-weight: 300;
}

/* Page Header */
.page-header {
    background: var(--gradient-hero);
    color: var(--white);
    padding: 5rem 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 30%, rgba(11, 95, 165, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(13, 111, 196, 0.15) 0%, transparent 50%);
    pointer-events: none;
}

.page-header h1 {
    font-size: 3.2rem;
    margin-bottom: 1rem;
    font-weight: 700;
    position: relative;
    z-index: 1;
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.2);
}

.page-header p {
    font-size: 1.3rem;
    opacity: 0.95;
    position: relative;
    z-index: 1;
    font-weight: 300;
}

/* Service Details */
.service-details {
    padding: 4rem 0;
}

.service-details:nth-child(even) {
    background: var(--light-color);
}

.service-detail-card {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 3rem;
    align-items: center;
}

.service-detail-card.reverse {
    grid-template-columns: 2fr 1fr;
}

.service-detail-card.reverse .service-detail-image {
    order: 2;
}

.service-detail-image {
    text-align: center;
    font-size: 8rem;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    opacity: 0.4;
}

.service-detail-content h2 {
    color: var(--dark-color);
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
    position: relative;
    padding-bottom: 1rem;
}

.service-detail-content h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 80px;
    height: 4px;
    background: var(--gradient-primary);
    border-radius: 2px;
}

.service-detail-content p {
    color: var(--text-light);
    margin-bottom: 1.5rem;
    line-height: 1.8;
    font-size: 1.1rem;
}

.service-features {
    list-style: none;
    margin-bottom: 2rem;
}

.service-features li {
    padding: 0.5rem 0;
    color: var(--text-light);
    position: relative;
    padding-right: 1.5rem;
}

.service-features li::before {
    content: '✓';
    position: absolute;
    right: 0;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: bold;
    font-size: 1.2rem;
}

/* Tours Section */
.tours-section {
    padding: 5rem 0;
    background: linear-gradient(to bottom, var(--light-blue) 0%, var(--white) 100%);
}

.tours-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.tour-card {
    background: var(--white);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
    border: 1px solid rgba(11, 95, 165, 0.1);
}

.tour-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-hover);
    border-color: var(--primary-light);
}

.tour-image {
    height: 220px;
    background: var(--gradient-hero);
    position: relative;
    overflow: hidden;
}

.tour-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    position: relative;
    z-index: 1;
}

.tour-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at center, rgba(11, 95, 165, 0.2) 0%, transparent 70%);
}

.tour-placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    color: var(--white);
    font-size: 4rem;
    opacity: 0.8;
}

.tour-content {
    padding: 1.5rem;
}

.tour-content h3 {
    color: var(--dark-color);
    margin-bottom: 0.5rem;
    font-size: 1.5rem;
}

.tour-duration {
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 1rem;
}

.tour-description {
    color: var(--text-light);
    margin-bottom: 1rem;
    line-height: 1.6;
}

.tour-highlights {
    list-style: none;
    margin-bottom: 1.5rem;
}

.tour-highlights li {
    padding: 0.3rem 0;
    color: var(--text-light);
    position: relative;
    padding-right: 1.5rem;
}

.tour-highlights li::before {
    content: '•';
    position: absolute;
    right: 0;
    color: var(--primary-color);
    font-weight: bold;
    font-size: 1.2rem;
}

/* Hotels Section */
.hotels-section {
    padding: 5rem 0;
    background: linear-gradient(to bottom, var(--light-blue) 0%, var(--white) 100%);
}

.hotels-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.hotel-card {
    background: var(--white);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
    border: 1px solid rgba(11, 95, 165, 0.1);
}

.hotel-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-hover);
    border-color: var(--primary-light);
}

.hotel-image {
    height: 220px;
    background: var(--gradient-hero);
    position: relative;
    overflow: hidden;
}

.hotel-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    position: relative;
    z-index: 1;
}

.hotel-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at center, rgba(11, 95, 165, 0.2) 0%, transparent 70%);
}

.hotel-placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    color: var(--white);
    font-size: 4rem;
    opacity: 0.8;
}

.hotel-badge {
    position: absolute;
    top: 1rem;
    left: 1rem;
    background: var(--gradient-orange);
    color: var(--white);
    padding: 0.6rem 1.2rem;
    border-radius: 25px;
    font-size: 0.85rem;
    font-weight: 600;
    box-shadow: var(--shadow-orange);
    z-index: 2;
}

.hotel-content {
    padding: 1.5rem;
}

.hotel-content h3 {
    color: var(--dark-color);
    margin-bottom: 0.5rem;
    font-size: 1.5rem;
}

.hotel-rating {
    color: #ffc107;
    margin-bottom: 0.5rem;
}

.hotel-location {
    color: var(--text-light);
    margin-bottom: 1rem;
    font-size: 0.9rem;
}

.hotel-location i {
    color: var(--primary-color);
    margin-left: 0.5rem;
}

.hotel-description {
    color: var(--text-light);
    margin-bottom: 1rem;
    line-height: 1.6;
}

.hotel-features {
    list-style: none;
    margin-bottom: 1.5rem;
}

.hotel-features li {
    padding: 0.3rem 0;
    color: var(--text-light);
    font-size: 0.9rem;
}

.hotel-features i {
    color: var(--primary-color);
    margin-left: 0.5rem;
}

/* Contact Section */
.contact-section {
    padding: 5rem 0;
    background: linear-gradient(to bottom, var(--light-blue) 0%, var(--white) 100%);
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
}

.contact-info h2,
.contact-form-wrapper h2 {
    color: var(--dark-color);
    margin-bottom: 1.5rem;
    font-size: 2rem;
}

.contact-info p {
    color: var(--text-light);
    margin-bottom: 2rem;
    line-height: 1.8;
}

.contact-methods {
    margin-bottom: 2rem;
}

.contact-method {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
    padding: 1.5rem;
    background: var(--white);
    border-radius: 12px;
    box-shadow: var(--shadow);
    border: 1px solid rgba(11, 95, 165, 0.1);
    transition: var(--transition);
}

.contact-method:hover {
    transform: translateX(-5px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-light);
}

.contact-icon {
    width: 55px;
    height: 55px;
    background: var(--gradient-primary);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    box-shadow: var(--shadow);
    flex-shrink: 0;
}

.contact-details h4 {
    color: var(--dark-color);
    margin-bottom: 0.3rem;
}

.contact-link {
    color: var(--primary-color);
    text-decoration: none;
    transition: var(--transition);
}

.contact-link:hover {
    color: var(--secondary-color);
}

.whatsapp-cta {
    margin-top: 2rem;
}

/* Contact Form */
.contact-form {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 16px;
    box-shadow: var(--shadow);
    border: 1px solid rgba(11, 95, 165, 0.1);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--dark-color);
    font-weight: 600;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.8rem;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 1rem;
    font-family: inherit;
    transition: var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(11, 95, 165, 0.15);
    transform: translateY(-2px);
}

.form-group textarea {
    resize: vertical;
}

/* Footer */
.footer {
    background: linear-gradient(180deg, #0a1f2e 0%, #0d2a3d 50%, var(--dark-color) 100%);
    color: var(--white);
    padding: 3.5rem 0 0;
    position: relative;
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--gradient-orange);
    box-shadow: 0 2px 10px rgba(255, 106, 0, 0.5);
}

.footer::after {
    content: '';
    position: absolute;
    bottom: -30%;
    right: -5%;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(255, 106, 0, 0.06) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1.3fr 1.3fr 1.8fr;
    gap: 2.5rem;
    margin-bottom: 2rem;
    position: relative;
    z-index: 1;
}

.footer-section {
    position: relative;
}

.footer-about {
    max-width: 100%;
}

.footer-logo h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--white);
    font-weight: 800;
    letter-spacing: -0.3px;
    background: var(--gradient-orange);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.footer-section h4 {
    font-size: 1.05rem;
    margin-bottom: 1.2rem;
    color: var(--white);
    font-weight: 700;
    position: relative;
    padding-bottom: 0.6rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-size: 0.9rem;
}

.footer-section h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 35px;
    height: 2px;
    background: var(--gradient-orange);
    border-radius: 2px;
}

.footer-about p {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.7;
    margin-bottom: 1.5rem;
    font-size: 0.85rem;
}

.footer-social {
    display: flex;
    gap: 0.7rem;
    margin-top: 1rem;
}

.footer-social a {
    width: 36px;
    height: 36px;
    background: rgba(255, 255, 255, 0.08);
    border: 1.5px solid rgba(255, 255, 255, 0.15);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.95rem;
    transition: var(--transition);
    text-decoration: none;
}

.footer-social a:hover {
    background: var(--gradient-orange);
    border-color: var(--secondary-color);
    transform: translateY(-3px);
    box-shadow: 0 6px 15px rgba(255, 106, 0, 0.4);
    color: var(--white);
}

.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 0.6rem;
}

.footer-links li a {
    color: rgba(255, 255, 255, 0.65);
    text-decoration: none;
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 0.6rem;
    font-size: 0.85rem;
    padding: 0.3rem 0;
}

.footer-links li a i {
    font-size: 0.6rem;
    color: var(--secondary-color);
    transition: var(--transition);
    opacity: 0.7;
}

.footer-links li a:hover {
    color: var(--secondary-color);
    transform: translateX(4px);
}

.footer-links li a:hover i {
    opacity: 1;
    transform: translateX(-2px);
}

.footer-contact-list {
    list-style: none;
    padding: 0;
}

.footer-contact-list li {
    margin-bottom: 0.9rem;
}

.footer-contact-list li a {
    color: rgba(255, 255, 255, 0.65);
    text-decoration: none;
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 0.8rem;
    font-size: 0.85rem;
}

.footer-contact-list li a:hover {
    color: var(--secondary-color);
}

.footer-contact-list li a i {
    width: 32px;
    height: 32px;
    background: rgba(255, 106, 0, 0.12);
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--secondary-color);
    font-size: 0.85rem;
    transition: var(--transition);
    flex-shrink: 0;
}

.footer-contact-list li a:hover i {
    background: var(--gradient-orange);
    color: var(--white);
    transform: scale(1.05);
}

.footer-location {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    color: rgba(255, 255, 255, 0.65);
    font-size: 0.85rem;
}

.footer-location i {
    width: 32px;
    height: 32px;
    background: rgba(255, 106, 0, 0.12);
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--secondary-color);
    font-size: 0.85rem;
    flex-shrink: 0;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding: 1.5rem 0;
    position: relative;
    z-index: 1;
    background: rgba(0, 0, 0, 0.2);
}

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.8rem;
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.6);
    margin: 0;
    font-size: 0.8rem;
}

.footer-bottom p strong {
    color: var(--secondary-color);
    font-weight: 700;
}

.footer-bottom-links {
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.footer-bottom-links a {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    font-size: 0.8rem;
    transition: var(--transition);
    position: relative;
}

.footer-bottom-links a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--secondary-color);
    transition: var(--transition);
}

.footer-bottom-links a:hover {
    color: var(--secondary-color);
}

.footer-bottom-links a:hover::after {
    width: 100%;
}

.footer-bottom-links span {
    color: rgba(255, 255, 255, 0.25);
    font-size: 0.8rem;
}

/* Responsive Footer */
@media (max-width: 968px) {
    .footer {
        padding: 2.5rem 0 0;
    }
    
    .footer-content {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
}

@media (max-width: 640px) {
    .footer {
        padding: 2rem 0 0;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 1.8rem;
    }
    
    .footer-bottom {
        padding: 1.2rem 0;
    }
    
    .footer-bottom-content {
        flex-direction: column;
        text-align: center;
    }
}

/* WhatsApp Float Button */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    left: 30px;
    width: 65px;
    height: 65px;
    background: linear-gradient(135deg, #25d366 0%, #20ba5a 100%);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.2rem;
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4);
    z-index: 999;
    transition: var(--transition);
    text-decoration: none;
    border: 3px solid var(--white);
}

.whatsapp-float:hover {
    transform: scale(1.15) rotate(5deg);
    box-shadow: 0 12px 35px rgba(37, 211, 102, 0.5);
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }

    .nav-menu {
        display: none;
        width: 100%;
        flex-direction: column;
        gap: 1rem;
        margin-top: 1rem;
    }

    .nav-menu.active {
        display: flex;
    }

    .lang-switcher {
        margin-top: 1rem;
    }

    .hero-title {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .service-detail-card {
        grid-template-columns: 1fr;
    }

    .service-detail-card.reverse {
        grid-template-columns: 1fr;
    }

    .service-detail-card.reverse .service-detail-image {
        order: 0;
    }

    .service-detail-image {
        font-size: 5rem;
    }

    .contact-wrapper {
        grid-template-columns: 1fr;
    }

    .about-wrapper {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .about-content h2 {
        text-align: center;
    }

    .about-placeholder {
        height: 300px;
        font-size: 4rem;
    }

    .about-main-wrapper {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .about-main-content h2 {
        font-size: 2rem;
        text-align: center;
    }

    .about-image-placeholder {
        height: 300px;
        font-size: 4rem;
    }

    .mission-vision-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .why-choose-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }

    .values-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }

    .stat-number {
        font-size: 2.5rem;
    }

    .testimonials-grid {
        grid-template-columns: 1fr;
    }

    .offers-grid {
        grid-template-columns: 1fr;
    }

    .whatsapp-float {
        bottom: 20px;
        left: 20px;
        width: 50px;
        height: 50px;
        font-size: 1.5rem;
    }

    .page-header h1 {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .hero {
        height: 500px;
    }

    .hero-title {
        font-size: 1.5rem;
    }

    .hero-buttons {
        flex-direction: column;
    }

    .btn {
        width: 100%;
    }

    .stats-grid {
        grid-template-columns: 1fr;
    }

    .stat-item {
        padding: 1.5rem;
    }

    .stat-number {
        font-size: 2rem;
    }

    .stat-card {
        padding: 1.5rem;
    }

    .stat-card .stat-number {
        font-size: 2rem;
    }

    .about-features {
        flex-direction: column;
        gap: 1rem;
    }

    .why-choose-grid {
        grid-template-columns: 1fr;
    }

    .values-grid {
        grid-template-columns: 1fr;
    }

    .offer-card {
        padding: 2rem;
    }

    .offer-percent {
        font-size: 1.5rem;
        padding: 0.8rem 1.5rem;
    }
}

/* LTR Support */
/* Hotel Details Page */
.hotel-gallery-section {
    position: relative;
    margin-top: 0;
}

.hotel-main-image {
    width: 100%;
    height: 500px;
    position: relative;
    overflow: hidden;
}

.hotel-main-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.hotel-image-placeholder-large {
    width: 100%;
    height: 100%;
    background: var(--gradient-hero);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 8rem;
    color: var(--white);
    opacity: 0.9;
}

.hotel-badge-large {
    position: absolute;
    top: 2rem;
    right: 2rem;
    z-index: 2;
}

.hotel-thumbnails {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
    padding: 1rem;
    background: var(--white);
}

.thumbnail {
    height: 100px;
    cursor: pointer;
    transition: var(--transition);
    border-radius: 8px;
    overflow: hidden;
}

.thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.thumbnail:hover {
    transform: scale(1.05);
}

.thumbnail-placeholder {
    width: 100%;
    height: 100%;
    background: var(--light-blue);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--primary-color);
}

.hotel-details-section {
    padding: 4rem 0;
    background: var(--white);
}

.hotel-details-wrapper {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
}

.hotel-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 3rem;
    padding-bottom: 2rem;
    border-bottom: 2px solid var(--light-blue);
}

.hotel-title-section h1 {
    font-size: 2.5rem;
    color: var(--dark-color);
    margin-bottom: 1rem;
    font-weight: 700;
}

.hotel-rating-large {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.hotel-rating-large i {
    color: var(--secondary-color);
    font-size: 1.2rem;
}

.rating-text {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-color);
    margin-left: 0.5rem;
}

.hotel-location-large {
    color: var(--text-light);
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.hotel-location-large i {
    color: var(--primary-color);
}

.hotel-price-section {
    text-align: center;
    padding: 2rem;
    background: var(--light-blue);
    border-radius: 12px;
    min-width: 250px;
}

.price-label {
    font-size: 0.9rem;
    color: var(--text-light);
    margin-bottom: 0.5rem;
}

.price-amount {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.price-period {
    font-size: 0.9rem;
    color: var(--text-light);
    margin-bottom: 1.5rem;
}

.hotel-description-section,
.hotel-features-section,
.room-types-section,
.location-section {
    margin-bottom: 3rem;
}

.hotel-description-section h2,
.hotel-features-section h2,
.room-types-section h2,
.location-section h2 {
    font-size: 2rem;
    color: var(--dark-color);
    margin-bottom: 1.5rem;
    font-weight: 700;
    padding-bottom: 1rem;
    border-bottom: 2px solid var(--light-blue);
}

.hotel-description-section p {
    color: var(--text-light);
    line-height: 1.9;
    margin-bottom: 1rem;
    font-size: 1.05rem;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

.feature-item-detail {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: var(--light-blue);
    border-radius: 8px;
    transition: var(--transition);
}

.feature-item-detail:hover {
    background: var(--primary-color);
    color: var(--white);
    transform: translateX(5px);
}

.feature-item-detail i {
    font-size: 1.5rem;
    color: var(--primary-color);
}

.feature-item-detail:hover i {
    color: var(--white);
}

.room-types-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.room-type-card {
    background: var(--light-blue);
    border-radius: 12px;
    overflow: hidden;
    transition: var(--transition);
}

.room-type-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.room-image {
    height: 150px;
    background: var(--gradient-primary);
    overflow: hidden;
}

.room-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.room-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    color: var(--white);
}

.room-content {
    padding: 1.5rem;
}

.room-content h3 {
    font-size: 1.3rem;
    color: var(--dark-color);
    margin-bottom: 0.5rem;
    font-weight: 700;
}

.room-description {
    color: var(--text-light);
    font-size: 0.9rem;
    margin-bottom: 1rem;
    line-height: 1.6;
}

.room-features {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.room-features span {
    font-size: 0.85rem;
    color: var(--text-light);
    display: flex;
    align-items: center;
    gap: 0.3rem;
}

.room-features i {
    color: var(--primary-color);
    font-size: 0.8rem;
}

.room-price {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--primary-color);
    text-align: center;
    padding-top: 1rem;
    border-top: 1px solid rgba(11, 95, 165, 0.1);
}

.hotel-booking-sidebar {
    position: sticky;
    top: 100px;
    height: fit-content;
}

.booking-card {
    background: var(--white);
    border-radius: 12px;
    padding: 2rem;
    box-shadow: var(--shadow-lg);
    margin-bottom: 2rem;
    border: 1px solid var(--light-blue);
}

.booking-card h3 {
    font-size: 1.5rem;
    color: var(--dark-color);
    margin-bottom: 1.5rem;
    font-weight: 700;
    text-align: center;
}

.booking-form .form-group {
    margin-bottom: 1.5rem;
}

.booking-form label {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--text-color);
    font-weight: 600;
    font-size: 0.9rem;
}

.booking-form input,
.booking-form select,
.booking-form textarea {
    width: 100%;
    padding: 0.8rem;
    border: 2px solid var(--light-blue);
    border-radius: 8px;
    font-size: 1rem;
    transition: var(--transition);
    font-family: inherit;
}

.booking-form input:focus,
.booking-form select:focus,
.booking-form textarea:focus {
    outline: none;
    border-color: var(--primary-color);
}

.price-summary {
    margin: 2rem 0;
    padding: 1.5rem;
    background: var(--light-blue);
    border-radius: 8px;
}

.price-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 1rem;
    color: var(--text-color);
}

.price-row.total {
    padding-top: 1rem;
    border-top: 2px solid var(--primary-color);
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 0;
}

.btn-block {
    width: 100%;
    display: block;
    text-align: center;
}

.booking-note {
    text-align: center;
    font-size: 0.85rem;
    color: var(--text-light);
    margin-top: 1rem;
}

.contact-card {
    background: var(--white);
    border-radius: 12px;
    padding: 2rem;
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--light-blue);
}

.contact-card h3 {
    font-size: 1.3rem;
    color: var(--dark-color);
    margin-bottom: 1.5rem;
    font-weight: 700;
    text-align: center;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: var(--light-blue);
    border-radius: 8px;
    text-decoration: none;
    color: var(--text-color);
    transition: var(--transition);
}

.contact-item:hover {
    background: var(--primary-color);
    color: var(--white);
    transform: translateX(5px);
}

.contact-item i {
    font-size: 1.3rem;
    color: var(--primary-color);
}

.contact-item:hover i {
    color: var(--white);
}

.map-placeholder {
    height: 300px;
    background: var(--light-blue);
    border-radius: 12px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
}

.map-placeholder i {
    font-size: 4rem;
    margin-bottom: 1rem;
}

.location-details {
    background: var(--light-blue);
    padding: 1.5rem;
    border-radius: 12px;
}

.location-details p {
    margin-bottom: 0.8rem;
    color: var(--text-color);
}

.location-details strong {
    color: var(--dark-color);
}

.similar-hotels-section {
    padding: 4rem 0;
    background: var(--light-blue);
}

@media (max-width: 968px) {
    .hotel-details-wrapper {
        grid-template-columns: 1fr;
    }

    .hotel-booking-sidebar {
        position: static;
    }

    .hotel-header {
        flex-direction: column;
        gap: 2rem;
    }

    .hotel-price-section {
        width: 100%;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }

    .room-types-grid {
        grid-template-columns: 1fr;
    }

    .hotel-thumbnails {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Service Details Page */
.service-header-section {
    background: var(--gradient-hero);
    color: var(--white);
    padding: 4rem 0;
    position: relative;
    overflow: hidden;
}

.service-header-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 30%, rgba(11, 95, 165, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(13, 111, 196, 0.15) 0%, transparent 50%);
    pointer-events: none;
}

.service-header-wrapper {
    display: flex;
    align-items: center;
    gap: 3rem;
    position: relative;
    z-index: 1;
}

.service-icon-large {
    font-size: 6rem;
    color: var(--white);
    opacity: 0.9;
    flex-shrink: 0;
}

.service-header-content h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.service-subtitle {
    font-size: 1.2rem;
    opacity: 0.95;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.service-badges {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.service-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.6rem 1.2rem;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    border-radius: 25px;
    font-size: 0.9rem;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.service-details-main-section {
    padding: 4rem 0;
    background: var(--white);
}

.service-details-wrapper {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
}

.service-description-box,
.service-features-box,
.service-process-box,
.service-benefits-box {
    background: var(--light-blue);
    padding: 2.5rem;
    border-radius: 12px;
    margin-bottom: 2rem;
}

.service-description-box h2,
.service-features-box h2,
.service-process-box h2,
.service-benefits-box h2 {
    font-size: 2rem;
    color: var(--dark-color);
    margin-bottom: 1.5rem;
    font-weight: 700;
    padding-bottom: 1rem;
    border-bottom: 2px solid var(--primary-color);
}

.service-description-box p {
    color: var(--text-light);
    line-height: 1.9;
    margin-bottom: 1rem;
    font-size: 1.05rem;
}

.service-features-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.service-feature-item {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
}

.feature-icon {
    flex-shrink: 0;
    width: 50px;
    height: 50px;
    background: var(--primary-color);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
}

.feature-content h4 {
    font-size: 1.2rem;
    color: var(--dark-color);
    margin-bottom: 0.5rem;
    font-weight: 700;
}

.feature-content p {
    color: var(--text-light);
    line-height: 1.7;
    font-size: 0.95rem;
}

.process-steps {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.process-step {
    display: flex;
    gap: 2rem;
    align-items: flex-start;
}

.step-number {
    flex-shrink: 0;
    width: 60px;
    height: 60px;
    background: var(--gradient-primary);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    box-shadow: var(--shadow);
}

.step-content h4 {
    font-size: 1.3rem;
    color: var(--dark-color);
    margin-bottom: 0.5rem;
    font-weight: 700;
}

.step-content p {
    color: var(--text-light);
    line-height: 1.7;
    font-size: 1rem;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.benefit-item {
    text-align: center;
    padding: 2rem;
    background: var(--white);
    border-radius: 12px;
    transition: var(--transition);
}

.benefit-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.benefit-item i {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.benefit-item h4 {
    font-size: 1.2rem;
    color: var(--dark-color);
    margin-bottom: 0.5rem;
    font-weight: 700;
}

.benefit-item p {
    color: var(--text-light);
    font-size: 0.95rem;
}

.service-booking-sidebar {
    position: sticky;
    top: 100px;
    height: fit-content;
}

.service-booking-card {
    background: var(--white);
    border-radius: 12px;
    padding: 2rem;
    box-shadow: var(--shadow-lg);
    margin-bottom: 2rem;
    border: 1px solid var(--light-blue);
}

.service-booking-card h3 {
    font-size: 1.5rem;
    color: var(--dark-color);
    margin-bottom: 1.5rem;
    font-weight: 700;
    text-align: center;
}

.service-price-box {
    text-align: center;
    padding: 1.5rem;
    background: var(--light-blue);
    border-radius: 8px;
    margin-bottom: 2rem;
}

.service-price-box .price-label {
    font-size: 0.9rem;
    color: var(--text-light);
    margin-bottom: 0.5rem;
}

.service-price-box .price-amount {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.service-price-box .price-note {
    font-size: 0.9rem;
    color: var(--text-light);
}

.service-booking-form .form-group {
    margin-bottom: 1.5rem;
}

.service-booking-form label {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--text-color);
    font-weight: 600;
    font-size: 0.9rem;
}

.service-booking-form input,
.service-booking-form select,
.service-booking-form textarea {
    width: 100%;
    padding: 0.8rem;
    border: 2px solid var(--light-blue);
    border-radius: 8px;
    font-size: 1rem;
    transition: var(--transition);
    font-family: inherit;
}

.service-booking-form input:focus,
.service-booking-form select:focus,
.service-booking-form textarea:focus {
    outline: none;
    border-color: var(--primary-color);
}

.service-booking-form textarea {
    resize: vertical;
    min-height: 80px;
}

.service-contact-card {
    background: var(--white);
    border-radius: 12px;
    padding: 2rem;
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--light-blue);
}

.service-contact-card h3 {
    font-size: 1.3rem;
    color: var(--dark-color);
    margin-bottom: 1.5rem;
    font-weight: 700;
    text-align: center;
}

.related-services-section {
    padding: 4rem 0;
    background: var(--light-blue);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

@media (max-width: 968px) {
    .service-details-wrapper {
        grid-template-columns: 1fr;
    }

    .service-booking-sidebar {
        position: static;
    }

    .service-header-wrapper {
        flex-direction: column;
        text-align: center;
    }

    .service-icon-large {
        font-size: 4rem;
    }

    .service-header-content h1 {
        font-size: 2rem;
    }

    .benefits-grid {
        grid-template-columns: 1fr;
    }

    .process-step {
        flex-direction: column;
        text-align: center;
    }
}

html[dir="ltr"] .service-features li,
html[dir="ltr"] .tour-highlights li {
    padding-right: 0;
    padding-left: 1.5rem;
}

html[dir="ltr"] .service-features li::before,
html[dir="ltr"] .tour-highlights li::before {
    right: auto;
    left: 0;
}

html[dir="ltr"] .footer-section ul li a i {
    margin-left: 0;
    margin-right: 0.5rem;
}

html[dir="ltr"] .hotel-location i {
    margin-left: 0;
    margin-right: 0.5rem;
}

html[dir="ltr"] .hotel-features i {
    margin-left: 0;
    margin-right: 0.5rem;
}

html[dir="ltr"] .whatsapp-float {
    left: auto;
    right: 30px;
}

@media (max-width: 768px) {
    html[dir="ltr"] .whatsapp-float {
        right: 20px;
    }
}
