/* ============================================
   DAFNE TRAVEL – Aurora-Inspired Design System
   ============================================ */

:root {
    --primary: #0a0e27;
    --primary-light: #131842;
    --primary-dark: #080b1e;
    --secondary: #00d4aa;
    --secondary-dark: #00b894;
    --accent: #7c5cfc;
    --accent-light: #a78bfa;
    --accent-dark: #5b21b6;
    --aurora-green: #00d4aa;
    --aurora-purple: #7c5cfc;
    --aurora-blue: #3b82f6;
    --aurora-pink: #ec4899;
    --whatsapp: #25d366;
    --background: #f0f4f8;
    --surface: #ffffff;
    --surface-glass: rgba(255, 255, 255, 0.85);
    --text: #1a1a2e;
    --text-light: #64748b;
    --white: #ffffff;
    --shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
    --shadow-lg: 0 20px 60px rgba(0, 0, 0, 0.12);
    --glass: rgba(255, 255, 255, 0.15);
    --radius: 20px;
    --radius-sm: 12px;
    --radius-xs: 8px;
}

[data-theme="dark"] {
    --primary: #f0f4f8;
    --primary-light: #e2e8f0;
    --background: #0a0e27;
    --surface: #131842;
    --surface-glass: rgba(19, 24, 66, 0.9);
    --text: #e2e8f0;
    --text-light: #94a3b8;
    --shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    --shadow-lg: 0 20px 60px rgba(0, 0, 0, 0.4);
    --glass: rgba(0, 0, 0, 0.3);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Inter', system-ui, -apple-system, sans-serif;
}

body {
    background-color: var(--background);
    color: var(--text);
    overflow-x: hidden;
    line-height: 1.6;
    transition: background-color 0.4s ease, color 0.4s ease;
}

a {
    text-decoration: none;
    color: inherit;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding-left: 1.5rem;
    padding-right: 1.5rem;
}

/* Animations */
.animate-fade {
    animation: fadeIn 0.8s ease forwards;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes shimmer {
    0% {
        background-position: -200% center;
    }

    100% {
        background-position: 200% center;
    }
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }
}

@keyframes pulse-glow {

    0%,
    100% {
        box-shadow: 0 0 20px rgba(0, 212, 170, 0.3);
    }

    50% {
        box-shadow: 0 0 40px rgba(0, 212, 170, 0.6);
    }
}

/* ============================================
   NAVIGATION
   ============================================ */
#main-nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 0.8rem 0.3rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    justify-content: center;
}

.nav-inner {
    max-width: 1200px;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.5rem 1rem;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.home-page .nav-inner {
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(255, 255, 255, 0.08);
}

#main-nav.scrolled {
    padding: 0.8rem 0,3rem;
}

#main-nav.scrolled .nav-inner {
    background: var(--surface-glass);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
    border-color: rgba(0, 0, 0, 0.06);
}

[data-theme="dark"] #main-nav.scrolled .nav-inner {
    background: rgba(10, 14, 39, 0.92);
    border-color: rgba(255, 255, 255, 0.06);
}

.nav-logo {
    font-weight: 800;
    font-size: 1.6rem;
    letter-spacing: -0.5px;
    transition: all 0.3s;
}

.home-page .nav-logo {
    color: #fff;
}

.home-page #main-nav.scrolled .nav-logo {
    color: var(--text);
}

.nav-logo span {
    color: var(--secondary);
}

.nav-links {
    display: flex;
    gap: 0.5rem;
    align-items: center;
}

.nav-link {
    font-weight: 600;
    font-size: 0.9rem;
    opacity: 0.8;
    transition: all 0.3s ease;
    padding: 0.5rem 1rem;
    border-radius: 10px;
    position: relative;
}

.home-page .nav-link {
    color: #fff !important;
}

.home-page #main-nav.scrolled .nav-link {
    color: var(--text) !important;
}

.nav-link:hover,
.nav-link.active {
    opacity: 1;
    color: var(--secondary) !important;
}

.nav-link.active {
    background: rgba(0, 212, 170, 0.1);
}

.nav-link.active::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 50%;
    transform: translateX(-50%);
    width: 20px;
    height: 3px;
    background: var(--secondary);
    border-radius: 3px;
}

/* Language Selector */
.lang-selector {
    display: flex;
    gap: 0.4rem;
    background: rgba(255, 255, 255, 0.1);
    padding: 4px 10px;
    border-radius: 20px;
    align-items: center;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.15);
}

.home-page #main-nav.scrolled .lang-selector {
    background: var(--background);
    border-color: rgba(0, 0, 0, 0.08);
}

.lang-link {
    color: var(--text);
    font-weight: 700;
    font-size: 0.72rem;
    transition: opacity 0.3s;
}

.home-page .lang-link {
    color: #fff;
}

.home-page #main-nav.scrolled .lang-link {
    color: var(--text);
}

/* Theme Toggle & Search */
.theme-toggle,
.search-toggle-btn {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    border: 1px solid rgba(255, 255, 255, 0.2);
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    transition: all 0.3s;
    font-size: 0.9rem;
    backdrop-filter: blur(10px);
}

.home-page #main-nav.scrolled .theme-toggle,
.home-page #main-nav.scrolled .search-toggle-btn {
    background: var(--background);
    color: var(--text);
    border-color: rgba(0, 0, 0, 0.08);
}

:not(.home-page) .theme-toggle,
:not(.home-page) .search-toggle-btn {
    background: var(--background);
    color: var(--text);
    border-color: rgba(0, 0, 0, 0.08);
}

:not(.home-page) .nav-link {
    color: var(--text) !important;
}

:not(.home-page) .nav-logo {
    color: var(--text);
}

:not(.home-page) .lang-selector {
    background: var(--background);
    border-color: rgba(0, 0, 0, 0.08);
}

:not(.home-page) .lang-link {
    color: var(--text);
}

:not(.home-page) .nav-inner {
    background: var(--surface-glass);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
    border-color: rgba(0, 0, 0, 0.06);
}

[data-theme="dark"] .theme-toggle,
[data-theme="dark"] .search-toggle-btn {
    border-color: rgba(255, 255, 255, 0.15);
}

