/* ==========================================
   Trans Globe Travels - Visual Redesign CSS
   ========================================== */

/* Design Tokens & Theme Variables */
:root {
    /* Fonts */
    --font-heading: 'Outfit', system-ui, sans-serif;
    --font-body: 'Plus Jakarta Sans', system-ui, sans-serif;

    /* Transition Speeds - Porsche style custom bezier curves */
    --transition-fast: 0.15s cubic-bezier(0.16, 1, 0.3, 1);
    --transition-normal: 0.35s cubic-bezier(0.16, 1, 0.3, 1);
    --transition-slow: 0.6s cubic-bezier(0.16, 1, 0.3, 1);

    /* Border Radii - Sleek, intentional Apple/Porsche radii */
    --radius-sm: 6px;
    --radius-md: 10px;
    --radius-lg: 16px;
    --radius-full: 9999px;

    /* Shadows - Extremely soft, high-diffusion luxury shadows */
    --shadow-sm: 0 2px 12px rgba(0, 0, 0, 0.02);
    --shadow-md: 0 10px 30px rgba(10, 61, 44, 0.03);
    --shadow-lg: 0 20px 50px rgba(10, 61, 44, 0.05);
    --glow-green: 0 0 20px rgba(9, 63, 43, 0.15);

    /* Curated Luxury Theme Colors - Light Mode Alabaster & Sand */
    --bg-base: #FAF9F5;           /* Luxury warm-white base background (editorial feel) */
    --bg-surface: #ffffff;        /* Pure white for containers/cards */
    --border-color: #E8E6E1;      /* Delicate light border */
    --text-main: #111512;         /* Off-black for soft contrast */
    --text-muted: #5A6065;        /* Balanced neutral gray-charcoal for secondary text */
    --text-inverse: #ffffff;
    --overlay-color: rgba(250, 249, 245, 0.95);
    
    /* Luxury Emerald Green & Gold Champagne Palette */
    --primary: #093F2B;           /* Deep luxury Forest/Emerald Green */
    --primary-hover: #05261a;     /* Darker shade for hover state */
    --accent-light: #E9ECE9;      /* Super clean soft background tint */
    --highlight: #bca374;         /* Soft champagne metallic active indicator */
    --gold: #C5A880;              /* Premium gold rating stars */
    
    --input-bg: #FDFDFB;
    --input-border: #E8E6E1;
    --hero-overlay: linear-gradient(180deg, rgba(233, 236, 233, 0.4) 0%, #FAF9F5 100%);
    --card-shadow: var(--shadow-md);
}

/* Dark Mode - Luxury Deep Forest adaptions */
html[data-theme="dark"] {
    --bg-base: #060a08;
    --bg-surface: #0b130f;
    --border-color: rgba(255, 255, 255, 0.06);
    --text-main: #f3f5f3;
    --text-muted: #8ba096;
    --text-inverse: #052e21;
    --overlay-color: rgba(6, 10, 8, 0.96);
    
    --primary: #1ebd8d;
    --primary-hover: #3ee1b1;
    --accent-light: rgba(30, 189, 141, 0.08);
    
    --input-bg: #0f1a15;
    --input-border: rgba(255, 255, 255, 0.08);
    --hero-overlay: linear-gradient(180deg, rgba(5, 10, 8, 0.7) 0%, #060a08 100%);
    --card-shadow: 0 16px 40px rgba(0, 0, 0, 0.5);
}

/* Reset & Initial Styles */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
}

body {
    font-family: var(--font-body);
    background-color: var(--bg-base);
    color: var(--text-main);
    line-height: 1.6;
    overflow-x: hidden;
    transition: background-color var(--transition-normal), color var(--transition-normal);
}

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

button, input, select, textarea {
    font-family: inherit;
    font-size: inherit;
    color: inherit;
    background: none;
    border: none;
    outline: none;
}

a {
    color: inherit;
    text-decoration: none;
    transition: color var(--transition-fast);
}

/* Scrollbar styling */
::-webkit-scrollbar {
    width: 8px;
}
::-webkit-scrollbar-track {
    background: var(--bg-base);
}
::-webkit-scrollbar-thumb {
    background: #cbd5e1;
    border-radius: var(--radius-full);
}
html[data-theme="dark"] ::-webkit-scrollbar-thumb {
    background: #4b5563;
}
::-webkit-scrollbar-thumb:hover {
    background: var(--primary);
}

/* Layout Containers */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.w-full { width: 100%; }
.mt-2 { margin-top: 8px; }
.mt-4 { margin-top: 16px; }
.hidden { display: none !important; }

/* Base Card Styles */
.card-white {
    background-color: var(--bg-surface);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    transition: transform var(--transition-normal), box-shadow var(--transition-normal), border var(--transition-normal);
}

.glass {
    background: var(--bg-surface);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    transition: transform var(--transition-normal), box-shadow var(--transition-normal);
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 32px;
    font-weight: 600;
    font-family: var(--font-body);
    font-size: 0.8rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    border-radius: var(--radius-full);
    cursor: pointer;
    transition: all var(--transition-normal);
}

.btn-primary {
    background-color: var(--primary);
    color: white;
    box-shadow: 0 4px 14px rgba(9, 63, 43, 0.12);
}

.btn-primary:hover {
    background-color: var(--primary-hover);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(9, 63, 43, 0.22);
}

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

.btn-outline:hover {
    border-color: var(--primary);
    color: white;
    background: var(--primary);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(9, 63, 43, 0.12);
}

.btn-glow:hover {
    box-shadow: var(--glow-green);
}

.btn-sm {
    padding: 8px 20px;
    font-size: 0.75rem;
    font-weight: 700;
}

/* Top Contact Bar */
.top-bar {
    background-color: var(--bg-surface);
    border-bottom: 1px solid var(--border-color);
    padding: 8px 0;
    font-size: 0.8rem;
    color: var(--text-muted);
}

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

.contact-info {
    display: flex;
    align-items: center;
    gap: 16px;
}

.contact-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

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

.divider {
    color: var(--border-color);
}

.top-bar-right {
    display: flex;
    align-items: center;
    gap: 16px;
}

.location-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.icon {
    width: 14px;
    height: 14px;
    fill: currentColor;
}

.theme-toggle-btn {
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    color: var(--text-muted);
}

.theme-toggle-btn:hover {
    color: var(--primary);
}

.theme-toggle-btn .icon {
    width: 16px;
    height: 16px;
}

/* Main Navigation Header */
.main-header {
    background-color: var(--bg-surface);
    border-bottom: 1px solid var(--border-color);
    padding: 20px 0;
    position: sticky;
    top: 0;
    z-index: 100;
    transition: padding var(--transition-normal), box-shadow var(--transition-normal);
}

.main-header.scrolled {
    padding: 12px 0;
    box-shadow: var(--shadow-sm);
}

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

.logo-container {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo-icon-wrap {
    width: 36px;
    height: 36px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-hover) 100%);
    border-radius: var(--radius-sm);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
}

