/* ========================================
   KRP Ventures - Complete Stylesheet
   ======================================== */

:root {
    --primary: #c85a2f;
    --primary-light: #e8d4c8;
    --primary-dark: #8b3f1f;
    --gold: #d4a017;
    --gold-dark: #1a0e05;
    --gold-mid: #2a1a08;
    --security-dark: #0d1117;
    --foreground: #1a1a1a;
    --foreground-light: #4a4a4a;
    --foreground-lighter: #7a7a7a;
    --background: #ffffff;
    --background-light: #f5f4f2;
    --border: #e0e0e0;
    --white: #ffffff;
    --shadow: 0 2px 8px rgba(0,0,0,0.1);
    --shadow-lg: 0 10px 30px rgba(0,0,0,0.15);
    --nav-height: 70px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    color: var(--foreground);
    background-color: var(--background);
    line-height: 1.6;
}

/* ========================================
   Typography
   ======================================== */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    line-height: 1.2;
}
.section-title {
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    font-weight: 700;
    margin-bottom: 2rem;
    color: var(--foreground);
}
.subsection-title {
    font-size: clamp(1.3rem, 3vw, 1.75rem);
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--foreground);
}
.text-lg { font-size: 1.05rem; color: var(--foreground-light); margin-bottom: 1rem; }
.text-center { text-align: center; }

/* ========================================
   Layout & Container
   ======================================== */
.container {
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1.5rem;
}
@media (max-width: 768px) { .container { padding: 0 1rem; } }

.section { padding: 5rem 0; }
@media (max-width: 768px) { .section { padding: 3rem 0; } }

