/**
 * Dubai Travel Agent - Premium Stylesheet
 * Brand Colors: Deep Royal Blue (#0F3B82) & Vibrant Crimson (#BE123C)
 */

/* ===== CSS Variables ===== */
:root {
    --primary-color: #02265A; /* Primary Navy */
    --primary-dark: #011430;
    --primary-light: rgba(2, 38, 90, 0.05);
    --primary-light-hover: rgba(2, 38, 90, 0.1);
    
    --royal-blue: #0348A4; /* Royal Blue */
    --accent-color: #9A0649; /* Deep Magenta */
    --accent-dark: #730238; /* Dark Burgundy */
    --accent-light: rgba(154, 6, 73, 0.05);
    
    --secondary-color: #22C55E; /* WhatsApp Green */
    --secondary-dark: #15803D;
    
    --text-dark: #02265A; /* headings are Navy */
    --text-muted: #4B5563; /* body copy is gray */
    --text-light: #9CA3AF;
    
    --border-color: #E5E7EB;
    --bg-light: #F5F7FA; /* Section Background */
    --bg-white: #FFFFFF; /* Main Background */
    
    --font-heading: 'Playfair Display', Georgia, serif;
    --font-body: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    
    --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.05), 0 1px 2px rgba(0, 0, 0, 0.03);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.05), 0 2px 4px -1px rgba(0, 0, 0, 0.03);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.05), 0 4px 6px -2px rgba(0, 0, 0, 0.03);
    --shadow-premium: 0 20px 25px -5px rgba(2, 38, 90, 0.05), 0 10px 10px -5px rgba(2, 38, 90, 0.02);
    
    --primary-gradient: linear-gradient(135deg, #0348A4 0%, #9A0649 100%);
    --hero-gradient: linear-gradient(135deg, #02265A 0%, #0348A4 45%, #9A0649 100%);
    
    --transition-smooth: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-bounce: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

/* ===== Global Reset & Defaults ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--bg-white);
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    color: var(--text-dark);
    line-height: 1.25;
}

a {
    color: var(--primary-color);
    text-decoration: none;
    transition: var(--transition-smooth);
}

a:hover {
    color: var(--accent-color);
}

/* ===== Typography Utilities ===== */
.brand-gradient-text {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--accent-color) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}

/* ===== Buttons ===== */
.btn {
    font-weight: 600;
    padding: 0.75rem 1.75rem;
    border-radius: 8px;
    border-width: 2px;
    transition: var(--transition-bounce);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.btn:active {
    transform: scale(0.98);
}

.btn-primary {
    background: var(--primary-gradient);
    border-color: transparent;
    color: var(--bg-white);
    box-shadow: 0 4px 12px rgba(3, 72, 164, 0.2);
}

.btn-primary:hover {
    background: linear-gradient(135deg, #9A0649 0%, #0348A4 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(154, 6, 73, 0.25);
    color: var(--bg-white);
}

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

.btn-outline-primary:hover {
    background-color: var(--primary-color);
    color: var(--bg-white);
    transform: translateY(-2px);
}

.btn-success {
    background-color: var(--secondary-color);
    border-color: transparent;
    color: var(--bg-white);
    box-shadow: 0 4px 12px rgba(34, 197, 94, 0.2);
}

.btn-success:hover {
    background-color: var(--secondary-dark);
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(21, 128, 61, 0.3);
    color: var(--bg-white);
}

/* ===== Header / Navigation ===== */
.site-header {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background-color: transparent;
    border-bottom: none;
    transition: var(--transition-smooth);
}

.header-top {
    font-size: 0.8rem;
}

.site-logo {
    max-height: 42px;
    width: auto;
}

.navbar-nav .nav-link {
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 0.95rem;
    color: #FFFFFF !important;
    padding: 0.5rem 1.15rem !important;
    border-radius: 20px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.6);
    transition: var(--transition-smooth);
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-item.show .nav-link {
    color: var(--bg-white) !important;
    background-color: rgba(255, 255, 255, 0.15) !important;
    text-shadow: 0 2px 6px rgba(0, 0, 0, 0.8);
}

/* ===== Mobile Navbar Collapse ===== */
@media (max-width: 991.98px) {

    /* Panel container */
    .navbar-collapse.show,
    .navbar-collapse.collapsing {
        background: rgba(1, 15, 38, 0.98);
        backdrop-filter: blur(24px);
        -webkit-backdrop-filter: blur(24px);
        border: 1px solid rgba(212, 175, 55, 0.18);
        border-radius: 6px;
        margin-top: 8px;
        padding: 0.4rem 0 0.6rem;
        box-shadow: 0 24px 60px rgba(0, 0, 0, 0.7);
    }

    /* Nav links — left aligned, compact */
    .navbar-collapse .navbar-nav .nav-link {
        text-align: left !important;
        padding: 0.55rem 1.2rem !important;
        border-radius: 0 !important;
        border-bottom: none !important;
        font-size: 0.9rem !important;
        font-weight: 500 !important;
        background: transparent !important;
        border-left: 3px solid transparent !important;
        transition: all 0.2s ease !important;
    }

    /* Hover + active state — gold left bar */
    .navbar-collapse .navbar-nav .nav-link:hover,
    .navbar-collapse .navbar-nav .nav-item.show .nav-link {
        background: rgba(212, 175, 55, 0.07) !important;
        border-left-color: #D4AF37 !important;
        color: #D4AF37 !important;
        padding-left: 1.5rem !important;
    }

    /* Thin gold divider between items */
    .navbar-collapse .navbar-nav .nav-item {
        border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    }
    .navbar-collapse .navbar-nav .nav-item:last-child {
        border-bottom: none;
    }

    /* Mobile dropdown sub-menus */
    .navbar-collapse .dropdown-menu {
        background: rgba(0, 10, 28, 0.9) !important;
        border: none !important;
        border-radius: 0 !important;
        box-shadow: none !important;
        padding: 0 !important;
        margin: 0 !important;
        animation: none !important;
    }

    .navbar-collapse .dropdown-menu .dropdown-item {
        padding: 0.5rem 1rem 0.5rem 2.2rem;
        font-size: 0.82rem;
        border-left: 3px solid transparent;
    }

    .navbar-collapse .dropdown-menu .dropdown-item:hover {
        border-left-color: #D4AF37;
        padding-left: 2.5rem;
    }

    /* CTA button separator */
    .navbar-collapse .d-flex {
        margin-top: 0.5rem;
        padding: 0.6rem 1rem 0.2rem;
        border-top: 1px solid rgba(212, 175, 55, 0.15);
    }

    /* Hamburger toggler */
    .navbar-toggler {
        padding: 4px 8px;
        border: 1px solid rgba(255, 255, 255, 0.3) !important;
        border-radius: 4px;
    }
}


.dropdown-menu {
    background: rgba(1, 18, 42, 0.97);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(212, 175, 55, 0.2);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5), 0 0 0 1px rgba(255,255,255,0.04);
    border-radius: 4px;
    padding: 0.5rem 0;
    margin-top: 8px !important;
    animation: dropdownSlideIn 0.2s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Bridge the gap between nav-link and dropdown-menu to keep hover active */
.dropdown-menu::before {
    content: '';
    position: absolute;
    top: -12px;
    left: 0;
    right: 0;
    height: 12px;
    background: transparent;
}

@keyframes dropdownSlideIn {
    from { opacity: 0; transform: translateY(-8px); }
    to   { opacity: 1; transform: translateY(0); }
}

.dropdown-item, .dropdown-item:visited {
    font-family: var(--font-body);
    font-weight: 400;
    font-size: 0.88rem;
    padding: 0.65rem 1.4rem;
    color: #FFFFFF !important;
    border-left: 2px solid transparent;
    transition: all 0.2s ease;
    letter-spacing: 0.2px;
}

.dropdown-item:hover, .dropdown-item:active, .dropdown-item:focus {
    background: rgba(212, 175, 55, 0.08) !important;
    color: #D4AF37 !important;
    border-left-color: #D4AF37 !important;
    padding-left: 1.7rem !important;
}

.dropdown-menu-lg {
    min-width: 520px;
    padding: 1rem 0;
}

.dropdown-header {
    font-family: var(--font-body);
    font-weight: 600;
    color: #FFFFFF;
    text-transform: uppercase;
    font-size: 0.65rem;
    letter-spacing: 3px;
    padding: 0.75rem 1.4rem 0.4rem;
    opacity: 0.9;
}

.dropdown-divider {
    border-color: rgba(255, 255, 255, 0.08);
    margin: 0.3rem 1rem;
}

/* ===== Hero Sections ===== */
.hero-wrap {
    position: relative;
    background: var(--hero-gradient);
    color: var(--bg-white);
    padding: 100px 0;
    overflow: hidden;
}

.hero-home {
    position: relative;
    color: var(--bg-white);
    height: 100vh;
    overflow: hidden;
    background: var(--hero-gradient);
    display: flex;
    align-items: center;
}

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

.hero-video-bg {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    transform: translate(-50%, -50%);
    object-fit: cover;
    pointer-events: none;
    opacity: 0;
    transition: opacity 1.5s ease-in-out;
}

.hero-video-bg.active {
    opacity: 1;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.3);
    z-index: 2;
}

.hero-home .container {
    position: relative;
    z-index: 3;
    padding-top: 80px;
}

.hero-wrap::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 80% 20%, rgba(190, 18, 61, 0.15) 0%, transparent 50%);
    pointer-events: none;
}

