/* ==========================================================================
   Sunkyoon Travel - Core Styling & Design System
   ========================================================================== */

/* --- Design Tokens --- */
:root {
    /* Color Palette */
    --clr-primary: #0B3C35;       /* Deep Emerald */
    --clr-primary-dark: #051F1B;  /* Midnight Emerald */
    --clr-primary-light: #16564C; /* Soft Teal Emerald */
    --clr-secondary: #FAF8F5;     /* Warm Cream Sand */
    --clr-accent: #D4AF37;        /* Rich Gold */
    --clr-accent-coral: #E2725B;  /* Soft Warm Coral */
    --clr-white: #FFFFFF;
    
    /* Dark Theme Palette (for premium sections & dashboard) */
    --clr-dark-bg: #070D0C;       /* Almost Black Teal */
    --clr-dark-card: rgba(22, 38, 36, 0.35); /* Glassmorphic base */
    --clr-dark-border: rgba(212, 175, 55, 0.15); /* Gold tinted border */
    --clr-dark-text: #E5ECEB;
    --clr-dark-text-muted: #8E9E9C;

    /* Light Theme Palette */
    --clr-light-bg: #FCFAF7;
    --clr-light-card: rgba(255, 255, 255, 0.75);
    --clr-light-border: rgba(11, 60, 53, 0.08);
    --clr-light-text: #1B2B28;
    --clr-light-text-muted: #5A6B68;

    /* Typography */
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Plus Jakarta Sans', sans-serif;

    /* Shadows & Glows */
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.04);
    --shadow-md: 0 8px 20px rgba(0, 0, 0, 0.08);
    --shadow-lg: 0 16px 40px rgba(0, 0, 0, 0.15);
    --glow-gold: 0 0 15px rgba(212, 175, 55, 0.4);
    --glow-emerald: 0 0 20px rgba(11, 60, 53, 0.25);

    /* Transitions & Border Radius */
    --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-normal: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --radius-full: 9999px;
}

/* --- Base Reset --- */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-body);
    background-color: var(--clr-light-bg);
    color: var(--clr-light-text);
    overflow-x: hidden;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.2;
    color: var(--clr-primary);
}

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

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

ul {
    list-style: none;
}

/* --- Layout Container --- */
.container {
    max-width: 1600px;
    width: 94%;
    margin: 0 auto;
}

@media (max-width: 768px) {
    .container {
        width: 100%;
        padding: 0 1.25rem;
    }
}