.bg-white { background: #ffffff; }
.bg-light { background: var(--background-light); }
.bg-gold-dark { background: var(--gold-dark); }
.bg-dark-security { background: var(--security-dark); }

.grid-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: start;
}
.grid-2-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}
.grid-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}
@media (max-width: 900px) {
    .grid-2 { grid-template-columns: 1fr; gap: 2rem; }
    .grid-2-inner { grid-template-columns: 1fr 1fr; }
    .grid-3 { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 600px) {
    .grid-2-inner { grid-template-columns: 1fr 1fr; }
    .grid-3 { grid-template-columns: 1fr; }
}

/* ========================================
   Buttons
   ======================================== */
.btn {
    display: inline-block;
    padding: 0.75rem 1.75rem;
    border-radius: 6px;
    font-weight: 600;
    font-size: 0.95rem;
    text-decoration: none;
    cursor: pointer;
    border: 2px solid transparent;
    transition: all 0.2s ease;
    font-family: 'Inter', sans-serif;
    white-space: nowrap;
}
.btn-sm { padding: 0.5rem 1.2rem; font-size: 0.875rem; }
.btn-lg { padding: 1rem 2.2rem; font-size: 1.05rem; }
.btn-full { width: 100%; text-align: center; display: block; }
.btn-primary { background: var(--primary); color: #fff; border-color: var(--primary); }
.btn-primary:hover { background: var(--primary-dark); border-color: var(--primary-dark); }
.btn-gold { background: var(--gold); color: #1a0e05; border-color: var(--gold); font-weight: 700; }
.btn-gold:hover { background: #b8890f; border-color: #b8890f; }
.btn-outline { background: transparent; color: var(--primary); border-color: var(--primary); }
.btn-outline:hover { background: var(--primary); color: #fff; }
.btn-outline-light { background: transparent; color: #fff; border-color: rgba(255,255,255,0.7); }
.btn-outline-light:hover { background: rgba(255,255,255,0.15); border-color: #fff; }
.btn-light { background: #fff; color: var(--primary); border-color: #fff; }
.btn-light:hover { background: var(--primary-light); }

/* ========================================
   Navigation
   ======================================== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(255,255,255,0.97);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border);
    height: var(--nav-height);
    transition: box-shadow 0.3s;
}
.navbar.scrolled { box-shadow: 0 4px 20px rgba(0,0,0,0.12); }
.navbar-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: var(--nav-height);
    gap: 1rem;
}
.navbar-logo {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    text-decoration: none;
    flex-shrink: 0;
}
.logo-box {
    background: var(--primary);
    color: #fff;
    font-weight: 800;
    font-size: 0.85rem;
    padding: 0.35rem 0.5rem;
    border-radius: 4px;
    letter-spacing: 0.05em;
    font-family: 'Inter', sans-serif;
}
.logo-text {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    font-size: 1.1rem;
    color: var(--foreground);
}
.navbar-links {
    display: flex;
    align-items: center;
    gap: 0.25rem;
}
.nav-link {
    color: var(--foreground-light);
    text-decoration: none;
    font-size: 0.875rem;
    font-weight: 500;
    padding: 0.4rem 0.6rem;
    border-radius: 4px;
    transition: color 0.2s, background 0.2s;
    white-space: nowrap;
}
.nav-link:hover { color: var(--primary); background: var(--primary-light); }
.nav-link.active { color: var(--primary); }
.nav-highlight {
    color: var(--primary);
    font-weight: 600;
    background: rgba(200,90,47,0.08);
}
.nav-highlight:hover { background: var(--primary-light); }

/* Nav Dropdown */
.nav-dropdown { position: relative; }
.dropdown-menu {
    display: none;
    position: absolute;
    top: calc(100% + 8px);
    left: 0;
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 8px;
    box-shadow: var(--shadow-lg);
    min-width: 200px;
    padding: 0.5rem 0;
    z-index: 100;
}
.nav-dropdown:hover .dropdown-menu { display: block; }
.dropdown-item {
    display: block;
    padding: 0.6rem 1.2rem;
    color: var(--foreground-light);
    text-decoration: none;
    font-size: 0.875rem;
    transition: background 0.15s, color 0.15s;
}
.dropdown-item:hover { background: var(--background-light); color: var(--primary); }

/* Mobile Menu Button */
.mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    border-radius: 4px;
}
.mobile-menu-btn span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--foreground);
    border-radius: 2px;
    transition: all 0.3s;
}
.mobile-menu-btn.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.mobile-menu-btn.open span:nth-child(2) { opacity: 0; }
.mobile-menu-btn.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-menu {
    display: none;
    flex-direction: column;
    background: #fff;
    border-top: 1px solid var(--border);
    padding: 0.5rem 0 1rem;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}
.mobile-menu.open { max-height: 600px; }
.mobile-nav-link {
    display: block;
    padding: 0.75rem 1.5rem;
    color: var(--foreground-light);
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 500;
    border-bottom: 1px solid rgba(0,0,0,0.04);
    transition: background 0.15s;
}
.mobile-nav-link:hover { background: var(--background-light); color: var(--primary); }
.mobile-highlight { color: var(--primary); font-weight: 600; }
.mobile-sub { padding-left: 2.5rem; font-size: 0.875rem; color: var(--foreground-lighter); }

@media (max-width: 1024px) {
    .navbar-links { display: none; }
    .mobile-menu-btn { display: flex; }
    .mobile-menu { display: flex; }
}

/* ========================================
   Hero Section
   ======================================== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    padding-top: var(--nav-height);
    background: #1a0e05; /* fallback for mobile */
}
.tour-page-hero {
    position: relative;
    min-height: 85vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    padding-top: var(--nav-height);
}
.hero-image {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}
.hero-video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    opacity: 0.55;
}

/* Mobile-only video block below hero */
.hero-video-mobile {
    display: none;
    background: #1a0e05;
}

/* ========================================
   Mobile Hero Overrides
   ======================================== */
@media (max-width: 768px) {
    .hero {
        min-height: auto;
        padding-top: var(--nav-height);
        padding-bottom: 0;
        background: linear-gradient(160deg, #1a0e05 0%, #2a1a08 100%);
    }
    .hero-video-bg {
        display: none; /* hide background video on mobile */
    }
    .hero-overlay {
        background: rgba(0,0,0,0.15); /* lighter overlay since no video */
    }
    .hero-content {
        padding: 2.5rem 1rem 2rem;
    }
    .hero-title {
        font-size: clamp(1.9rem, 8vw, 2.8rem);
    }
    .hero-subtitle {
        font-size: 0.95rem;
        margin-bottom: 1.75rem;
    }
    .hero-buttons {
        flex-direction: column;
        gap: 0.75rem;
    }
    .hero-buttons .btn {
        width: 100%;
        text-align: center;
        justify-content: center;
    }
    .hero-video-mobile {
        display: block; /* show video below hero on mobile */
    }
}
.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(0,0,0,0.60) 0%, rgba(20,10,3,0.78) 100%);
}
.hero-content {
    position: relative;
    z-index: 2;
    padding: 4rem 1.5rem;
}
.hero-badge {
    display: inline-block;
    background: rgba(212,160,23,0.25);
    border: 1px solid rgba(212,160,23,0.5);
    color: #f0c040;
    font-size: 0.8rem;
    font-weight: 600;
    padding: 0.35rem 1rem;
    border-radius: 20px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-bottom: 1.25rem;
    font-family: 'Inter', sans-serif;
}
.hero-title {
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    color: #fff;
    margin-bottom: 1.25rem;
    line-height: 1.1;
    text-shadow: 0 2px 20px rgba(0,0,0,0.4);
}
.hero-subtitle {
    font-size: clamp(1rem, 2vw, 1.25rem);
    color: rgba(255,255,255,0.88);
    max-width: 580px;
    margin-bottom: 2.5rem;
    line-height: 1.7;
}
.hero-buttons { display: flex; gap: 1rem; flex-wrap: wrap; }

/* ========================================
   Post-Hero Highlight Strip
   ======================================== */
.highlight-strip {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    border-bottom: 3px solid var(--primary);
}
.highlight-card {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem 1.25rem;
    text-decoration: none;
    transition: background 0.2s;
    border-right: 1px solid rgba(0,0,0,0.08);
}
.highlight-card:last-child { border-right: none; }
.highlight-gold { background: #fff8ee; }
.highlight-gold:hover { background: #fff0d0; }
.highlight-security { background: #f0f4ff; }
.highlight-security:hover { background: #e0e8ff; }
.highlight-book { background: #f0fff4; }
.highlight-book:hover { background: #d0ffe0; }
.highlight-invest { background: #fff5f0; }
.highlight-invest:hover { background: #ffe8e0; }
.highlight-icon { font-size: 1.8rem; flex-shrink: 0; }
.highlight-text { flex: 1; min-width: 0; }
.highlight-text strong {
    display: block;
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--foreground);
    font-family: 'Inter', sans-serif;
    margin-bottom: 0.15rem;
}
.highlight-text span {
    font-size: 0.78rem;
    color: var(--foreground-lighter);
    line-height: 1.3;
}
.highlight-arrow { color: var(--primary); font-size: 1.1rem; font-weight: 700; flex-shrink: 0; }

@media (max-width: 900px) {
    .highlight-strip { grid-template-columns: 1fr 1fr; }
    .highlight-card { border-right: 1px solid rgba(0,0,0,0.08); border-bottom: 1px solid rgba(0,0,0,0.08); }
}
@media (max-width: 500px) {
    .highlight-strip { grid-template-columns: 1fr; }
    .highlight-card { border-right: none; }
}

/* ========================================
   Cards
   ======================================== */
.card {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 10px;
    padding: 1.75rem;
    transition: box-shadow 0.2s, transform 0.2s;
}
.card:hover { box-shadow: var(--shadow-lg); transform: translateY(-2px); }
.card-dark {
    background: rgba(255,255,255,0.06);
    border-color: rgba(255,255,255,0.12);
    color: #fff;
}
.card-dark:hover { background: rgba(255,255,255,0.1); }
.card-feature { border-top: 3px solid var(--primary); }
.card-icon { font-size: 2rem; margin-bottom: 0.75rem; }
.card-title { font-size: 1.15rem; font-weight: 700; margin-bottom: 0.5rem; color: var(--foreground); }
.card-text { font-size: 0.9rem; color: var(--foreground-light); line-height: 1.6; }
.card-large {
    background: var(--background-light);
    border: 1px solid var(--border);
    border-radius: 10px;
    padding: 2rem;
}

/* ========================================
   Badges
   ======================================== */
.badge {
    display: inline-block;
    background: var(--primary-light);
    color: var(--primary-dark);
    font-size: 0.78rem;
    font-weight: 700;
    padding: 0.3rem 0.9rem;
    border-radius: 20px;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    margin-bottom: 1rem;
    font-family: 'Inter', sans-serif;
}
.badge-gold {
    background: rgba(212,160,23,0.2);
    color: #f0c040;
    border: 1px solid rgba(212,160,23,0.4);
}

/* ========================================
   Feature Lists
   ======================================== */
.feature-list { list-style: none; padding: 0; margin: 1.5rem 0; }
.feature-list li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: var(--foreground-light);
    font-size: 0.95rem;
    border-bottom: 1px solid var(--border);
}
.feature-list li:last-child { border-bottom: none; }
.feature-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary);
    font-weight: 700;
}
.features { display: flex; flex-direction: column; gap: 0.75rem; margin-top: 1.5rem; }
.feature {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.95rem;
    color: var(--foreground-light);
}
.feature-icon { font-size: 1.2rem; flex-shrink: 0; }
.services-list { list-style: none; padding: 0; }
.services-list li {
    padding: 0.6rem 0;
    border-bottom: 1px solid var(--border);
    font-size: 0.9rem;
    color: var(--foreground-light);
}
.services-list li:last-child { border-bottom: none; }

/* ========================================
   Timeline
   ======================================== */
.timeline { display: flex; flex-direction: column; gap: 1.5rem; margin-top: 1.5rem; }
.timeline-item {
    padding-left: 1.5rem;
    border-left: 3px solid var(--primary);
    padding-bottom: 0.5rem;
}
.timeline-marker {
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 0.06em;
    margin-bottom: 0.4rem;
    font-family: 'Inter', sans-serif;
}

/* ========================================
   Info Box
   ======================================== */
.info-box {
    background: var(--primary-light);
    border-left: 4px solid var(--primary);
    border-radius: 6px;
    padding: 1.5rem;
    margin-top: 2rem;
}
.info-box p { color: var(--foreground-light); font-size: 0.9rem; margin-bottom: 0.5rem; }
.info-box p:last-child { margin-bottom: 0; }

/* ========================================
   Gold Tours Section
   ======================================== */
.tours-hero-banner {
    background: linear-gradient(135deg, rgba(212,160,23,0.15) 0%, rgba(200,90,47,0.2) 100%);
    border: 1px solid rgba(212,160,23,0.3);
    border-radius: 16px;
    padding: 3rem;
    margin-bottom: 2rem;
}
@media (max-width: 600px) { .tours-hero-banner { padding: 2rem 1.25rem; } }

.tour-highlights-bar {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 0;
    background: rgba(255,255,255,0.07);
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 12px;
    overflow: hidden;
    margin: 2rem 0;
}
.tour-highlight-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 1.25rem 0.75rem;
    border-right: 1px solid rgba(255,255,255,0.1);
    gap: 0.3rem;
    font-size: 1.4rem;
}
.tour-highlight-item:last-child { border-right: none; }
.tour-highlight-item strong {
    display: block;
    font-size: 0.78rem;
    font-weight: 700;
    color: #fff;
    font-family: 'Inter', sans-serif;
    line-height: 1.2;
}
.tour-highlight-item span {
    font-size: 0.7rem;
    color: rgba(255,255,255,0.65);
    line-height: 1.3;
}
@media (max-width: 900px) {
    .tour-highlights-bar { grid-template-columns: repeat(3, 1fr); }
    .tour-highlight-item { border-bottom: 1px solid rgba(255,255,255,0.1); }
}
@media (max-width: 500px) {
    .tour-highlights-bar { grid-template-columns: repeat(2, 1fr); }
}

/* ========================================
   Itinerary
   ======================================== */
.itinerary { display: flex; flex-direction: column; gap: 0; }
.itinerary-day {
    display: flex;
    gap: 0;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 1.25rem;
}
.day-marker {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: var(--primary);
    padding: 1.5rem 1.25rem;
    min-width: 110px;
    text-align: center;
    flex-shrink: 0;
}
.day-number {
    font-family: 'Playfair Display', serif;
    font-size: 1.4rem;
    font-weight: 700;
    color: #fff;
    display: block;
    line-height: 1;
    margin-bottom: 0.4rem;
}
.day-label {
    font-size: 0.7rem;
    font-weight: 600;
    color: rgba(255,255,255,0.85);
    text-transform: uppercase;
    letter-spacing: 0.06em;
    font-family: 'Inter', sans-serif;
    line-height: 1.3;
}
.day-content {
    display: flex;
    gap: 1.25rem;
    padding: 1.5rem;
    align-items: flex-start;
    flex: 1;
}
.day-icon { font-size: 2.2rem; flex-shrink: 0; margin-top: 0.2rem; }
.day-details { flex: 1; min-width: 0; }
.day-details h4 {
    font-size: 1.1rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 0.6rem;
    font-family: 'Playfair Display', serif;
}
.day-details p { font-size: 0.9rem; color: rgba(255,255,255,0.78); line-height: 1.7; margin-bottom: 1rem; }
.day-tags { display: flex; flex-wrap: wrap; gap: 0.4rem; }
.day-tag {
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.18);
    color: rgba(255,255,255,0.9);
    font-size: 0.72rem;
    font-weight: 600;
    padding: 0.25rem 0.65rem;
    border-radius: 20px;
    font-family: 'Inter', sans-serif;
}

@media (max-width: 600px) {
    .itinerary-day { flex-direction: column; }
    .day-marker { flex-direction: row; justify-content: flex-start; gap: 1rem; padding: 1rem 1.25rem; min-width: unset; }
    .day-content { flex-direction: column; gap: 0.75rem; }
    .day-icon { font-size: 1.8rem; }
}

/* ========================================
   Tour Inclusions
   ======================================== */
.tour-inclusions {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 12px;
    padding: 2.5rem;
    margin-top: 2.5rem;
}
.inclusion-col h4 {
    font-size: 1.05rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 1rem;
    font-family: 'Playfair Display', serif;
}
.inclusion-col ul { list-style: none; padding: 0; }
.inclusion-col ul li {
    padding: 0.45rem 0;
    padding-left: 1.4rem;
    position: relative;
    color: rgba(255,255,255,0.78);
    font-size: 0.88rem;
    border-bottom: 1px solid rgba(255,255,255,0.07);
}
.inclusion-col ul li:last-child { border-bottom: none; }
.inclusion-col ul li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--gold);
    font-weight: 700;
}
@media (max-width: 700px) {
    .tour-inclusions { grid-template-columns: 1fr; }
}

/* ========================================
   Sold Out Banner
   ======================================== */
.sold-out-banner {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    background: rgba(200,90,47,0.2);
    border: 1px solid rgba(200,90,47,0.4);
    border-radius: 10px;
    padding: 1.25rem 1.5rem;
    margin-bottom: 2rem;
    color: #fff;
}
.sold-out-icon { font-size: 1.5rem; flex-shrink: 0; margin-top: 0.1rem; }
.sold-out-banner strong { display: block; font-size: 1rem; margin-bottom: 0.35rem; }
.sold-out-banner p { font-size: 0.875rem; color: rgba(255,255,255,0.8); margin: 0; }

.sold-out-banner-top {
    background: var(--primary-dark);
    color: #fff;
    text-align: center;
    padding: 0.75rem 1.5rem;
    font-size: 0.875rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    flex-wrap: wrap;
}

/* ========================================
   Booking Forms
   ======================================== */
.booking-section { margin-top: 3rem; }
.booking-form-wrapper {
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 16px;
    padding: 2.5rem;
    max-width: 800px;
    margin: 0 auto;
}
@media (max-width: 600px) { .booking-form-wrapper { padding: 1.5rem 1.25rem; } }

.booking-form { display: flex; flex-direction: column; gap: 1.25rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.25rem; }
@media (max-width: 600px) { .form-row { grid-template-columns: 1fr; } }

.form-group { display: flex; flex-direction: column; gap: 0.4rem; }
.form-group label {
    font-size: 0.85rem;
    font-weight: 600;
    color: rgba(255,255,255,0.9);
    font-family: 'Inter', sans-serif;
}
.form-group input,
.form-group select,
.form-group textarea {
    padding: 0.75rem 1rem;
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 6px;
    background: rgba(255,255,255,0.08);
    color: #fff;
    font-size: 0.9rem;
    font-family: 'Inter', sans-serif;
    transition: border-color 0.2s, background 0.2s;
    width: 100%;
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: rgba(255,255,255,0.4); }
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--gold);
    background: rgba(255,255,255,0.12);
}
.form-group select option { background: #2a1a08; color: #fff; }
.form-group textarea { resize: vertical; min-height: 80px; }
.date-note { font-size: 0.75rem; color: rgba(255,255,255,0.55); font-weight: 400; }

.form-check {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
}
.form-check input[type="checkbox"] {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
    margin-top: 2px;
    accent-color: var(--primary);
    cursor: pointer;
}
.form-check label {
    font-size: 0.875rem;
    color: rgba(255,255,255,0.85);
    cursor: pointer;
    font-family: 'Inter', sans-serif;
    line-height: 1.5;
}
.form-note {
    font-size: 0.78rem;
    color: rgba(255,255,255,0.5);
    text-align: center;
    margin-top: 0.25rem;
}

.checkbox-group { display: flex; flex-direction: column; gap: 0.5rem; margin-top: 0.25rem; }
.checkbox-label {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    font-size: 0.875rem;
    color: rgba(255,255,255,0.85);
    cursor: pointer;
    font-family: 'Inter', sans-serif;
}
.checkbox-label input[type="checkbox"] {
    width: 16px;
    height: 16px;
    flex-shrink: 0;
    accent-color: var(--primary);
    cursor: pointer;
}

.form-success {
    text-align: center;
    padding: 3rem 2rem;
    color: #fff;
}
.success-icon { font-size: 3rem; margin-bottom: 1rem; }
.form-success h4 { font-size: 1.5rem; margin-bottom: 1rem; color: #fff; }
.form-success p { color: rgba(255,255,255,0.8); margin-bottom: 0.5rem; }
.form-success a { color: var(--gold); }

/* ========================================
   CTA Box & Section
   ======================================== */
.cta-box {
    background: var(--background-light);
    border: 2px solid var(--primary-light);
    border-radius: 12px;
    padding: 2.5rem;
    text-align: center;
    margin-top: 3rem;
}
.cta-title { font-size: 1.5rem; margin-bottom: 1rem; color: var(--foreground); }
.email-link {
    display: inline-block;
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--primary);
    text-decoration: none;
    margin: 1rem 0;
    padding: 0.5rem 1.5rem;
    border: 2px solid var(--primary);
    border-radius: 6px;
    transition: all 0.2s;
}
.email-link:hover { background: var(--primary); color: #fff; }

.cta-section {
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 100%);
    padding: 5rem 0;
    text-align: center;
}
.cta-heading { font-size: clamp(1.8rem, 4vw, 2.5rem); color: #fff; margin-bottom: 1rem; }
.cta-text { color: rgba(255,255,255,0.85); font-size: 1.1rem; max-width: 600px; margin: 0 auto 2.5rem; }

/* ========================================
   Tables
   ======================================== */
.table-container { overflow-x: auto; margin-top: 3rem; border-radius: 10px; border: 1px solid var(--border); }
.comparison-table { width: 100%; border-collapse: collapse; }
.comparison-table th {
    background: var(--primary);
    color: #fff;
    padding: 1rem 1.5rem;
    text-align: left;
    font-size: 0.875rem;
    font-weight: 600;
    font-family: 'Inter', sans-serif;
}
.comparison-table td {
    padding: 0.9rem 1.5rem;
    border-bottom: 1px solid var(--border);
    font-size: 0.9rem;
    color: var(--foreground-light);
}
.comparison-table tr:last-child td { border-bottom: none; }
.comparison-table tr:nth-child(even) td { background: var(--background-light); }

/* ========================================
   Footer
   ======================================== */
.footer { background: #111; padding: 4rem 0 0; }
.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 3rem;
    padding-bottom: 3rem;
}
.footer-logo {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    margin-bottom: 1rem;
}
.footer-logo span {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    font-size: 1.1rem;
    color: #fff;
}
.footer-text { color: rgba(255,255,255,0.55); font-size: 0.875rem; line-height: 1.7; }
.footer-title { color: #fff; font-size: 0.95rem; font-weight: 700; margin-bottom: 1.25rem; font-family: 'Inter', sans-serif; text-transform: uppercase; letter-spacing: 0.06em; }
.footer-links { list-style: none; padding: 0; display: flex; flex-direction: column; gap: 0.6rem; }
.footer-links li { font-size: 0.875rem; color: rgba(255,255,255,0.55); }
.footer-links a { color: rgba(255,255,255,0.65); text-decoration: none; transition: color 0.2s; }
.footer-links a:hover { color: var(--primary); }
.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding: 1.5rem 0;
    text-align: center;
}
.footer-bottom p { color: rgba(255,255,255,0.35); font-size: 0.8rem; }

@media (max-width: 900px) {
    .footer-content { grid-template-columns: 1fr 1fr; gap: 2rem; }
}
@media (max-width: 500px) {
    .footer-content { grid-template-columns: 1fr; gap: 1.5rem; }
}

/* ========================================
   Comprehensive Mobile Optimizations
   ======================================== */
@media (max-width: 768px) {
    /* General section padding */
    .section { padding: 2.5rem 0; }

    /* Navbar logo text size */
    .logo-text { font-size: 0.95rem; }

    /* About section image order */
    .grid-2 > div:last-child { order: -1; }
    .grid-2 > div:last-child img { max-height: 220px; }

    /* Section titles */
    .section-title { font-size: 1.6rem; margin-bottom: 1.25rem; }
    .subsection-title { font-size: 1.2rem; }

    /* Cards */
    .card { padding: 1.25rem; }

    /* Highlight strip: single column on very small screens */
    .highlight-strip { grid-template-columns: 1fr; }
    .highlight-card { border-right: none; border-bottom: 1px solid rgba(0,0,0,0.08); }
    .highlight-card:last-child { border-bottom: none; }

    /* Tables: horizontal scroll */
    .table-container { font-size: 0.8rem; }
    .comparison-table th, .comparison-table td { padding: 0.65rem 0.85rem; }

    /* CTA section */
    .cta-section { padding: 3rem 0; }
    .cta-text { font-size: 0.95rem; }
    .cta-buttons { flex-direction: column; align-items: center; gap: 0.75rem; }
    .cta-buttons .btn { width: 100%; max-width: 320px; text-align: center; }

    /* Booking form */
    .booking-form-wrapper { padding: 1.25rem 1rem; }

    /* Tour inclusions */
    .tour-inclusions { padding: 1.5rem 1.25rem; }

    /* Tours hero banner */
    .tours-hero-banner { padding: 1.75rem 1rem; }

    /* Sold out banner */
    .sold-out-banner { flex-direction: column; gap: 0.5rem; padding: 1rem 1.25rem; }

    /* Info box */
    .info-box { padding: 1.25rem; }

    /* Email link */
    .email-link { font-size: 0.95rem; word-break: break-all; }

    /* Grid 3 to single col on mobile */
    .grid-3 { grid-template-columns: 1fr; }

    /* Footer */
    .footer-content { grid-template-columns: 1fr; gap: 1.5rem; }
    .footer-col h4 { font-size: 0.95rem; }
}

/* ========================================
   Scroll to Top
   ======================================== */
.scroll-top-btn {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    background: var(--primary);
    color: #fff;
    border: none;
    border-radius: 50%;
    width: 44px;
    height: 44px;
    font-size: 1.2rem;
    cursor: pointer;
    display: none;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-lg);
    z-index: 999;
    transition: background 0.2s, transform 0.2s;
}
.scroll-top-btn:hover { background: var(--primary-dark); transform: translateY(-2px); }
.scroll-top-btn.visible { display: flex; }
