:root {
    /* Brand Colors (from official logo) */
    --primary-blue: #2A81B8; /* Refined from logo */
    --secondary-turquoise: #4DB3A2; /* Refined from logo */
    --accent-gold: #D4AF37;
    --bg-color: #F8FCFD;
    --dark-text: #163547;
    --light-text: #ffffff;
    --gray-text: #6b8496;
    
    /* Gradients */
    --gradient-primary: linear-gradient(135deg, var(--primary-blue), var(--secondary-turquoise));
    --gradient-gold: linear-gradient(135deg, #e3c457, var(--accent-gold));
    
    /* Shadows & Effects */
    --shadow-soft: 0 15px 35px rgba(42, 129, 184, 0.08);
    --shadow-hover: 0 25px 50px rgba(42, 129, 184, 0.18);
    --glass-bg: rgba(255, 255, 255, 0.95);
    --glass-bg-light: rgba(255, 255, 255, 0.85);
    --glass-border: rgba(255, 255, 255, 0.5);
    
    /* Border Radius */
    --radius-lg: 24px;
    --radius-md: 16px;
    --radius-sm: 8px;
    
    /* Fonts */
    --font-ar: 'Cairo', sans-serif;
    --font-en: 'Poppins', sans-serif;
}

/* Global Reset & Typography */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-ar);
    background-color: var(--bg-color);
    color: var(--dark-text);
    line-height: 1.7;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

html[lang="en"] body {
    font-family: var(--font-en);
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* Utility Classes */
.container {
    width: 90%;
    max-width: 1280px;
    margin: 0 auto;
}

.section {
    padding: 120px 0; /* Increased spacing */
}

.bg-light {
    background-color: #f0f7fa;
}

.section-header {
    text-align: center;
    margin-bottom: 70px; /* Increased spacing */
}

.section-header h2 {
    font-size: 2.8rem;
    color: var(--dark-text);
    margin-bottom: 20px;
    font-weight: 800;
}

.header-line {
    width: 60px;
    height: 4px;
    background: var(--gradient-primary);
    margin: 0 auto 25px;
    border-radius: 2px;
}

.header-line.left-align {
    margin: 0 0 25px 0;
}

html[lang="en"] .header-line.left-align {
    margin: 0 auto 25px 0;
}

.section-header p {
    color: var(--gray-text);
    font-size: 1.15rem;
    max-width: 650px;
    margin: 0 auto;
}

.grid {
    display: grid;
    gap: 40px; /* Increased spacing */
}

.center-btn {
    text-align: center;
}
.mt-5 {
    margin-top: 60px;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 32px;
    border-radius: 50px;
    font-size: 1.05rem;
    font-weight: 700;
    cursor: pointer;
    border: none;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    font-family: inherit;
    gap: 10px;
}

.btn-primary {
    background: var(--gradient-primary);
    color: var(--light-text);
    box-shadow: 0 10px 25px rgba(42, 129, 184, 0.3);
    position: relative;
    overflow: hidden;
}

.btn-primary::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: left 0.6s ease;
}

.btn-primary:hover::before {
    left: 100%;
}

.btn-primary:hover {
    transform: translateY(-4px) scale(1.03);
    box-shadow: 0 15px 30px rgba(42, 129, 184, 0.4);
}

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

.btn-outline:hover {
    background: var(--gradient-primary);
    border-color: transparent;
    color: var(--light-text);
    transform: translateY(-4px);
    box-shadow: 0 10px 25px rgba(42, 129, 184, 0.2);
}

.btn-large {
    padding: 18px 45px;
    font-size: 1.15rem;
}

/* Glassmorphism Panel */
.glass-panel {
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    box-shadow: var(--shadow-soft);
    border-radius: var(--radius-lg);
}

.glass-panel-light {
    background: var(--glass-bg-light);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid var(--glass-border);
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 25px 0;
    background: transparent;
    transition: all 0.5s ease;
}

.navbar.scrolled {
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(15px);
    padding: 15px 0;
    box-shadow: 0 5px 30px rgba(0,0,0,0.08);
}

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

/* Brand Logo Container */
.logo {
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s ease;
    margin-inline-end: 18px; /* Moves logo slightly closer to navigation for better integration */
}

.navbar.scrolled .logo {
    padding: 0;
}

/* Brand Logo Image Styling */
.brand-logo {
    height: 230px; /* Increased by 10% for final polish */
    width: auto;
    object-fit: contain;
    transition: all 0.4s ease;
    filter: none; /* Completely clean, no glow or shadow, naturally integrated */
}

.navbar.scrolled .brand-logo {
    height: 145px; /* Scaled up for scrolled state */
    filter: none; /* Remove shadow on solid white background */
}

.nav-links {
    display: flex;
    gap: 35px;
}

.nav-links a {
    color: var(--light-text);
    font-weight: 700;
    font-size: 1.05rem;
    position: relative;
    padding-bottom: 8px;
    text-shadow: 0 2px 6px rgba(0,0,0,0.6); /* Enhanced shadow for visibility on light backgrounds */
}

