/* =========================================
   JAYASINGHE TOURS — ULTRA PREMIUM 2026
   Theme: Tropical Luxury × Cinematic Gold
   ========================================= */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,400;0,600;0,700;1,400&family=Plus+Jakarta+Sans:ital,wght@0,300;0,400;0,500;0,600;0,700;0,800;1,300&family=Cinzel:wght@400;600;700&display=swap');

:root {
    /* Gold Palette — Richer, more vivid */
    --gold-primary:    #D4A843;
    --gold-light:      #F0C96B;
    --gold-pale:       rgba(212, 168, 67, 0.12);
    --gold-glow:       rgba(212, 168, 67, 0.3);
    --gold-border:     rgba(212, 168, 67, 0.25);
    --gold-deep:       #A07820;

    /* Tropical Accent Palette — New vibrant colors */
    --teal-accent:     #0ABFBC;
    --teal-glow:       rgba(10, 191, 188, 0.25);
    --coral-accent:    #FF6B6B;
    --coral-glow:      rgba(255, 107, 107, 0.2);
    --emerald:         #10B981;
    --emerald-glow:    rgba(16, 185, 129, 0.3);
    --violet-accent:   #7C3AED;
    --sky-accent:      #0EA5E9;

    /* Dark Palette — Deeper, richer */
    --dark-900:  #050810;
    --dark-800:  #090D18;
    --dark-700:  #0E1525;
    --dark-600:  #161E30;
    --dark-500:  #1E293B;
    --dark-400:  #2A3A52;

    /* Text */
    --text-white:   #F8F9FB;
    --text-silver:  #CBD5E1;
    --text-muted:   #8B9BB4;
    --text-dark:    #0D1117;

    /* Backgrounds */
    --bg-page:    #F7F5F0;
    --bg-white:   #FFFFFF;
    --bg-cream:   #FAF8F4;

    /* Accent */
    --green-accent:   #10B981;
    --green-glow:     rgba(16, 185, 129, 0.3);
    --blue-accent:    #3B82F6;

    /* Shadows */
    --shadow-card:  0 4px 32px rgba(5, 8, 16, 0.1);
    --shadow-lift:  0 24px 64px rgba(5, 8, 16, 0.16);
    --shadow-gold:  0 12px 40px rgba(212, 168, 67, 0.28);
    --shadow-teal:  0 12px 40px rgba(10, 191, 188, 0.25);

    /* Spacing */
    --section-pad: 110px 8%;
    --radius-card: 20px;
    --radius-sm:   10px;

    /* Fonts */
    --font-display: 'Cinzel', 'Georgia', serif;
    --font-serif:   'Cormorant Garamond', Georgia, serif;
    --font-body:    'Plus Jakarta Sans', -apple-system, sans-serif;

    /* Legacy compatibility */
    --primary-gold:   #D4A843;
    --primary-dark:   #050810;
    --secondary-dark: #090D18;
    --accent-gold:    #F0C96B;
    --text-main:      #0D1117;
    --text-light:     #F8F9FB;
    --white:          #FFFFFF;
    --glass:          rgba(255,255,255,0.05);
    --glass-border:   rgba(255,255,255,0.1);
    --shadow-soft:    0 4px 32px rgba(5, 8, 16, 0.1);
    --font-heading:   'Cinzel', serif;
}

/* ── Reset ── */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    -webkit-tap-highlight-color: transparent;
}

html { 
    scroll-behavior: smooth; 
    overscroll-behavior-y: none;
}

body {
    font-family: var(--font-body);
    background: var(--bg-page);
    color: var(--text-dark);
    line-height: 1.7;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    touch-action: manipulation;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-display);
    letter-spacing: 0.02em;
}

img { display: block; max-width: 100%; }

a { text-decoration: none; color: inherit; }

/* SEO Helper */
.sr-only {
    position: absolute; width: 1px; height: 1px;
    padding: 0; margin: -1px; overflow: hidden;
    clip: rect(0,0,0,0); border: 0;
}

/* Custom Scrollbar */
::-webkit-scrollbar { width: 5px; }
::-webkit-scrollbar-track { background: var(--dark-800); }
::-webkit-scrollbar-thumb { background: linear-gradient(180deg, var(--gold-primary), var(--teal-accent)); border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: var(--gold-light); }


/* =========================================
   PRELOADER — Cinematic
   ========================================= */
#preloader {
    position: fixed; inset: 0;
    background: var(--dark-900);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    transition: opacity 0.8s ease;
    pointer-events: none;
    overflow: hidden;
}

#preloader::before {
    content: '';
    position: absolute;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(212,168,67,0.12) 0%, transparent 70%);
    animation: preloader-pulse 2s ease-in-out infinite;
}

#preloader::after {
    content: '';
    position: absolute;
    inset: 0;
    background: 
        radial-gradient(ellipse 40% 30% at 20% 80%, rgba(10,191,188,0.08) 0%, transparent 70%),
        radial-gradient(ellipse 30% 40% at 80% 20%, rgba(212,168,67,0.08) 0%, transparent 70%);
}

@keyframes preloader-pulse {
    0%, 100% { transform: scale(0.8); opacity: 0.5; }
    50% { transform: scale(1.2); opacity: 1; }
}

.spinner {
    width: 52px; height: 52px;
    border: 2px solid rgba(212, 168, 67, 0.15);
    border-top-color: var(--gold-primary);
    border-right-color: var(--teal-accent);
    border-radius: 50%;
    animation: spin 0.9s linear infinite;
    margin: 0 auto 28px;
    position: relative;
    z-index: 1;
}

.welcome-text {
    font-family: var(--font-display);
    font-size: 1.1rem;
    font-weight: 400;
    color: var(--gold-primary);
    letter-spacing: 0.2em;
    text-transform: uppercase;
    animation: pulse 2s ease-in-out infinite;
    position: relative;
    z-index: 1;
}

@keyframes spin    { to { transform: rotate(360deg); } }
@keyframes pulse   { 0%,100% { opacity:0.5; } 50% { opacity:1; } }


/* =========================================
   NAVBAR — Glass Luxury
   ========================================= */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: rgba(5, 8, 16, 0.85);
    -webkit-backdrop-filter: blur(32px) saturate(180%);
    backdrop-filter: blur(32px) saturate(180%);
    padding: 0 6%;
    height: 74px;
    border-bottom: 1px solid var(--gold-border);
    position: sticky;
    top: 0;
    z-index: 1000;
    transition: height 0.3s, background 0.3s;
}

.navbar::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0; right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--gold-primary), var(--teal-accent), var(--gold-primary), transparent);
    opacity: 0.6;
}

.navbar-brand {
    display: flex;
    align-items: center;
    gap: 14px;
    text-decoration: none;
}

.navbar-brand img {
    height: 46px;
    transition: transform 0.3s;
}

.navbar-brand:hover img { transform: scale(1.05) rotate(-2deg); }

.navbar-brand h2 {
    font-family: var(--font-display);
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-white);
    letter-spacing: 0.1em;
    text-transform: uppercase;
    background: linear-gradient(135deg, var(--gold-light), var(--gold-primary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 2px;
}

.nav-links a {
    color: var(--text-silver);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    padding: 8px 14px;
    border-radius: 8px;
    transition: color 0.25s, background 0.25s;
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 4px;
    left: 50%;
    width: 0;
    height: 1.5px;
    background: linear-gradient(90deg, var(--gold-primary), var(--teal-accent));
    transition: 0.3s;
    transform: translateX(-50%);
    border-radius: 2px;
}

.nav-links a:hover {
    color: var(--gold-light);
    background: var(--gold-pale);
}

.nav-links a:hover::after { width: 60%; }

/* Hamburger */
.hamburger {
    display: none;
    cursor: pointer;
    border: none;
    background: transparent;
    padding: 6px;
    outline: none;
    z-index: 1001;
}

.hamburger span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--gold-primary);
    margin: 5px 0;
    transition: 0.35s ease;
    border-radius: 2px;
}

.hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.hamburger.active span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }


/* =========================================
   HERO SLIDER — Cinematic Full Screen
   ========================================= */
.hero-slider {
    width: 100%;
    position: relative;
    overflow: hidden;
    background: var(--dark-900);
    height: 88vh;
    min-height: 540px;
    border-bottom: 1px solid var(--gold-border);
}

@media (max-width: 768px) {
    .hero-slider { height: 62vh; min-height: 380px; }
}

.slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 2.2s cubic-bezier(0.25, 0.8, 0.25, 1);
    pointer-events: none;
    z-index: 0;
}

.active-slide {
    opacity: 1;
    z-index: 1;
    pointer-events: auto;
}

.slide-bg-img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    background-color: var(--dark-900);
    object-position: center;
    opacity: 0;
    transition: opacity 1.5s ease-in;
    transform: scale(1.04);
    animation: slowzoom 18s linear infinite alternate;
}

@keyframes slowzoom {
    from { transform: scale(1); }
    to   { transform: scale(1.08); }
}

.active-slide .slide-bg-img { opacity: 1; }