.theme-toggle:hover,
.search-toggle-btn:hover {
    background: var(--secondary);
    color: white;
    border-color: var(--secondary);
    transform: scale(1.05);
}

/* Mobile Menu Button */
.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    color: #fff;
    font-size: 1.5rem;
    cursor: pointer;
    z-index: 2001;
}

.home-page #main-nav.scrolled .mobile-menu-btn {
    color: var(--text);
}

:not(.home-page) .mobile-menu-btn {
    color: var(--text);
}

/* ============================================
   SEARCH OVERLAY
   ============================================ */
.search-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(10, 14, 39, 0.8);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    z-index: 9999;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    padding-top: 120px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.search-overlay.active {
    opacity: 1;
    visibility: visible;
}

.search-bar-container {
    width: 90%;
    max-width: 650px;
    transform: translateY(-20px);
    transition: transform 0.3s ease;
}

.search-overlay.active .search-bar-container {
    transform: translateY(0);
}

.search-input-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    background: var(--surface);
    border-radius: 16px;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.25);
    overflow: hidden;
    border: 2px solid rgba(0, 212, 170, 0.3);
}

.search-input-wrapper .search-icon {
    position: absolute;
    left: 20px;
    color: var(--secondary);
    font-size: 1.1rem;
}

.search-input-wrapper input {
    width: 100%;
    padding: 20px 60px 20px 50px;
    border: none;
    background: transparent;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text);
    outline: none;
    font-family: 'Inter', sans-serif;
}

.search-input-wrapper input::placeholder {
    color: var(--text-light);
    font-weight: 500;
}

.search-close-btn {
    position: absolute;
    right: 12px;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--background);
    border: none;
    color: var(--text-light);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s;
}

.search-close-btn:hover {
    background: #ef4444;
    color: white;
}

.search-results {
    margin-top: 12px;
    max-height: 400px;
    overflow-y: auto;
    border-radius: 16px;
}

.search-section {
    background: var(--surface);
    border-radius: 14px;
    padding: 1rem;
    margin-bottom: 8px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.search-section-title {
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-light);
    padding: 0.5rem 0.8rem;
    margin-bottom: 0.3rem;
}

.search-section-title i {
    color: var(--secondary);
    margin-right: 8px;
}

.search-result-item {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 10px 12px;
    border-radius: 12px;
    transition: background 0.2s;
    text-decoration: none;
    color: var(--text);
}

.search-result-item:hover {
    background: var(--background);
}

.search-result-img {
    width: 50px;
    height: 50px;
    border-radius: 10px;
    background-size: cover;
    background-position: center;
    background-color: #e2e8f0;
    flex-shrink: 0;
}

.search-result-transfer-icon {
    width: 50px;
    height: 50px;
    border-radius: 10px;
    background: rgba(0, 212, 170, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--secondary);
    font-size: 1.2rem;
    flex-shrink: 0;
}

.search-result-info {
    flex: 1;
    min-width: 0;
}

.search-result-name {
    font-weight: 700;
    font-size: 0.95rem;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.search-result-meta {
    display: flex;
    gap: 12px;
    font-size: 0.8rem;
    color: var(--text-light);
    margin-top: 2px;
}

.search-result-price {
    color: var(--secondary);
    font-weight: 700;
}

.search-loading {
    text-align: center;
    padding: 2rem;
    background: var(--surface);
    border-radius: 14px;
    color: var(--secondary);
    font-size: 1.5rem;
}

.search-no-results {
    text-align: center;
    padding: 2rem;
    background: var(--surface);
    border-radius: 14px;
    color: var(--text-light);
}

.search-no-results i {
    font-size: 2rem;
    margin-bottom: 0.5rem;
    display: block;
    opacity: 0.4;
}

/* ============================================
   HERO SECTION (WebGL Northern Lights)
   ============================================ */
.hero-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    padding: 5.5rem 1.5rem 0;
}

.hero-section {
    position: relative;
    width: 100%;
    height: 80vh;
    min-height: 500px;
    max-height: 700px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 24px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.hero-canvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    border-radius: 24px;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg,
            rgba(10, 14, 39, 0.3) 0%,
            rgba(10, 14, 39, 0.1) 40%,
            rgba(10, 14, 39, 0.5) 80%,
            rgba(10, 14, 39, 0.85) 100%);
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 3;
    text-align: center;
    color: #fff;
    max-width: 800px;
    padding: 0 2rem;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: var(--secondary);
    letter-spacing: 1px;
    text-transform: uppercase;
}

.hero-badge i {
    font-size: 0.9rem;
}

.hero-content h1 {
    font-size: 4rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1.2rem;
    letter-spacing: -1px;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.hero-content h1 span {
    background: linear-gradient(135deg, var(--secondary), var(--accent-light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-content p {
    font-size: 1.2rem;
    opacity: 0.85;
    margin-bottom: 2.5rem;
    line-height: 1.7;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

.hero-buttons .btn {
    padding: 16px 36px;
    border-radius: 14px;
    font-weight: 700;
    font-size: 1rem;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: none;
    text-decoration: none;
}

.hero-buttons .btn-primary {
    background: linear-gradient(135deg, var(--secondary), var(--secondary-dark));
    color: #0a0e27;
    box-shadow: 0 8px 30px rgba(0, 212, 170, 0.4);
}

.hero-buttons .btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 40px rgba(0, 212, 170, 0.6);
}

.hero-buttons .btn-outline {
    background: rgba(255, 255, 255, 0.08);
    color: #fff;
    border: 2px solid rgba(255, 255, 255, 0.25);
    backdrop-filter: blur(10px);
}

.hero-buttons .btn-outline:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-3px);
}

.hero-scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    animation: float 3s ease-in-out infinite;
}

.hero-scroll-indicator .scroll-line {
    width: 1px;
    height: 30px;
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0.5), transparent);
}

/* ============================================
   SECTION COMMON STYLES
   ============================================ */
.section {
    padding: 6rem 0;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(0, 212, 170, 0.1);
    color: var(--secondary);
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 1rem;
}

[data-theme="dark"] .section-badge {
    background: rgba(0, 212, 170, 0.15);
}