.logo-svg {
    width: 20px;
    height: 20px;
}

.logo-text {
    font-family: var(--font-heading);
    font-size: 1.45rem;
    font-weight: 700;
    letter-spacing: -0.5px;
}

.accent-text {
    color: var(--primary);
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 32px;
}

.nav-link {
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    color: var(--text-main);
    position: relative;
    padding: 6px 0;
}

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

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--primary);
    transition: width var(--transition-fast);
}

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

.header-actions {
    display: flex;
    align-items: center;
    gap: 16px;
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    width: 24px;
    cursor: pointer;
}

.mobile-menu-toggle span {
    display: block;
    width: 100%;
    height: 2px;
    background-color: var(--text-main);
    border-radius: var(--radius-full);
    transition: all var(--transition-fast);
}

/* Mobile Menu Drawer */
.mobile-drawer {
    position: fixed;
    top: 114px;
    left: 0;
    width: 100%;
    background-color: var(--bg-surface);
    border-bottom: 1px solid var(--border-color);
    padding: 24px;
    z-index: 99;
    box-shadow: var(--shadow-md);
    transform: translateY(-110%);
    transition: transform var(--transition-normal);
}

.mobile-drawer.open {
    transform: translateY(0);
}

.mobile-nav {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.mobile-link {
    font-size: 1.05rem;
    font-weight: 600;
    padding: 6px 0;
}

.mobile-link:hover {
    color: var(--primary);
}

/* Hero Section with Video Background */
.hero-section {
    position: relative;
    height: 100vh;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background-color: #050b14;
}

.hero-video-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(13, 18, 28, 0.45) 0%, rgba(13, 18, 28, 0.75) 100%);
    z-index: 2;
}