.navbar.scrolled .nav-links a {
    color: var(--dark-text);
    text-shadow: none;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 0;
    height: 3px;
    background: var(--gradient-primary);
    border-radius: 3px;
    transition: width 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}
html[lang="en"] .nav-links a::after {
    right: auto;
    left: 0;
}

.nav-links a:hover::after,
.nav-links a.active::after {
    width: 100%;
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 20px;
}

.lang-btn {
    background: transparent;
    border: 2px solid rgba(255,255,255,0.5);
    color: var(--light-text);
    padding: 8px 20px;
    border-radius: 30px;
    cursor: pointer;
    font-family: var(--font-en);
    font-weight: 600;
    transition: all 0.4s ease;
    text-shadow: 0 1px 4px rgba(0,0,0,0.4);
}

.navbar.scrolled .lang-btn {
    border-color: var(--primary-blue);
    color: var(--primary-blue);
    text-shadow: none;
}

.lang-btn:hover {
    background: var(--gradient-primary);
    border-color: transparent;
    color: var(--light-text);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    color: var(--light-text);
    font-size: 2rem;
    cursor: pointer;
    text-shadow: 0 1px 4px rgba(0,0,0,0.4);
}

.navbar.scrolled .mobile-menu-btn {
    color: var(--dark-text);
    text-shadow: none;
}

/* Cinematic Hero Section */
.cinematic-hero {
    position: relative;
    height: 100vh;
    min-height: 900px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.cinematic-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('../images/palm_hero.jpg'); /* High quality image with natural dark areas for the logo */
    background-size: cover;
    background-position: center;
    background-attachment: fixed; /* Smooth parallax effect */
    z-index: -2;
    transform: scale(1.05);
    animation: slowZoom 25s infinite alternate linear;
}

@keyframes slowZoom {
    0% { transform: scale(1.05); }
    100% { transform: scale(1.15); }
}

.cinematic-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0,0,0,0.4) 0%, rgba(0,0,0,0) 15%, transparent 50%, rgba(0, 0, 0, 0.5) 100%); /* Slight darkening ONLY at the very top for logo/menu visibility, completely clear in the middle */
    z-index: -1;
}

/* Floating Decorative Elements */
.hero-decor {
    position: absolute;
    pointer-events: none;
    z-index: 0;
}

.glow-circle-1 {
    width: 600px;
    height: 600px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(77,179,162,0.15) 0%, transparent 70%);
    top: -100px;
    right: -100px;
    animation: pulseGlow 8s infinite alternate;
}

.glow-circle-2 {
    width: 450px;
    height: 450px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(42,129,184,0.15) 0%, transparent 70%);
    bottom: 150px;
    left: -50px;
    animation: pulseGlow 6s infinite alternate-reverse;
}

@keyframes pulseGlow {
    0% { transform: scale(1); opacity: 0.5; }
    100% { transform: scale(1.2); opacity: 1; }
}

.particles-container {
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    position: absolute;
}

/* Atmospheric Soft Clouds/Particles */
.particle {
    position: absolute;
    width: 60px; /* Larger, softer bokeh-like particles for atmosphere */
    height: 60px;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, rgba(255,255,255,0) 70%);
    border-radius: 50%;
    animation: floatUp 15s infinite linear;
    opacity: 0;
}

.p1 { left: 15%; bottom: -100px; animation-duration: 20s; animation-delay: 1s; width: 100px; height: 100px; }
.p2 { left: 35%; bottom: -100px; animation-duration: 25s; animation-delay: 5s; width: 150px; height: 150px; }
.p3 { left: 65%; bottom: -100px; animation-duration: 18s; animation-delay: 0s; width: 80px; height: 80px; }
.p4 { left: 85%; bottom: -100px; animation-duration: 30s; animation-delay: 10s; width: 200px; height: 200px; }
.p5 { left: 50%; bottom: -100px; animation-duration: 22s; animation-delay: 3s; width: 120px; height: 120px; }

@keyframes floatUp {
    0% { transform: translateY(0) scale(0.8); opacity: 0; }
    20% { opacity: 1; }
    80% { opacity: 1; }
    100% { transform: translateY(-900px) scale(1.5); opacity: 0; }
}

.airplane-path {
    width: 100%;
    height: 250px;
    top: 20%;
    left: 0;
    opacity: 0.5;
    position: absolute;
}

/* Hero Content */
.hero-content {
    text-align: center;
    color: var(--light-text);
    margin-top: 60px; /* Perfectly centered vertically considering header space */
    width: 100%;
    z-index: 1;
    position: relative;
}

.cinematic-title {
    font-size: clamp(2.8rem, 4vw, 4.2rem); /* Fluid typography ensures perfect single line on desktop and graceful scaling */
    font-weight: 900;
    margin: 0 auto 25px auto;
    max-width: 1200px;
    padding: 0 40px; /* Horizontal breathing space */
    text-shadow: 0 4px 20px rgba(0,0,0,0.6);
    letter-spacing: -1px;
    line-height: 1.3;
}