/* --- Typography Utilities --- */
.text-gradient {
    background: linear-gradient(135deg, var(--clr-primary) 0%, var(--clr-primary-light) 50%, var(--clr-accent) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.text-gradient-gold {
    background: linear-gradient(135deg, #FFD700 0%, #FFF 50%, #FFD700 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 0 20px rgba(255, 215, 0, 0.15);
}

/* --- Buttons --- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.85rem 1.8rem;
    font-family: var(--font-heading);
    font-weight: 600;
    border-radius: var(--radius-full);
    cursor: pointer;
    transition: var(--transition-normal);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn-primary {
    background-color: var(--clr-primary);
    color: var(--clr-white);
    box-shadow: var(--shadow-sm);
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--clr-primary-light) 0%, var(--clr-primary-dark) 100%);
    opacity: 0;
    z-index: -1;
    transition: var(--transition-normal);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-md), var(--glow-emerald);
}

.btn-primary:hover::before {
    opacity: 1;
}

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

.btn-secondary:hover {
    background-color: var(--clr-primary);
    color: var(--clr-white);
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
}

.btn-accent {
    background-color: var(--clr-accent);
    color: var(--clr-primary-dark);
    box-shadow: var(--shadow-sm);
}

.btn-accent:hover {
    background-color: var(--clr-white);
    color: var(--clr-primary);
    transform: translateY(-3px);
    box-shadow: var(--shadow-md), var(--glow-gold);
}

.btn-text {
    padding: 0.5rem 1rem;
    color: var(--clr-primary);
    font-weight: 600;
}

.btn-text:hover {
    color: var(--clr-accent);
    transform: translateX(3px);
}

/* --- Glassmorphism --- */
.glass-panel-dark {
    background: rgba(255, 255, 255, 0.08); /* White liquid glass base */
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border: 1px solid rgba(255, 255, 255, 0.18); /* Bright white translucent border */
    border-radius: var(--radius-md);
    color: #FFFFFF; /* High contrast white text */
    box-shadow: 0 8px 32px rgba(255, 255, 255, 0.04);
}

.glass-panel-light {
    background: var(--clr-light-card);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid var(--clr-light-border);
    border-radius: var(--radius-md);
    color: var(--clr-light-text);
    box-shadow: var(--shadow-md);
}

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

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-40px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

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

@keyframes pulseGlow {
    0% { box-shadow: 0 0 5px rgba(212, 175, 55, 0.2); }
    50% { box-shadow: 0 0 20px rgba(212, 175, 55, 0.6); }
    100% { box-shadow: 0 0 5px rgba(212, 175, 55, 0.2); }
}

.animate-fade-in-up {
    animation: fadeInUp 0.8s var(--transition-normal) forwards;
}

.animate-slide-in-left {
    animation: slideInLeft 0.8s var(--transition-normal) forwards;
}

.animate-float {
    animation: float 4s ease-in-out infinite;
}

/* ==========================================================================
   Navigation Component
   ========================================================================== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    transition: var(--transition-normal);
    padding: 1.5rem 0;
}

.navbar.scrolled {
    padding: 0.8rem 0;
    background: rgba(11, 60, 53, 0.85);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: var(--shadow-md);
}

.navbar.scrolled .nav-logo {
    color: var(--clr-white);
}

.navbar.scrolled .nav-link {
    color: rgba(255, 255, 255, 0.8);
}

.navbar.scrolled .nav-link:hover {
    color: var(--clr-accent);
}

.navbar.scrolled .btn-portal {
    background-color: var(--clr-accent);
    color: var(--clr-primary-dark);
}

.navbar.scrolled .btn-portal:hover {
    background-color: var(--clr-white);
    color: var(--clr-primary);
}

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

.nav-logo {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 1.3rem;
    color: var(--clr-white);
    letter-spacing: -0.5px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: var(--radius-full);
    padding: 0.45rem 1.1rem;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: inset 0 1px 1px rgba(255, 255, 255, 0.15), 0 4px 15px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
}

.nav-logo:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(212, 175, 55, 0.45);
    box-shadow: inset 0 1px 2px rgba(255, 255, 255, 0.25), 0 6px 20px rgba(212, 175, 55, 0.25);
    transform: translateY(-1px);
}

.nav-logo-icon {
    width: 32px;
    height: 32px;
    stroke: var(--clr-accent);
}

.brand-text {
    display: inline-flex;
    align-items: center;
    color: #FFD700; /* Bright gold */
}

.brand-text-travel {
    margin-left: 0.45rem; /* Extra space between Sunkyoon and Travel */
}

.brand-sun-o, .brand-moon-o {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 0.85em;
    height: 0.85em;
    vertical-align: middle;
    margin: 0 0.02em;
    line-height: 1;
}

.brand-sun-o svg, .brand-moon-o svg {
    width: 100%;
    height: 100%;
    stroke: #FFD700; /* Bright gold */
    fill: none;
}


.nav-menu {
    display: flex;
    align-items: center;
    gap: 2.5rem;
}

.nav-link {
    font-family: var(--font-heading);
    font-weight: 500;
    color: rgba(255, 255, 255, 0.95);
    position: relative;
    padding: 0.25rem 0;
}

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

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

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

.nav-toggle {
    display: none;
    font-size: 1.5rem;
    color: var(--clr-white);
    cursor: pointer;
}

@media (max-width: 992px) {
    .nav-menu {
        display: none; /* simple mobile nav or we can toggle it */
    }
    .nav-toggle {
        display: block;
    }
}

/* ==========================================================================
   Hero Section
   ========================================================================== */
.hero {
    min-height: 100vh;
    background: linear-gradient(to bottom, rgba(7, 13, 12, 0.55) 0%, rgba(7, 13, 12, 0.7) 40%, rgba(7, 13, 12, 0.75) 85%, rgba(7, 13, 12, 1) 100%), 
                url('assets/hero_background.png') no-repeat center center/cover;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-top: 100px;
    color: var(--clr-white);
    position: relative;
    text-align: center;
}

.hero-content {
    width: 100%;
    max-width: 1100px;
    z-index: 10;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.hero-top-row {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    margin-bottom: 2rem;
}

.hero-tagline {
    font-family: var(--font-heading);
    color: #FFD700; /* Bright gold tagline */
    text-transform: uppercase;
    letter-spacing: 4px;
    font-size: 0.9rem;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.8rem;
}

.hero-tagline::before, .hero-tagline::after {
    content: '';
    display: inline-block;
    width: 30px;
    height: 2px;
    background-color: var(--clr-accent);
}

.quotation-pay-widget {
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    align-items: center;
    gap: 1rem;
    z-index: 10;
}

/* Responsive visibility helpers */
@media (min-width: 993px) {
    .mobile-only {
        display: none !important;
    }
}
@media (max-width: 992px) {
    .desktop-only {
        display: none !important;
    }
}

.pay-widget-text {
    font-size: 0.9rem;
    color: var(--clr-white);
    font-weight: 600;
}

.btn-pay-now-trigger {
    background: #FFD700; /* Brighter gold */
    color: var(--clr-primary-dark);
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 0.9rem; /* Bigger button text */
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 0.6rem 1.6rem; /* Bigger padding */
    border-radius: 6px; /* Square with round corners */
    border: none;
    cursor: pointer;
    transition: all 0.2s ease;
}

.btn-pay-now-trigger:hover {
    background: var(--clr-white);
    color: var(--clr-primary-dark);
    transform: translateY(-1px);
}

@media (max-width: 992px) {
    .hero-top-row {
        flex-direction: column;
        gap: 0.85rem;
        margin-bottom: 2rem;
    }
    .quotation-pay-widget {
        position: static;
        transform: none;
        justify-content: center;
        width: 100%;
    }
    .quotation-pay-widget.mobile-only {
        margin-top: 0.5rem;
        margin-bottom: 1.5rem;
        justify-content: center;
        width: 100%;
    }
    .hero-description {
        margin-bottom: 1rem;
    }
    .flash-offers-section {
        padding-top: 0 !important;
    }
    .offers-grid {
        margin-top: 0.5rem !important;
    }
}

.hero-title {
    font-size: 4.5rem;
    font-weight: 800;
    line-height: 1.1;
    color: var(--clr-white);
    margin-bottom: 1.5rem;
    letter-spacing: -1px;
    text-align: center;
}

.hero-description {
    font-size: 1.2rem;
    color: #FFFFFF; /* Pure white description */
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.7);
    margin-bottom: 1.5rem;
    max-width: 1200px;
    text-align: center;
}

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

@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }
    .hero-description {
        font-size: 1rem;
    }
}

/* --- Hero Search Widget --- */
.search-widget {
    padding: 2.2rem;
    width: 100%;
    max-width: 1300px;
    display: flex;
    flex-direction: column;
    gap: 1.6rem;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.45);
    margin-top: 2.5rem;
    border-radius: var(--radius-lg);
}

.search-row-middle {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    gap: 1.5rem 2rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
    padding: 1.8rem 0;
}

.search-row-desc {
    width: 100%;
    padding: 0.2rem 0;
}

.search-row-bottom {
    display: flex;
    justify-content: center;
    padding-top: 0.4rem;
}

.search-field {
    display: flex;
    flex-direction: column;
    padding: 0.65rem 1.2rem;
    position: relative;
    transition: background-color 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
    border-radius: 12px;
    background-color: rgba(255, 255, 255, 0.05); /* White glass inputs */
    border: 1px solid rgba(255, 255, 255, 0.15);
}

.search-field:hover {
    background-color: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.22);
}

.search-field.focused {
    background-color: rgba(255, 255, 255, 0.12);
    border-color: var(--clr-accent);
    box-shadow: 0 0 12px rgba(255, 215, 0, 0.25);
}

.search-field.col-span-3 {
    grid-column: span 3;
}

.search-field.col-span-4 {
    grid-column: span 4;
}

.search-field.full-width {
    width: 100%;
}

.search-field label {
    font-size: 0.68rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: #FFD700; /* Brighter gold labels */
    margin-bottom: 0.45rem;
    font-weight: 700;
    text-align: center;
    text-shadow: 0 1px 2px rgba(0,0,0,0.5);
}