.hero-wrap h1 {
    color: var(--bg-white);
    font-size: 3.25rem;
    font-weight: 800;
    letter-spacing: -0.02em;
}

.hero-wrap p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.2rem;
}

/* ===== Tour & Category Cards ===== */
.card-premium {
    border: 1px solid var(--border-color);
    border-radius: 20px;
    background-color: var(--bg-white);
    box-shadow: var(--shadow-sm);
    transition: var(--transition-smooth);
    overflow: hidden;
    height: 100%;
}

.card-premium:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-premium);
    border-color: rgba(2, 38, 90, 0.2);
}

.card-img-wrap {
    position: relative;
    overflow: hidden;
    aspect-ratio: 16/10;
}

.card-img-wrap img {
    transition: var(--transition-smooth);
    object-fit: cover;
    width: 100%;
    height: 100%;
}

.card-premium:hover .card-img-wrap img {
    transform: scale(1.06);
}

.card-badge {
    position: absolute;
    top: 1rem;
    left: 1rem;
    background-color: var(--accent-color);
    color: var(--bg-white);
    padding: 0.35rem 0.85rem;
    font-size: 0.75rem;
    font-weight: 700;
    border-radius: 20px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    box-shadow: var(--shadow-sm);
}

.card-body-content {
    padding: 1.5rem;
}