.hero-container {
    position: relative;
    z-index: 3;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    width: 100%;
}

.hero-content {
    max-width: 800px;
    margin-bottom: 0;
    animation: fadeInUp 0.6s ease-out;
}

.hero-badge {
    display: inline-block;
    background: rgba(255, 255, 255, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.25);
    color: #ffffff;
    padding: 6px 16px;
    border-radius: var(--radius-full);
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 24px;
    backdrop-filter: blur(5px);
}

.hero-title.brand-heading {
    font-family: var(--font-heading);
    font-size: 5rem;
    font-weight: 900;
    line-height: 1.1;
    color: #ffffff;
    margin-bottom: 20px;
    letter-spacing: -2px;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
    text-transform: uppercase;
}

.hero-subtitle.brand-subtitle {
    font-size: 1.3rem;
    color: #cbd5e1;
    font-weight: 400;
    margin-bottom: 40px;
    line-height: 1.6;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.4);
    max-width: 650px;
    margin-left: auto;
    margin-right: auto;
}

.hero-cta-group {
    display: flex;
    gap: 16px;
    justify-content: center;
}

.btn-white {
    background: rgba(255, 255, 255, 0.1);
    color: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(5px);
}

.btn-white:hover {
    background: #ffffff;
    color: #064e3b;
    border-color: #ffffff;
}

.btn-lg {
    padding: 16px 36px;
    font-size: 1.05rem;
}

@media (max-width: 768px) {
    .hero-title.brand-heading {
        font-size: 3rem;
        letter-spacing: -1px;
    }
    .hero-subtitle.brand-subtitle {
        font-size: 1.1rem;
        margin-bottom: 30px;
    }
    .hero-cta-group {
        flex-direction: column;
        width: 100%;
        max-width: 280px;
        margin: 0 auto;
        gap: 12px;
    }
    .btn-lg {
        padding: 14px 28px;
        font-size: 1rem;
    }
}

/* Section Header Styles */
.section-header {
    text-align: center;
    max-width: 650px;
    margin: 0 auto 72px;
}

.section-tag {
    display: inline-block;
    color: var(--primary);
    font-weight: 700;
    text-transform: uppercase;
    font-size: 0.75rem;
    letter-spacing: 2px;
    margin-bottom: 12px;
}

.section-title {
    font-family: var(--font-heading);
    font-size: 2.8rem;
    font-weight: 500;
    line-height: 1.2;
    margin-bottom: 16px;
    letter-spacing: -0.5px;
    color: var(--text-main);
}

.section-desc {
    color: var(--text-muted);
    font-size: 1.05rem;
    line-height: 1.6;
}

/* Hot Offers Section */
.offers-section {
    padding: 120px 0;
    background-color: var(--bg-base);
}

.offers-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
}

.offer-card {
    padding: 30px;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 240px;
    transition: transform var(--transition-normal), box-shadow var(--transition-normal);
}

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

.offer-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 0.7rem;
    font-weight: 700;
    padding: 4px 12px;
    border-radius: var(--radius-full);
    letter-spacing: 1px;
}

.badge-green { background: var(--accent-light); color: var(--primary); }

.offer-content h3 {
    font-family: var(--font-heading);
    font-size: 1.35rem;
    font-weight: 700;
    margin-bottom: 8px;
    padding-right: 70px;
}

.offer-discount {
    color: var(--primary);
    font-size: 1.45rem;
    font-weight: 800;
    margin-bottom: 12px;
}