.search-field input, .search-field select {
    color: var(--clr-white);
    font-size: 0.95rem;
    font-weight: 500;
    width: 100%;
    text-align: center;
    text-align-last: center;
}

/* Force date input text to center on iOS/Safari/Chrome */
.search-field input[type="date"] {
    text-align: center;
    justify-content: center;
}

.search-field input[type="date"]::-webkit-date-and-time-value {
    text-align: center;
    display: block;
    margin: 0 auto;
}

/* Custom Clean Select Dropdowns */
.search-field select {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23D4AF37' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 0.75rem center;
    background-size: 0.95rem;
    padding-right: 1.8rem;
    padding-left: 1.8rem;
    cursor: pointer;
}

.search-field input::placeholder {
    color: rgba(255, 255, 255, 0.6); /* Brighter placeholder text */
    text-align: center;
    opacity: 1;
    transition: opacity 0.2s ease, color 0.2s ease;
}

.search-field input:focus::placeholder {
    color: transparent;
    opacity: 0;
}

.search-field select option {
    background-color: var(--clr-primary-dark);
    color: var(--clr-white);
    padding: 0.75rem;
    text-align: center;
}

.search-widget button {
    height: 52px;
    border-radius: var(--radius-md);
    padding: 0 3.5rem;
    font-size: 0.95rem;
    white-space: nowrap;
}

@media (max-width: 1024px) {
    .search-row-middle {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    .search-field.col-span-3,
    .search-field.col-span-4 {
        grid-column: span 1;
    }
}

@media (max-width: 600px) {
    .search-widget {
        padding: 1.25rem;
        gap: 1.2rem;
    }
    .search-row-middle {
        grid-template-columns: 1fr;
        gap: 1.2rem;
        border-top: none;
        border-bottom: none;
        padding: 0;
    }
    .search-row-bottom {
        padding-top: 0;
    }
    .search-row-bottom button {
        width: 100%;
    }
    .search-field {
        padding: 0.6rem 1.1rem;
        border-radius: 12px;
    }
}

/* --- Auto Suggest Dropdown --- */
.suggest-box {
    position: absolute;
    top: 105%;
    left: 0;
    width: 100%;
    background: #0d1e1c;
    border: 1px solid var(--clr-dark-border);
    border-radius: var(--radius-sm);
    z-index: 100;
    max-height: 200px;
    overflow-y: auto;
    box-shadow: var(--shadow-lg);
    display: none;
}

.suggest-box.active {
    display: block;
}

.suggest-item {
    padding: 0.75rem 1rem;
    cursor: pointer;
    font-size: 0.9rem;
    transition: var(--transition-fast);
}

.suggest-item:hover {
    background: var(--clr-primary-light);
    color: var(--clr-accent);
}

/* ==========================================================================
   Destinations Component
   ========================================================================== */
.section {
    padding: 7.5rem 0;
}

.section-dark {
    background-color: var(--clr-dark-bg);
    color: var(--clr-dark-text);
}

.section-header {
    text-align: center;
    margin-bottom: 4.5rem;
}

.section-subtitle {
    font-family: var(--font-heading);
    color: var(--clr-accent);
    text-transform: uppercase;
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 3px;
    margin-bottom: 0.75rem;
    display: block;
}

.section-title {
    font-size: 2.6rem;
    font-weight: 800;
}

.section-dark .section-title {
    color: var(--clr-white);
}

/* --- Destination Grid --- */
.destinations-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

@media (max-width: 992px) {
    .destinations-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .destinations-grid {
        grid-template-columns: 1fr;
    }
}

.dest-card {
    height: 480px;
    border-radius: var(--radius-md);
    overflow: hidden;
    position: relative;
    cursor: pointer;
    box-shadow: var(--shadow-md);
    transition: var(--transition-slow);
}

.dest-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 40%, rgba(11, 60, 53, 0.9) 100%);
    z-index: 2;
    transition: var(--transition-normal);
}

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

.dest-badge {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    background-color: rgba(11, 60, 53, 0.85);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border: 1px solid var(--clr-accent);
    color: var(--clr-accent);
    padding: 0.4rem 1rem;
    border-radius: var(--radius-full);
    font-size: 0.8rem;
    font-weight: 600;
    z-index: 5;
    letter-spacing: 1px;
}

.dest-info {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 2.2rem;
    z-index: 5;
    transition: var(--transition-normal);
}

.dest-title {
    font-size: 1.8rem;
    color: var(--clr-white);
    margin-bottom: 0.5rem;
    font-family: var(--font-heading);
    transition: var(--transition-normal);
}

.dest-meta {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.85rem;
    margin-bottom: 1rem;
}

.dest-meta span {
    display: flex;
    align-items: center;
    gap: 0.4rem;
}

.dest-meta i, .dest-meta svg {
    color: var(--clr-accent);
    width: 16px;
    height: 16px;
}

.dest-description {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    transition: var(--transition-normal);
}

/* Card Hover States */
.dest-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg), 0 10px 30px rgba(11, 60, 53, 0.3);
}

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

.dest-card:hover .dest-info {
    transform: translateY(-10px);
}

.dest-card:hover .dest-description {
    max-height: 80px;
    opacity: 1;
    margin-top: 0.5rem;
}

.dest-card:hover::after {
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.1) 20%, rgba(5, 31, 27, 0.95) 100%);
}

/* ==========================================================================
   Interactive Teaser Component
   ========================================================================== */
#teaser {
    position: relative;
    border-top: none;
    z-index: 1;
}

.day-selector {
    display: flex;
    gap: 1.25rem;
    margin-bottom: 2rem;
    justify-content: center;
}

.day-tab {
    flex: 1;
    padding: 0.85rem 1.5rem;
    text-align: center;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    color: var(--clr-dark-text-muted);
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition-normal);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-size: 0.85rem;
}