.section-header h2 {
    font-size: 2.8rem;
    font-weight: 800;
    letter-spacing: -1px;
    margin-bottom: 1rem;
    color: var(--text);
    line-height: 1.2;
}

.section-header p {
    font-size: 1.1rem;
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.7;
}

/* ============================================
   TOURS GRID (Homepage)
   ============================================ */
.tours-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.tour-card {
    background: var(--surface);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}

.tour-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.tour-card-image {
    height: 240px;
    background-size: cover;
    background-position: center;
    position: relative;
    overflow: hidden;
}

.tour-card-image::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 80px;
    background: linear-gradient(to top, var(--surface), transparent);
}

.tour-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.tour-card:hover .tour-card-image img,
.tour-card:hover .tour-card-image {
    transform: scale(1.05);
}

.tour-price-badge {
    position: absolute;
    top: 16px;
    right: 16px;
    background: linear-gradient(135deg, var(--secondary), var(--secondary-dark));
    color: #ffffff;
    padding: 6px 16px;
    border-radius: 50px;
    font-weight: 800;
    font-size: 0.95rem;
    z-index: 2;
    box-shadow: 0 4px 15px rgba(0, 212, 170, 0.4);
}

.tour-card-body {
    padding: 1.5rem;
}

.tour-card-body h3 {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    line-height: 1.4;
    color: var(--text);
}

.tour-card-meta {
    display: flex;
    gap: 16px;
    font-size: 0.82rem;
    color: var(--text-light);
    margin-bottom: 1.2rem;
}

.tour-card-meta span {
    display: flex;
    align-items: center;
    gap: 5px;
}

.tour-card-meta i {
    color: var(--secondary);
}

.tour-card-actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
}

.tour-card-actions .btn {
    padding: 10px 16px;
    border-radius: var(--radius-xs);
    font-weight: 700;
    font-size: 0.82rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    cursor: pointer;
    transition: all 0.3s;
    border: none;
    text-decoration: none;
}

/* Also keep old tour-grid / tour-image / tour-content for tours.php page */
.tour-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 2rem;
    padding: 2rem 0;
}

.tour-image {
    height: 220px;
    background-size: cover;
    background-position: center;
    position: relative;
}

.tour-content {
    padding: 1.5rem;
}

.tour-price-tag {
    position: absolute;
    bottom: 1rem;
    right: 1rem;
    background: var(--secondary);
    color: #0a0e27;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-weight: 800;
}

.tour-actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    margin-top: 1.5rem;
}

/* ============================================
   ABOUT / BOUTIQUE SECTION
   ============================================ */
.about-section {
    background: var(--surface);
    position: relative;
    overflow: hidden;
}

.about-section::before {
    content: '';
    position: absolute;
    top: -200px;
    right: -200px;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(0, 212, 170, 0.06) 0%, transparent 70%);
    border-radius: 50%;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-text h2 {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    letter-spacing: -1px;
    line-height: 1.2;
}

.about-text h2 span {
    color: var(--secondary);
}

.about-text p {
    font-size: 1.05rem;
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 2rem;
}

.about-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.about-feature {
    display: flex;
    gap: 14px;
    align-items: flex-start;
}

.about-feature-icon {
    width: 48px;
    height: 48px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    flex-shrink: 0;
    transition: transform 0.3s;
}

.about-feature:hover .about-feature-icon {
    transform: scale(1.1);
}

.about-feature-icon.green {
    background: rgba(0, 212, 170, 0.12);
    color: var(--secondary);
}

.about-feature-icon.purple {
    background: rgba(124, 92, 252, 0.12);
    color: var(--accent);
}

.about-feature-icon.blue {
    background: rgba(59, 130, 246, 0.12);
    color: var(--aurora-blue);
}

.about-feature-icon.pink {
    background: rgba(236, 72, 153, 0.12);
    color: var(--aurora-pink);
}

.about-feature h4 {
    font-size: 0.95rem;
    font-weight: 700;
    margin-bottom: 4px;
}

.about-feature p {
    font-size: 0.85rem;
    color: var(--text-light);
    line-height: 1.5;
    margin-bottom: 0;
}

/* Stats Row */
.stats-row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin-top: 4rem;
}

.stat-card {
    text-align: center;
    padding: 2rem 1rem;
    border-radius: var(--radius);
    background: var(--background);
    transition: transform 0.3s;
}

[data-theme="dark"] .stat-card {
    background: rgba(255, 255, 255, 0.04);
}

.stat-card:hover {
    transform: translateY(-4px);
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--secondary), var(--accent));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.3rem;
}

.stat-label {
    font-size: 0.85rem;
    color: var(--text-light);
    font-weight: 600;
}

/* About Visual Side */
.about-visual {
    position: relative;
    display: flex;
    justify-content: center;
}

.about-visual-card {
    width: 100%;
    max-width: 480px;
    aspect-ratio: 4/5;
    border-radius: var(--radius);
    overflow: hidden;
    position: relative;
    box-shadow: var(--shadow-lg);
}

.about-visual-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.about-visual-float {
    position: absolute;
    bottom: -20px;
    left: -30px;
    background: var(--surface);
    padding: 1.2rem 1.8rem;
    border-radius: var(--radius-sm);
    box-shadow: var(--shadow-lg);
    display: flex;
    align-items: center;
    gap: 12px;
    z-index: 2;
    animation: float 4s ease-in-out infinite;
}

.about-visual-float i {
    font-size: 1.5rem;
    color: var(--secondary);
}

.about-visual-float span {
    font-weight: 700;
    font-size: 0.9rem;
}

section#destinations {
    background: linear-gradient(135deg, rgba(10, 14, 39, 0.03) 0%, rgba(124, 92, 252, 0.03) 100%);
}

/* ============================================
   GUIDES SECTION
   ============================================ */
.guides-section {
    position: relative;
    overflow: hidden;
}

.guides-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(10, 14, 39, 0.03) 0%, rgba(124, 92, 252, 0.03) 100%);
    z-index: 0;
}

[data-theme="dark"] .guides-section::before {
    background: linear-gradient(135deg, rgba(0, 212, 170, 0.03) 0%, rgba(124, 92, 252, 0.05) 100%);
}

.guides-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    position: relative;
    z-index: 1;
}