.offer-detail {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-bottom: 24px;
}

.offer-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid var(--border-color);
    padding-top: 16px;
    margin-top: auto;
}

.code {
    font-size: 0.8rem;
    font-weight: 700;
    background: var(--input-bg);
    padding: 6px 12px;
    border-radius: var(--radius-sm);
    border: 1px solid var(--border-color);
}

.offer-action-btn {
    font-weight: 700;
    font-size: 0.85rem;
    color: var(--primary);
}

.offer-action-btn:hover {
    text-decoration: underline;
}

/* Holiday Destinations Section */
.packages-section {
    padding: 120px 0;
    background-color: var(--bg-surface);
}

.filter-controls {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-bottom: 48px;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 12px 26px;
    font-weight: 600;
    font-size: 0.75rem;
    font-family: var(--font-body);
    text-transform: uppercase;
    letter-spacing: 0.8px;
    border: 1px solid var(--border-color);
    border-radius: var(--radius-full);
    cursor: pointer;
    background: var(--bg-surface);
    transition: all var(--transition-fast);
}

.filter-btn:hover {
    border-color: var(--primary);
    color: var(--primary);
}

.filter-btn.active {
    background-color: var(--primary);
    color: white;
    border-color: var(--primary);
}

.packages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 32px;
}

.package-card {
    background-color: var(--bg-surface);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    box-shadow: var(--shadow-sm);
    transition: all var(--transition-normal);
}

.package-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(9, 63, 43, 0.2);
}

.package-img-wrap {
    position: relative;
    height: 220px;
    overflow: hidden;
}

.package-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-slow);
}

.package-card:hover .package-img {
    transform: scale(1.05);
}

.package-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(4px);
    color: var(--primary);
    border: 1px solid rgba(10, 61, 44, 0.1);
    padding: 6px 14px;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    border-radius: var(--radius-sm);
    text-transform: uppercase;
}