.slide-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to top,
        rgba(5,8,16,0.85) 0%,
        rgba(5,8,16,0.3) 40%,
        rgba(5,8,16,0.1) 70%,
        transparent 100%
    ),
    linear-gradient(
        to right,
        rgba(5,8,16,0.4) 0%,
        transparent 60%
    );
    z-index: 1;
}

.slide-cta {
    position: absolute;
    bottom: 14%;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
}

/* Slide caption overlay */
.slide-caption {
    position: absolute;
    bottom: 28%;
    left: 8%;
    z-index: 2;
    max-width: 600px;
}

.slide-caption h2 {
    font-family: var(--font-display);
    font-size: clamp(2rem, 5vw, 4.2rem);
    color: var(--text-white);
    font-weight: 700;
    line-height: 1.1;
    letter-spacing: 0.04em;
    text-shadow: 0 4px 32px rgba(0,0,0,0.5);
    animation: slideInLeft 0.8s ease-out;
}

.slide-caption h2 span { color: var(--gold-primary); }

.slide-caption p {
    color: var(--text-silver);
    font-size: 1.05rem;
    margin-top: 12px;
    animation: slideInLeft 0.8s ease-out 0.15s both;
}

@keyframes slideInLeft {
    from { opacity: 0; transform: translateX(-30px); }
    to   { opacity: 1; transform: translateX(0); }
}

.dots-container {
    position: absolute;
    bottom: 28px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
    z-index: 3;
}

.dot {
    width: 8px; height: 8px;
    background: rgba(255,255,255,0.3);
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.35s;
}

.active-dot {
    background: var(--gold-primary);
    width: 32px;
    border-radius: 4px;
}

/* Hero Button */
.hero-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 15px 40px;
    background: rgba(212, 168, 67, 0.15);
    color: var(--gold-light);
    border: 1.5px solid var(--gold-primary);
    border-radius: 50px;
    font-family: var(--font-body);
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    text-decoration: none;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    -webkit-backdrop-filter: blur(12px);
    backdrop-filter: blur(12px);
    transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.hero-btn::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, var(--gold-primary), var(--gold-deep));
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
    z-index: -1;
}

.hero-btn:hover {
    color: var(--dark-900);
    border-color: var(--gold-primary);
    box-shadow: 0 0 50px var(--gold-glow);
    transform: translateY(-3px);
}

.hero-btn:hover::before { transform: scaleX(1); transform-origin: left; }


/* =========================================
   SECTIONS
   ========================================= */
.section {
    padding: var(--section-pad);
    position: relative;
}

.section-header {
    text-align: center;
    margin-bottom: 70px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.section-header h2 {
    font-family: var(--font-display);
    font-size: 2.8rem;
    font-weight: 700;
    color: var(--dark-900);
    margin-bottom: 16px;
    letter-spacing: 0.04em;
    line-height: 1.15;
    position: relative;
    display: inline-block;
}

.section-header h2::after {
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, var(--gold-primary), var(--teal-accent));
    margin: 16px auto 0;
    border-radius: 2px;
}

.section-header p {
    font-family: var(--font-body);
    color: var(--text-muted);
    font-size: 1.05rem;
    font-weight: 400;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.8;
}

/* Override for dark sections */
section[style*="background: #121212"] .section-header h2,
section[style*="background:#121212"] .section-header h2,
.dark-section .section-header h2 {
    color: var(--gold-light) !important;
}

.dark-section {
    background: #050810; /* Very dark blue instead of plain black */
    color: #fff;
    position: relative;
}

.dark-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 50% -20%, rgba(10, 191, 188, 0.15), transparent 60%);
    pointer-events: none;
}


/* =========================================
   CARDS (FLEET, TOURS, PACKAGES)
   ========================================= */
.cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 36px;
}

.horizontal-card {
    background: var(--bg-white);
    border-radius: var(--radius-card);
    overflow: hidden;
    cursor: pointer;
    border: 1px solid rgba(0,0,0,0.06);
    box-shadow: var(--shadow-card);
    transition: transform 0.5s cubic-bezier(0.23,1,0.32,1),
                box-shadow 0.5s cubic-bezier(0.23,1,0.32,1),
                border-color 0.3s;
    position: relative;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.horizontal-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--gold-primary), var(--teal-accent), var(--gold-light));
    background-size: 200% 100%;
    opacity: 0;
    transition: opacity 0.35s;
    z-index: 2;
    animation: shimmer-bar 3s linear infinite;
}

@keyframes shimmer-bar {
    0% { background-position: 0% 0%; }
    100% { background-position: 200% 0%; }
}

.horizontal-card:hover {
    transform: translateY(-14px);
    box-shadow: 0 32px 80px rgba(10, 191, 188, 0.15), 0 0 0 1px var(--gold-border), 0 0 40px rgba(212, 168, 67, 0.1);
}

.horizontal-card:hover::before { opacity: 1; }

.horizontal-card img {
    width: 100%;
    height: 235px;
    object-fit: cover;
    transition: transform 0.8s cubic-bezier(0.2, 0, 0.2, 1);
}

.horizontal-card:hover img { transform: scale(1.08); }

/* Colorful image overlay on hover */
.horizontal-card .img-wrapper {
    position: relative;
    overflow: hidden;
}

.horizontal-card .img-wrapper::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(10,191,188,0.2), rgba(212,168,67,0.15));
    opacity: 0;
    transition: opacity 0.4s;
}

.horizontal-card:hover .img-wrapper::after { opacity: 1; }

.card-content {
    padding: 28px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    position: relative;
    z-index: 1;
}

.card-content h3 {
    font-family: var(--font-display);
    font-size: 1.3rem;
    color: var(--dark-900);
    margin-bottom: 10px;
    font-weight: 600;
    letter-spacing: 0.03em;
}

.subtitle {
    display: inline-block;
    color: var(--dark-900);
    background: linear-gradient(135deg, var(--gold-primary), var(--gold-light));
    padding: 4px 14px;
    border-radius: 20px;
    font-size: 0.72rem;
    margin-bottom: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    border: none;
    box-shadow: 0 4px 14px var(--gold-glow);
}

.desc {
    color: #4B5563;
    font-size: 0.93rem;
    line-height: 1.65;
    margin-bottom: 20px;
    flex-grow: 1;
}

.price {
    color: var(--dark-900);
    font-weight: 700;
    font-family: var(--font-display);
    font-size: 1.2rem;
    margin: auto 0 18px;
    letter-spacing: 0.02em;
    display: flex;
    align-items: baseline;
    gap: 6px;
}

.price::before {
    content: 'STARTING FROM';
    font-size: 0.52rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    color: var(--text-muted);
    font-family: var(--font-body);
    margin-top: 2px;
}

.view-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--teal-accent);
    font-weight: 700;
    font-size: 0.72rem;
    text-transform: uppercase;
    letter-spacing: 0.16em;
    transition: gap 0.3s, color 0.3s;
}

.horizontal-card:hover .view-btn {
    gap: 14px;
    color: var(--gold-primary);
}


/* ==========================================
   VIEW ALL BUTTON
   ========================================== */
.view-all-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 15px 40px;
    border: 2px solid transparent;
    border-radius: 50px;
    color: var(--text-white);
    font-family: var(--font-body);
    font-size: 0.76rem;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    text-decoration: none;
    background: linear-gradient(var(--dark-800), var(--dark-800)) padding-box,
                linear-gradient(135deg, var(--gold-primary), var(--teal-accent), var(--coral-accent)) border-box;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    margin-bottom: 10px;
    position: relative;
    overflow: hidden;
    animation: future-pulse 3s infinite alternate;
}

@keyframes future-pulse {
    0% { box-shadow: 0 0 15px rgba(212, 168, 67, 0.2); }
    50% { box-shadow: 0 0 30px rgba(10, 191, 188, 0.4); }
    100% { box-shadow: 0 0 15px rgba(212, 168, 67, 0.2); }
}

.view-all-btn::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, var(--gold-primary), var(--teal-accent));
    transform: translateX(-100%);
    transition: transform 0.4s ease;
    z-index: -1;
}

.view-all-btn i {
    font-size: 0.9rem;
    transition: transform 0.3s;
    color: var(--gold-light);
}

.view-all-btn:hover {
    color: #fff;
    border-color: transparent;
    transform: translateY(-3px);
    box-shadow: 0 16px 44px rgba(10, 191, 188, 0.4);
}

.view-all-btn:hover::before { transform: translateX(0); }

.view-all-btn:hover i {
    transform: translateX(4px) scale(1.1);
    color: #fff;
}


/* =========================================
   WHY CHOOSE US — Dark Section Upgrade
   ========================================= */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 28px;
}

.feature-item {
    background: rgba(255,255,255,0.03);
    padding: 44px 32px;
    border-radius: var(--radius-card);
    text-align: center;
    border: 1px solid rgba(255,255,255,0.07);
    transition: all 0.45s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
}

.feature-item::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 50% 0%, var(--gold-pale), transparent 70%);
    opacity: 0;
    transition: opacity 0.4s;
}