.card-title-link {
    color: var(--text-dark);
}

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

.card-price-label {
    font-size: 0.85rem;
    color: var(--text-muted);
}

.card-price-value {
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--accent-color);
}

/* ===== Details Components ===== */
.detail-table-card {
    border: 1px solid var(--border-color);
    border-radius: 12px;
    background-color: var(--bg-white);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
}

.detail-table-title {
    background-color: var(--primary-light);
    color: var(--primary-color);
    padding: 1rem 1.5rem;
    margin: 0;
    font-size: 1.1rem;
    font-weight: 700;
    border-bottom: 1px solid var(--border-color);
}

/* ===== Mobile-Responsive Tables ===== */
.responsive-table {
    width: 100%;
    border-collapse: collapse;
}

.responsive-table th {
    background-color: var(--bg-light);
    color: var(--text-dark);
    font-weight: 700;
    padding: 1rem 1.5rem;
    text-align: left;
    border-bottom: 2px solid var(--border-color);
}

.responsive-table td {
    padding: 1rem 1.5rem;
    border-bottom: 1px solid var(--border-color);
    color: var(--text-muted);
}

.responsive-table tr:last-child td {
    border-bottom: none;
}

@media (max-width: 767px) {
    .responsive-table table,
    .responsive-table thead,
    .responsive-table tbody,
    .responsive-table th,
    .responsive-table td,
    .responsive-table tr {
        display: block;
    }
    
    .responsive-table thead {
        display: none;
    }
    
    .responsive-table tr {
        border: 1px solid var(--border-color);
        border-radius: 12px;
        margin-bottom: 1rem;
        background-color: var(--bg-white);
        padding: 0.75rem;
        box-shadow: var(--shadow-sm);
    }
    
    .responsive-table td {
        display: flex;
        justify-content: space-between;
        padding: 0.5rem 0.75rem;
        border-bottom: 1px solid rgba(0,0,0,0.05);
        text-align: right;
    }
    
    .responsive-table td::before {
        content: attr(data-label);
        font-weight: 700;
        color: var(--text-dark);
        text-align: left;
        margin-right: 1rem;
    }
    
    .responsive-table td:last-child {
        border-bottom: none;
    }
}

/* ===== List Elements & Badges ===== */
.inclusions-list,
.exclusions-list {
    list-style: none;
    padding-left: 0;
}

.inclusions-list li,
.exclusions-list li {
    position: relative;
    padding-left: 2rem;
    margin-bottom: 0.75rem;
}

.inclusions-list li::before {
    content: "\F26E"; /* Bootstrap check-circle-fill */
    font-family: "bootstrap-icons";
    position: absolute;
    left: 0;
    color: var(--secondary-color);
    font-size: 1.15rem;
}

.exclusions-list li::before {
    content: "\F5C2"; /* Bootstrap x-circle-fill */
    font-family: "bootstrap-icons";
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-size: 1.15rem;
}

/* ===== FAQ Accordion Customization ===== */
.accordion-premium {
    border: none;
}

.accordion-premium .accordion-item {
    border: 1px solid var(--border-color);
    border-radius: 12px !important;
    margin-bottom: 1rem;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition-smooth);
}

.accordion-premium .accordion-item:hover {
    border-color: rgba(15, 59, 130, 0.2);
    box-shadow: var(--shadow-md);
}

.accordion-premium .accordion-button {
    font-weight: 700;
    color: var(--text-dark);
    padding: 1.25rem 1.5rem;
    background-color: var(--bg-white);
    box-shadow: none;
}

.accordion-premium .accordion-button:not(.collapsed) {
    background-color: var(--primary-light);
    color: var(--primary-color);
    border-bottom: 1px solid var(--border-color);
}