.package-content {
    padding: 24px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.package-meta {
    display: flex;
    justify-content: space-between;
    font-size: 0.8rem;
    color: var(--text-muted);
    font-weight: 700;
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.package-rating {
    color: var(--gold);
}

.package-title {
    font-family: var(--font-heading);
    font-size: 1.35rem;
    font-weight: 600;
    margin-bottom: 12px;
    line-height: 1.3;
    color: var(--text-main);
}

.package-desc {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-bottom: 18px;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.package-inclusions {
    list-style: none;
    font-size: 0.85rem;
    color: var(--text-main);
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 8px 12px;
    margin-bottom: 24px;
    border-top: 1px solid var(--border-color);
    padding-top: 14px;
}

.package-inclusions li {
    display: flex;
    align-items: center;
    gap: 4px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

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

.price-wrap {
    display: flex;
    flex-direction: column;
}

.price-label {
    font-size: 0.7rem;
    color: var(--text-muted);
    text-transform: uppercase;
}

.price-amount {
    font-size: 1.35rem;
    font-weight: 800;
    color: var(--primary);
}

.per-person {
    font-size: 0.75rem;
    font-weight: 500;
    color: var(--text-muted);
}

/* Services Section */
.services-section {
    padding: 120px 0;
    background-color: var(--bg-base);
}

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

.service-card {
    background-color: var(--bg-surface);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: 40px 30px;
    transition: all var(--transition-normal);
    text-align: left;
    box-shadow: var(--shadow-sm);
}

.service-card:hover {
    transform: translateY(-4px);
    border-color: rgba(9, 63, 43, 0.2);
    box-shadow: var(--shadow-lg);
}

.service-icon-wrap {
    width: 48px;
    height: 48px;
    background: var(--accent-light);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    color: var(--primary);
}

.service-icon {
    width: 22px;
    height: 22px;
    fill: currentColor;
}

.service-card h3 {
    font-family: var(--font-heading);
    font-size: 1.35rem;
    font-weight: 600;
    margin-bottom: 12px;
    color: var(--text-main);
}

.service-card p {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-bottom: 20px;
    line-height: 1.6;
}

.service-link {
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--primary);
    display: inline-flex;
    align-items: center;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.service-link:hover {
    text-decoration: underline;
}

/* About Us Section */
.about-section {
    padding: 120px 0;
    background-color: var(--bg-surface);
}

.about-container {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 60px;
    align-items: center;
}

.about-desc {
    color: var(--text-muted);
    font-size: 1.05rem;
    margin-bottom: 20px;
    line-height: 1.6;
}

.about-checklist {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-top: 28px;
}

.check-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 500;
}

.check-icon {
    width: 24px;
    height: 24px;
    background: var(--primary);
    color: white;
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.85rem;
    font-weight: bold;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.stat-box {
    padding: 40px 24px;
    text-align: center;
    background-color: var(--bg-base);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    transition: all var(--transition-normal);
}

.stat-box:hover {
    border-color: rgba(9, 63, 43, 0.15);
    background-color: var(--bg-surface);
    box-shadow: var(--shadow-md);
}

.stat-num {
    display: block;
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 4px;
}

.stat-lbl {
    font-size: 0.75rem;
    color: var(--text-muted);
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: 0.8px;
}

/* Testimonials Slider */
.testimonials-section {
    padding: 120px 0;
    background-color: var(--bg-base);
}

.slider-container {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
    overflow: hidden;
}

.testimonials-slider {
    display: flex;
    transition: transform var(--transition-slow);
}

.testimonial-slide {
    min-width: 100%;
    padding: 10px;
    box-sizing: border-box;
}

.slide-content {
    padding: 48px;
    text-align: center;
    background-color: var(--bg-surface);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border-color);
}

.stars {
    color: var(--gold);
    font-size: 1.25rem;
    margin-bottom: 20px;
}

.quote {
    font-size: 1.15rem;
    line-height: 1.7;
    margin-bottom: 30px;
    color: var(--text-main);
    font-family: var(--font-body);
    font-weight: 500;
}

.guest-info h4 {
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 4px;
    color: var(--text-main);
}

.guest-trip {
    font-size: 0.75rem;
    color: var(--text-muted);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.8px;
}

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

.slider-ctrl-btn {
    width: 44px;
    height: 44px;
    border: 1px solid var(--border-color);
    border-radius: var(--radius-full);
    background: var(--bg-surface);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 1.1rem;
    transition: all var(--transition-fast);
    box-shadow: var(--shadow-sm);
}

.slider-ctrl-btn:hover {
    border-color: var(--primary);
    color: var(--primary);
    transform: scale(1.05);
}

.slider-dots {
    display: flex;
    gap: 8px;
}

.dot {
    width: 8px;
    height: 8px;
    border-radius: var(--radius-full);
    background: var(--border-color);
    cursor: pointer;
    transition: background var(--transition-fast), width var(--transition-fast);
}

.dot.active {
    background: var(--primary);
    width: 20px;
}

/* Contact Section & Embedded Form */
.contact-section {
    padding: 120px 0;
    background-color: var(--bg-surface);
}

.contact-container {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 60px;
    align-items: center;
}

.contact-desc-text {
    font-size: 1.05rem;
    color: var(--text-muted);
    margin-bottom: 30px;
    line-height: 1.6;
}

.office-coords {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.coord-item strong {
    font-family: var(--font-body);
    font-size: 0.75rem;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 1px;
    display: block;
    margin-bottom: 6px;
    font-weight: 700;
}

.coord-item p {
    color: var(--text-main);
    line-height: 1.6;
}

.contact-form-wrap {
    padding: 48px;
}

.contact-form-wrap h3 {
    font-family: var(--font-heading);
    font-size: 1.6rem;
    font-weight: 500;
    margin-bottom: 8px;
    color: var(--text-main);
}

.contact-form-wrap p {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-bottom: 24px;
}

/* Inquiry Drawer Modal Form */
.inquiry-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all var(--transition-normal);
}

.inquiry-modal.open {
    opacity: 1;
    visibility: visible;
}

.modal-backdrop {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--overlay-color);
    backdrop-filter: blur(8px);
}

.modal-content {
    position: relative;
    width: 100%;
    max-width: 600px;
    margin: 20px;
    padding: 48px;
    z-index: 2;
    transform: scale(0.95);
    transition: transform var(--transition-normal);
    max-height: 90vh;
    overflow-y: auto;
    border-radius: var(--radius-lg);
    background-color: var(--bg-surface);
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--border-color);
}

.inquiry-modal.open .modal-content {
    transform: scale(1);
}

.modal-close-btn {
    position: absolute;
    top: 24px;
    right: 24px;
    font-size: 1.8rem;
    font-weight: 300;
    line-height: 1;
    cursor: pointer;
    color: var(--text-muted);
    transition: color var(--transition-fast);
}

.modal-close-btn:hover {
    color: var(--primary);
}

.modal-heading {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 500;
    margin-bottom: 8px;
    letter-spacing: -0.5px;
    color: var(--text-main);
}

.modal-subheading {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-bottom: 30px;
}

.inquiry-form {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-row {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
}

.form-group label {
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    color: var(--text-muted);
    font-family: var(--font-body);
}

.form-group input, .form-group select, .form-group textarea {
    background-color: var(--input-bg);
    border: 1px solid var(--input-border);
    padding: 14px 18px;
    border-radius: var(--radius-md);
    color: var(--text-main);
    width: 100%;
    font-family: var(--font-body);
    transition: all var(--transition-fast);
}

.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
    border-color: var(--primary);
    background-color: #ffffff;
    box-shadow: 0 0 0 4px rgba(9, 63, 43, 0.06);
}

/* Success Message layout */
.success-message {
    text-align: center;
    padding: 30px 10px;
}

.success-icon {
    width: 60px;
    height: 60px;
    background: var(--accent-light);
    color: var(--primary);
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    font-weight: bold;
    margin: 0 auto 24px;
}

.success-message h4 {
    font-family: var(--font-heading);
    font-size: 1.6rem;
    font-weight: 500;
    margin-bottom: 8px;
    color: var(--text-main);
}

.success-message p {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.6;
}

/* Newsletter Section */
.newsletter-section {
    padding: 120px 0;
    background-color: var(--bg-base);
}

.news-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 48px;
    gap: 40px;
    flex-wrap: wrap;
    background-color: var(--bg-surface);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
}