.feature-item::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0; right: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--gold-primary), var(--teal-accent));
    transform: scaleX(0);
    transition: transform 0.4s ease;
    border-radius: 0 0 4px 4px;
}

.feature-item:hover {
    transform: translateY(-12px);
    border-color: var(--gold-border);
    background: rgba(212,168,67,0.06);
    box-shadow: 0 28px 64px rgba(0,0,0,0.4), 0 0 60px var(--gold-glow);
}

.feature-item:hover::before { opacity: 1; }
.feature-item:hover::after { transform: scaleX(1); }

.feature-item i {
    font-size: 2.4rem;
    color: var(--gold-primary);
    margin-bottom: 22px;
    display: block;
    transition: transform 0.4s, color 0.3s;
    position: relative;
    z-index: 1;
}

.feature-item:hover i {
    transform: scale(1.2) rotate(6deg);
    color: var(--gold-light);
}

.feature-item h3 {
    font-family: var(--font-display);
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--text-white);
    margin-bottom: 14px;
    letter-spacing: 0.05em;
    position: relative;
    z-index: 1;
}

.feature-item p {
    color: var(--text-muted);
    font-size: 0.88rem;
    line-height: 1.75;
    position: relative;
    z-index: 1;
}


/* =========================================
   BOOKING FORM — Premium Dark Glass
   ========================================= */
.booking-card {
    background: var(--bg-white);
    padding: 64px;
    border-radius: 28px;
    max-width: 900px;
    margin: 0 auto;
    box-shadow: var(--shadow-lift);
    border: 1px solid rgba(0,0,0,0.04);
    position: relative;
    overflow: hidden;
}

.booking-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--gold-primary), var(--teal-accent), var(--gold-light), var(--teal-accent), var(--gold-primary));
    background-size: 300% 100%;
    animation: gradient-flow 4s linear infinite;
}

@keyframes gradient-flow {
    0% { background-position: 0% 0%; }
    100% { background-position: 300% 0%; }
}

.booking-card::after {
    content: '';
    position: absolute;
    bottom: -80px;
    right: -80px;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, var(--gold-pale) 0%, transparent 70%);
    pointer-events: none;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 22px;
    margin-bottom: 22px;
}

input, select, textarea {
    width: 100%;
    padding: 16px 22px;
    border: 1.5px solid #E8EBF0;
    border-radius: 12px;
    font-size: 15px;
    font-family: var(--font-body);
    outline: none;
    transition: all 0.3s ease;
    background: var(--bg-cream);
    color: var(--text-dark);
    -webkit-appearance: none;
}

input::placeholder, textarea::placeholder { color: #6B7280; font-weight: 400; opacity: 1; }

input:focus, select:focus, textarea:focus {
    border-color: var(--teal-accent);
    background: var(--bg-white);
    box-shadow: 0 0 0 4px rgba(10,191,188,0.1);
}

select { cursor: pointer; }

textarea { resize: vertical; min-height: 110px; margin-bottom: 22px; display: block; }

.booking-btn-row {
    display: flex;
    gap: 18px;
    margin-top: 36px;
    flex-wrap: wrap;
}

.booking-action-btn {
    flex: 1 1 0;
    min-width: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 18px 32px;
    border-radius: 50px;
    font-family: var(--font-body);
    font-size: 0.78rem;
    font-weight: 700;
    text-decoration: none;
    cursor: pointer;
    border: none;
    transition: all 0.35s cubic-bezier(0.165, 0.84, 0.44, 1);
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.email-btn {
    background: linear-gradient(135deg, var(--dark-900), var(--dark-600));
    color: var(--text-white);
    border: 1.5px solid transparent;
}

.email-btn:hover {
    background: linear-gradient(135deg, var(--gold-primary), var(--gold-deep));
    color: var(--dark-900);
    transform: translateY(-3px);
    box-shadow: var(--shadow-gold);
}

.whatsapp-btn {
    background: linear-gradient(135deg, #10B981, #059669);
    color: #fff;
    border: 1.5px solid transparent;
    box-shadow: 0 8px 28px rgba(16, 185, 129, 0.25);
}

.whatsapp-btn:hover {
    background: linear-gradient(135deg, #0ED67B, #10B981);
    transform: translateY(-3px);
    box-shadow: 0 20px 48px rgba(16, 185, 129, 0.4);
}


/* =========================================
   FOOTER — Immersive Dark
   ========================================= */
.premium-footer {
    background: var(--dark-900);
    color: var(--text-silver);
    padding: 90px 8% 44px;
    border-top: 1px solid var(--gold-border);
    position: relative;
    overflow: hidden;
}

.premium-footer::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--gold-primary), var(--teal-accent), var(--gold-primary), transparent);
}

.premium-footer::after {
    content: '';
    position: absolute;
    bottom: -200px;
    left: 50%;
    transform: translateX(-50%);
    width: 800px;
    height: 400px;
    background: radial-gradient(ellipse, rgba(212,168,67,0.06) 0%, transparent 70%);
    pointer-events: none;
}

.footer-grid {
    display: flex;
    justify-content: space-between;
    gap: 30px;
    margin-bottom: 60px;
    position: relative;
    z-index: 1;
}

@media (max-width: 900px) {
    .footer-grid { flex-wrap: wrap; }
}

.footer-brand h3 {
    font-family: var(--font-display);
    font-size: 1.6rem;
    font-weight: 600;
    margin-bottom: 18px;
    letter-spacing: 0.06em;
    background: linear-gradient(135deg, var(--gold-light), var(--gold-primary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.footer-brand p {
    font-size: 0.93rem;
    line-height: 1.8;
    color: var(--text-muted);
    max-width: 320px;
}

.footer-links h3, .footer-contact h3 {
    color: var(--text-white);
    margin-bottom: 24px;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    font-family: var(--font-body);
    position: relative;
    padding-bottom: 12px;
}

.footer-links h3::after, .footer-contact h3::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0;
    width: 28px;
    height: 2px;
    background: linear-gradient(90deg, var(--gold-primary), var(--teal-accent));
    border-radius: 2px;
}

.footer-links ul, .footer-contact ul {
    list-style: none;
}

.footer-links li, .footer-contact li {
    margin-bottom: 13px;
    font-size: 0.93rem;
    color: var(--text-muted);
}

.footer-links a, .footer-contact a {
    color: var(--text-muted);
    text-decoration: none;
    transition: color 0.25s, padding-left 0.25s;
}

.footer-links a:hover {
    color: var(--gold-light);
    padding-left: 8px;
}

.footer-contact a:hover { color: var(--gold-light); }

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.06);
    padding-top: 28px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
    font-size: 0.8rem;
    color: var(--text-muted);
    position: relative;
    z-index: 1;
}


/* =========================================
   MODALS — Polished
   ========================================= */
.modal {
    display: none;
    position: fixed;
    z-index: 2000;
    inset: 0;
    background: rgba(5, 8, 16, 0.96);
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    -webkit-backdrop-filter: blur(16px);
    backdrop-filter: blur(16px);
}

.modal-content {
    background: var(--bg-white);
    margin: 3% auto;
    padding: 48px;
    width: 90%;
    max-width: 860px;
    border-radius: 28px;
    position: relative;
    box-shadow: 0 60px 120px rgba(0,0,0,0.7);
    border: 1px solid rgba(0,0,0,0.06);
    overflow: hidden;
}

.modal-content::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--gold-primary), var(--teal-accent), var(--gold-light));
}

.close {
    position: absolute;
    right: 24px;
    top: 18px;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    font-weight: 300;
    cursor: pointer;
    z-index: 100;
    color: var(--text-muted);
    border-radius: 50%;
    border: 1px solid #E8EBF0;
    transition: all 0.25s;
    line-height: 1;
    background: var(--bg-cream);
}

.close:hover {
    color: #fff;
    background: linear-gradient(135deg, var(--gold-primary), var(--teal-accent));
    border-color: transparent;
    transform: rotate(90deg) scale(1.1);
}

.modal-slider {
    position: relative;
    overflow: hidden;
    margin-bottom: 32px;
    border-radius: 18px;
    background: var(--dark-900);
    aspect-ratio: 16/9;
}

.modal-track {
    display: flex;
    transition: transform 0.55s cubic-bezier(0.23, 1, 0.32, 1);
    height: 100%;
}

.modal-track img {
    width: 100%;
    flex-shrink: 0;
    object-fit: cover;
    height: 100%;
}

.slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(5, 8, 16, 0.5);
    color: var(--text-white);
    width: 46px;
    height: 46px;
    cursor: pointer;
    font-size: 16px;
    border-radius: 50%;
    border: 1px solid rgba(255,255,255,0.15);
    z-index: 10;
    transition: all 0.3s;
    -webkit-backdrop-filter: blur(8px);
    backdrop-filter: blur(8px);
}

.slider-btn.left  { left: 16px; }
.slider-btn.right { right: 16px; }

.slider-btn:hover {
    background: var(--gold-primary);
    border-color: var(--gold-primary);
    color: var(--dark-900);
    transform: translateY(-50%) scale(1.1);
}