.day-tab:hover {
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(255, 255, 255, 0.16);
    color: var(--clr-white);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.day-tab.active {
    background: rgba(212, 175, 55, 0.1);
    border-color: var(--clr-accent);
    color: var(--clr-accent);
    box-shadow: 0 0 15px rgba(212, 175, 55, 0.15);
    transform: translateY(-2px);
}

.teaser-container {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 4rem;
    align-items: center;
}

@media (max-width: 992px) {
    .teaser-container {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
}

.teaser-text {
    max-width: 520px;
}

.teaser-features {
    margin: 2.5rem 0;
}

.teaser-feature-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.teaser-feature-icon {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background-color: rgba(11, 60, 53, 0.1);
    color: var(--clr-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.teaser-feature-item h4 {
    font-size: 1.15rem;
    margin-bottom: 0.25rem;
}

.teaser-feature-item p {
    color: var(--clr-light-text-muted);
    font-size: 0.95rem;
}

/* --- Dynamic Widget Preview --- */
.teaser-widget {
    padding: 2.5rem;
    position: relative;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
}

.teaser-widget::before {
    content: '';
    position: absolute;
    top: -10px;
    right: -10px;
    bottom: -10px;
    left: -10px;
    background: linear-gradient(135deg, var(--clr-primary) 0%, var(--clr-accent) 100%);
    z-index: -1;
    border-radius: calc(var(--radius-lg) + 10px);
    opacity: 0.15;
}

.widget-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding-bottom: 1.2rem;
    margin-bottom: 1.5rem;
}

.widget-client {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--clr-accent);
}

.widget-dest-name {
    font-size: 1.35rem;
    color: var(--clr-white);
    font-weight: 700;
}

.widget-timeline {
    position: relative;
    padding-left: 2rem;
}

.widget-timeline::before {
    content: '';
    position: absolute;
    top: 5px;
    left: 7px;
    width: 2px;
    height: calc(100% - 15px);
    background: rgba(255, 255, 255, 0.15);
}

.timeline-step {
    position: relative;
    margin-bottom: 1.8rem;
    cursor: pointer;
    transition: var(--transition-fast);
}

.timeline-step:last-child {
    margin-bottom: 0;
}

.timeline-dot {
    position: absolute;
    left: -2rem;
    top: 5px;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background-color: #1a2a28;
    border: 3px solid rgba(255, 255, 255, 0.2);
    transition: var(--transition-normal);
}

.timeline-step.active .timeline-dot {
    background-color: var(--clr-accent);
    border-color: var(--clr-primary);
    box-shadow: var(--glow-gold);
}

.timeline-step.active h5 {
    color: var(--clr-accent);
}

.timeline-step.active p {
    color: var(--clr-white);
}

.timeline-step h5 {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--clr-dark-text-muted);
    margin-bottom: 0.2rem;
    transition: var(--transition-fast);
}

.timeline-step p {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.6);
    transition: var(--transition-fast);
}

.widget-budget-preview {
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.budget-val {
    font-size: 1.4rem;
    color: var(--clr-accent);
    font-weight: 700;
    font-family: var(--font-heading);
}

/* ==========================================================================
   Footer Component
   ========================================================================== */
.footer {
    background-color: var(--clr-primary-dark);
    color: var(--clr-white);
    padding: 5rem 0 2rem 0;
    border-top: 2px solid var(--clr-accent);
}

.footer-top {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.5fr;
    gap: 3rem;
    margin-bottom: 4rem;
}

@media (max-width: 992px) {
    .footer-top {
        grid-template-columns: 1.2fr 1fr 1.2fr;
    }
}

@media (max-width: 768px) {
    .footer-top {
        grid-template-columns: 1fr;
    }
}

.footer-brand p {
    color: var(--clr-dark-text-muted);
    margin: 1.5rem 0;
    font-size: 0.95rem;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--clr-dark-text);
    transition: var(--transition-fast);
}

.social-btn:hover {
    background-color: var(--clr-accent);
    color: var(--clr-primary-dark);
    transform: translateY(-3px);
}

.footer-col h4 {
    color: var(--clr-white);
    font-size: 1.2rem;
    margin-bottom: 1.8rem;
    position: relative;
    padding-bottom: 0.5rem;
}

.footer-col h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 2px;
    background-color: var(--clr-accent);
}

.footer-links li {
    margin-bottom: 0.8rem;
}

.footer-links a {
    color: var(--clr-dark-text-muted);
    font-size: 0.95rem;
}

.footer-links a:hover {
    color: var(--clr-accent);
    padding-left: 5px;
}

.footer-newsletter p {
    color: var(--clr-dark-text-muted);
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
}

.newsletter-form {
    display: flex;
    border-bottom: 2px solid rgba(255, 255, 255, 0.1);
    padding-bottom: 0.5rem;
}

.newsletter-form input {
    color: var(--clr-white);
    font-size: 0.95rem;
    width: 100%;
    padding: 0.5rem 0;
}

.newsletter-form input::placeholder {
    color: var(--clr-dark-text-muted);
}

.newsletter-form button {
    color: var(--clr-accent);
    cursor: pointer;
    font-size: 1.2rem;
    padding: 0 0.5rem;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.85rem;
    color: var(--clr-dark-text-muted);
}

@media (max-width: 600px) {
    .footer-bottom {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
}

/* ==========================================================================
   Destinations Looping Carousel
   ========================================================================== */
#destinations {
    position: relative;
    background: linear-gradient(to bottom, rgba(7, 13, 12, 1) 0%, rgba(7, 13, 12, 0.75) 50%, rgba(7, 13, 12, 1) 100%);
    backdrop-filter: blur(25px);
    -webkit-backdrop-filter: blur(25px);
    padding: 5rem 0;
    overflow: hidden;
    z-index: 1;
    border-top: none; /* Removed separating border for seamless fading */
    border-bottom: none; /* Removed to allow seamless transition into teaser */
}

/* Glowing green accent */
#destinations::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 20%;
    transform: translate(-50%, -50%);
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(16, 185, 129, 0.22) 0%, rgba(16, 185, 129, 0) 70%);
    filter: blur(80px);
    z-index: -1;
    pointer-events: none;
}

/* Glowing gold accent */
#destinations::after {
    content: '';
    position: absolute;
    top: 50%;
    right: 20%;
    transform: translate(50%, -50%);
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.18) 0%, rgba(212, 175, 55, 0) 70%);
    filter: blur(80px);
    z-index: -1;
    pointer-events: none;
}

.marquee-container {
    overflow: hidden;
    width: 100vw;
    position: relative;
    margin-left: calc(-50vw + 50%);
    padding: 1.5rem 0;
    z-index: 2; /* Ensures cards scroll over the blurred glows */
}