.guide-card {
    background: var(--surface);
    border-radius: var(--radius);
    padding: 2.5rem 2rem;
    text-align: center;
    box-shadow: var(--shadow);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(0, 0, 0, 0.04);
}

[data-theme="dark"] .guide-card {
    border-color: rgba(255, 255, 255, 0.05);
}

.guide-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--secondary), var(--accent));
    opacity: 0;
    transition: opacity 0.3s;
}

.guide-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.guide-card:hover::before {
    opacity: 1;
}

.guide-icon {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 1.8rem;
    transition: all 0.4s;
}

.guide-card:hover .guide-icon {
    transform: scale(1.1) rotate(5deg);
}

.guide-icon.icon-green {
    background: rgba(0, 212, 170, 0.12);
    color: var(--secondary);
}

.guide-icon.icon-purple {
    background: rgba(124, 92, 252, 0.12);
    color: var(--accent);
}

.guide-icon.icon-blue {
    background: rgba(59, 130, 246, 0.12);
    color: var(--aurora-blue);
}

.guide-card h3 {
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 0.8rem;
    color: var(--text);
}

.guide-card p {
    font-size: 0.9rem;
    color: var(--text-light);
    line-height: 1.7;
}

/* ============================================
   CTA SECTION
   ============================================ */
.cta-section {
    padding: 5rem 0;
}

.cta-card {
    background: linear-gradient(135deg, #0a0e27 0%, #131842 50%, #1a1f5a 100%);
    border-radius: var(--radius);
    padding: 4rem 3rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle at 30% 50%, rgba(0, 212, 170, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 70% 80%, rgba(124, 92, 252, 0.08) 0%, transparent 50%);
    animation: float 8s ease-in-out infinite;
}

.cta-card h2 {
    font-size: 2.2rem;
    font-weight: 800;
    color: #fff;
    margin-bottom: 1rem;
    position: relative;
    z-index: 1;
}

.cta-card p {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 2rem;
    position: relative;
    z-index: 1;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.cta-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
    position: relative;
    z-index: 1;
}

/* ============================================
   BUTTONS (Global)
   ============================================ */
.btn {
    padding: 12px 24px;
    border-radius: var(--radius-sm);
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    cursor: pointer;
    transition: all 0.3s;
    border: none;
    text-decoration: none;
    font-size: 0.9rem;
}

.btn-primary {
    background: linear-gradient(135deg, var(--secondary), var(--secondary-dark));
    color: #ffffff;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 212, 170, 0.4);
}

.btn-whatsapp {
    background: var(--whatsapp);
    color: white;
}

.btn-whatsapp:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(37, 211, 102, 0.4);
}

.btn-outline-light {
    background: transparent;
    color: #fff;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.btn-outline-light:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.6);
}

/* ============================================
   FOOTER
   ============================================ */
footer {
    background: linear-gradient(180deg, #080b1e 0%, #0a0e27 100%);
    color: #94a3b8;
    padding-top: 5rem;
    position: relative;
    overflow: hidden;
    margin-top: 0;
}

footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(0, 212, 170, 0.3), rgba(124, 92, 252, 0.3), transparent);
}

footer::after {
    content: '';
    position: absolute;
    bottom: -150px;
    right: -150px;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(124, 92, 252, 0.04) 0%, transparent 70%);
    z-index: 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.3fr 0.8fr 0.8fr 1.1fr;
    gap: 3rem;
    position: relative;
    z-index: 1;
}

.footer-logo {
    color: white;
    font-weight: 800;
    font-size: 1.8rem;
    letter-spacing: -0.5px;
    margin-bottom: 1.5rem;
    display: block;
    text-decoration: none;
}

.footer-logo span {
    color: var(--secondary);
}

.footer-about-text {
    line-height: 1.7;
    font-size: 0.92rem;
    margin-bottom: 2rem;
    opacity: 0.7;
}

.widget-title {
    color: white;
    font-size: 1.05rem;
    font-weight: 700;
    margin-bottom: 1.8rem;
    position: relative;
    padding-bottom: 0.8rem;
}

.widget-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 35px;
    height: 3px;
    background: linear-gradient(90deg, var(--secondary), var(--accent));
    border-radius: 2px;
}

.footer-links-premium {
    list-style: none;
    padding: 0;
}

.footer-links-premium li {
    margin-bottom: 0.8rem;
}

.footer-links-premium a {
    color: #94a3b8;
    text-decoration: none;
    font-size: 0.92rem;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
}

.footer-links-premium a i {
    font-size: 0.65rem;
    opacity: 0.4;
    transition: all 0.3s ease;
    color: var(--secondary);
}

.footer-links-premium a:hover {
    color: white;
    padding-left: 5px;
}

.footer-links-premium a:hover i {
    transform: translateX(3px);
    opacity: 1;
}

/* Contact Card */
.contact-card-premium {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
}

.contact-item-premium {
    display: flex;
    gap: 14px;
    align-items: center;
}

.contact-icon {
    width: 42px;
    height: 42px;
    background: rgba(255, 255, 255, 0.04);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--secondary);
    font-size: 1rem;
    flex-shrink: 0;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.06);
}

.contact-item-premium:hover .contact-icon {
    background: var(--secondary);
    color: white;
    transform: translateY(-2px);
    border-color: var(--secondary);
}

.contact-text {
    display: flex;
    flex-direction: column;
}

.contact-label {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    opacity: 0.4;
    font-weight: 700;
}

.contact-value {
    color: white;
    font-size: 0.92rem;
    font-weight: 500;
}

/* Social Icons */
.social-links-premium {
    display: flex;
    gap: 10px;
}

.social-icon-link {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.04);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #94a3b8;
    text-decoration: none;
    font-size: 0.92rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(255, 255, 255, 0.06);
}

.social-icon-link:hover {
    background: var(--secondary);
    color: white;
    transform: translateY(-3px);
    border-color: var(--secondary);
    box-shadow: 0 8px 25px rgba(0, 212, 170, 0.3);
}