.modal h2 {
    font-family: var(--font-display);
    font-size: 2rem;
    color: var(--dark-900);
    margin-bottom: 8px;
    font-weight: 700;
    letter-spacing: 0.04em;
}

.modal-price-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, var(--gold-primary), var(--gold-light));
    color: var(--dark-900);
    padding: 6px 20px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.95rem;
    margin-top: 6px;
    box-shadow: 0 6px 20px var(--gold-glow);
}

.modal-features {
    list-style: none;
    padding: 0;
    margin: 30px 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 14px;
}

.modal-features li {
    font-size: 0.93rem;
    color: var(--text-dark);
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 14px 18px;
    border-radius: 12px;
    background: var(--bg-cream);
    border: 1px solid rgba(0,0,0,0.04);
    box-shadow: 0 4px 15px rgba(0,0,0,0.02);
    transition: transform 0.3s, box-shadow 0.3s, border-color 0.3s;
}

.modal-features li:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 28px rgba(0,0,0,0.06);
    border-color: var(--gold-border);
}

.modal-features li i {
    color: var(--teal-accent);
    font-size: 1.1rem;
    flex-shrink: 0;
}


/* =========================================
   PAGE HEADER (Sub-pages)
   ========================================= */
.page-header {
    background: var(--dark-900);
    color: var(--text-white);
    padding: 90px 8% 70px;
    text-align: center;
    border-bottom: 1px solid var(--gold-border);
    position: relative;
    overflow: hidden;
}

.page-header::before {
    content: '';
    position: absolute;
    inset: 0;
    background: 
        radial-gradient(ellipse 60% 50% at 50% 100%, rgba(212,168,67,0.1) 0%, transparent 70%),
        radial-gradient(ellipse 40% 40% at 10% 0%, rgba(10,191,188,0.07) 0%, transparent 70%);
}

.page-header h1 {
    font-family: var(--font-display);
    font-size: 3rem;
    font-weight: 700;
    color: var(--text-white);
    letter-spacing: 0.1em;
    margin-bottom: 14px;
    position: relative;
}

.page-header h1 span { color: var(--gold-primary); }

.page-header p {
    color: var(--text-muted);
    font-size: 1rem;
    letter-spacing: 0.05em;
    position: relative;
}


/* =========================================
   FAQ PAGE
   ========================================= */
.faq-sections-wrapper { max-width: 1100px; margin: 0 auto; }

.faq-section-block { margin-bottom: 70px; }

.category-title {
    font-family: var(--font-display);
    font-size: 1.8rem;
    color: var(--dark-900);
    margin-bottom: 36px;
    font-weight: 700;
    text-align: center;
    letter-spacing: 0.08em;
    position: relative;
}

.category-title::after {
    content: '';
    display: block;
    width: 48px;
    height: 2px;
    background: linear-gradient(90deg, var(--gold-primary), var(--teal-accent));
    margin: 12px auto 0;
    border-radius: 2px;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
    gap: 24px;
    margin-top: 32px;
}

.faq-card {
    background: var(--bg-white);
    padding: 32px;
    border-radius: 18px;
    box-shadow: var(--shadow-card);
    border: 1px solid rgba(0,0,0,0.05);
    border-left: 3px solid var(--gold-primary);
    transition: transform 0.3s, box-shadow 0.3s, border-left-color 0.3s;
}

.faq-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lift);
    border-left-color: var(--teal-accent);
}

.faq-card h3 {
    font-family: var(--font-body);
    font-size: 1.02rem;
    color: var(--dark-900);
    margin-bottom: 14px;
    font-weight: 700;
    display: flex;
    align-items: flex-start;
    gap: 12px;
    line-height: 1.5;
}

.faq-card h3 i {
    color: var(--teal-accent);
    margin-top: 3px;
    flex-shrink: 0;
}

.faq-card p {
    color: var(--text-muted);
    font-size: 0.92rem;
    line-height: 1.85;
}


/* =========================================
   LEGAL PAGES
   ========================================= */
.legal-container {
    max-width: 860px;
    margin: 0 auto;
    line-height: 1.9;
}

.legal-intro {
    font-size: 1.1rem;
    color: var(--text-muted);
    line-height: 1.9;
    margin-bottom: 44px;
    font-style: italic;
    text-align: center;
    max-width: 780px;
    margin-left: auto;
    margin-right: auto;
}

.legal-item {
    background: var(--bg-white);
    padding: 34px;
    margin-bottom: 20px;
    border-radius: 16px;
    box-shadow: var(--shadow-card);
    border: 1px solid rgba(0,0,0,0.04);
    border-left: 3px solid var(--gold-primary);
    transition: border-left-color 0.3s;
}

.legal-item:hover {
    border-left-color: var(--teal-accent);
}

.legal-item h3 {
    font-family: var(--font-display);
    color: var(--dark-900);
    font-size: 1.15rem;
    margin-bottom: 14px;
    font-weight: 600;
    letter-spacing: 0.05em;
    padding-bottom: 12px;
    border-bottom: 1px solid #F0F0F0;
}

.legal-item p {
    color: var(--text-muted);
    line-height: 1.85;
    font-size: 0.93rem;
}


/* =========================================
   FLOATING AI BUTTON — Vibrant
   ========================================= */
.floating-ai-btn {
    position: fixed;
    bottom: 28px;
    right: 28px;
    width: 62px;
    height: 62px;
    background: linear-gradient(135deg, var(--teal-accent), #0EA5E9, #7C3AED);
    background-size: 200% 200%;
    animation: ai-gradient 4s ease infinite, pulseai 2.8s infinite;
    border-radius: 50%;
    box-shadow: 0 8px 32px rgba(10,191,188,0.4);
    z-index: 9999;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #fff;
    font-size: 26px;
    text-decoration: none;
    transition: all 0.35s cubic-bezier(0.25, 0.8, 0.25, 1);
}

@keyframes ai-gradient {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

@keyframes pulseai {
    0%   { box-shadow: 0 0 0 0 rgba(10, 191, 188, 0.5); }
    70%  { box-shadow: 0 0 0 20px rgba(10, 191, 188, 0); }
    100% { box-shadow: 0 0 0 0 rgba(10, 191, 188, 0); }
}

.floating-ai-btn:hover {
    transform: scale(1.14) rotate(8deg);
    box-shadow: 0 18px 50px rgba(10,191,188,0.5);
    animation: ai-gradient 1.5s ease infinite;
}

.ai-tooltip {
    position: absolute;
    right: 76px;
    background: var(--dark-800);
    color: var(--teal-accent);
    padding: 7px 16px;
    border-radius: 22px;
    font-size: 0.76rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    opacity: 0;
    pointer-events: none;
    transform: translateX(8px);
    transition: all 0.3s ease;
    white-space: nowrap;
    border: 1px solid rgba(10,191,188,0.25);
}

.floating-ai-btn:hover .ai-tooltip {
    opacity: 1;
    transform: translateX(0);
}

/* AI Greeting Bubble */
.ai-greeting-bubble {
    position: fixed;
    bottom: 102px;
    right: 28px;
    background: var(--bg-white);
    color: var(--dark-900);
    padding: 14px 18px;
    border-radius: 18px 18px 0 18px;
    box-shadow: 0 12px 40px rgba(0,0,0,0.15);
    font-size: 0.88rem;
    font-weight: 500;
    z-index: 998;
    display: flex;
    align-items: center;
    gap: 10px;
    animation: fadeInBubble 0.45s ease-out;
    border-left: 3px solid var(--teal-accent);
    max-width: 250px;
    line-height: 1.45;
}

@keyframes fadeInBubble {
    from { opacity: 0; transform: translateY(16px); }
    to   { opacity: 1; transform: translateY(0); }
}

.ai-greeting-bubble i.fa-robot { color: var(--teal-accent); }

.close-bubble {
    cursor: pointer;
    opacity: 0.4;
    transition: opacity 0.25s;
    font-size: 0.75rem;
    margin-left: 4px;
    flex-shrink: 0;
}

.close-bubble:hover { opacity: 1; }


/* =========================================
   SWIPER OVERRIDES — Vivid
   ========================================= */
.swiper-button-next,
.swiper-button-prev {
    color: var(--text-white) !important;
    background: rgba(5, 8, 16, 0.55) !important;
    width: 48px !important;
    height: 48px !important;
    border-radius: 50% !important;
    -webkit-backdrop-filter: blur(12px);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255,255,255,0.12) !important;
    transition: all 0.3s;
}

.swiper-button-next:hover,
.swiper-button-prev:hover {
    background: linear-gradient(135deg, var(--gold-primary), var(--teal-accent)) !important;
    color: #fff !important;
    border-color: transparent !important;
    transform: scale(1.1);
}

.swiper-button-next::after,
.swiper-button-prev::after {
    font-size: 14px !important;
    font-weight: 900;
}

.swiper-pagination-bullet {
    background: rgba(255,255,255,0.25) !important;
    opacity: 1 !important;
    width: 8px;
    height: 8px;
    transition: all 0.3s;
}

.swiper-pagination-bullet-active {
    background: var(--gold-primary) !important;
    width: 28px;
    border-radius: 4px;
}

.swiper-pagination { bottom: 4px !important; }


/* =========================================
   SCROLL REVEAL
   ========================================= */
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.9s cubic-bezier(0.5, 0, 0, 1),
                transform 0.9s cubic-bezier(0.5, 0, 0, 1);
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}