/* ===== Inquiry Forms ===== */
.inquiry-card {
    border: 1px solid var(--border-color);
    border-radius: 16px;
    background-color: var(--bg-white);
    box-shadow: var(--shadow-lg);
    overflow: hidden;
}

.inquiry-header {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    color: var(--bg-white);
    padding: 1.5rem;
    text-align: center;
}

.inquiry-header h3 {
    color: var(--bg-white);
    margin: 0;
    font-size: 1.25rem;
}

.inquiry-body {
    padding: 2rem;
}

.form-floating > .form-control:focus ~ label,
.form-floating > .form-control:not(:placeholder-shown) ~ label {
    color: var(--primary-color);
}

.form-control:focus,
.form-select:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 4px rgba(15, 59, 130, 0.12);
}

/* ===== Detail Page Premium Design ===== */
.detail-section {
    background-color: var(--bg-light) !important;
}

.detail-card {
    border: 1px solid rgba(2, 38, 90, 0.08) !important;
    border-top: 4px solid var(--primary-color) !important;
    background-color: var(--bg-white) !important;
    border-radius: 12px !important;
    box-shadow: 0 10px 30px -10px rgba(2, 38, 90, 0.05) !important;
    padding: 1.75rem !important;
    margin-bottom: 1.5rem !important;
    transition: var(--transition-smooth);
}

.detail-card:hover {
    box-shadow: 0 15px 35px -5px rgba(2, 38, 90, 0.08) !important;
}

.customization-card {
    border: 1px solid rgba(212, 175, 55, 0.15) !important;
    border-left: 4px solid #D4AF37 !important;
    background-color: rgba(212, 175, 55, 0.04) !important;
    border-radius: 8px !important;
    padding: 1.5rem !important;
    margin-bottom: 1.5rem !important;
}

.detail-title {
    color: var(--primary-color) !important;
    font-family: var(--font-heading) !important;
    font-weight: 700 !important;
}

.inclusions-list li {
    margin-bottom: 0.5rem;
    position: relative;
    padding-left: 1.5rem;
    list-style: none;
    color: var(--text-muted);
}

.inclusions-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #15803D;
    font-weight: bold;
}

.exclusions-list li {
    margin-bottom: 0.5rem;
    position: relative;
    padding-left: 1.5rem;
    list-style: none;
    color: var(--text-muted);
}

.exclusions-list li::before {
    content: "–";
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-weight: bold;
}

/* ===== Site Footer ===== */
.site-footer {
    background-color: #02265A !important;
    color: rgba(255, 255, 255, 0.7);
}

.site-footer h5 {
    color: #D4AF37 !important;
    font-weight: 700;
    margin-bottom: 1.5rem;
    position: relative;
    padding-bottom: 0.5rem;
}

.site-footer h5::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 40px;
    height: 3px;
    background-color: #D4AF37;
    border-radius: 2px;
}

.site-footer a {
    color: rgba(255, 255, 255, 0.8) !important;
    transition: all 0.25s ease;
}

.site-footer a:hover {
    color: #D4AF37 !important;
    padding-left: 6px;
    text-decoration: none;
}

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

.animate-fade-in-up {
    animation: fadeInUp 0.5s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

/* ===== Print Styles ===== */
@media print {
    .site-header,
    .site-footer,
    .btn,
    .inquiry-card {
        display: none !important;
    }
}

/* ===== Floating WhatsApp Button ===== */
.floating-whatsapp {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background-color: #25D366;
    color: #FFFFFF !important;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    z-index: 9999;
    transition: var(--transition-bounce);
}

.floating-whatsapp:hover {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.4);
    background-color: #20BA5A;
}
/* ===== Hero CTA Button Animations ===== */
.btn-hero-ghost {
    display: inline-block;
    padding: 14px 40px;
    background: transparent;
    color: #FFFFFF;
    font-family: var(--font-body);
    font-size: 0.88rem;
    font-weight: 500;
    letter-spacing: 2px;
    text-transform: uppercase;
    text-decoration: none;
    border: 1px solid rgba(255, 255, 255, 0.6);
    border-radius: 2px;
    transition: background 0.3s ease, border-color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
}

.btn-hero-ghost:hover {
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(255, 255, 255, 1);
    color: #FFFFFF;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
}

.btn-hero-gold {
    display: inline-block;
    padding: 14px 40px;
    background: #D4AF37;
    color: #02265A;
    font-family: var(--font-body);
    font-size: 0.88rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    text-decoration: none;
    border-radius: 2px;
    border: 1px solid transparent;
    box-shadow: 0 4px 20px rgba(212, 175, 55, 0.35);
    transition: background 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
}

.btn-hero-gold:hover {
    background: #C9A227;
    color: #02265A;
    transform: translateY(-2px);
    box-shadow: 0 8px 28px rgba(212, 175, 55, 0.5);
}