/* Footer Bottom */
.footer-bottom {
    margin-top: 4rem;
    padding: 1.8rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-bottom-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.copyright {
    font-size: 0.82rem;
    opacity: 0.5;
}

.copyright strong {
    color: white;
}

.payment-methods {
    display: flex;
    gap: 1.5rem;
    font-size: 1.8rem;
    opacity: 0.2;
    filter: grayscale(1);
    transition: all 0.3s ease;
}

.payment-methods:hover {
    opacity: 0.6;
    filter: grayscale(0);
}

/* ============================================
   WHATSAPP FLOAT
   ============================================ */
.whatsapp-float {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    background: var(--whatsapp);
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    z-index: 5000;
    font-weight: 700;
    box-shadow: 0 8px 30px rgba(37, 211, 102, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
    font-size: 1.8rem;
}

.whatsapp-float:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(37, 211, 102, 0.5);
}

.whatsapp-float i {
    font-size: 1.4rem;
}

/* ============================================
   MOBILE CONTACT WIDGET (in nav sidebar)
   ============================================ */
.mobile-contact-widget {
    margin-top: auto;
    padding-top: 2rem;
    display: none;
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
    .nav-links {
        display: flex;
        position: fixed;
        top: 0;
        left: -320px;
        width: 300px;
        height: 100vh;
        background: var(--surface);
        flex-direction: column;
        padding: 5rem 0;
        box-shadow: 5px 0 20px rgba(0, 0, 0, 0.15);
        z-index: 2000;
        transition: all 0.4s ease;
        border-right: 1px solid rgba(0, 0, 0, 0.05);
        visibility: hidden;
    }

    .nav-links.active {
        left: 0;
        visibility: visible;
    }

    .nav-links .nav-link {
        width: 100%;
        padding: 1.2rem 2rem;
        border-bottom: 1px solid rgba(0, 0, 0, 0.05);
        color: var(--text) !important;
        opacity: 1;
    }

    .mobile-menu-btn {
        display: block;
    }

    .mobile-contact-widget {
        display: block;
    }

    .hero-content h1 {
        font-size: 2.6rem;
    }

    .tours-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .about-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .about-visual {
        order: -1;
    }

    .guides-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .stats-row {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }

    .section {
        padding: 4rem 0;
    }

    .section-header h2 {
        font-size: 2.2rem;
    }
}

@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 2.2rem;
    }

    .hero-content p {
        font-size: 1rem;
    }

    .hero-buttons .btn {
        padding: 14px 28px;
        font-size: 0.9rem;
    }

    .hero-scroll-indicator {
        display: none;
    }

    .tours-grid {
        grid-template-columns: 1fr;
    }

    .guides-grid {
        grid-template-columns: 1fr;
    }

    .about-features {
        grid-template-columns: 1fr;
    }

    .cta-card {
        padding: 3rem 1.5rem;
    }

    .cta-card h2 {
        font-size: 1.6rem;
    }
}

@media (max-width: 640px) {
    .container {
        padding-left: 1.2rem;
        padding-right: 1.2rem;
    }

    .section-header h2 {
        font-size: 1.8rem;
    }

    .stats-row {
        grid-template-columns: 1fr 1fr;
        gap: 1rem;
    }

    .stat-card {
        padding: 1.5rem 1rem;
    }

    .stat-number {
        font-size: 2rem;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .footer-bottom-flex {
        flex-direction: column;
        gap: 1.5rem;
        text-align: center;
    }

    .whatsapp-float {
        width: 55px;
        height: 55px;
        right: 1.2rem;
        bottom: 1.2rem;
        font-size: 1.6rem;
    }
}

/* ============================================
   RTL SUPPORT
   ============================================ */
[dir="rtl"] {
    text-align: right;
}

[dir="rtl"] .nav-links {
    flex-direction: row-reverse;
}

[dir="rtl"] .tour-price-badge {
    right: auto;
    left: 16px;
}

[dir="rtl"] .tour-price-tag {
    right: auto;
    left: 1rem;
}

[dir="rtl"] .whatsapp-float {
    right: auto;
    left: 2rem;
    flex-direction: row-reverse;
}

[dir="rtl"] .footer-links-premium a:hover {
    padding-left: 0;
    padding-right: 5px;
}

[dir="rtl"] .footer-links-premium a:hover i {
    transform: translateX(-3px);
}

[dir="rtl"] .widget-title::after {
    left: auto;
    right: 0;
}

[dir="rtl"] .about-visual-float {
    left: auto;
    right: -30px;
}

[dir="rtl"] .nav-link.active::after {
    left: auto;
    right: 50%;
    transform: translateX(50%);
}

@media (max-width: 1024px) {
    [dir="rtl"] .nav-links {
        left: auto;
        right: -300px;
        flex-direction: column;
        border-right: none;
        border-left: 1px solid rgba(0, 0, 0, 0.05);
        box-shadow: -5px 0 20px rgba(0, 0, 0, 0.1);
    }

    [dir="rtl"] .nav-links.active {
        right: 0;
        left: auto;
    }
}

@media (max-width: 640px) {
    [dir="rtl"] .whatsapp-float {
        right: auto;
        left: 1.5rem;
    }
}

/* ============================================
   PAGE-SPECIFIC (tours.php, etc.)
   ============================================ */
.home-section {
    padding: 3rem 0;
}

.home-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

@media (max-width: 1024px) {
    .home-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 640px) {
    .home-grid {
        gap: 1rem;
    }
}

.mobile-padding {
    padding-left: 1rem;
    padding-right: 1rem;
}

@media (max-width: 640px) {
    .mobile-padding {
        padding-left: 1.5rem;
        padding-right: 1.5rem;
    }
}

/* ============================================
   MASONRY GALLERY
   ============================================ */
.masonry-grid {
    columns: 4;
    column-gap: 16px;
}

.masonry-home {
    columns: 4;
    column-gap: 14px;
}

.masonry-item {
    break-inside: avoid;
    margin-bottom: 16px;
    border-radius: 16px;
    overflow: hidden;
    position: relative;
    cursor: pointer;
    background: var(--surface);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.masonry-home .masonry-item {
    margin-bottom: 14px;
    border-radius: 14px;
}

.masonry-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
}

.masonry-item img {
    width: 100%;
    display: block;
    transition: transform 0.5s ease;
}

.masonry-item:hover img {
    transform: scale(1.05);
}

.masonry-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0) 50%);
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    padding: 20px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.masonry-item:hover .masonry-overlay {
    opacity: 1;
}