.cinematic-subtitle {
    font-size: 1.45rem;
    max-width: 1000px; /* Allows one perfect line on large desktops */
    margin: 0 auto 50px auto;
    text-shadow: 0 3px 15px rgba(0,0,0,0.4);
    font-weight: 600; /* Increased font weight for perfect readability */
    line-height: 1.95; /* Elegant breathable line-height */
}

/* CTA Buttons */
.hero-cta-group {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 70px;
}

.btn-large {
    padding: 18px 45px;
    font-size: 1.2rem;
    font-weight: 700;
}

.btn-outline-white {
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.8);
    color: var(--light-text);
    border-radius: 50px;
    transition: all 0.4s ease;
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
}

.btn-outline-white:hover {
    background: var(--light-text);
    color: var(--dark-text);
    box-shadow: 0 10px 25px rgba(255, 255, 255, 0.2);
    transform: translateY(-3px);
}

/* Premium Search Box */
.hero-booking-panel {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 25px;
    max-width: 1250px;
    margin: 0 auto;
    border-radius: 60px;
    background: rgba(255, 255, 255, 0.95);
    box-shadow: 0 20px 50px rgba(0,0,0,0.2);
}

.booking-inputs-grid {
    display: flex;
    flex: 1;
    align-items: center;
    text-align: right;
}

html[lang="en"] .booking-inputs-grid {
    text-align: left;
}

.search-item {
    display: flex;
    align-items: center;
    gap: 15px;
    flex: 1;
    border-left: 1px solid rgba(0,0,0,0.1);
    padding: 10px 20px;
    position: relative;
    transition: all 0.3s ease;
}

html[lang="en"] .search-item {
    border-left: none;
    border-right: 1px solid rgba(0,0,0,0.1);
}

.search-item:first-child {
    border: none !important;
}

.search-item:hover {
    background: rgba(47, 143, 205, 0.03);
    border-radius: 20px;
}

.search-icon-wrapper {
    width: 45px;
    height: 45px;
    background: rgba(42, 129, 184, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-blue);
    font-size: 1.5rem;
    flex-shrink: 0;
}

.search-input-group {
    display: flex;
    flex-direction: column;
    flex: 1;
}

.search-input-group span {
    font-size: 0.9rem;
    color: var(--gray-text);
    font-weight: 700;
    margin-bottom: 4px;
}

.search-input-group input,
.search-input-group select {
    border: none;
    background: transparent;
    font-family: inherit;
    font-size: 1.05rem;
    color: var(--dark-text);
    font-weight: 700;
    outline: none;
    width: 100%;
    cursor: pointer;
}

.booking-action {
    margin-right: 20px;
}

html[lang="en"] .booking-action {
    margin-right: 0;
    margin-left: 20px;
}

.cinematic-search-btn {
    padding: 22px 50px;
    border-radius: 50px;
    font-size: 1.15rem;
    box-shadow: 0 10px 25px rgba(88, 199, 190, 0.4);
}
html[lang="en"] .cinematic-search-btn {

    margin-right: 0;
    margin-left: 10px;
}

/* Destinations Grid */
.dest-grid {
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
}

.dest-card {
    border-radius: var(--radius-lg);
    overflow: hidden;
    background: var(--light-text);
    box-shadow: var(--shadow-soft);
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    cursor: pointer;
    position: relative;
    display: flex;
    flex-direction: column;
}

.dest-card:hover {
    transform: translateY(-15px) scale(1.02);
    box-shadow: var(--shadow-hover);
}

.card-img {
    height: 320px; /* Identical proportions */
    overflow: hidden;
    position: relative;
}

.card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.dest-card:hover .card-img img {
    transform: scale(1.15); /* Subtle zoom */
}

.card-tag {
    position: absolute;
    top: 20px;
    right: 20px;
    padding: 8px 20px;
    border-radius: 30px;
    font-weight: 800;
    font-size: 0.95rem;
    color: var(--primary-blue);
    z-index: 2;
}
html[lang="en"] .card-tag {
    right: auto;
    left: 20px;
}

.card-content {
    padding: 30px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.card-title-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
}

.card-title-row h3 {
    font-size: 1.6rem;
    font-weight: 800;
    color: var(--dark-text);
}

.card-rating {
    color: var(--dark-text);
    font-size: 1rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 5px;
    background: rgba(212, 175, 55, 0.1);
    padding: 5px 12px;
    border-radius: 20px;
}

.card-rating i {
    color: var(--accent-gold);
}

.card-desc {
    color: var(--gray-text);
    font-size: 1rem;
    margin-bottom: 20px;
    line-height: 1.6;
}

.card-link {
    margin-top: auto;
    color: var(--primary-blue);
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 1.05rem;
}

html[lang="en"] .card-link i {
    transform: rotate(180deg);
}

.dest-card:hover .card-link {
    color: var(--secondary-turquoise);
    gap: 12px; /* Micro-interaction on hover */
}

/* Services */
.service-grid {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

.service-card {
    background: var(--light-text);
    padding: 50px 30px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-soft);
    text-align: center;
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
}