/* =========================================
   HELPERS
   ========================================= */
a, button { -webkit-tap-highlight-color: transparent; }

.text-center { text-align: center; }
.p-10 { padding: 40px; }

.formal-legal-doc {
    text-align: justify;
    color: var(--text-muted);
    font-size: 0.93rem;
    line-height: 1.9;
}

.formal-legal-doc p { margin-bottom: 18px; }
.formal-legal-doc strong { color: var(--dark-900); }

.contract-intro {
    font-style: italic;
    margin-bottom: 28px;
    padding-bottom: 20px;
    border-bottom: 1px solid #EEE;
    color: var(--text-muted);
}


/* =========================================
   RESPONSIVE — TABLET & MOBILE
   ========================================= */
@media screen and (max-width: 768px) {

    :root { --section-pad: 60px 5%; }

    .hamburger { display: block; }

    .nav-links {
        display: none;
        position: fixed;
        inset: 0;
        background: rgba(5, 8, 16, 0.98);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        z-index: 999;
        gap: 0;
    }

    .nav-links.active { display: flex; }

    .nav-links a {
        margin: 12px 0;
        font-size: 1.1rem;
        color: var(--text-white);
        letter-spacing: 0.12em;
    }

    .nav-links a::after { display: none; }

    /* Hero */
    .hero-slider {
        aspect-ratio: 2.5 / 1;
        height: auto;
        min-height: unset;
    }

    .slide-cta { bottom: 12%; }

    .hero-btn {
        padding: 10px 22px;
        font-size: 0.7rem;
    }

    .dots-container { bottom: 8px; }

    /* Sections */
    .section-header { margin-bottom: 40px; }
    .section-header h2 { font-size: 1.7rem; }
    .horizontal-card h3 { font-size: 1.1rem; }
    .card-content .desc { font-size: 0.85rem; }

    /* Cards */
    .cards-grid {
        display: flex;
        flex-direction: column;
        gap: 18px;
    }

    .horizontal-card { transform: none !important; border-radius: 16px; }
    .horizontal-card:active { transform: scale(0.98) !important; }
    .horizontal-card img { height: 200px; transform: none !important; }
    .card-content { padding: 20px 18px; }
    .card-content h3 { font-size: 1.15rem; }

    /* Features */
    .features-grid { grid-template-columns: 1fr; gap: 16px; }
    .feature-item { padding: 30px 24px; transform: none !important; }

    /* Booking */
    .booking-card { padding: 32px 20px; }
    .form-row { grid-template-columns: 1fr; gap: 14px; margin-bottom: 14px; }

    input, select, textarea {
        font-size: 16px;
        padding: 14px 16px;
    }

    .booking-btn-row { flex-direction: column; gap: 12px; }
    .booking-action-btn { min-width: unset; }

    /* Modal */
    .modal-content { width: 95%; padding: 24px 18px; margin: 4vh auto; }
    .modal h2 { font-size: 1.5rem; }
    .modal-slider { aspect-ratio: 4/3; }

    /* FAQ */
    .faq-grid { grid-template-columns: 1fr; }
    .page-header h1 { font-size: 2rem; }

    /* Footer */
    .footer-grid { gap: 36px; }
    .premium-footer { padding: 60px 6% 40px; }
    .footer-brand p { max-width: 100%; }

    /* Floating button */
    .floating-ai-btn { bottom: 20px; right: 20px; width: 56px; height: 56px; font-size: 22px; }
}


@media screen and (max-width: 480px) {
    .section-header h2 { font-size: 1.6rem; }
    .navbar-brand h2 { font-size: 0.95rem; }
    .hero-btn { padding: 9px 16px; font-size: 0.65rem; }
    .horizontal-card img { height: 180px; }
    .page-header h1 { font-size: 1.7rem; }
}

@media screen and (max-width: 375px) {
    .hero-slider { aspect-ratio: 2.2 / 1; }
    .hero-btn { padding: 8px 12px; font-size: 0.6rem; }
    .navbar-brand h2 { display: none; }
}


/* =========================================
   FLATPICKR CUSTOM THEME
   ========================================= */
.flatpickr-calendar {
    background: var(--dark-800) !important;
    border: 1px solid var(--gold-border) !important;
    box-shadow: 0 16px 40px rgba(0,0,0,0.5) !important;
    border-radius: 16px !important;
    font-family: var(--font-body) !important;
}

.flatpickr-day.selected, .flatpickr-day.startRange, .flatpickr-day.endRange,
.flatpickr-day.selected.inRange, .flatpickr-day.startRange.inRange,
.flatpickr-day.endRange.inRange, .flatpickr-day.selected:focus,
.flatpickr-day.startRange:focus, .flatpickr-day.endRange:focus,
.flatpickr-day.selected:hover, .flatpickr-day.startRange:hover,
.flatpickr-day.endRange:hover, .flatpickr-day.prevMonthDay.selected,
.flatpickr-day.nextMonthDay.selected, .flatpickr-day.prevMonthDay.startRange,
.flatpickr-day.nextMonthDay.startRange, .flatpickr-day.prevMonthDay.endRange,
.flatpickr-day.nextMonthDay.endRange {
    background: linear-gradient(135deg, var(--gold-primary), var(--teal-accent)) !important;
    border-color: transparent !important;
    color: #fff !important;
}

.flatpickr-day:hover {
    background: var(--gold-pale) !important;
    border-color: var(--gold-primary) !important;
}

.flatpickr-months .flatpickr-month {
    background: var(--dark-900) !important;
    color: var(--text-white) !important;
    fill: var(--text-white) !important;
}

.flatpickr-current-month .flatpickr-monthDropdown-months {
    background: var(--dark-900) !important;
}

.flatpickr-calendar.arrowTop:before, .flatpickr-calendar.arrowTop:after {
    border-bottom-color: var(--gold-border) !important;
}

.flatpickr-weekday {
    color: var(--teal-accent) !important;
    font-weight: 700 !important;
}

.flatpickr-day {
    color: var(--text-silver) !important;
}

.flatpickr-day.flatpickr-disabled, .flatpickr-day.flatpickr-disabled:hover {
    color: rgba(255,255,255,0.1) !important;
}

.flatpickr-months .flatpickr-prev-month, .flatpickr-months .flatpickr-next-month {
    color: var(--gold-primary) !important;
    fill: var(--gold-primary) !important;
}

.flatpickr-months .flatpickr-prev-month:hover, .flatpickr-months .flatpickr-next-month:hover {
    color: var(--teal-accent) !important;
}


/* =========================================
   GTRANSLATE LANGUAGE SELECTOR
   ========================================= */
.gtranslate_wrapper {
    display: inline-block;
    margin-left: 20px;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    white-space: nowrap;
    position: relative;
    z-index: 1002;
}

.gtranslate_wrapper select,
.gtranslate_wrapper .gt_selector {
    background: rgba(255, 255, 255, 0.05) !important;
    border: 1px solid var(--gold-border) !important;
    color: var(--text-white) !important;
    padding: 6px 14px !important;
    border-radius: 50px !important;
    outline: none !important;
    cursor: pointer;
    font-family: var(--font-body) !important;
    font-size: 0.78rem !important;
    -webkit-backdrop-filter: blur(8px);
    backdrop-filter: blur(8px);
    transition: all 0.3s ease !important;
}

.gtranslate_wrapper:hover select,
.gtranslate_wrapper:hover .gt_selector {
    background: var(--gold-pale) !important;
    border-color: var(--gold-primary) !important;
    box-shadow: 0 0 18px var(--gold-glow) !important;
}

.gtranslate_wrapper option {
    background: var(--dark-900) !important;
    color: var(--text-silver) !important;
}

.gtranslate_wrapper a,
.gtranslate_wrapper a:focus,
.gtranslate_wrapper a:active,
.gtranslate_wrapper select:focus {
    outline: none !important;
    text-decoration: none !important;
    border-style: none !important;
}

.gtranslate_wrapper a.glink {
    color: var(--text-silver) !important;
    font-size: 0.78rem !important;
    font-family: var(--font-body) !important;
    font-weight: 500 !important;
    letter-spacing: 0.05em !important;
    text-transform: uppercase !important;
}

.gtranslate_wrapper a.glink:hover {
    color: var(--teal-accent) !important;
}

@media (max-width: 900px) {
    .gtranslate_wrapper {
        margin-left: auto;
        margin-right: 15px;
    }
}


/* =========================================
   ADDITIONAL ENHANCEMENT STYLES
   ========================================= */

/* Ambient section backgrounds */
#cars { 
    background: var(--bg-page);
    position: relative;
}
#cars::before {
    content: '';
    position: absolute;
    top: 0; right: 0;
    width: 400px; height: 400px;
    background: radial-gradient(circle, rgba(212,168,67,0.05) 0%, transparent 70%);
    pointer-events: none;
}