.masonry-title {
    color: #fff;
    font-weight: 600;
    font-size: 0.95rem;
    text-shadow: 0 1px 4px rgba(0, 0, 0, 0.3);
}

.masonry-overlay i {
    color: #fff;
    font-size: 1.1rem;
    opacity: 0.8;
}

/* Masonry responsive */
@media (max-width: 1024px) {
    .masonry-grid {
        columns: 3;
    }

    .masonry-home {
        columns: 3;
    }
}

@media (max-width: 768px) {
    .masonry-grid {
        columns: 2;
        column-gap: 12px;
    }

    .masonry-home {
        columns: 2;
        column-gap: 10px;
    }

    .masonry-item {
        margin-bottom: 12px;
        border-radius: 12px;
    }
}

@media (max-width: 480px) {
    .masonry-grid {
        columns: 2;
        column-gap: 8px;
    }

    .masonry-home {
        columns: 2;
        column-gap: 8px;
    }

    .masonry-item {
        margin-bottom: 8px;
        border-radius: 10px;
    }

    .masonry-overlay {
        padding: 12px;
    }

    .masonry-title {
        font-size: 0.8rem;
    }
}

/* Gallery home section */
.gallery-home-section {
    background: var(--background);
}

/* Gallery page section */
.gallery-page-section {
    min-height: 80vh;
}

/* ============================================
   GALLERY SHOWCASE (Homepage)
   5 cols: 1=square, 2=2stacked, 3=vertical, 4=2stacked, 5=square
   ============================================ */
.gallery-showcase {
    display: grid;
    grid-template-columns: 1.1fr 1fr 0.85fr 1fr 1.1fr;
    grid-template-rows: 1fr 1fr;
    gap: 14px;
    height: 420px;
}

.gallery-showcase-item {
    border-radius: 18px;
    overflow: hidden;
    position: relative;
    cursor: pointer;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.gallery-showcase-item:hover {
    transform: translateY(-4px) scale(1.02);
    box-shadow: 0 16px 50px rgba(0, 0, 0, 0.18);
    z-index: 2;
}

.gallery-showcase-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}

.gallery-showcase-item:hover img {
    transform: scale(1.08);
}

.gallery-showcase-item:hover .masonry-overlay {
    opacity: 1;
}

/* Item 1: Col 1, perfect square, vertically centered */
.gallery-showcase-item.item-1 {
    grid-column: 1;
    grid-row: 1 / 3;
    aspect-ratio: 1 / 1;
    align-self: center;
}

/* Item 2: Col 2, row 1 (small square) */
.gallery-showcase-item.item-2 {
    grid-column: 2;
    grid-row: 1;
}

/* Item 3: Col 3, spans 2 rows (vertical/tall) */
.gallery-showcase-item.item-3 {
    grid-column: 3;
    grid-row: 1 / 3;
}

/* Item 4: Col 4, row 1 (small square) */
.gallery-showcase-item.item-4 {
    grid-column: 4;
    grid-row: 1;
}

/* Item 5: Col 5, perfect square, vertically centered */
.gallery-showcase-item.item-5 {
    grid-column: 5;
    grid-row: 1 / 3;
    aspect-ratio: 1 / 1;
    align-self: center;
}

/* Item 6: Col 2, row 2 (small square) */
.gallery-showcase-item.item-6 {
    grid-column: 2;
    grid-row: 2;
}

/* Item 7: Col 4, row 2 (small square) */
.gallery-showcase-item.item-7 {
    grid-column: 4;
    grid-row: 2;
}

/* Hide item-8 (only 7 used) */
.gallery-showcase-item.item-8 {
    display: none;
}

/* Tablet */
@media (max-width: 1024px) {
    .gallery-showcase {
        grid-template-columns: 1fr 1fr 1fr;
        grid-template-rows: 1fr 1fr 1fr;
        height: 480px;
    }

    .gallery-showcase-item.item-1 {
        grid-column: 1;
        grid-row: 1 / 3;
    }

    .gallery-showcase-item.item-2 {
        grid-column: 2;
        grid-row: 1;
    }

    .gallery-showcase-item.item-3 {
        grid-column: 3;
        grid-row: 1 / 3;
    }

    .gallery-showcase-item.item-4 {
        grid-column: 2;
        grid-row: 2;
    }

    .gallery-showcase-item.item-5 {
        grid-column: 1;
        grid-row: 3;
    }

    .gallery-showcase-item.item-6 {
        grid-column: 2;
        grid-row: 3;
    }

    .gallery-showcase-item.item-7 {
        grid-column: 3;
        grid-row: 3;
    }

    .gallery-showcase-item.item-8 {
        display: none;
    }
}

/* Mobile */
@media (max-width: 640px) {
    .gallery-showcase {
        grid-template-columns: 1fr 1fr;
        grid-template-rows: 1fr 1fr 1fr;
        height: 400px;
        gap: 10px;
    }

    .gallery-showcase-item.item-1 {
        grid-column: 1;
        grid-row: 1 / 3;
    }

    .gallery-showcase-item.item-2 {
        grid-column: 2;
        grid-row: 1;
    }

    .gallery-showcase-item.item-3 {
        grid-column: 2;
        grid-row: 2;
    }

    .gallery-showcase-item.item-4 {
        grid-column: 1;
        grid-row: 3;
    }

    .gallery-showcase-item.item-5 {
        grid-column: 2;
        grid-row: 3;
    }

    .gallery-showcase-item.item-6,
    .gallery-showcase-item.item-7 {
        display: none;
    }

    .gallery-showcase-item.item-8 {
        display: none;
    }

    .gallery-showcase-item {
        border-radius: 14px;
    }
}

/* ============================================
   LIGHTBOX MODAL
   ============================================ */