.service-card::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0; width: 100%; height: 4px;
    background: var(--gradient-primary);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.service-card:hover {
    transform: translateY(-15px);
    box-shadow: var(--shadow-hover);
}

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

.service-icon-wrapper {
    width: 100px; /* Larger icon */
    height: 100px;
    background: linear-gradient(135deg, rgba(42, 129, 184, 0.1), rgba(77, 179, 162, 0.1));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 30px;
    font-size: 3rem;
    color: var(--primary-blue);
    transition: all 0.5s ease;
    box-shadow: inset 0 0 20px rgba(255,255,255,0.5);
}

.service-card:hover .service-icon-wrapper {
    background: var(--gradient-primary);
    color: var(--light-text);
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 10px 20px rgba(42, 129, 184, 0.3);
}

.service-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: var(--dark-text);
    font-weight: 800;
}

.service-card p {
    color: var(--gray-text);
    font-size: 1.05rem;
    line-height: 1.7;
}

/* Offers */
.offers-grid {
    grid-template-columns: repeat(auto-fit, minmax(500px, 1fr));
}

.offer-card {
    display: flex;
    background: var(--light-text);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-soft);
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.offer-card:hover {
    box-shadow: var(--shadow-hover);
    transform: translateY(-10px) scale(1.02);
}

.offer-img {
    width: 45%;
    position: relative;
    overflow: hidden;
}

.offer-img img {
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.offer-card:hover .offer-img img {
    transform: scale(1.15);
}

.discount-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    color: var(--primary-blue);
    padding: 8px 18px;
    border-radius: 30px;
    font-weight: 800;
    font-size: 0.95rem;
    z-index: 2;
}

html[lang="en"] .discount-badge {
    right: auto;
    left: 20px;
}

.offer-details {
    width: 55%;
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.offer-meta {
    display: flex;
    gap: 20px;
    color: var(--gray-text);
    font-size: 0.95rem;
    margin-bottom: 15px;
    font-weight: 600;
}

.offer-meta span {
    display: flex;
    align-items: center;
    gap: 8px;
}

.offer-meta i {
    color: var(--primary-blue);
    font-size: 1.2rem;
}

.offer-details h3 {
    font-size: 1.6rem;
    margin-bottom: 15px;
    line-height: 1.4;
    color: var(--dark-text);
    font-weight: 800;
}

.offer-desc {
    color: var(--gray-text);
    margin-bottom: 25px;
    font-size: 1.05rem;
}

.offer-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: auto;
}

.old-price {
    text-decoration: line-through;
    color: var(--gray-text);
    font-size: 1.1rem;
    margin-left: 10px;
}
html[lang="en"] .old-price {
    margin-left: 0;
    margin-right: 10px;
}

.new-price {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--primary-blue);
}

/* Why Us */
.why-us-container {
    display: flex;
    align-items: center;
    gap: 80px;
}

.why-us-content {
    flex: 1;
}

.why-us-content h2 {
    font-size: 2.8rem;
    color: var(--dark-text);
    margin-bottom: 20px;
    font-weight: 800;
}

.why-us-content p {
    color: var(--gray-text);
    margin-bottom: 40px;
    font-size: 1.15rem;
    line-height: 1.8;
}

.features-list li {
    margin-bottom: 25px;
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--dark-text);
}

.feature-icon {
    width: 35px;
    height: 35px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--light-text);
    font-size: 1.5rem;
    box-shadow: 0 4px 10px rgba(42, 129, 184, 0.3);
}

.why-us-image {
    flex: 1;
}

.image-wrapper {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-hover);
}

.image-wrapper img {
    transition: transform 0.8s ease;
}

.image-wrapper:hover img {
    transform: scale(1.05);
}

.floating-badge {
    position: absolute;
    bottom: 30px;
    right: -30px;
    padding: 25px 35px;
    display: flex;
    align-items: center;
    gap: 20px;
    animation: float 5s ease-in-out infinite;
}

html[lang="en"] .floating-badge {
    right: auto;
    left: -30px;
}

.badge-icon {
    width: 60px;
    height: 60px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--light-text);
    box-shadow: 0 5px 15px rgba(42, 129, 184, 0.3);
}

.badge-text h4 {
    font-size: 1.8rem;
    color: var(--dark-text);
    font-weight: 800;
}

.badge-text p {
    font-size: 1.05rem;
    color: var(--gray-text);
    font-weight: 600;
}

@keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
    100% { transform: translateY(0px); }
}

/* Partners / Trust Badges */
.partners {
    padding: 80px 0;
}

.partners-logo {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 60px;
}

.trust-badge {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--gray-text);
    font-size: 1.2rem;
    font-weight: 700;
    transition: all 0.3s ease;
    filter: grayscale(100%);
    opacity: 0.7;
}

.trust-badge:hover {
    filter: grayscale(0%);
    opacity: 1;
    color: var(--primary-blue);
    transform: translateY(-5px);
}

.trust-badge i {
    font-size: 3.5rem;
}