/* ===== Premium Stacked Cards (Reference Design) ===== */
.pcard {
    display: flex;
    flex-direction: column;
    background-color: #FFFFFF;
    border-radius: 18px;
    overflow: hidden;
    height: 100%;
    box-shadow: 0 4px 24px rgba(2, 38, 90, 0.06), 0 1px 4px rgba(0,0,0,0.04);
    border: 1px solid rgba(2, 38, 90, 0.06);
    transition: transform 0.45s cubic-bezier(0.165, 0.84, 0.44, 1),
                box-shadow 0.45s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.pcard:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(2, 38, 90, 0.1), 0 4px 12px rgba(0,0,0,0.06);
}

/* ---- Hero Image Section ---- */
.pcard__hero {
    position: relative;
    height: 280px;
    background-size: cover;
    background-position: center;
    overflow: hidden;
}

.pcard__hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background-size: inherit;
    background-position: inherit;
    background-image: inherit;
    transition: transform 0.7s cubic-bezier(0.165, 0.84, 0.44, 1);
    z-index: 0;
}

.pcard:hover .pcard__hero::before {
    transform: scale(1.08);
}

.pcard__hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        180deg,
        rgba(1, 18, 47, 0.25) 0%,
        rgba(1, 18, 47, 0.55) 50%,
        rgba(1, 18, 47, 0.82) 100%
    );
    z-index: 1;
}

.pcard__hero-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 1.5rem 1.6rem;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

/* Badge pill */
.pcard__badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background-color: rgba(1, 18, 45, 0.7);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    color: #D4AF37;
    border: 1px solid rgba(212, 175, 55, 0.5);
    font-family: var(--font-body);
    font-size: 0.62rem;
    font-weight: 600;
    letter-spacing: 2px;
    padding: 0.35rem 0.9rem;
    border-radius: 50px;
    margin-bottom: 0.9rem;
    text-transform: uppercase;
}

.pcard__badge i {
    font-size: 0.7rem;
    color: #D4AF37;
}

/* Hero title */
.pcard__hero-title {
    font-family: var(--font-heading);
    color: #FFFFFF;
    display: flex;
    flex-direction: column;
    margin: 0 0 0.6rem 0;
    line-height: 1.1;
}

.pcard__hero-title-main {
    font-size: 2.2rem;
    font-weight: 700;
    display: block;
    text-shadow: 0 2px 12px rgba(0,0,0,0.4);
}

.pcard__hero-title-sub {
    font-size: 1.5rem;
    font-weight: 400;
    font-style: italic;
    display: block;
    text-shadow: 0 2px 8px rgba(0,0,0,0.35);
    color: rgba(255, 255, 255, 0.92);
}

/* Gold accent line */
.pcard__hero-line {
    width: 50px;
    height: 2px;
    background: #D4AF37;
    margin: 0.5rem 0 0.75rem;
    border-radius: 1px;
}

.pcard__hero-desc {
    font-family: var(--font-body);
    font-size: 0.82rem;
    font-weight: 300;
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.8);
    margin: 0;
    max-width: 90%;
}

/* ---- Body / Content Section ---- */
.pcard__body {
    padding: 1rem 1.6rem 0;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

/* Category label */
.pcard__category {
    font-family: var(--font-body);
    font-size: 0.65rem;
    font-weight: 600;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: #D4AF37;
    margin-bottom: 0.35rem;
    display: block;
}

/* Body title */
.pcard__title {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    font-weight: 700;
    color: #02265A;
    line-height: 1.2;
    margin: 0 0 0.2rem 0;
}

/* Body description */
.pcard__desc {
    font-family: var(--font-body);
    font-size: 0.82rem;
    font-weight: 400;
    line-height: 1.55;
    color: #5A6577;
    margin: 0 0 1.1rem 0;
}

/* Meta row: features + price */
.pcard__meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.75rem;
    padding: 0.6rem 0;
    border-top: 1px solid rgba(0, 0, 0, 0.07);
    margin-top: auto;
}

/* Features row */
.pcard__features {
    display: flex;
    align-items: center;
    gap: 0;
    flex: 1;
}

.pcard__feature {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    flex: 1;
    padding: 0 0.25rem;
}