.marquee-track {
    display: flex;
    gap: 2rem;
    width: max-content;
    animation: scrollMarquee 45s linear infinite;
}

/* Pause-on-hover removed to ensure continuous seamless loop */

.marquee-track .dest-card {
    position: relative;
    height: 480px;
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: var(--transition-normal);
}

.marquee-track .dest-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 40%, rgba(11, 60, 53, 0.95) 100%);
    z-index: 2;
}

.marquee-track .dest-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg), 0 10px 30px rgba(11, 60, 53, 0.3);
}

.marquee-track .dest-card:hover .dest-img {
    transform: scale(1.08);
}

@keyframes scrollMarquee {
    0% {
        transform: translate3d(0, 0, 0);
    }
    100% {
        transform: translate3d(-50%, 0, 0);
    }
}

/* ==========================================================================
   Flatpickr Custom Calendar Theme overrides (Emerald & Gold)
   ========================================================================== */
.flatpickr-calendar {
    background: rgba(11, 31, 28, 0.95) !important; /* Midnight emerald background */
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid rgba(212, 175, 55, 0.25) !important;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.55) !important;
    font-family: var(--font-heading), sans-serif !important;
    border-radius: var(--radius-md) !important;
}

.flatpickr-calendar.arrowTop:after {
    border-bottom-color: rgba(11, 31, 28, 0.95) !important;
}
.flatpickr-calendar.arrowTop:before {
    border-bottom-color: rgba(212, 175, 55, 0.25) !important;
}
.flatpickr-calendar.arrowBottom:after {
    border-top-color: rgba(11, 31, 28, 0.95) !important;
}
.flatpickr-calendar.arrowBottom:before {
    border-top-color: rgba(212, 175, 55, 0.25) !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 {
    background: var(--clr-accent) !important; /* Rich Gold */
    border-color: var(--clr-accent) !important;
    color: var(--clr-primary-dark) !important;
    font-weight: 700;
}

.flatpickr-day:hover,
.flatpickr-day.prevMonthDay:hover,
.flatpickr-day.nextMonthDay:hover,
.flatpickr-day.today:hover {
    background: rgba(212, 175, 55, 0.15) !important;
    border-color: transparent !important;
    color: var(--clr-white) !important;
}

.flatpickr-day.today {
    border-color: var(--clr-accent) !important;
    color: var(--clr-white) !important;
}

.flatpickr-months .flatpickr-month {
    color: var(--clr-white) !important;
}

.flatpickr-current-month .flatpickr-monthDropdown-months {
    background: transparent !important;
    color: var(--clr-white) !important;
    font-weight: 600;
}

.flatpickr-current-month .numInputWrapper span.arrowUp::after {
    border-bottom-color: var(--clr-white) !important;
}

.flatpickr-current-month .numInputWrapper span.arrowDown::after {
    border-top-color: var(--clr-white) !important;
}

span.flatpickr-weekday {
    color: rgba(255, 255, 255, 0.5) !important;
    font-weight: 500;
}

.flatpickr-day {
    color: rgba(255, 255, 255, 0.8) !important;
}

.flatpickr-day.flatpickr-disabled, 
.flatpickr-day.flatpickr-disabled:hover {
    color: rgba(255, 255, 255, 0.15) !important;
}

.flatpickr-months .flatpickr-prev-month, 
.flatpickr-months .flatpickr-next-month {
    color: var(--clr-white) !important;
    fill: var(--clr-white) !important;
}

.flatpickr-months .flatpickr-prev-month:hover, 
.flatpickr-months .flatpickr-next-month:hover {
    color: var(--clr-accent) !important;
}

/* ==========================================================================
   Mobile/Tablet Layout Specific Optimizations
   ========================================================================== */
@media (max-width: 600px) {
    .teaser-widget {
        padding: 1.5rem 1.1rem !important;
    }
    .widget-dest-name {
        font-size: 1.1rem !important;
    }
    .widget-budget-preview {
        flex-direction: column;
        gap: 1rem;
        align-items: center !important;
        text-align: center !important;
    }
    .widget-budget-preview div {
        text-align: center !important;
    }
}

@media (max-width: 480px) {
    .day-selector {
        gap: 0.5rem !important;
    }
    .day-tab {
        padding: 0.6rem 0.8rem !important;
        font-size: 0.72rem !important;
        letter-spacing: 0.5px !important;
        border-radius: 8px !important;
    }
}

/* ==========================================================================
   B2C Flash Offers & Checkout Styles
   ========================================================================== */

/* Flash Offers Grid Section */
.flash-offers-section {
    padding: 1.5rem 0 0.5rem 0;
    width: 100%;
}

.section-header {
    margin-bottom: 4rem;
}

.section-tagline {
    font-family: var(--font-heading);
    color: var(--clr-accent);
    font-weight: 700;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    display: inline-block;
    margin-bottom: 0.5rem;
}

.section-title {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 1rem;
}

.section-desc {
    color: var(--clr-dark-text-muted);
    max-width: 750px;
    margin: 0 auto;
    font-size: 1.05rem;
}

.offers-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
    width: 100%;
    margin-top: 2rem;
}

@media (max-width: 1200px) {
    .offers-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
}

@media (max-width: 768px) {
    .offers-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

/* Offer Card */
.offer-card {
    background: var(--clr-dark-card);
    border: 1px solid var(--clr-dark-border);
    border-radius: var(--radius-md);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    text-align: left;
    transition: var(--transition-normal);
    backdrop-filter: blur(12px);
    position: relative;
    box-shadow: var(--shadow-md);
}

.offer-card:hover {
    transform: translateY(-8px);
    border-color: rgba(212, 175, 55, 0.4);
    box-shadow: var(--shadow-lg), var(--glow-gold);
}

.offer-image-wrapper {
    position: relative;
    width: 100%;
    aspect-ratio: 16/9;
    overflow: hidden;
}

.offer-card-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-slow);
}

.offer-card:hover .offer-card-image {
    transform: scale(1.08);
}

.package-tag {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: rgba(7, 13, 12, 0.85);
    border: 1px solid var(--clr-accent);
    backdrop-filter: blur(8px);
    color: var(--clr-accent);
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 0.4rem 0.8rem;
    border-radius: var(--radius-sm);
    z-index: 2;
    display: flex;
    align-items: center;
    gap: 0.3rem;
}

