/* 
   Ultra HD Luxury Design System for Public Site
   Colors: Premium Midnight (#0f172a), Sea Teal (#00a6b4), Sunset Orange (#ff7e00)
*/

:root {
    --primary: #00a6b4;
    --primary-glow: rgba(0, 166, 180, 0.4);
    --secondary: #ff7e00;
    --midnight: #0f172a;
    --slate-800: #1e293b;
    --slate-700: #334155;
    --white: #ffffff;
    --text-main: #1e293b;
    --text-muted: #64748b;
    --glass: rgba(255, 255, 255, 0.03);
    --glass-border: rgba(255, 255, 255, 0.1);
    --shadow-lux: 0 30px 60px -12px rgba(50, 50, 93, 0.15), 0 18px 36px -18px rgba(0, 0, 0, 0.2);
    --transition: cubic-bezier(0.165, 0.84, 0.44, 1) 0.6s;
}

body {
    font-family: 'Plus Jakarta Sans', sans-serif;
    color: var(--text-main);
    background-color: #f8fafc;
    overflow-x: hidden;
    line-height: 1.7;
}

h1, h2, h3, h4, .font-heading {
    font-family: 'Outfit', sans-serif;
    letter-spacing: -0.02em;
}

/* Premium Navigation */
.navbar {
    padding: 1.5rem 0;
    transition: var(--transition);
    background: transparent;
    z-index: 1050; /* Ensure navbar is above sticky sidebar */
}