#tours {
    background: var(--bg-cream);
    position: relative;
}
#tours::before {
    content: '';
    position: absolute;
    bottom: 0; left: 0;
    width: 500px; height: 300px;
    background: radial-gradient(ellipse, rgba(10,191,188,0.04) 0%, transparent 70%);
    pointer-events: none;
}

#packages { 
    background: var(--bg-page);
    position: relative;
}

/* Dark "Why Choose" section upgrade */
section[style*="background: #121212"],
section[style*="background:#121212"] {
    background: linear-gradient(180deg, #0A0F1E 0%, #050810 100%) !important;
    position: relative;
    overflow: hidden;
}

section[style*="background: #121212"]::before,
section[style*="background:#121212"]::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 60% 50% at 50% 0%, rgba(10,191,188,0.05) 0%, transparent 70%),
        radial-gradient(ellipse 40% 60% at 80% 80%, rgba(212,168,67,0.06) 0%, transparent 70%);
    pointer-events: none;
}

/* Colorful stat badges */
.stat-badge {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    padding: 16px 24px;
    border-radius: 16px;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.08);
}

.stat-badge .stat-number {
    font-family: var(--font-display);
    font-size: 2.4rem;
    font-weight: 700;
    background: linear-gradient(135deg, var(--gold-light), var(--teal-accent));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Booking section upgrade */
#booking {
    background: linear-gradient(180deg, var(--bg-cream) 0%, var(--bg-page) 100%);
    position: relative;
}

#booking::before {
    content: '';
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    width: 600px; height: 400px;
    background: radial-gradient(ellipse, rgba(212,168,67,0.06) 0%, transparent 70%);
    pointer-events: none;
}

/* Tour package badge colors */
.horizontal-card:nth-child(3n+1) .subtitle {
    background: linear-gradient(135deg, var(--gold-primary), var(--gold-light));
}
.horizontal-card:nth-child(3n+2) .subtitle {
    background: linear-gradient(135deg, var(--teal-accent), #0EA5E9);
    color: #fff;
}
.horizontal-card:nth-child(3n+3) .subtitle {
    background: linear-gradient(135deg, #FF6B6B, #F97316);
    color: #fff;
}

/* Highlight ring on active nav item */
.nav-links a[style*="color:var(--gold-light)"],
.nav-links a[style*="color: var(--gold-light)"] {
    color: var(--gold-light) !important;
    background: rgba(212,168,67,0.1);
    border-radius: 8px;
}

/* Smooth image load transitions */
img {
    transition: opacity 0.3s ease;
}


/* =========================================
   LUXURY & MOBILE-APP UPGRADE 2026
   Premium Enhancements + App-Like UX
   ========================================= */

/* ── iOS / PWA Base Fixes ── */
html {
    -webkit-text-size-adjust: 100%;
    scroll-behavior: smooth;
}
body {
    padding-bottom: env(safe-area-inset-bottom);
}

/* ── Mobile Theme Color Meta Support ── */
:root {
    color-scheme: light dark;
}


/* =========================================
   BOTTOM MOBILE NAV — App-Style Bar
   ========================================= */
.mobile-bottom-nav {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 1500;
    background: rgba(5, 8, 16, 0.97);
    -webkit-backdrop-filter: blur(24px) saturate(180%);
    backdrop-filter: blur(24px) saturate(180%);
    border-top: 1px solid var(--gold-border);
    padding: 8px 0 calc(8px + env(safe-area-inset-bottom));
    display: none;
    grid-template-columns: repeat(5, 1fr);
    align-items: center;
}

.mobile-bottom-nav::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--gold-primary), var(--teal-accent), var(--gold-primary), transparent);
}

.mob-nav-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    padding: 6px 4px;
    text-decoration: none;
    color: var(--text-muted);
    font-size: 0.6rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    transition: color 0.25s, transform 0.25s;
    position: relative;
    -webkit-tap-highlight-color: transparent;
}

.mob-nav-item i {
    font-size: 1.15rem;
    transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.mob-nav-item.active {
    color: var(--gold-primary);
}

.mob-nav-item.active i {
    transform: scale(1.2) translateY(-2px);
}

.mob-nav-item.active::before {
    content: '';
    position: absolute;
    top: -1px;
    left: 50%;
    transform: translateX(-50%);
    width: 28px;
    height: 2.5px;
    background: linear-gradient(90deg, var(--gold-primary), var(--teal-accent));
    border-radius: 0 0 3px 3px;
}

.mob-nav-item:active { transform: scale(0.92); }

/* Book CTA tab — highlighted */
.mob-nav-item.mob-nav-book {
    color: var(--gold-light);
}
.mob-nav-item.mob-nav-book i {
    background: linear-gradient(135deg, var(--gold-primary), var(--teal-accent));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

@media (max-width: 768px) {
    .mobile-bottom-nav {
        display: grid;
    }
    /* Prevent floating AI button from overlapping bottom nav */
    .floating-ai-btn {
        bottom: calc(72px + env(safe-area-inset-bottom) + 12px);
        right: 16px;
        width: 52px;
        height: 52px;
        font-size: 20px;
    }
    .ai-greeting-bubble {
        bottom: calc(140px + env(safe-area-inset-bottom));
        right: 16px;
    }
    /* Add padding so footer/content doesn't go under bottom nav */
    .premium-footer { padding-bottom: calc(80px + env(safe-area-inset-bottom)); }
    body { padding-bottom: 0; }
}


/* =========================================
   TRUST STATS BAR — Animated Counters
   ========================================= */
.stats-bar {
    background: linear-gradient(135deg, var(--dark-900) 0%, var(--dark-800) 50%, var(--dark-900) 100%);
    border-top: 1px solid var(--gold-border);
    border-bottom: 1px solid var(--gold-border);
    padding: 44px 8%;
    position: relative;
    overflow: hidden;
}

.stats-bar::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 70% 80% at 50% 50%, rgba(212,168,67,0.06) 0%, transparent 70%);
    pointer-events: none;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    max-width: 1100px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.stat-item {
    text-align: center;
    padding: 16px 24px;
    position: relative;
}

.stat-item:not(:last-child)::after {
    content: '';
    position: absolute;
    right: 0; top: 20%; bottom: 20%;
    width: 1px;
    background: linear-gradient(180deg, transparent, var(--gold-border), transparent);
}

.stat-number {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    background: linear-gradient(135deg, var(--gold-light) 0%, var(--gold-primary) 50%, var(--teal-accent) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    display: block;
    margin-bottom: 8px;
}

.stat-label {
    color: var(--text-muted);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.stat-icon {
    font-size: 1.4rem;
    color: var(--gold-primary);
    margin-bottom: 10px;
    display: block;
    opacity: 0.8;
}

@media (max-width: 640px) {
    .stats-grid { grid-template-columns: repeat(2, 1fr); }
    .stat-item:nth-child(2)::after { display: none; }
    .stat-item { padding: 14px 12px; }
}


/* =========================================
   HOW IT WORKS — 3-Step Visual
   ========================================= */
.how-it-works {
    background: var(--bg-cream);
    padding: var(--section-pad);
    position: relative;
    overflow: hidden;
}

.how-it-works::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--gold-primary), var(--teal-accent), transparent);
    opacity: 0.5;
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    max-width: 1000px;
    margin: 0 auto;
    position: relative;
}

.steps-grid::before {
    content: '';
    position: absolute;
    top: 48px;
    left: calc(16.66% + 20px);
    right: calc(16.66% + 20px);
    height: 1px;
    background: linear-gradient(90deg, var(--gold-primary), var(--teal-accent));
    opacity: 0.35;
}

.step-item {
    text-align: center;
    position: relative;
}

.step-number {
    width: 88px;
    height: 88px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--dark-800), var(--dark-700));
    border: 2px solid var(--gold-border);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 28px;
    position: relative;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 8px 32px rgba(0,0,0,0.2);
}

.step-number::before {
    content: '';
    position: absolute;
    inset: -2px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--gold-primary), var(--teal-accent));
    z-index: -1;
    opacity: 0;
    transition: opacity 0.4s;
}

.step-item:hover .step-number::before { opacity: 1; }
.step-item:hover .step-number { transform: translateY(-6px) scale(1.08); box-shadow: 0 20px 50px var(--gold-glow); }

.step-number i {
    font-size: 1.8rem;
    color: var(--gold-primary);
    transition: color 0.3s;
}

.step-item:hover .step-number i { color: var(--gold-light); }

.step-badge {
    position: absolute;
    top: -6px; right: -6px;
    width: 28px; height: 28px;
    background: linear-gradient(135deg, var(--gold-primary), var(--teal-accent));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.65rem;
    font-weight: 800;
    color: var(--dark-900);
    box-shadow: 0 4px 14px var(--gold-glow);
}

.step-title {
    font-family: var(--font-display);
    font-size: 1.1rem;
    color: var(--dark-900);
    margin-bottom: 12px;
    font-weight: 600;
    letter-spacing: 0.04em;
}