.news-text {
    max-width: 500px;
}

.news-text h3 {
    font-family: var(--font-heading);
    font-size: 1.85rem;
    font-weight: 500;
    margin-bottom: 8px;
    letter-spacing: -0.5px;
    color: var(--text-main);
}

.news-text p {
    color: var(--text-muted);
}

.news-form {
    display: flex;
    gap: 12px;
    flex-grow: 1;
    max-width: 500px;
}

.news-input {
    flex-grow: 1;
    background-color: var(--input-bg);
    border: 1px solid var(--input-border);
    padding: 14px 24px;
    border-radius: var(--radius-full);
    color: var(--text-main);
    min-width: 200px;
    font-family: var(--font-body);
    transition: all var(--transition-fast);
}

.news-input:focus {
    border-color: var(--primary);
    background-color: #ffffff;
    box-shadow: 0 0 0 4px rgba(9, 63, 43, 0.06);
}

/* Footer Section */
.main-footer {
    background-color: #04120D;       /* Luxury Deep Emerald Charcoal */
    border-top: 1px solid rgba(255, 255, 255, 0.04);
    padding: 100px 0 0;
    color: #9BB3A8;                 /* Soft sage-gray text */
    font-size: 0.9rem;
}

.footer-container {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.5fr;
    gap: 40px;
    margin-bottom: 60px;
}