.navbar.scrolled {
    padding: 0.8rem 0;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(15px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    border-bottom: 1px solid rgba(0,0,0,0.05);
    z-index: 1050;
}

.nav-link {
    font-weight: 600;
    font-size: 0.95rem;
    color: var(--midnight);
    margin: 0 10px;
    position: relative;
}

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

.nav-link:hover::after {
    width: calc(100% - 20px);
}

/* Multi-level Hover Dropdown Styling */
@media all and (min-width: 992px) {
    .navbar .dropdown-menu {
        display: none;
        border-radius: 12px;
        border: 1px solid rgba(0,0,0,0.05);
        box-shadow: 0 10px 40px rgba(0,0,0,0.1);
        margin-top: 0;
        padding: 0.5rem 0;
    }
    .navbar .dropdown:hover > .dropdown-menu {
        display: block;
        animation: fadein 0.3s;
    }
    .navbar .dropdown-menu .dropdown-item {
        padding: 0.6rem 1.5rem;
        font-weight: 500;
        transition: 0.2s ease;
    }
    .navbar .dropdown-menu .dropdown-item:hover {
        background-color: rgba(0, 166, 180, 0.05);
        color: var(--primary);
    }
    
    .navbar .dropdown-menu .dropend {
        position: relative;
    }
    .navbar .dropdown-menu .dropend .dropdown-menu {
        display: none;
        position: absolute;
        left: 100%;
        top: 0;
    }
    .navbar .dropdown-menu .dropend:hover > .dropdown-menu {
        display: block;
    }
}
@keyframes fadein {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Mobile Adjustments for Dropdown */
@media all and (max-width: 991px) {
    .navbar .dropdown-menu {
        border: none;
        box-shadow: none;
        background-color: transparent;
        padding-left: 1rem;
    }
    .navbar .dropdown-menu .dropdown-menu {
        padding-left: 1rem;
    }
}

/* Dynamic Branding Logo Image */
.site-logo-img {
    height: auto;
    max-height: 75px;
    width: auto;
    max-width: 220px;
    object-fit: contain;
    transition: var(--transition);
}

@media (max-width: 992px) {
    .site-logo-img {
        max-height: 60px;
        max-width: 160px;
    }
}


/* Luxury Hero Section */
.luxury-hero {
    height: 100vh;
    background: var(--midnight);
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
}

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

.hero-visual::after {
    content: '';
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: linear-gradient(0deg, var(--midnight) 0%, rgba(15, 23, 42, 0.45) 30%, rgba(15, 23, 42, 0.8) 100%);
}

.hero-visual img {
    width: 100%; height: 100%;
    object-fit: cover;
    animation: slow-zoom 20s infinite alternate;
}

@keyframes slow-zoom {
    from { transform: scale(1); }
    to { transform: scale(1.1); }
}

.hero-content {
    position: relative;
    z-index: 5;
    color: var(--white);
}

.hero-badge {
    display: inline-block;
    padding: 8px 20px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 100px;
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-bottom: 2rem;
}

/* Luxury Glass Cards */
.glass-panel {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 30px;
    padding: 30px;
    box-shadow: 0 40px 100px rgba(0,0,0,0.3);
}

/* Deluxe Tour Cards */
.deluxe-card {
    background: var(--white);
    border-radius: 32px;
    overflow: hidden;
    transition: var(--transition);
    border: 1px solid transparent;
    height: 100%;
    position: relative;
}

.deluxe-card:hover {
    transform: translateY(-20px);
    box-shadow: var(--shadow-lux);
    border-color: rgba(0, 166, 180, 0.1);
}

.deluxe-img-box {
    height: 300px;
    overflow: hidden;
    position: relative;
}

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

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

.deluxe-overlay {
    position: absolute;
    bottom: 0; left: 0; width: 100%; height: 50%;
    background: linear-gradient(0deg, rgba(15, 23, 42, 0.8) 0%, transparent 100%);
}

.deluxe-price-badge {
    position: absolute;
    top: 20px; right: 20px;
    background: var(--white);
    color: var(--midnight);
    padding: 12px 20px;
    border-radius: 100px;
    font-weight: 800;
    font-size: 1.1rem;
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

.deluxe-body {
    padding: 30px;
}

/* Premium Utility Classes */
.bg-teal { background: var(--grad-teal) !important; }
.bg-orange { background: var(--grad-orange) !important; }
.bg-midnight { background: var(--midnight) !important; }

.text-teal { color: var(--primary) !important; }
.text-orange { color: var(--secondary) !important; }
.text-white-50 { color: rgba(255, 255, 255, 0.6) !important; }

.ls-1 { letter-spacing: 0.1em; }

/* Banner Styling for Sub-pages */
section.bg-teal, section.bg-orange, section.bg-midnight {
    position: relative;
    overflow: hidden;
}

section.bg-teal::after, section.bg-orange::after {
    content: '';
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: linear-gradient(0deg, rgba(15, 23, 42, 0.2) 0%, transparent 100%);
    pointer-events: none;
}

.stats-card {
    background: var(--white);
    transition: var(--transition);
    border: 1px solid rgba(0,0,0,0.03) !important;
}

.stats-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 40px 80px rgba(0,0,0,0.08) !important;
    border-color: rgba(0, 166, 180, 0.1) !important;
}

.stat-icon {
    width: 80px;
    height: 80px;
    background: rgba(0,0,0,0.02);
    border-radius: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    transition: var(--transition);
}

.stats-card:hover .stat-icon {
    transform: rotate(-10deg) scale(1.1);
    background: rgba(0, 166, 180, 0.05);
}

.ls-n1 { letter-spacing: -0.05em; }

.stat-item h2 {
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 0.5rem;
}

/* Premium Gradients */
:root {
    --grad-orange: linear-gradient(135deg, #ff7e00 0%, #ff4d00 100%);
    --grad-teal: linear-gradient(135deg, #00a6b4 0%, #008a96 100%);
}

/* Buttons System Overhaul */
.btn-lux {
    padding: 18px 44px;
    border-radius: 100px;
    font-weight: 700;
    font-family: 'Outfit', sans-serif;
    letter-spacing: 0.03em;
    text-transform: uppercase;
    font-size: 0.85rem;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    border: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn-lux-primary {
    background: var(--grad-orange);
    color: var(--white) !important;
    box-shadow: 0 15px 35px rgba(255, 126, 0, 0.3);
}

.btn-lux-primary:hover {
    transform: translateY(-6px);
    box-shadow: 0 25px 50px rgba(255, 126, 0, 0.4);
    filter: brightness(1.1);
}

.btn-lux-outline {
    background: transparent;
    color: var(--midnight) !important;
    border: 2px solid var(--midnight);
}

.btn-lux-outline:hover {
    background: var(--midnight);
    color: var(--white) !important;
    transform: translateY(-6px);
    box-shadow: var(--shadow-lux);
}

/* Hero & Dark background buttons */
.btn-lux-white {
    background: var(--white);
    color: var(--midnight) !important;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.btn-lux-white:hover {
    transform: translateY(-6px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.2);
}

.btn-lux-glass {
    background: rgba(255, 255, 255, 0.1);
    color: var(--white) !important;
    border: 1px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px);
}

.btn-lux-glass:hover {
    background: var(--white);
    color: var(--midnight) !important;
    transform: translateY(-6px);
}

.btn-lux-teal {
    background: var(--grad-teal);
    color: var(--white) !important;
    box-shadow: 0 15px 35px rgba(0, 166, 180, 0.2);
}

.btn-lux-teal:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 45px rgba(0, 166, 180, 0.35);
    filter: brightness(1.05);
}

.section-label {
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    font-size: 0.8rem;
    color: var(--secondary);
    margin-bottom: 1rem;
    display: block;
}

/* Grid helper */
.dest-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.dest-item {
    height: 400px;
    border-radius: 24px;
    overflow: hidden;
    position: relative;
    cursor: pointer;
}

.dest-item-tall { grid-row: span 2; height: 820px; }

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

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

.dest-content {
    position: absolute;
    bottom: 0; left: 0; width: 100%;
    padding: 30px;
    background: linear-gradient(0deg, rgba(0,0,0,0.8) 0%, transparent 100%);
    color: var(--white);
}

@media (max-width: 992px) {
    .dest-grid { grid-template-columns: repeat(2, 1fr); }
    .dest-item-tall { grid-row: span 1; height: 400px; }
}

@media (max-width: 768px) {
    .dest-grid { grid-template-columns: 1fr; }
    .stat-item h2 { font-size: 2.5rem; }
}

/* Iconic Destinations Special Layout */
.iconic-card {
    transition: all 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
    background: transparent;
}
.iconic-card:hover {
    transform: translateY(-10px) scale(1.01);
    border-color: rgba(0, 166, 180, 0.4) !important;
    box-shadow: 0 30px 60px -15px rgba(0, 0, 0, 0.5) !important;
}
.iconic-img {
    flex: 0 0 50%;
    min-height: 350px;
}
.iconic-img img {
    transition: transform 1s ease;
}
.iconic-card:hover .iconic-img img {
    transform: scale(1.08);
}
.iconic-img-overlay {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: linear-gradient(90deg, transparent 0%, rgba(15,23,42,0.8) 100%);
    pointer-events: none;
    z-index: 1;
}
@media (max-width: 991px) {
    .iconic-img {
        flex: 0 0 auto;
        min-height: 250px;
    }
    .iconic-img-overlay {
        background: linear-gradient(0deg, rgba(15,23,42,0.9) 0%, transparent 100%);
    }
}

/* Premium Slider Optimizations */
.carousel-fade .carousel-item {
    transition: opacity 1.5s ease-in-out !important; /* Smooth luxury fade */
}

/* Continuous slow zoom for the active slide to give cinematic feel */
.slider-img-zoom {
    transform: scale(1);
    transition: transform 10s linear; /* Slow continuous scaling */
}

.carousel-item.active .slider-img-zoom {
    transform: scale(1.1);
}

/* Floating Widgets Overlay Over Everything */
.floating-whatsapp {
    width: 65px; height: 65px; background: #25d366; border-radius: 50%;
    font-size: 2.2rem; position: fixed; bottom: 1.5rem; right: 1.5rem; z-index: 1050;
    transition: var(--transition);
}
.floating-enquiry {
    width: 65px; height: 65px; background: var(--grad-teal); border-radius: 50%;
    font-size: 1.5rem; position: fixed; bottom: 6.5rem; right: 1.5rem; z-index: 1050;
    transition: var(--transition);
}
.floating-whatsapp:hover, .floating-enquiry:hover {
    transform: translateY(-5px) scale(1.05); color: white;
}
@media (max-width: 768px) {
    .floating-whatsapp { width: 55px; height: 55px; font-size: 1.8rem; right: 1rem; bottom: 1rem; }
    .floating-enquiry { width: 55px; height: 55px; font-size: 1.3rem; left: 1rem; right: auto; bottom: 1rem; }
}