/* CTA */
.cta-section {
    background: url('https://images.unsplash.com/photo-1476514525535-07fb3b4ae5f1?ixlib=rb-4.0.3&auto=format&fit=crop&w=1920&q=80') center/cover fixed;
    position: relative;
    padding: 150px 0;
    text-align: center;
}

.cta-section::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(42, 129, 184, 0.9), rgba(77, 179, 162, 0.85));
    z-index: 0;
}

.cta-container {
    position: relative;
    z-index: 1;
    color: var(--light-text);
}

.cta-container h2 {
    font-size: 3.5rem;
    margin-bottom: 25px;
    font-weight: 800;
    text-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

.cta-container p {
    font-size: 1.3rem;
    margin-bottom: 50px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.cta-container .btn-primary {
    background: var(--light-text);
    color: var(--primary-blue);
}

.cta-container .btn-primary:hover {
    background: var(--dark-text);
    color: var(--light-text);
}

/* Footer */
.footer {
    background: #0f2430; /* Darker premium blue */
    color: var(--light-text);
    padding: 100px 0 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 50px;
    margin-bottom: 80px;
}

.footer-logo {
    height: 150px; /* Large logo in footer */
    margin-bottom: 25px;
    filter: brightness(0) invert(1); /* Make logo white for dark footer if it's dark text */
}

.footer-desc {
    color: rgba(255,255,255,0.7);
    margin-bottom: 30px;
    font-size: 1.05rem;
    line-height: 1.8;
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-links a {
    width: 45px;
    height: 45px;
    background: rgba(255,255,255,0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 1.3rem;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: var(--gradient-primary);
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(42, 129, 184, 0.4);
}

.footer-col h4 {
    font-size: 1.3rem;
    margin-bottom: 30px;
    color: var(--light-text);
    position: relative;
    padding-bottom: 15px;
    font-weight: 700;
}

.footer-col h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 40px;
    height: 3px;
    background: var(--gradient-primary);
    border-radius: 2px;
}
html[lang="en"] .footer-col h4::after {
    right: auto;
    left: 0;
}

.footer-col ul li {
    margin-bottom: 18px;
}

.footer-col ul li a {
    color: rgba(255,255,255,0.7);
    font-size: 1.05rem;
    transition: all 0.3s ease;
}

.footer-col ul li a:hover {
    color: var(--secondary-turquoise);
    padding-right: 8px; /* RTL default */
}
html[lang="en"] .footer-col ul li a:hover {
    padding-right: 0;
    padding-left: 8px;
}

.contact-col li {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    color: rgba(255,255,255,0.7);
    font-size: 1.05rem;
    margin-bottom: 20px;
}

.contact-icon {
    width: 40px;
    height: 40px;
    background: rgba(42, 129, 184, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--secondary-turquoise);
    font-size: 1.3rem;
    flex-shrink: 0;
}

.footer-trust {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding: 30px 0;
}

.trust-container {
    display: flex;
    justify-content: center;
    align-items: center;
}

.payment-methods {
    display: flex;
    gap: 20px;
    font-size: 2.5rem;
    color: rgba(255,255,255,0.5);
}

.payment-methods i {
    transition: all 0.3s ease;
}

.payment-methods i:hover {
    color: var(--light-text);
}

.footer-bottom {
    background: #0b1a23;
    padding: 25px 0;
    text-align: center;
    color: rgba(255,255,255,0.5);
    font-size: 1rem;
    font-family: var(--font-en);
}

/* Floating WhatsApp */
.floating-whatsapp {
    position: fixed;
    bottom: 40px;
    right: 40px;
    width: 60px;
    height: 60px;
    background: #25D366;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    box-shadow: 0 10px 20px rgba(37, 211, 102, 0.4);
    z-index: 1000;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

html[lang="en"] .floating-whatsapp {
    right: auto;
    left: 40px;
}

.floating-whatsapp:hover {
    transform: scale(1.1) translateY(-5px);
    box-shadow: 0 15px 25px rgba(37, 211, 102, 0.5);
    color: white;
}

/* Animations */
.fade-up {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94), transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.fade-up.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Preloader with Logo */
#preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--light-text);
    z-index: 9999;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: opacity 0.6s ease;
}

.loader-content {
    text-align: center;
}

.loader-logo {
    height: 160px;
    margin-bottom: 30px;
    animation: pulse 2s infinite ease-in-out;
}

.loader-bar {
    width: 150px;
    height: 4px;
    background: rgba(42, 129, 184, 0.2);
    border-radius: 4px;
    margin: 0 auto;
    position: relative;
    overflow: hidden;
}

.loader-bar::after {
    content: '';
    position: absolute;
    top: 0; left: 0;
    height: 100%;
    width: 40%;
    background: var(--gradient-primary);
    border-radius: 4px;
    animation: load 1.5s infinite ease-in-out;
}

@keyframes pulse {
    0% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.05); opacity: 0.8; }
    100% { transform: scale(1); opacity: 1; }
}

@keyframes load {
    0% { left: -40%; }
    100% { left: 100%; }
}

/* --- New Homepage Sections --- */

/* Features Grid */
.features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-top: 50px;
}