.pcard__feature-icon {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: rgba(2, 38, 90, 0.05);
    border: 1px solid rgba(2, 38, 90, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #02265A;
    font-size: 0.9rem;
    margin-bottom: 0.3rem;
    transition: all 0.35s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.pcard:hover .pcard__feature-icon {
    background: rgba(212, 175, 55, 0.1);
    border-color: rgba(212, 175, 55, 0.35);
    color: #9A0649;
    transform: scale(1.08);
}

.pcard__feature-text {
    font-family: var(--font-body);
    font-size: 0.6rem;
    font-weight: 600;
    color: #02265A;
    line-height: 1.25;
}

/* Vertical divider between features */
.pcard__feature-divider {
    width: 1px;
    height: 32px;
    background: rgba(0, 0, 0, 0.09);
    flex-shrink: 0;
}

/* Price block */
.pcard__price {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    border-left: 2px solid #D4AF37;
    padding-left: 0.75rem;
    flex-shrink: 0;
}

.pcard__price-label {
    font-family: var(--font-body);
    font-size: 0.55rem;
    font-weight: 600;
    letter-spacing: 1.2px;
    color: #8B8F97;
    text-transform: uppercase;
    margin-bottom: 0.3rem;
}

.pcard__price-value {
    font-family: var(--font-body);
    font-size: 1.55rem;
    font-weight: 700;
    color: #01122D;
    line-height: 1;
}

.pcard__currency {
    font-family: var(--font-body);
    font-size: 0.7rem;
    font-weight: 600;
    color: #5A6577;
    margin-right: 2px;
}

/* ---- Full-width CTA Button ---- */
.pcard__cta {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    width: calc(100% + 3.2rem);
    margin-left: -1.6rem;
    margin-right: -1.6rem;
    margin-top: 0.6rem;
    padding: 1rem 2rem;
    background: linear-gradient(135deg, #01122D 0%, #02265A 100%);
    color: #D4AF37 !important;
    text-decoration: none !important;
    font-family: var(--font-body);
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    border: none;
    transition: all 0.35s cubic-bezier(0.165, 0.84, 0.44, 1);
    position: relative;
    overflow: hidden;
}

.pcard__cta::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, #9A0649 0%, #02265A 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.pcard__cta:hover::before {
    opacity: 1;
}

.pcard__cta span,
.pcard__cta i {
    position: relative;
    z-index: 1;
}

.pcard__cta i {
    transition: transform 0.3s ease;
    font-size: 0.9rem;
}

.pcard__cta:hover {
    color: #D4AF37 !important;
    box-shadow: 0 8px 24px rgba(2, 38, 90, 0.25);
}

.pcard__cta:hover i {
    transform: translateX(6px);
}

/* ---- Scrolled Navigation State ---- */
.site-header.navbar-scrolled {
    position: fixed !important;
    background-color: #02265A !important;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    border-bottom: 1px solid rgba(212, 175, 55, 0.2);
    animation: headerSlideDown 0.3s ease-out forwards;
}

.site-header.navbar-scrolled .header-top {
    display: none !important;
}

@keyframes headerSlideDown {
    from { transform: translateY(-50px); }
    to { transform: translateY(0); }
}

/* ---- Responsive ---- */
@media (max-width: 991.98px) {
    .site-header {
        position: fixed !important;
        background-color: #02265A !important;
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
        border-bottom: 1px solid rgba(212, 175, 55, 0.15);
    }

    .header-top {
        font-size: 0.75rem !important;
    }

    .navbar-collapse {
        max-height: calc(100vh - 110px);
        overflow-y: auto;
    }

    .navbar-collapse .dropdown-menu-lg .row {
        padding: 0 !important;
        margin: 0 !important;
    }
    
    .navbar-collapse .dropdown-menu-lg .col-lg-6,
    .navbar-collapse .dropdown-menu-lg .col-12 {
        padding: 0 !important;
    }
    
    .navbar-collapse .dropdown-header {
        color: #D4AF37 !important;
        font-family: var(--font-body);
        font-weight: 600;
        font-size: 0.75rem;
        letter-spacing: 1px;
        text-transform: uppercase;
        padding: 0.75rem 1rem 0.25rem 1.5rem !important;
    }

    .pcard__hero {
        height: 250px;
    }

    .pcard__hero-title-main {
        font-size: 1.8rem;
    }

    .pcard__hero-title-sub {
        font-size: 1.2rem;
    }
}

@media (max-width: 767.98px) {
    .pcard__hero {
        height: 250px;
    }

    .pcard__hero-content {
        padding: 1.1rem 1.2rem;
    }

    .pcard__hero-title-main {
        font-size: 1.35rem;
    }

    .pcard__hero-title-sub {
        font-size: 1.05rem;
    }

    .pcard__meta {
        flex-direction: column;
        align-items: stretch;
    }

    .pcard__features {
        margin-bottom: 0.75rem;
    }

    .pcard__price {
        border-left: none;
        border-top: 1px solid rgba(0,0,0,0.07);
        padding-left: 0;
        padding-top: 0.75rem;
        align-items: flex-start;
        flex-direction: row;
        gap: 0.5rem;
        align-items: baseline;
    }
}

@media (max-width: 575.98px) {
    .pcard__hero {
        height: 240px;
    }

    .pcard__hero-content {
        padding: 0.8rem 1rem;
    }

    .pcard__hero-desc {
        display: none !important;
    }

    .pcard__badge {
        padding: 0.25rem 0.75rem;
        margin-bottom: 0.5rem;
    }

    .pcard__hero-title-main {
        font-size: 1.15rem;
    }

    .pcard__hero-title-sub {
        font-size: 0.9rem;
    }

    .pcard__hero-line {
        margin: 0.35rem 0 0.5rem;
    }

    .pcard__body {
        padding: 1.2rem 1.2rem 0;
    }

    .pcard__cta {
        width: calc(100% + 2.4rem);
        margin-left: -1.2rem;
        margin-right: -1.2rem;
    }
}

/* ============================================================================
   HIGH-END CUSTOM DESIGNS - Post-Card Sections
   ============================================================================ */

/* ---- Title Accent Diamond Decoration ---- */
.luxe-title-decor {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-bottom: 45px;
}
.luxe-title-decor__line {
    height: 1px;
    width: 60px;
    background: linear-gradient(to right, transparent, #D4AF37, transparent);
}
.luxe-title-decor__diamond {
    color: #D4AF37;
    font-size: 8px;
    animation: pulse 2s infinite ease-in-out;
}

/* ---- 1. Premium Local Operator Box (Luxury Panel) ---- */
.luxe-operator-box {
    background: linear-gradient(145deg, #01122D 0%, #02265A 100%);
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-radius: 24px;
    padding: 3rem 2.5rem;
    position: relative;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(1, 18, 45, 0.15);
}
.luxe-operator-box::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.08) 0%, transparent 70%);
    pointer-events: none;
}
.luxe-operator-box__badge {
    display: inline-block;
    font-family: var(--font-body);
    font-size: 0.65rem;
    font-weight: 600;
    letter-spacing: 3px;
    color: #D4AF37;
    text-transform: uppercase;
    border: 1px solid rgba(212, 175, 55, 0.4);
    padding: 0.35rem 1rem;
    border-radius: 50px;
    margin-bottom: 1.5rem;
    background: rgba(255, 255, 255, 0.02);
    backdrop-filter: blur(4px);
}
.luxe-operator-box__title {
    font-family: var(--font-heading);
    font-size: 2.4rem;
    font-weight: 700;
    color: #FFFFFF;
    margin-bottom: 1.5rem;
    line-height: 1.25;
}
.luxe-operator-box__text {
    font-family: var(--font-body);
    font-size: 1.02rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.85);
    max-width: 900px;
    margin: 0 auto;
    font-weight: 300;
}