.lightbox-modal {
    position: fixed;
    inset: 0;
    z-index: 9999;
    background: rgba(0, 0, 0, 0.92);
    backdrop-filter: blur(10px);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.lightbox-modal.active {
    opacity: 1;
    pointer-events: auto;
}

.lightbox-content {
    max-width: 90vw;
    max-height: 85vh;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.lightbox-content img {
    max-width: 100%;
    max-height: 80vh;
    object-fit: contain;
    border-radius: 12px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.lightbox-caption {
    color: #fff;
    font-size: 1rem;
    font-weight: 500;
    margin-top: 1rem;
    text-align: center;
    opacity: 0.8;
}

.lightbox-close {
    position: absolute;
    top: 24px;
    right: 24px;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #fff;
    font-size: 1.2rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 10;
}

.lightbox-close:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: scale(1.1);
}

.lightbox-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #fff;
    font-size: 1.2rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 10;
}

.lightbox-nav:hover {
    background: rgba(255, 255, 255, 0.25);
    transform: translateY(-50%) scale(1.1);
}

.lightbox-prev {
    left: 24px;
}

.lightbox-next {
    right: 24px;
}

@media (max-width: 640px) {
    .lightbox-close {
        top: 12px;
        right: 12px;
        width: 40px;
        height: 40px;
    }

    .lightbox-nav {
        width: 42px;
        height: 42px;
    }

    .lightbox-prev {
        left: 8px;
    }

    .lightbox-next {
        right: 8px;
    }
}

/* ============================================
   CTA SECTION
   ============================================ */
.cta-section {
    padding: 4rem 0;
}

.cta-card {
    background: linear-gradient(135deg, var(--primary-dark) 0%, #0d1f3c 50%, #1a0a3e 100%);
    border-radius: 24px;
    padding: 4rem 3rem;
    text-align: center;
    color: #fff;
    position: relative;
    overflow: hidden;
}

.cta-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle at 30% 70%, rgba(0, 212, 170, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 70% 30%, rgba(139, 92, 246, 0.08) 0%, transparent 50%);
    animation: float 8s ease-in-out infinite;
}

.cta-card h2 {
    font-size: 2.2rem;
    font-weight: 800;
    margin-bottom: 1rem;
    position: relative;
    z-index: 1;
}

.cta-card p {
    font-size: 1.1rem;
    opacity: 0.8;
    max-width: 500px;
    margin: 0 auto 2rem;
    position: relative;
    z-index: 1;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    position: relative;
    z-index: 1;
}

.btn-outline-light {
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: #fff;
    background: transparent;
    padding: 12px 28px;
    border-radius: 12px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.btn-outline-light:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.5);
}

/* ============================================
   FOOTER
   ============================================ */
footer {
    background: var(--primary-dark);
    color: rgba(255, 255, 255, 0.85);
    padding: 4rem 0 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.5fr;
    gap: 3rem;
    padding-bottom: 3rem;
}

.footer-logo {
    font-weight: 800;
    font-size: 1.6rem;
    color: #fff;
    text-decoration: none;
    letter-spacing: -0.5px;
    display: block;
    margin-bottom: 1rem;
}

.footer-logo span {
    color: var(--secondary);
}

.footer-about-text {
    font-size: 0.9rem;
    line-height: 1.7;
    opacity: 0.7;
    margin-bottom: 1.5rem;
}

.social-links-premium {
    display: flex;
    gap: 10px;
}

.social-icon-link {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    transition: all 0.3s;
    font-size: 0.9rem;
}

.social-icon-link:hover {
    background: var(--secondary);
    transform: translateY(-3px);
}

.widget-title {
    font-size: 1rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 1.5rem;
    position: relative;
    padding-bottom: 0.8rem;
}

.widget-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 3px;
    background: var(--secondary);
    border-radius: 2px;
}

[dir="rtl"] .widget-title::after {
    left: auto;
    right: 0;
}

.footer-links-premium {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links-premium li {
    margin-bottom: 10px;
}

.footer-links-premium a {
    color: rgba(255, 255, 255, 0.65);
    text-decoration: none;
    font-size: 0.9rem;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    gap: 8px;
}

.footer-links-premium a:hover {
    color: var(--secondary);
    transform: translateX(4px);
}

[dir="rtl"] .footer-links-premium a:hover {
    transform: translateX(-4px);
}

.footer-links-premium a i {
    font-size: 0.7rem;
    color: var(--secondary);
}

.contact-card-premium {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
}

.contact-item-premium {
    display: flex;
    gap: 14px;
    align-items: flex-start;
}

.contact-icon {
    width: 42px;
    height: 42px;
    border-radius: 10px;
    background: rgba(0, 212, 170, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--secondary);
    flex-shrink: 0;
    font-size: 0.9rem;
}

.contact-text {
    display: flex;
    flex-direction: column;
}

.contact-label {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    opacity: 0.5;
    margin-bottom: 3px;
}

.contact-value {
    font-size: 0.9rem;
    color: #fff;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding: 1.5rem 0;
}

.footer-bottom-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.copyright {
    font-size: 0.85rem;
    opacity: 0.6;
}

.payment-methods {
    display: flex;
    gap: 16px;
    font-size: 1.6rem;
    opacity: 0.4;
}

@media (max-width: 1024px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 640px) {
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .footer-bottom-flex {
        flex-direction: column;
        text-align: center;
    }

    .cta-card {
        padding: 3rem 1.5rem;
    }

    .cta-card h2 {
        font-size: 1.6rem;
    }
}

/* ============================================
   NEW HERO SECTION (Airplane Style)
   ============================================ */
.nd-hero-wrapper {
    padding: 100px 30px 40px;
    /* Space for fixed header and side padding */
    max-width: 1700px;
    margin: 0 auto;
    background-color: transparent;
}

.nd-hero-section {
    position: relative;
    width: 100%;
    height: 75vh;
    min-height: 650px;
    border-radius: 40px;
    background-color: #ddd;
    overflow: hidden;
    /* Fix for some browsers failing to clip children on rounded containers */
    -webkit-mask-image: -webkit-radial-gradient(white, black);
    mask-image: radial-gradient(white, black);
    font-family: 'Inter', sans-serif;
    display: flex;
    align-items: center;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
}

/* Background Slider */
.nd-hero-slider {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.nd-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

.nd-slide.active {
    opacity: 1;
}

/* Overlay */
.nd-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, rgba(230, 235, 240, 0.85) 0%, rgba(200, 210, 220, 0.4) 40%, rgba(255, 255, 255, 0) 100%);
    z-index: 2;
}