.offer-actions {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 0.6rem;
}

.btn-connect-agent-link {
    background: rgba(255, 255, 255, 0.05);
    color: rgba(255, 255, 255, 0.75);
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.72rem;
    padding: 0.45rem 0.9rem;
    border-radius: 6px;
    border: 1px solid rgba(255, 255, 255, 0.14);
    cursor: pointer;
    transition: var(--transition-fast);
}

.btn-connect-agent-link:hover {
    background-color: var(--clr-accent);
    color: var(--clr-primary-dark);
    border-color: var(--clr-accent);
    box-shadow: var(--glow-gold);
}

.offer-card-content {
    padding: 1.8rem;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.offer-meta-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.85rem;
    color: var(--clr-dark-text-muted);
    margin-bottom: 0.8rem;
}

.offer-card-duration, .offer-card-rating, .offer-card-flag {
    display: flex;
    align-items: center;
    gap: 0.3rem;
}

.offer-card-title {
    font-family: var(--font-heading);
    font-size: 1.35rem;
    font-weight: 700;
    color: #FFF;
    margin-bottom: 0.6rem;
    line-height: 1.3;
}

.offer-card-route {
    font-size: 0.85rem;
    color: var(--clr-accent);
    margin-bottom: 1.5rem;
    font-weight: 500;
    letter-spacing: 0.5px;
}

.offer-card-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: auto;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding-top: 1.2rem;
}

.offer-pricing {
    display: flex;
    flex-direction: column;
}

.original-price {
    text-decoration: line-through;
    font-size: 0.85rem;
    color: var(--clr-dark-text-muted);
    margin-bottom: -2px;
}

.flash-price {
    font-size: 1.45rem;
    font-weight: 800;
    color: var(--clr-accent);
}

.price-suffix {
    font-size: 0.7rem;
    color: var(--clr-dark-text-muted);
}

.btn-explore-offer {
    background-color: var(--clr-primary-light);
    color: #FFF;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.05rem;
    padding: 0.85rem 2.6rem;
    border-radius: 6px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    cursor: pointer;
    transition: var(--transition-fast);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.btn-explore-offer:hover {
    background-color: var(--clr-accent);
    color: var(--clr-primary-dark);
    border-color: var(--clr-accent);
    box-shadow: var(--glow-gold);
}

/* ==========================================================================
   Itinerary Details View
   ========================================================================== */
.itinerary-detail-section {
    padding: 120px 0 80px 0;
    background: var(--clr-dark-bg);
    color: #FFF;
    min-height: 100vh;
    text-align: left;
}

.btn-back {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: none;
    border: none;
    color: var(--clr-dark-text-muted);
    font-size: 0.95rem;
    cursor: pointer;
    margin-bottom: 2rem;
    transition: var(--transition-fast);
    font-weight: 600;
}

.btn-back:hover {
    color: var(--clr-accent);
}

.itinerary-detail-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 2.5rem;
    gap: 2rem;
}

@media (max-width: 992px) {
    .itinerary-detail-header {
        flex-direction: column;
        align-items: flex-start;
    }
}

.detail-tags {
    display: flex;
    gap: 0.8rem;
    margin-bottom: 0.8rem;
}

.tag-flash {
    background: var(--clr-accent-coral);
    color: #FFF;
    font-size: 0.75rem;
    font-weight: 700;
    padding: 0.35rem 0.8rem;
    border-radius: var(--radius-sm);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.tag-duration {
    background: rgba(255, 255, 255, 0.08);
    color: var(--clr-accent);
    font-size: 0.75rem;
    font-weight: 700;
    padding: 0.35rem 0.8rem;
    border-radius: var(--radius-sm);
    text-transform: uppercase;
    border: 1px solid rgba(212, 175, 55, 0.2);
    letter-spacing: 0.5px;
}

.detail-title {
    font-family: var(--font-heading);
    font-size: 2.8rem;
    font-weight: 800;
    color: #FFF;
    line-height: 1.15;
}

.detail-rating {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    margin-top: 0.5rem;
}

.fill-gold {
    fill: var(--clr-accent);
    stroke: var(--clr-accent);
}

.rating-text {
    font-size: 0.85rem;
    color: var(--clr-dark-text-muted);
}

.detail-pricing-box {
    background: rgba(22, 38, 36, 0.45);
    border: 1px solid var(--clr-dark-border);
    padding: 1.5rem;
    border-radius: var(--radius-md);
    text-align: right;
    backdrop-filter: blur(10px);
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}

@media (max-width: 992px) {
    .detail-pricing-box {
        align-items: flex-start;
        text-align: left;
        width: 100%;
    }
}

.pricing-labels {
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
}

.was-label {
    text-decoration: line-through;
    font-size: 0.9rem;
    color: var(--clr-dark-text-muted);
}

.flash-label {
    font-size: 0.75rem;
    color: var(--clr-accent-coral);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.pricing-amount {
    margin: 0.4rem 0 1rem 0;
}

.pricing-amount .amount {
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--clr-accent);
}

.pricing-amount .suffix {
    font-size: 0.9rem;
    color: var(--clr-dark-text-muted);
}

.detail-cover-wrapper {
    position: relative;
    width: 100%;
    aspect-ratio: 16/9;
    border-radius: var(--radius-lg);
    overflow: hidden;
    margin-bottom: 3rem;
    box-shadow: var(--shadow-lg);
}

.detail-cover-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.detail-cover-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, transparent 40%, rgba(7, 13, 12, 0.8) 100%);
}

.detail-live-timer {
    position: absolute;
    bottom: 2rem;
    right: 2rem;
    background: rgba(7, 13, 12, 0.85);
    border: 1px solid var(--clr-accent);
    color: #FFF;
    font-family: var(--font-heading);
    padding: 0.6rem 1.2rem;
    border-radius: var(--radius-sm);
    font-size: 0.95rem;
    backdrop-filter: blur(8px);
    letter-spacing: 0.5px;
    z-index: 5;
}

@media (max-width: 576px) {
    .detail-live-timer {
        bottom: 1rem;
        right: 1rem;
        left: 1rem;
        text-align: center;
        font-size: 0.85rem;
    }
}