.feature-card {
    background: #ffffff;
    border-radius: var(--radius-lg);
    padding: 40px 30px;
    text-align: center;
    box-shadow: var(--shadow-sm);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 1px solid rgba(0,0,0,0.03);
}

.feature-card:hover {
    transform: translateY(-15px);
    box-shadow: var(--shadow-md);
    border-color: var(--accent-color);
}

.feature-card-icon {
    font-size: 3.5rem;
    color: var(--primary-color);
    margin-bottom: 25px;
    display: inline-flex;
    padding: 20px;
    background: rgba(47, 143, 205, 0.05);
    border-radius: 50%;
    transition: all 0.3s ease;
}

.feature-card:hover .feature-card-icon {
    background: var(--primary-color);
    color: #ffffff;
    transform: scale(1.1) rotate(5deg);
}

.feature-card h3 {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--dark-text);
    margin-bottom: 15px;
}

/* Religious Tourism Section */
.religious-tourism-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-top: 50px;
}

.religious-card {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: all 0.5s ease;
    cursor: pointer;
}

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

.religious-img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    transition: transform 0.8s ease;
}

.religious-card:hover .religious-img {
    transform: scale(1.1);
}

.religious-content {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 40px 30px;
    background: linear-gradient(to top, rgba(15, 36, 48, 0.95) 0%, rgba(15, 36, 48, 0.8) 50%, rgba(15, 36, 48, 0) 100%);
    color: #ffffff;
}

.religious-card h3 {
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--accent-color);
    margin-bottom: 10px;
    text-shadow: 0 2px 10px rgba(0,0,0,0.5);
}

.religious-desc {
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 25px;
    opacity: 0.9;
}

.religious-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    margin-bottom: 25px;
}

.religious-meta div {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 1.05rem;
    font-weight: 600;
}

.religious-meta i {
    color: var(--accent-color);
    font-size: 1.3rem;
}

.btn-religious {
    width: 100%;
    border-color: var(--accent-color);
    color: var(--accent-color);
}

.btn-religious:hover {
    background: var(--accent-color);
    color: var(--dark-text);
    color: var(--dark-text);
}

/* --------------------------------------
   SECTION 6: CUSTOMER REVIEWS (Slider)
--------------------------------------- */
.testimonials {
    overflow: hidden;
}

.testimonial-slider-container {
    position: relative;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
}

.testimonial-slider {
    display: flex;
    gap: 30px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    padding: 20px 10px 40px;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.testimonial-slider::-webkit-scrollbar {
    display: none;
}

.testimonial-card {
    flex: 0 0 100%;
    max-width: 100%;
    background: rgba(255,255,255,0.9);
    border-radius: var(--radius-lg);
    padding: 40px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.05);
    scroll-snap-align: center;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    border: 1px solid rgba(0,0,0,0.05);
}

@media (min-width: 768px) {
    .testimonial-card {
        flex: 0 0 calc(50% - 15px);
        max-width: calc(50% - 15px);
    }
}

@media (min-width: 1024px) {
    .testimonial-card {
        flex: 0 0 calc(33.333% - 20px);
        max-width: calc(33.333% - 20px);
    }
}

.testimonial-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 45px rgba(0,0,0,0.1);
}

.testimonial-header {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 25px;
}

.testimonial-img {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    object-fit: cover;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.testimonial-info h4 {
    font-size: 1.2rem;
    color: var(--dark-text);
    margin-bottom: 5px;
}

.testimonial-info span {
    font-size: 0.95rem;
    color: var(--gray-text);
    display: flex;
    align-items: center;
    gap: 5px;
}

.testimonial-info span i {
    color: var(--primary-blue);
}

.testimonial-stars {
    color: #ffc107;
    font-size: 1.2rem;
    margin-bottom: 15px;
    display: flex;
    gap: 5px;
}

.testimonial-text {
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--gray-text);
    font-style: italic;
    position: relative;
}

.testimonial-text::before {
    content: '"';
    font-size: 4rem;
    color: rgba(42,129,184,0.1);
    position: absolute;
    top: -20px;
    right: -10px;
    line-height: 1;
    font-family: serif;
}

html[lang="en"] .testimonial-text::before {
    right: auto;
    left: -10px;
}

.slider-controls {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 20px;
}