.step-desc {
    color: var(--text-muted);
    font-size: 0.88rem;
    line-height: 1.7;
}

@media (max-width: 640px) {
    .steps-grid { grid-template-columns: 1fr; gap: 32px; }
    .steps-grid::before { display: none; }
}


/* =========================================
   TESTIMONIALS — Glassmorphism Cards
   ========================================= */
.testimonials-section {
    background: linear-gradient(180deg, var(--dark-900) 0%, var(--dark-800) 100%);
    padding: var(--section-pad);
    position: relative;
    overflow: hidden;
}

.testimonials-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 50% 60% at 20% 50%, rgba(10,191,188,0.07) 0%, transparent 70%),
        radial-gradient(ellipse 40% 50% at 80% 30%, rgba(212,168,67,0.07) 0%, transparent 70%);
    pointer-events: none;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 28px;
    max-width: 1200px;
    margin: 0 auto;
}

.testimonial-card {
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 24px;
    padding: 36px 30px;
    position: relative;
    -webkit-backdrop-filter: blur(20px);
    backdrop-filter: blur(20px);
    transition: all 0.45s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    overflow: hidden;
}

.testimonial-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--gold-primary), var(--teal-accent), var(--gold-primary));
    background-size: 200% 100%;
    opacity: 0;
    transition: opacity 0.4s;
    animation: shimmer-bar 3s linear infinite;
}

.testimonial-card:hover {
    transform: translateY(-10px);
    border-color: var(--gold-border);
    background: rgba(255,255,255,0.07);
    box-shadow: 0 32px 80px rgba(0,0,0,0.4), 0 0 40px var(--gold-glow);
}

.testimonial-card:hover::before { opacity: 1; }

.testimonial-quote {
    font-size: 3rem;
    line-height: 1;
    color: var(--gold-primary);
    opacity: 0.4;
    font-family: Georgia, serif;
    margin-bottom: -10px;
}

.testimonial-text {
    color: var(--text-silver);
    font-size: 0.93rem;
    line-height: 1.85;
    margin-bottom: 24px;
    font-style: italic;
}

.testimonial-stars {
    color: var(--gold-primary);
    font-size: 0.85rem;
    letter-spacing: 2px;
    margin-bottom: 16px;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 14px;
    border-top: 1px solid rgba(255,255,255,0.07);
    padding-top: 20px;
}

.testimonial-avatar {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--gold-primary), var(--gold-light));
    border: 2px solid var(--gold-primary);
    box-shadow: 0 4px 12px rgba(212, 168, 67, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-display);
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--dark-900);
    flex-shrink: 0;
}

.testimonial-name {
    font-family: var(--font-display);
    color: var(--text-white);
    font-size: 0.92rem;
    font-weight: 600;
    margin-bottom: 2px;
}

.testimonial-country {
    color: var(--text-muted);
    font-size: 0.75rem;
    display: flex;
    align-items: center;
    gap: 5px;
}


/* =========================================
   WAVE SECTION DIVIDERS
   ========================================= */
.wave-divider {
    display: block;
    width: 100%;
    overflow: hidden;
    line-height: 0;
    margin: 0;
}

.wave-divider svg {
    display: block;
    width: 100%;
    height: 60px;
}

.wave-divider.wave-dark { background: var(--bg-page); }
.wave-divider.wave-dark svg { fill: var(--dark-900); }
.wave-divider.wave-light { background: var(--dark-900); }
.wave-divider.wave-light svg { fill: var(--bg-cream); }
.wave-divider.wave-cream { background: var(--dark-800); }
.wave-divider.wave-cream svg { fill: var(--bg-cream); }


/* =========================================
   ENHANCED CARD 3D EFFECTS
   ========================================= */
.horizontal-card {
    transform-style: preserve-3d;
    will-change: transform;
}

/* Shimmer sweep effect on cards */
.horizontal-card .img-wrapper::before {
    content: '';
    position: absolute;
    top: 0;
    left: -75%;
    width: 50%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.12), transparent);
    transform: skewX(-20deg);
    transition: left 0.7s ease;
    z-index: 2;
}

.horizontal-card:hover .img-wrapper::before {
    left: 125%;
}