/* Route Map Panel */
.route-map-panel {
    padding: 2.2rem;
    border-radius: var(--radius-md);
    margin-bottom: 3.5rem;
    border: 1px solid var(--clr-dark-border);
    background: var(--clr-dark-card);
    backdrop-filter: blur(10px);
}

.panel-subtitle {
    font-family: var(--font-heading);
    font-size: 1.15rem;
    color: var(--clr-accent);
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    font-weight: 700;
}

.route-nodes-wrapper {
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 90%;
    margin: 2rem auto 0.5rem auto;
}

@media (max-width: 768px) {
    .route-nodes-wrapper {
        flex-direction: column;
        gap: 2rem;
        margin: 1rem auto;
        width: 100%;
    }
}

.route-line-connector {
    position: absolute;
    top: 15px;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--clr-primary-light), var(--clr-accent), var(--clr-primary-light));
    z-index: 1;
}

@media (max-width: 768px) {
    .route-line-connector {
        display: none;
    }
}

.route-node {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.6rem;
    cursor: default;
}

.node-circle {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: var(--clr-primary-dark);
    border: 2px solid var(--clr-accent);
    color: var(--clr-accent);
    font-weight: 700;
    font-size: 0.85rem;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--glow-gold);
    transition: var(--transition-fast);
}

.route-node:hover .node-circle {
    transform: scale(1.2);
    background: var(--clr-accent);
    color: var(--clr-primary-dark);
}

.node-name {
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.95rem;
    color: #FFF;
}

/* Detail Split Layout */
.detail-content-grid {
    display: grid;
    grid-template-columns: 4fr 8fr;
    gap: 3rem;
    margin-bottom: 4rem;
}

@media (max-width: 992px) {
    .detail-content-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
}

.detail-col-left {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.detail-card {
    padding: 2rem;
    border-radius: var(--radius-md);
    border: 1px solid var(--clr-dark-border);
    background: var(--clr-dark-card);
    backdrop-filter: blur(10px);
}

.detail-card h3 {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    color: var(--clr-accent);
    margin-bottom: 1.5rem;
    font-weight: 700;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    padding-bottom: 0.8rem;
}

.detail-card ul {
    display: flex;
    flex-direction: column;
    gap: 1.1rem;
    text-align: left;
}

.detail-card li {
    display: flex;
    align-items: flex-start;
    gap: 0.8rem;
    font-size: 0.95rem;
    color: var(--clr-dark-text);
    line-height: 1.5;
}

.detail-card li i {
    flex-shrink: 0;
    margin-top: 3px;
    width: 16px;
    height: 16px;
}

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

.text-emerald {
    color: #4cd964;
}

/* Roadmap Timeline */
.roadmap-main-title {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    color: #FFF;
    margin-bottom: 2rem;
    font-weight: 700;
    text-align: left;
}

.roadmap-timeline {
    position: relative;
    padding-left: 2.5rem;
    border-left: 2px solid rgba(212, 175, 55, 0.15);
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
    text-align: left;
}

.timeline-item {
    position: relative;
}

.timeline-badge {
    position: absolute;
    left: calc(-2.5rem - 13px);
    top: 0;
    background: var(--clr-primary-dark);
    border: 2px solid var(--clr-accent);
    color: var(--clr-accent);
    font-family: var(--font-heading);
    font-size: 0.75rem;
    font-weight: 700;
    padding: 0.25rem 0.65rem;
    border-radius: var(--radius-full);
    z-index: 2;
    box-shadow: 0 0 10px rgba(212, 175, 55, 0.25);
}

.timeline-content {
    padding: 2rem;
    border-radius: var(--radius-md);
    border: 1px solid var(--clr-dark-border);
    background: var(--clr-dark-card);
    backdrop-filter: blur(10px);
    transition: var(--transition-normal);
}

.timeline-content:hover {
    border-color: rgba(212, 175, 55, 0.3);
    transform: translateX(5px);
}

.timeline-day-title {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    color: #FFF;
    margin-bottom: 0.6rem;
    font-weight: 700;
}

.timeline-day-desc {
    font-size: 0.95rem;
    color: var(--clr-dark-text-muted);
    line-height: 1.6;
}

/* Bottom CTA Panel */
.detail-bottom-cta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 2.5rem;
    border-radius: var(--radius-lg);
    border: 1px solid var(--clr-dark-border);
    background: var(--clr-dark-card);
    backdrop-filter: blur(10px);
    margin-top: 3.5rem;
    gap: 2rem;
    text-align: left;
}

@media (max-width: 992px) {
    .detail-bottom-cta {
        flex-direction: column;
        text-align: center;
    }
}

.cta-left h3 {
    font-family: var(--font-heading);
    font-size: 1.6rem;
    color: #FFF;
    margin-bottom: 0.5rem;
    font-weight: 700;
}

.cta-left p {
    color: var(--clr-dark-text-muted);
    font-size: 0.95rem;
}

.cta-right {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 1rem;
}

@media (max-width: 992px) {
    .cta-right {
        align-items: center;
        width: 100%;
    }
}

.cta-price {
    display: flex;
    align-items: baseline;
    gap: 0.8rem;
}

.cta-was {
    text-decoration: line-through;
    color: var(--clr-dark-text-muted);
    font-size: 1.15rem;
}

.cta-now {
    font-size: 1.9rem;
    font-weight: 800;
    color: var(--clr-accent);
}

/* ==========================================================================
   Quotation Pay Now Page Styling
   ========================================================================== */
.pay-now-section {
    background: var(--clr-dark-bg);
}

.pay-now-bg-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('assets/hero_background.png') no-repeat center center/cover;
    opacity: 0.15;
    z-index: 1;
    pointer-events: none;
}

.pay-now-bg-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, rgba(7, 13, 12, 0.4) 0%, rgba(7, 13, 12, 0.95) 100%);
    z-index: 2;
    pointer-events: none;
}

.btn-back-home {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--clr-accent);
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 2rem;
    cursor: pointer;
    transition: var(--transition-normal);
}

.btn-back-home:hover {
    color: var(--clr-white);
    transform: translateX(-3px);
}

.btn-back-home i {
    width: 16px;
    height: 16px;
}

.checkout-grid-wrapper {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 3rem;
    align-items: stretch;
}