/* Container inside Hero */
.nd-hero-container {
    position: relative;
    z-index: 3;
    width: 100%;
    display: flex;
    align-items: stretch;
    padding: 0 4rem;
}

/* Left Slider Nav */
.nd-slider-nav {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 30px;
    position: relative;
    margin-right: 4rem;
}

.nd-nav-line {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 2px;
    height: 80%;
    background-color: rgba(255, 255, 255, 0.4);
    z-index: 1;
}

.nd-nav-dot {
    position: relative;
    z-index: 2;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    background: transparent;
    border: 2px solid rgba(255, 255, 255, 0.7);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.nd-nav-dot.active,
.nd-nav-dot:hover {
    background: #fff;
    color: #333;
    transform: scale(1.1);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

/* Content */
.nd-hero-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.nd-hero-subtitle {
    font-size: 1rem;
    font-weight: 700;
    color: #2b2a30;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 1.5rem;
}

.nd-hero-title {
    font-size: 5rem;
    font-weight: 900;
    color: #1a1a1a;
    line-height: 1.1;
    margin-bottom: 3rem;
    letter-spacing: -1px;
}

.nd-hero-actions {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.nd-btn-book {
    background: #2b7afc;
    /* Nice tech blue */
    color: #fff;
    padding: 1rem 2.5rem;
    border-radius: 40px;
    font-weight: 700;
    font-size: 1rem;
    text-decoration: none;
    box-shadow: 0 10px 25px rgba(43, 122, 252, 0.4);
    transition: all 0.3s ease;
}

.nd-btn-book:hover {
    background: #1b63e0;
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(43, 122, 252, 0.5);
}

.nd-btn-play {
    position: relative;
    width: 55px;
    height: 55px;
    background: #fff;
    color: #2b7afc;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    text-decoration: none;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.nd-btn-play:hover {
    transform: scale(1.1);
}

/* Bottom Right Cutout Card - Improved with proper inner rounding */
.nd-bottom-card {
    position: absolute;
    bottom: 0;
    right: 0;
    background: #fff;
    border-top-left-radius: 40px;
    border-bottom-right-radius: 40px;
    /* Match parent's rounding at the corner! */
    padding: 2.5rem 3rem;
    z-index: 5;
    min-width: 350px;
    box-shadow: -10px -10px 30px rgba(0, 0, 0, 0.05);
}

/* Concave corners for the cutout effect */
.nd-bottom-card::before,
.nd-bottom-card::after {
    content: "";
    position: absolute;
    width: 40px;
    height: 40px;
    background: transparent;
    z-index: 4;
}

/* Top-right concave curve */
.nd-bottom-card::before {
    top: -40px;
    right: 0;
    border-bottom-right-radius: 40px;
    box-shadow: 20px 20px 0 20px #fff;
}

/* Bottom-left concave curve */
.nd-bottom-card::after {
    bottom: 0;
    left: -40px;
    border-bottom-right-radius: 40px;
    box-shadow: 20px 20px 0 20px #fff;
}

.nd-know-more {
    text-decoration: none;
    display: block;
    color: #1a1a1a;
}

.nd-km-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    font-weight: 700;
    font-size: 1.1rem;
}

.nd-km-content {
    display: flex;
    align-items: center;
    gap: 1.2rem;
}

.nd-km-thumbs {
    display: flex;
    position: relative;
    width: 100px;
}

.nd-km-thumbs img {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid #fff;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
}

.nd-km-thumbs img:nth-child(1) {
    left: 0;
    z-index: 3;
}

.nd-km-thumbs img:nth-child(2) {
    left: 25px;
    z-index: 2;
}

.nd-km-thumbs img:nth-child(3) {
    left: 50px;
    z-index: 1;
}

.nd-km-text {
    flex: 1;
    margin-left: 10px;
}

.nd-km-text strong {
    display: block;
    font-size: 1rem;
    margin-bottom: 0.3rem;
    color: #1a1a1a;
}

.nd-km-text p {
    font-size: 0.8rem;
    color: #777;
    margin: 0;
    line-height: 1.4;
}

/* Responsive Overrides */
@media (max-width: 1200px) {
    .nd-hero-title {
        font-size: 4rem;
    }

    .nd-hero-container {
        padding: 0 3rem;
    }
}

@media (max-width: 992px) {
    .nd-hero-wrapper {
        padding: 90px 15px 20px;
    }

    .nd-hero-title {
        font-size: 3rem;
    }

    .nd-slider-nav {
        margin-right: 2rem;
    }

    .nd-bottom-card {
        padding: 1.5rem 2rem;
        min-width: 300px;
        border-top-left-radius: 30px;
    }
}

@media (max-width: 768px) {
    .nd-hero-section {
        height: auto;
        min-height: 600px;
        border-radius: 20px;
        padding: 0;
        flex-direction: column;
    }

    .nd-hero-container {
        padding: 0 1.5rem;
        flex: 1;
        display: flex;
        align-items: center;
    }

    .nd-slider-nav {
        display: none;
    }

    /* Hide side nav on mobile for space */
    .nd-hero-overlay {
        background: linear-gradient(180deg, rgba(240, 245, 250, 0.9) 0%, rgb(200 210 220 / 24%) 100%);
    }

    .nd-hero-content {
        align-items: center;
        text-align: center;
        width: 100%;
        margin-top: 4rem;
    }

    .nd-hero-title {
        font-size: 2.5rem;
    }

    .nd-hero-actions {
        justify-content: center;
        width: 100%;
    }

    .nd-bottom-card {
        position: relative;
        bottom: auto;
        right: auto;
        /* Match hero's bottom rounded corner on mobile to prevent white protrusions */
        border-radius: 20px 20px 20px 20px;
        margin: auto 1.5rem 1.5rem;
        /* margin-top: auto pushes it to the bottom */
        width: calc(100% - 3rem);
        min-width: 0;
        background: #fff;
        padding: 1.5rem;
    }

    /* Hide the concave white corners on mobile view to avoid protrusions */
    .nd-bottom-card::before,
    .nd-bottom-card::after {
        display: none;
    }
}

section#guides {
    display: none;
}

.stats-row {
    display: none;
}

section.cta-section {
    display: none;
}