/* ---- 2. How to Book (Timeline Step Flow) ---- */
.luxe-step-card {
    background-color: #FFFFFF;
    border-radius: 20px;
    border: 1px solid rgba(2, 38, 90, 0.05);
    box-shadow: 0 10px 30px rgba(2, 38, 90, 0.02);
    padding: 2.5rem 2rem;
    position: relative;
    overflow: hidden;
    height: 100%;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}
.luxe-step-card:hover {
    transform: translateY(-8px);
    border-color: rgba(212, 175, 55, 0.3);
    box-shadow: 0 20px 45px rgba(2, 38, 90, 0.07);
}
.luxe-step-card__num {
    position: absolute;
    top: 20px;
    right: 25px;
    font-family: var(--font-body);
    font-size: 2.8rem;
    font-weight: 800;
    color: rgba(212, 175, 55, 0.12);
    line-height: 1;
}
.luxe-step-card__icon-wrap {
    width: 76px;
    height: 76px;
    border-radius: 50%;
    background-color: rgba(2, 38, 90, 0.04);
    border: 1px solid rgba(2, 38, 90, 0.08);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #02265A;
    margin-bottom: 1.5rem;
    transition: all 0.4s ease;
}
.luxe-step-card:hover .luxe-step-card__icon-wrap {
    background-color: rgba(212, 175, 55, 0.1);
    border-color: rgba(212, 175, 55, 0.4);
    color: #9A0649;
    transform: scale(1.08);
}
.luxe-step-card__icon-wrap i {
    font-size: 2rem;
}
.luxe-step-card__title {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    font-weight: 700;
    color: #02265A;
    margin-bottom: 0.8rem;
}
.luxe-step-card__desc {
    font-family: var(--font-body);
    font-size: 0.88rem;
    color: #5A6577;
    line-height: 1.6;
    margin: 0;
}

/* ---- 3. Why Choose Us (Feature Grid) ---- */
.luxe-why-card {
    background-color: #FFFFFF;
    border-radius: 20px;
    border: 1px solid rgba(2, 38, 90, 0.05);
    box-shadow: 0 10px 30px rgba(2, 38, 90, 0.02);
    padding: 2rem;
    height: 100%;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    position: relative;
}
.luxe-why-card::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 20px;
    border: 1px solid transparent;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.4) 0%, transparent 60%) border-box;
    -webkit-mask: linear-gradient(#fff 0 0) padding-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: destination-out;
    mask-composite: exclude;
    opacity: 0;
    transition: opacity 0.4s ease;
}
.luxe-why-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 45px rgba(2, 38, 90, 0.08);
}
.luxe-why-card:hover::before {
    opacity: 1;
}
.luxe-why-card__icon-wrap {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background-color: rgba(2, 38, 90, 0.04);
    border: 1px solid rgba(2, 38, 90, 0.08);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #02265A;
    margin-bottom: 1.25rem;
    transition: all 0.4s ease;
}
.luxe-why-card:hover .luxe-why-card__icon-wrap {
    background-color: rgba(212, 175, 55, 0.12);
    border-color: rgba(212, 175, 55, 0.4);
    color: #D4AF37;
    transform: scale(1.06);
}
.luxe-why-card__icon-wrap i {
    font-size: 1.6rem;
}
.luxe-why-card__title {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    font-weight: 700;
    color: #02265A;
    margin-bottom: 0.8rem;
}
.luxe-why-card__desc {
    font-family: var(--font-body);
    font-size: 0.86rem;
    color: #5A6577;
    line-height: 1.6;
    margin: 0;
}