@media (max-width: 992px) {
    .checkout-grid-wrapper {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

.checkout-form-box, .checkout-info-box {
    padding: 2.5rem;
    border-radius: var(--radius-lg);
    position: relative;
    display: flex;
    flex-direction: column;
}

.checkout-header {
    margin-bottom: 2rem;
}

.checkout-subtitle {
    font-size: 0.72rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--clr-accent);
    font-weight: 700;
    display: block;
    margin-bottom: 0.35rem;
}

.checkout-title {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--clr-white);
    margin-bottom: 0.75rem;
}

.checkout-desc {
    color: var(--clr-dark-text-muted);
    font-size: 0.95rem;
    line-height: 1.6;
}

.checkout-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.amount-input-wrapper {
    position: relative;
    display: flex;
    align-items: center;
}

.currency-prefix {
    position: absolute;
    left: 1rem;
    font-family: var(--font-heading);
    font-weight: 600;
    color: var(--clr-accent);
    font-size: 1.1rem;
}

.amount-input-wrapper input {
    padding-left: 2rem !important;
}

.btn-checkout-submit {
    width: 100%;
    justify-content: center;
    gap: 0.75rem;
    padding: 1rem;
    font-size: 0.95rem;
    font-family: var(--font-heading);
    font-weight: 700;
    letter-spacing: 1px;
    margin-top: 0.5rem;
}

.checkout-secure-notice {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-top: 1.5rem;
    font-size: 0.75rem;
    color: var(--clr-dark-text-muted);
    line-height: 1.5;
}

.checkout-secure-notice i {
    color: #2ecc71;
    width: 28px;
    height: 28px;
    flex-shrink: 0;
}

/* Steps list in the right column */
.checkout-steps {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.checkout-steps li {
    display: flex;
    gap: 1.25rem;
}

.step-num {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: rgba(212, 175, 55, 0.1);
    border: 1px solid var(--clr-accent);
    color: var(--clr-accent);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.9rem;
    flex-shrink: 0;
}

.checkout-steps h5 {
    color: var(--clr-white);
    font-size: 0.95rem;
    font-weight: 600;
    margin-bottom: 0.2rem;
}

.checkout-steps p {
    color: var(--clr-dark-text-muted);
    font-size: 0.85rem;
    line-height: 1.5;
}

/* Spinner and Mock Modal Overlays */
.payment-spinner {
    display: inline-block;
    width: 16px;
    height: 16px;
    border: 2px solid rgba(255,255,255,0.3);
    border-radius: 50%;
    border-top-color: var(--clr-accent);
    animation: pay-spin 0.8s linear infinite;
    margin-left: 8px;
}

@keyframes pay-spin {
    to { transform: rotate(360deg); }
}

.payment-modal-overlay {
    animation: pay-fade-in 0.25s ease forwards;
}

@keyframes pay-fade-in {
    from { opacity: 0; }
    to { opacity: 1; }
}

/* Form inputs & grid structures inside checkout */
.form-group-row {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    width: 100%;
}

.form-group-row.split {
    flex-direction: row;
}

@media (max-width: 576px) {
    .form-group-row.split {
        flex-direction: column;
        gap: 1rem;
    }
}

.form-input-group {
    display: flex;
    flex-direction: column;
    padding: 0.65rem 1.2rem;
    position: relative;
    transition: background-color 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
    border-radius: 12px;
    background-color: rgba(255, 255, 255, 0.04); /* White glass inputs */
    border: 1px solid rgba(255, 255, 255, 0.12);
    flex: 1;
}

.form-input-group:hover {
    background-color: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.2);
}

.form-input-group.focused {
    background-color: rgba(255, 255, 255, 0.12);
    border-color: var(--clr-accent);
    box-shadow: 0 0 12px rgba(255, 215, 0, 0.25);
}

.form-input-group label {
    font-size: 0.68rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: #FFD700; /* Gold label */
    margin-bottom: 0.45rem;
    font-weight: 700;
}

.form-input-group input {
    background: transparent;
    border: none;
    color: var(--clr-white);
    font-size: 0.95rem;
    font-weight: 500;
    width: 100%;
    outline: none;
}

.amount-input-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    width: 100%;
}

.currency-prefix {
    color: var(--clr-white);
    font-weight: 600;
    margin-right: 0.5rem;
    font-size: 1.1rem;
}

/* Payment Status Page Styling */
.payment-status-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 4rem 0;
    width: 100%;
}

.status-card {
    max-width: 550px;
    width: 100%;
    padding: 3rem 2.5rem;
    border-radius: var(--radius-lg);
    text-align: center;
    position: relative;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.status-card.success-border {
    border-color: rgba(46, 204, 113, 0.3);
    box-shadow: 0 10px 40px rgba(46, 204, 113, 0.05);
}

.status-card.failed-border {
    border-color: rgba(226, 114, 91, 0.3);
    box-shadow: 0 10px 40px rgba(226, 114, 91, 0.05);
}

.status-icon {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem auto;
}

.status-card.success-border .status-icon {
    background: rgba(46, 204, 113, 0.15);
    color: #2ecc71;
}

.status-card.failed-border .status-icon {
    background: rgba(226, 114, 91, 0.15);
    color: var(--clr-accent-coral);
}

.status-icon i {
    width: 36px;
    height: 36px;
}

.status-title {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 800;
    color: #fff;
    margin-bottom: 1rem;
}

.status-desc {
    color: var(--clr-dark-text-muted);
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 2rem;
}

.status-details-box {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 10px;
    padding: 1.25rem;
    margin-bottom: 2rem;
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.status-row {
    display: flex;
    justify-content: space-between;
    font-size: 0.9rem;
}

.status-label {
    color: var(--clr-dark-text-muted);
    font-weight: 500;
}

.status-val {
    color: #fff;
    font-weight: 600;
}

.status-val.success {
    color: #2ecc71;
}

.status-val.failed {
    color: var(--clr-accent-coral);
}

.status-actions {
    display: flex;
    justify-content: center;
    gap: 1rem;
}

@media (max-width: 480px) {
    .status-actions {
        flex-direction: column;
    }
}

.checkout-assistance-notice {
    margin-top: auto;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    font-size: 0.8rem;
    color: var(--clr-dark-text-muted);
    line-height: 1.5;
}

.checkout-assistance-notice a {
    color: var(--clr-accent);
    text-decoration: underline;
    transition: color var(--transition-fast);
}

.checkout-assistance-notice a:hover {
    color: var(--clr-white);
}