/* Premium price display */
.price {
    background: linear-gradient(135deg, var(--gold-primary), var(--gold-light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}


/* =========================================
   HERO TYPOGRAPHY UPGRADE
   ========================================= */
.slide-caption h2 {
    font-size: clamp(1.8rem, 5.5vw, 4.5rem);
}

/* Gold shimmer on hero span text */
.slide-caption h2 span {
    background: linear-gradient(135deg, var(--gold-light) 0%, var(--gold-primary) 40%, var(--teal-accent) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    background-size: 200% auto;
    animation: gold-shimmer 4s linear infinite;
}

@keyframes gold-shimmer {
    0% { background-position: 0% center; }
    100% { background-position: 200% center; }
}


/* =========================================
   TOUCH / MOBILE OPTIMIZATIONS
   ========================================= */

/* Prevent blue flash on tap — iOS */
* { -webkit-tap-highlight-color: transparent; }

/* Ensure all interactive elements have good tap targets */
.nav-links a,
.booking-action-btn,
.cta-wa, .cta-email,
.view-all-btn,
.hero-btn,
.mob-nav-item {
    min-height: 44px;
}

/* Remove complex hover transforms on touch devices */
@media (hover: none) {
    .horizontal-card:hover {
        transform: none;
        box-shadow: var(--shadow-card);
    }
    .horizontal-card:hover img { transform: none; }
    .horizontal-card:active {
        transform: scale(0.98);
        transition: transform 0.1s;
    }
    .feature-item:hover { transform: none; }
    .feature-item:active { transform: scale(0.97); }
    .step-item:hover .step-number { transform: none; }
}

/* Smooth momentum scrolling on iOS */
.modal,
.info-bar,
nav.nav-links {
    -webkit-overflow-scrolling: touch;
}

/* Better focus ring for accessibility */
:focus-visible {
    outline: 2px solid var(--gold-primary);
    outline-offset: 3px;
    border-radius: 4px;
}

/* Mobile booking section bottom padding for bottom nav */
@media (max-width: 768px) {
    #booking { padding-bottom: 120px; }
    .section { padding-bottom: 80px; }
}


/* =========================================
   NAVBAR SCROLL SHRINK EFFECT
   ========================================= */
.navbar.scrolled {
    height: 62px;
    background: rgba(5, 8, 16, 0.98);
    box-shadow: 0 4px 32px rgba(0,0,0,0.4);
}

.navbar.scrolled .navbar-brand img { height: 38px; }


/* =========================================
   PAGE HEADER LUXURY UPGRADE
   ========================================= */
.page-header {
    padding: 100px 8% 80px;
}

.page-header h1 {
    font-size: clamp(2rem, 5vw, 3.5rem);
    background: linear-gradient(135deg, var(--text-white) 0%, var(--gold-light) 60%, var(--text-white) 100%);
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gold-shimmer 5s linear infinite;
}

.page-header p {
    font-size: 1.05rem;
    max-width: 560px;
    margin: 0 auto;
}


/* =========================================
   CTA STRIP UPGRADE
   ========================================= */
.cta-strip {
    position: relative;
    overflow: hidden;
}

.cta-strip::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 60% 100% at 50% 50%, rgba(212,168,67,0.05) 0%, transparent 70%);
    pointer-events: none;
}


/* =========================================
   INFO BAR SCROLL INDICATOR
   ========================================= */
.info-bar {
    position: relative;
}

.info-bar::after {
    content: '';
    position: absolute;
    right: 0; top: 0; bottom: 0;
    width: 40px;
    background: linear-gradient(to left, var(--dark-900), transparent);
    pointer-events: none;
}

@media (min-width: 900px) {
    .info-bar::after { display: none; }
}


/* =========================================
   MOBILE NAV LINKS STAGGER ANIMATION
   ========================================= */
.nav-links.active a {
    animation: navLinkFade 0.4s ease both;
}

.nav-links.active a:nth-child(1) { animation-delay: 0.05s; }
.nav-links.active a:nth-child(2) { animation-delay: 0.12s; }
.nav-links.active a:nth-child(3) { animation-delay: 0.19s; }
.nav-links.active a:nth-child(4) { animation-delay: 0.26s; }
.nav-links.active a:nth-child(5) { animation-delay: 0.33s; }
.nav-links.active a:nth-child(6) { animation-delay: 0.40s; }

@keyframes navLinkFade {
    from { opacity: 0; transform: translateY(20px); }
    to   { opacity: 1; transform: translateY(0); }
}


/* =========================================
   EXTRA MOBILE REFINEMENTS (≤480px)
   ========================================= */
@media (max-width: 480px) {
    .stats-bar { padding: 32px 5%; }
    .how-it-works { padding: 60px 5%; }
    .testimonials-section { padding: 60px 5%; }
    .testimonials-grid { grid-template-columns: 1fr; }
    .booking-card { border-radius: 20px; }
    .modal-content { border-radius: 20px; }
    .section-header h2 { font-size: 1.5rem; }
}


/* =========================================
   REVIEW WIDGET — Professional Styles
   ========================================= */
.rw-container { max-width: 680px; margin: 0 auto; }
.rw-header { text-align: center; margin-bottom: 40px; }
.rw-title { font-family: var(--font-display); font-size: clamp(1.6rem,3vw,2.2rem); color: var(--dark-900); margin-bottom: 10px; }
.rw-subtitle { color: var(--text-muted); font-size: 0.95rem; }

.rw-card {
    background: #fff; border-radius: 20px; padding: 36px;
    box-shadow: 0 4px 32px rgba(0,0,0,.07); border: 1px solid #f0f0f0;
    margin-bottom: 20px; transition: all 0.3s;
}
.rw-step-label {
    font-family: var(--font-display); font-size: 0.78rem; letter-spacing: 0.12em;
    text-transform: uppercase; color: var(--text-muted);
    display: flex; align-items: center; gap: 10px; margin-bottom: 12px;
}
.rw-step-num {
    width: 26px; height: 26px;
    background: linear-gradient(135deg, var(--gold-primary), var(--teal-accent));
    color: var(--dark-900); border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 0.75rem; font-weight: 800; flex-shrink: 0;
}
.rw-step-desc { color: #64748b; font-size: 0.9rem; line-height: 1.6; margin-bottom: 24px; }

.rw-social-btns { display: flex; flex-direction: column; gap: 12px; }
.rw-social-btn {
    display: flex; align-items: center; justify-content: center;
    padding: 13px 20px; border-radius: 12px; font-size: 0.92rem;
    font-weight: 600; cursor: pointer; border: none; transition: all 0.25s;
    width: 100%; letter-spacing: 0.01em;
}
.rw-google-btn {
    background: #fff; color: #3c4043; border: 1.5px solid #dadce0;
    box-shadow: 0 2px 8px rgba(0,0,0,.08);
}
.rw-google-btn:hover { background: #f8f9fa; box-shadow: 0 4px 16px rgba(0,0,0,.12); transform: translateY(-1px); }
.rw-fb-btn { background: #1877f2; color: #fff; box-shadow: 0 2px 8px rgba(24,119,242,.25); }
.rw-fb-btn:hover { background: #166fe5; box-shadow: 0 4px 16px rgba(24,119,242,.35); transform: translateY(-1px); }

.rw-divider { display: flex; align-items: center; gap: 14px; margin: 20px 0 4px; color: #9ca3af; font-size: 0.8rem; }
.rw-divider::before, .rw-divider::after { content: ''; flex: 1; height: 1px; background: #e5e7eb; }
.rw-guest-link {
    width: 100%; background: none; border: none; color: var(--text-muted);
    font-size: 0.85rem; cursor: pointer; padding: 10px; border-radius: 8px;
    transition: background 0.2s, color 0.2s;
    display: flex; align-items: center; justify-content: center;
}
.rw-guest-link:hover { background: #f9fafb; color: var(--dark-800); }

.rw-profile-preview {
    display: flex; align-items: center; gap: 14px;
    background: linear-gradient(135deg,#f9fafb,#f0fdf4);
    border: 1.5px solid #d1fae5; border-radius: 14px;
    padding: 14px 18px; margin-bottom: 24px;
}
.rw-avatar { width: 52px; height: 52px; border-radius: 50%; border: 2.5px solid var(--gold-primary); object-fit: cover; flex-shrink: 0; }
.rw-profile-name { font-weight: 700; color: var(--dark-900); font-size: 0.95rem; margin-bottom: 2px; }
.rw-profile-via  { font-size: 0.75rem; color: #6b7280; }
.rw-switch-btn {
    margin-left: auto; background: none; border: 1px solid #e5e7eb;
    border-radius: 8px; padding: 6px 12px; font-size: 0.75rem;
    color: #6b7280; cursor: pointer; white-space: nowrap; transition: all 0.2s;
}
.rw-switch-btn:hover { border-color: var(--gold-primary); color: var(--dark-900); }

.rw-field { margin-bottom: 16px; }
.rw-field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin-bottom: 16px; }
.rw-label { display: block; font-size: 0.78rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.09em; color: #6b7280; margin-bottom: 7px; }
.rw-chars { float: right; font-weight: 400; color: #9ca3af; }
.rw-input, .rw-textarea {
    width: 100%; border: 1.5px solid #e5e7eb; border-radius: 10px;
    padding: 11px 14px; font-size: 0.9rem; font-family: inherit;
    outline: none; transition: border-color 0.2s, box-shadow 0.2s;
    box-sizing: border-box; color: var(--dark-900); background: #fafafa;
}
.rw-input:focus, .rw-textarea:focus { border-color: var(--gold-primary); background: #fff; box-shadow: 0 0 0 3px rgba(212,168,67,.12); }
.rw-textarea { resize: vertical; min-height: 110px; }

.rw-rating-wrap { margin-bottom: 20px; }
.rw-stars { display: flex; gap: 6px; }
.rw-star { font-size: 2rem; cursor: pointer; color: #d1d5db; transition: color 0.2s, transform 0.2s; line-height: 1; user-select: none; -webkit-tap-highlight-color: transparent; }

.rw-submit-btn {
    width: 100%;
    background: linear-gradient(135deg, var(--dark-800), var(--dark-700));
    color: var(--gold-light); border: 1.5px solid var(--gold-border); border-radius: 12px;
    padding: 14px; font-family: var(--font-display); font-size: 0.88rem;
    letter-spacing: 0.1em; text-transform: uppercase; cursor: pointer;
    transition: all 0.3s; display: flex; align-items: center; justify-content: center; gap: 8px;
}
.rw-submit-btn:hover:not(:disabled) { background: linear-gradient(135deg, var(--gold-primary), var(--teal-accent)); color: var(--dark-900); box-shadow: 0 8px 28px var(--gold-glow); border-color: transparent; transform: translateY(-1px); }
.rw-submit-btn:disabled { opacity: 0.7; cursor: not-allowed; }

.rw-privacy-note { text-align: center; font-size: 0.75rem; color: #9ca3af; margin-top: 12px; display: flex; align-items: center; justify-content: center; gap: 6px; }
.rw-privacy-note .fa-lock { color: var(--teal-accent); }

.rw-success-card { text-align: center; padding: 48px 36px; }
.rw-success-icon { font-size: 3.5rem; color: #10b981; margin-bottom: 16px; animation: rw-pop 0.5s cubic-bezier(0.175,.885,.32,1.275); }
.rw-success-title { font-family: var(--font-display); font-size: 1.5rem; color: var(--dark-900); margin-bottom: 10px; }
.rw-success-msg { color: #6b7280; font-size: 0.9rem; line-height: 1.7; max-width: 420px; margin: 0 auto; }
@keyframes rw-pop { from { transform: scale(0); opacity: 0; } to { transform: scale(1); opacity: 1; } }

.rw-toast { border-radius: 12px; padding: 14px 18px; font-size: 0.88rem; line-height: 1.6; margin-bottom: 16px; }
.rw-toast-success { background: #f0fdf4; border: 1.5px solid #86efac; color: #166534; }
.rw-toast-error   { background: #fef2f2; border: 1.5px solid #fca5a5; color: #991b1b; }

.rw-badge { position: absolute; bottom: -2px; right: -2px; width: 20px; height: 20px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 0.6rem; border: 2px solid #fff; }
.rw-badge-google { background: #fff; color: #4285F4; }
.rw-badge-fb     { background: #1877f2; color: #fff; }

.rw-dyn-avatar { width: 52px; height: 52px; border-radius: 50%; object-fit: cover; border: 2px solid var(--gold-primary); box-shadow: 0 4px 12px rgba(212, 168, 67, 0.3); flex-shrink: 0; }
.rw-dyn-initials { background: linear-gradient(135deg, var(--gold-primary), var(--gold-light)); color: var(--dark-900); font-family: var(--font-display); font-size: 1.1rem; font-weight: 700; display: flex; align-items: center; justify-content: center; }

@media (max-width: 560px) {
    .rw-card { padding: 24px 20px; border-radius: 16px; }
    .rw-field-row { grid-template-columns: 1fr; }
}


/* ── REVIEW MODAL OVERLAY ── */
.rw-modal-overlay {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(5, 8, 16, 0.85);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  z-index: 99999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  padding: 20px;
  overflow-y: auto;
}

.rw-modal-overlay.active {
  opacity: 1;
  visibility: visible;
}

.rw-modal-content {
  position: relative;
  width: 100%;
  max-width: 600px;
  margin: auto;
  transform: translateY(30px) scale(0.95);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.rw-modal-overlay.active .rw-modal-content {
  transform: translateY(0) scale(1);
}

.rw-close-btn {
  position: fixed;
  top: 20px;
  right: 20px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #fff;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 10;
  transition: all 0.3s ease;
}

.rw-close-btn:hover {
  background: #e53e3e;
  border-color: #e53e3e;
  transform: rotate(90deg);
}