.slider-btn {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: #fff;
    border: 1px solid rgba(0,0,0,0.1);
    color: var(--dark-text);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.slider-btn:hover {
    background: var(--primary-blue);
    color: #fff;
    border-color: var(--primary-blue);
    transform: scale(1.1);
}


/* --------------------------------------
   SECTION 7: TRUSTED PARTNERS
--------------------------------------- */
.partners-section {
    padding: 60px 0;
    border-top: 1px solid rgba(0,0,0,0.05);
    background: #fff;
}

.partners-logos-container {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 50px;
}

.partner-logo {
    height: 50px;
    object-fit: contain;
    filter: grayscale(100%) opacity(0.5);
    transition: all 0.4s ease;
    cursor: pointer;
}

.partner-logo:hover {
    filter: grayscale(0%) opacity(1);
    transform: scale(1.05);
}


/* --------------------------------------
   SECTION 8: COMPANY STATISTICS
--------------------------------------- */
.stats-section {
    position: relative;
    background: linear-gradient(rgba(10,34,64,0.9), rgba(10,34,64,0.9)), url('https://images.unsplash.com/photo-1436491865332-7a61a109cc05?ixlib=rb-4.0.3&auto=format&fit=crop&w=1920&q=80') center/cover fixed;
    color: #fff;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    text-align: center;
}

.stat-card {
    padding: 40px 20px;
    background: rgba(255,255,255,0.05);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(255,255,255,0.1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    transition: transform 0.4s ease;
}

.stat-card:hover {
    transform: translateY(-10px);
    background: rgba(255,255,255,0.1);
}

.stat-icon {
    font-size: 3rem;
    color: var(--accent-color);
    margin-bottom: 20px;
}

.stat-number {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 10px;
    font-family: 'Inter', sans-serif;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.stat-text {
    font-size: 1.1rem;
    font-weight: 500;
    color: rgba(255,255,255,0.8);
}


/* --------------------------------------
   SECTION 9: TRUST BADGES
--------------------------------------- */
.trust-badges-section {
    padding: 60px 0;
    background: #f8f9fa;
    border-bottom: 1px solid rgba(0,0,0,0.05);
}

.trust-badges-grid {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 30px;
}

.premium-trust-badge {
    display: flex;
    align-items: center;
    gap: 15px;
    background: #fff;
    padding: 20px 30px;
    border-radius: 50px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
    border: 1px solid rgba(0,0,0,0.02);
}

.premium-trust-badge:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.08);
}

.premium-trust-badge i {
    font-size: 2rem;
    color: var(--primary-blue);
}

.premium-trust-badge span {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--dark-text);
}


/* --------------------------------------
   TOP BAR
--------------------------------------- */
.top-bar {
    background-color: var(--primary-blue);
    color: white;
    padding: 8px 0;
    font-size: 0.9rem;
    position: relative;
    z-index: 1001;
}

.top-bar-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.top-bar-info {
    display: flex;
    gap: 20px;
}

.top-bar-info span {
    display: flex;
    align-items: center;
    gap: 5px;
}

.top-bar-actions {
    display: flex;
    align-items: center;
    gap: 20px;
}

.top-social {
    display: flex;
    gap: 12px;
}

.top-social a {
    color: white;
    font-size: 1.1rem;
    transition: transform 0.3s ease;
}

.top-social a:hover {
    transform: translateY(-2px);
    color: var(--accent-gold);
}

.top-lang .lang-btn {
    background: transparent;
    color: white;
    border: 1px solid rgba(255,255,255,0.3);
    padding: 4px 12px;
    border-radius: 20px;
    cursor: pointer;
    font-size: 0.85rem;
    transition: all 0.3s ease;
}

.top-lang .lang-btn:hover {
    background: white;
    color: var(--primary-blue);
}

/* Navbar adjustment for Top Bar */
.navbar {
    top: 38px;
}
.navbar.scrolled {
    top: 0;
}

/* --------------------------------------
   FINAL CTA SECTION
--------------------------------------- */
.final-cta-section {
    padding: 100px 0;
    background: linear-gradient(rgba(0, 48, 73, 0.85), rgba(0, 48, 73, 0.85)), url('../images/hero-bg.jpg') center/cover fixed;
    text-align: center;
    color: white;
}

.final-cta-title {
    font-size: 2.8rem;
    font-weight: 800;
    margin-bottom: 40px;
    font-family: 'Cairo', sans-serif;
}

.final-cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.btn-whatsapp {
    background-color: #25D366;
    color: white;
    display: flex;
    align-items: center;
    gap: 8px;
}

.btn-whatsapp:hover {
    background-color: #128C7E;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(37, 211, 102, 0.3);
}

.btn-outline-white {
    background: transparent;
    border: 2px solid white;
    color: white;
}

.btn-outline-white:hover {
    background: white;
    color: var(--primary-blue);
    transform: translateY(-3px);
}

/* --------------------------------------
   PREMIUM FOOTER
--------------------------------------- */
.premium-footer {
    background-color: #0b1c2c;
    color: rgba(255, 255, 255, 0.8);
    padding: 80px 0 0 0;
}

.footer-logo {
    filter: brightness(0) invert(1);
    margin-bottom: 20px;
}

.footer-social-links {
    display: flex;
    gap: 15px;
    margin-top: 25px;
}

.social-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    transition: all 0.3s ease;
}

.social-icon:hover {
    background: var(--accent-gold);
    color: white;
    transform: translateY(-5px);
}

.footer-title {
    color: white;
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 10px;
}

.footer-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 40px;
    height: 3px;
    background: var(--accent-gold);
}
html[lang="en"] .footer-title::after {
    right: auto;
    left: 0;
}

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