/* ---- 4. About Section (Asymmetric Story Grid) ---- */
.luxe-about-banner {
    background-color: #FFFFFF;
    border-radius: 24px;
    box-shadow: 0 15px 45px rgba(2, 38, 90, 0.04);
    border: 1px solid rgba(2, 38, 90, 0.06);
    overflow: hidden;
}
.luxe-about-banner__badge-grid {
    background: linear-gradient(135deg, #01122D 0%, #02265A 100%);
    padding: 3rem 2.5rem;
    color: #FFFFFF;
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 100%;
    position: relative;
}
.luxe-about-banner__badge-grid::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -20%;
    width: 250px;
    height: 250px;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.07) 0%, transparent 70%);
    pointer-events: none;
}
.luxe-about-badge {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 14px;
    padding: 1.25rem 1rem;
    transition: all 0.3s ease;
    backdrop-filter: blur(4px);
}
.luxe-about-badge:hover {
    background: rgba(212, 175, 55, 0.05);
    border-color: rgba(212, 175, 55, 0.25);
    transform: translateY(-3px);
}
.luxe-about-badge__title {
    font-family: var(--font-body);
    font-size: 0.65rem;
    font-weight: 600;
    letter-spacing: 1.5px;
    color: #D4AF37;
    text-transform: uppercase;
    margin-bottom: 0.25rem;
    display: block;
}
.luxe-about-badge__value {
    font-family: var(--font-heading);
    font-size: 1.15rem;
    font-weight: 700;
    color: #FFFFFF;
    display: block;
}

/* ---- 5. Premium Accordions (FAQ) ---- */
.accordion-premium {
    --bs-accordion-border-color: rgba(2, 38, 90, 0.06);
    --bs-accordion-border-radius: 14px;
}
.accordion-premium .accordion-item {
    border-radius: 14px !important;
    margin-bottom: 0.9rem;
    border: 1px solid rgba(2, 38, 90, 0.06) !important;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(2, 38, 90, 0.015);
    transition: all 0.3s ease;
}
.accordion-premium .accordion-item:hover {
    border-color: rgba(212, 175, 55, 0.3) !important;
    box-shadow: 0 8px 24px rgba(2, 38, 90, 0.04);
}
.accordion-premium .accordion-button {
    background-color: #FFFFFF;
    color: #02265A;
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 0.95rem;
    padding: 1.25rem 1.5rem;
    box-shadow: none;
    transition: all 0.25s ease;
}
.accordion-premium .accordion-button:not(.collapsed) {
    background: rgba(2, 38, 90, 0.03);
    color: #02265A;
    border-bottom: 1px solid rgba(2, 38, 90, 0.05);
}
.accordion-premium .accordion-button::after {
    background-size: 0.9rem;
    transition: transform 0.3s ease;
}
.accordion-premium .accordion-button:not(.collapsed)::after {
    transform: rotate(180deg);
}

@keyframes pulse {
    0% { transform: scale(1); opacity: 0.6; }
    50% { transform: scale(1.3); opacity: 1; }
    100% { transform: scale(1); opacity: 0.6; }
}

/* ===== Table & Price List Layouts ===== */
.detail-table-card {
    background: #FFFFFF;
    border-radius: 16px;
    border: 1px solid rgba(2, 38, 90, 0.08);
    box-shadow: 0 10px 30px rgba(2, 38, 90, 0.03);
    overflow: hidden;
}

.responsive-table {
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}

.responsive-table table {
    width: 100%;
    border-collapse: collapse;
}

.responsive-table th {
    background-color: #02265A;
    color: #FFFFFF;
    font-weight: 600;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    padding: 1.1rem 1.5rem;
    border: none;
}

.responsive-table td {
    padding: 1.15rem 1.5rem;
    border-bottom: 1px solid rgba(2, 38, 90, 0.05);
    font-size: 0.95rem;
    color: var(--text-dark);
    vertical-align: middle;
}

.responsive-table tr:last-child td {
    border-bottom: none;
}

.detail-table-title {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    color: #02265A;
    padding: 1.5rem 1.5rem 0.5rem;
    margin: 0;
}