.footer-about {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.footer-logo {
    color: white;
}

.footer-desc {
    line-height: 1.7;
}

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

.social-links a {
    width: 32px;
    height: 32px;
    border-radius: var(--radius-sm);
    background: rgba(255, 255, 255, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all var(--transition-fast);
}

.social-links a:hover {
    background-color: var(--primary);
    color: white;
}

.social-icon {
    width: 14px;
    height: 14px;
    fill: currentColor;
}

.footer-links h4, .footer-contact h4 {
    color: white;
    font-family: var(--font-heading);
    font-weight: 500;
    font-size: 1.05rem;
    margin-bottom: 24px;
    position: relative;
    padding-bottom: 8px;
    letter-spacing: 0.5px;
}

.footer-links h4::after, .footer-contact h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 24px;
    height: 1px;
    background-color: var(--primary);
}

.footer-links ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-links a {
    transition: all var(--transition-fast);
}

.footer-links a:hover {
    color: white;
    padding-left: 6px;
}

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

.address {
    line-height: 1.7;
}

.contact-methods {
    line-height: 1.8;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.04);
    padding: 30px 0;
    font-size: 0.8rem;
    text-align: center;
}

.bottom-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px;
}

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

/* Media Queries for Responsiveness */
@media (max-width: 1024px) {
    .hero-title {
        font-size: 3rem;
    }
    .footer-container {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px;
    }
}

@media (max-width: 768px) {
    .top-bar {
        display: none;
    }
    
    .main-header {
        padding: 16px 0;
    }

    .nav-menu {
        display: none;
    }

    .header-actions .btn {
        display: none;
    }

    .mobile-menu-toggle {
        display: flex;
    }

    .mobile-drawer {
        top: 69px; /* Adjust offset for sticky menu */
    }

    .hero-section {
        padding: 60px 0 100px;
    }

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

    .console-panels {
        padding: 20px;
    }

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

    .grid-span-2 {
        grid-column: span 1;
    }

    .about-container, .contact-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .news-container {
        padding: 30px;
        flex-direction: column;
        text-align: center;
    }

    .news-form {
        flex-direction: column;
        width: 100%;
    }

    .bottom-container {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }

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

    .slide-content {
        padding: 20px;
    }

    .quote {
        font-size: 1.05rem;
    }

    .contact-form-wrap {
        padding: 24px 16px;
    }

    .modal-content {
        padding: 30px 16px;
    }

    .form-row {
        grid-template-columns: 1fr;
        gap: 18px;
    }
}

/* ==========================================
   Accreditations, Badges & Promo Banner Styles
   ========================================== */

.trust-logos-section {
    background-color: var(--bg-surface);
    border-bottom: 1px solid var(--border-color);
    padding: 24px 0;
    transition: background-color var(--transition-normal), border var(--transition-normal);
}

.trust-logos-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.trust-label {
    font-family: var(--font-body);
    font-weight: 700;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-muted);
}

.logo-row {
    display: flex;
    align-items: center;
    gap: 24px;
    flex-wrap: wrap;
}

.logo-item {
    background: #ffffff;
    padding: 8px 16px;
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-sm);
    height: 48px;
}

.logo-item img {
    max-height: 32px;
    width: auto;
    filter: grayscale(100%);
    opacity: 0.65;
    transition: all var(--transition-normal);
}

.logo-item:hover img {
    filter: none;
    opacity: 1;
    transform: scale(1.04);
}

/* Form Trust Badges */
.form-trust-badges {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 24px;
    flex-wrap: wrap;
}

.trust-badge-img {
    height: 32px;
    width: auto;
    background: #ffffff;
    padding: 4px 8px;
    border: 1px solid var(--border-color);
    border-radius: var(--radius-sm);
}

.trust-badge-text {
    font-size: 0.8rem;
    color: var(--text-muted);
    font-weight: 600;
}

/* Footer Seals */
.footer-trust-seals {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 18px;
    flex-wrap: wrap;
}

.footer-seal-img {
    height: 30px;
    width: auto;
    background: #ffffff;
    padding: 4px 8px;
    border: 1px solid var(--border-color);
    border-radius: var(--radius-sm);
    filter: grayscale(100%);
    opacity: 0.7;
    transition: all var(--transition-fast);
}

.footer-seal-img:hover {
    filter: none;
    opacity: 1;
}

/* CSS Promo Banner */
.promo-banner-section {
    padding: 120px 0;
}