.footer-links-list li {
    margin-bottom: 15px;
}

.footer-links-list a {
    color: rgba(255, 255, 255, 0.8);
    transition: color 0.3s ease, padding-right 0.3s ease;
    display: flex;
    align-items: center;
    gap: 5px;
}

html[lang="en"] .footer-links-list a {
    transition: color 0.3s ease, padding-left 0.3s ease;
}

.footer-links-list a:hover {
    color: var(--accent-gold);
    padding-right: 8px;
}

html[lang="en"] .footer-links-list a:hover {
    padding-right: 0;
    padding-left: 8px;
}

.footer-text {
    margin-bottom: 20px;
    line-height: 1.6;
}

.newsletter-form {
    display: flex;
    margin-bottom: 30px;
}

.newsletter-form input {
    flex: 1;
    padding: 12px 15px;
    border: none;
    border-radius: 0 4px 4px 0;
    background: rgba(255,255,255,0.1);
    color: white;
    outline: none;
}

html[lang="en"] .newsletter-form input {
    border-radius: 4px 0 0 4px;
}

.newsletter-form .btn {
    border-radius: 4px 0 0 4px;
    padding: 12px 20px;
}

html[lang="en"] .newsletter-form .btn {
    border-radius: 0 4px 4px 0;
}

.footer-contact-info {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 10px;
    color: rgba(255,255,255,0.9);
}

.contact-item i {
    color: var(--accent-gold);
    font-size: 1.2rem;
}

.footer-bottom-bar {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding: 20px 0;
    margin-top: 60px;
}

.bottom-bar-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* Glow effects and Micro Interactions */
.glow-btn {
    position: relative;
    overflow: hidden;
}

.glow-btn::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.3) 0%, transparent 60%);
    opacity: 0;
    transition: opacity 0.3s ease;
    transform: scale(0.5);
}

.glow-btn:hover::after {
    opacity: 1;
    transform: scale(1);
    animation: pulseGlow 1.5s infinite;
}

@keyframes pulseGlow {
    0% { transform: scale(0.9); opacity: 0.8; }
    50% { transform: scale(1.1); opacity: 0.4; }
    100% { transform: scale(0.9); opacity: 0.8; }
}

.parallax-bg {
    background-attachment: fixed;
}


/* Responsive Updates */
@media (max-width: 1024px) {
    .features-grid { grid-template-columns: repeat(2, 1fr); }
    .religious-tourism-grid { grid-template-columns: repeat(2, 1fr); }
    .stats-grid { grid-template-columns: repeat(2, 1fr); }
    .religious-img { height: 400px; }
    .cinematic-title { font-size: 3.5rem; line-height: 1.3; }
    .cinematic-subtitle { font-size: 1.3rem; }
    .hero-cta-group { flex-direction: column; gap: 15px; }
    .hero-booking-panel { 
        flex-direction: column; 
        align-items: stretch; 
        gap: 20px; 
        border-radius: var(--radius-lg); 
        padding: 30px;
    }
    .booking-inputs-grid {
        flex-direction: column;
        align-items: stretch;
    }
    .search-item { 
        border: none !important; 
        padding: 10px 0 !important; 
    }
    .booking-action {
        margin: 10px 0 0 0 !important;
    }
    .cinematic-search-btn {
        width: 100%;
    }
    .offer-card { flex-direction: column; }
    .offer-img, .offer-details { width: 100%; }
    .offer-img { height: 300px; }
    .why-us-container { flex-direction: column; }
    .floating-badge { right: 20px; bottom: 20px; }
    html[lang="en"] .floating-badge { left: 20px; right: auto; }
    .footer-grid { grid-template-columns: 1fr 1fr; }
    
    .top-bar-info { display: none; } /* Hide info on tablet/mobile to save space */
    .top-bar-container { justify-content: flex-end; }
    .navbar { top: 38px; }
}

@media (max-width: 768px) {
    .features-grid { grid-template-columns: 1fr; }
    .religious-tourism-grid { grid-template-columns: 1fr; }
    .stats-grid { grid-template-columns: 1fr; }
    .nav-links {
        display: none; 
    }
    .mobile-menu-btn { display: block; }
    .cinematic-title { font-size: 2.4rem; line-height: 1.3; }
    .cinematic-subtitle { font-size: 1.1rem; margin-bottom: 30px; }
    .cinematic-hero { min-height: 1000px; }
    .section { padding: 80px 0; }
    .section-header h2 { font-size: 2.2rem; }
    .dest-grid { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr; gap: 40px; }
    .partners-logo { gap: 30px; }
    .trust-badge i { font-size: 2.5rem; }
    .floating-whatsapp { width: 50px; height: 50px; font-size: 2rem; bottom: 20px; right: 20px; }
    html[lang="en"] .floating-whatsapp { left: 20px; right: auto; }
    
    .final-cta-title { font-size: 2rem; }
    .bottom-bar-container { flex-direction: column; gap: 15px; text-align: center; }
}

@media (min-width: 1025px) {
    .hide-on-desktop {
        display: none;
    }
}