.promo-banner {
    background: linear-gradient(135deg, var(--primary) 0%, #05261a 100%);
    border: none;
    border-radius: var(--radius-lg);
    padding: 60px;
    color: #ffffff;
    position: relative;
    overflow: hidden;
}

.promo-badge {
    display: inline-block;
    background: rgba(255, 255, 255, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: #ffffff;
    padding: 6px 16px;
    border-radius: var(--radius-full);
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 20px;
    backdrop-filter: blur(5px);
}

.promo-content-grid {
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: 60px;
    align-items: center;
}

.promo-text-wrap h2 {
    font-family: var(--font-heading);
    font-size: 2.6rem;
    font-weight: 500;
    line-height: 1.15;
    margin-bottom: 12px;
    color: #ffffff;
    letter-spacing: -0.5px;
}

.promo-tagline {
    font-size: 1.25rem;
    color: var(--accent-light);
    font-weight: 500;
    margin-bottom: 16px;
}

.promo-details {
    font-size: 0.95rem;
    color: #cbd5e1;
    margin-bottom: 24px;
    line-height: 1.7;
}

.promo-features {
    display: flex;
    flex-direction: column;
    gap: 12px;
    font-weight: 500;
    font-size: 0.95rem;
}

.promo-text-wrap .btn-primary {
    background-color: #ffffff;
    color: var(--primary);
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.1);
}

.promo-text-wrap .btn-primary:hover {
    background-color: var(--accent-light);
    color: #05261a;
    box-shadow: 0 8px 24px rgba(255, 255, 255, 0.2);
}

.promo-visual-wrap {
    display: flex;
    gap: 20px;
    position: relative;
    height: 320px;
    align-items: center;
}

.floating-promo-card {
    background-color: var(--bg-surface);
    color: var(--text-main);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: 24px;
    width: 230px;
    box-shadow: var(--shadow-lg);
    display: flex;
    flex-direction: column;
    animation: float-slow 6s ease-in-out infinite;
    position: absolute;
    left: 0;
    z-index: 2;
}

.floating-promo-card.secondary-card {
    animation: float-delayed 6s ease-in-out infinite;
    left: auto;
    right: 0;
    transform: translateY(40px);
    z-index: 1;
}

.fp-header {
    margin-bottom: 12px;
}

.fp-badge {
    display: inline-block;
    font-size: 0.65rem;
    font-weight: 700;
    background: var(--accent-light);
    color: var(--primary);
    padding: 2px 8px;
    border-radius: var(--radius-full);
    text-transform: uppercase;
    margin-bottom: 6px;
}

.fp-header h3 {
    font-family: var(--font-heading);
    font-size: 1.15rem;
    font-weight: 600;
    color: var(--text-main);
}

.fp-price {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 8px;
}

.fp-price span {
    font-size: 0.75rem;
    font-weight: 500;
    color: var(--text-muted);
}

.fp-desc {
    font-size: 0.8rem;
    color: var(--text-muted);
    line-height: 1.4;
}

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

@keyframes float-delayed {
    0%, 100% { transform: translateY(40px); }
    50% { transform: translateY(25px); }
}

/* Responsiveness overrides for new layout elements */
@media (max-width: 768px) {
    .trust-logos-container {
        flex-direction: column;
        text-align: center;
    }
    .logo-row {
        justify-content: center;
    }
    .promo-banner {
        padding: 40px 24px;
    }
    .promo-content-grid {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    .promo-features {
        align-items: center;
    }
    .promo-visual-wrap {
        position: static;
        height: auto;
        flex-wrap: wrap;
        justify-content: center;
    }
    .floating-promo-card {
        position: static;
        animation: none;
        width: 100%;
        max-width: 260px;
    }
    .floating-promo-card.secondary-card {
        transform: none;
    }
}

/* Brand Logo Image styles */
.brand-logo-img {
    height: 48px;
    width: auto;
    max-width: 280px;
    object-fit: contain;
    display: block;
    transition: height var(--transition-normal);
}

.main-header.scrolled .brand-logo-img {
    height: 38px;
}
