/*
 * Kalinga Tourism - Modern Travel Website Stylesheet
 * Brand: gold (#a26a0c → #f4b041, from the logo) on warm off-white.
 * Teal (#2596be) is a supporting "water" accent for Chilika/boat contexts only.
 */

/* ================================
   GOOGLE FONTS IMPORT
   ================================ */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800&family=Playfair+Display:wght@400;500;600;700&display=swap');

/* ================================
   CSS VARIABLES - MODERN TRAVEL THEME
   ================================ */

:root {
    /*
     * BRAND PALETTE — derived from the logo (champagne-gold sailboat on white).
     * Gold is the brand. Teal ("water") is a supporting accent for Chilika/boat
     * contexts only. Neutrals are warm-biased toward the gold, never cold grey.
     */

    /* Primary Colors — the logo gold family */
    --primary: #c98a1e;
    --primary-light: #f4b041;
    --primary-dark: #a26a0c;

    /* Golden Gradient Colors (kept as aliases so existing rules still work) */
    --gradient-dark: #a26a0c;
    --gradient-light: #f4b041;
    --accent: #d4930d;
    --secondary: #f4b041;

    /* Supporting "water" accent — Chilika/boat contexts only */
    --water: #2596be;
    --water-light: #3eb8e5;
    --water-deep: #1a7a9c;

    /*
     * Section accents — gold + muted jewel tones. Each booking section gets a
     * distinct-but-low-saturation shade for wayfinding, all in the brand family.
     */
    --sec-cars: #2f6f8f;      /* deep ocean blue — cool contrast to the warm brand */
    --sec-cars-deep: #234f66;
    --sec-hotels: #3d7a5a;    /* muted emerald (not neon green) */
    --sec-hotels-deep: #2c5c43;
    --sec-packages: #c98a1e;  /* gold — brand core (flagship offering) */
    --sec-packages-deep: #a26a0c;
    --sec-boats: #1a7a9c;     /* deep teal */
    --sec-boats-deep: #145c78;
    --sec-contact: #a26a0c;   /* deep gold */
    --sec-contact-deep: #7d5209;

    /* Brand gradients */
    --gradient-brand: linear-gradient(135deg, #c98a1e 0%, #a26a0c 100%);
    --gradient-brand-deep: linear-gradient(135deg, #1a1206 0%, #3d2a0d 55%, #a26a0c 100%);
    --gradient-gold: linear-gradient(135deg, #a26a0c 0%, #f4b041 100%);
    --gradient-water: linear-gradient(135deg, #2596be 0%, #1a7a9c 100%);

    /* Background Colors — warm dark ground for feature bands, warm off-white canvas */
    --bg-primary: #1a1206;
    --bg-secondary: #241905;
    --bg-tertiary: #3d2a0d;
    --bg-card: #2c1f0b;
    --bg-light: #fbf8f2;
    --bg-cream: #f6ecd6;

    /* Text Colors — warm ink, not cold slate */
    --text-primary: #2a2318;
    --text-secondary: #5a5040;
    --text-muted: #857a66;
    --text-light: #a89d86;
    --text-white: #ffffff;
    --text-dark: #1c1710;

    /* Gray Scale — warm-biased neutrals */
    --gray-50: #faf7f1;
    --gray-100: #f4efe4;
    --gray-200: #e7ddcb;
    --gray-300: #d4c8b0;
    --gray-400: #a89d86;
    --gray-500: #857a66;
    --gray-600: #5a5040;
    --gray-700: #3f382b;
    --gray-800: #2a2318;
    --gray-900: #1c1710;

    /* Utility Colors */
    --white: #FFFFFF;
    --black: #000000;
    --light: var(--bg-light);
    --dark: var(--bg-primary);

    /* Status Colors */
    --success: #10B981;
    --success-light: #d1fae5;
    --warning: #F59E0B;
    --warning-light: #fef3c7;
    --danger: #EF4444;
    --danger-light: #fee2e2;
    --info: #3B82F6;
    --info-light: #dbeafe;

    /* Shadows */
    --shadow-xs: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-sm: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px -1px rgba(0, 0, 0, 0.1);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -2px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -4px rgba(0, 0, 0, 0.1);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 8px 10px -6px rgba(0, 0, 0, 0.1);
    --shadow-2xl: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    --shadow-primary: 0 10px 40px -10px rgba(162, 106, 12, 0.4);
    --shadow-golden: 0 10px 40px -10px rgba(244, 176, 65, 0.4);
    --shadow-water: 0 10px 40px -10px rgba(37, 150, 190, 0.4);

    /* Border Radius */
    --radius-sm: 6px;
    --radius-md: 8px;
    --radius-lg: 12px;
    --radius-xl: 16px;
    --radius-2xl: 24px;
    --radius-full: 9999px;

    /* Typography */
    --font-primary: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --font-heading: 'Playfair Display', Georgia, serif;
    --font-size-xs: 0.75rem;
    --font-size-sm: 0.875rem;
    --font-size-base: 1rem;
    --font-size-lg: 1.125rem;
    --font-size-xl: 1.25rem;
    --font-size-2xl: 1.5rem;
    --font-size-3xl: 1.875rem;
    --font-size-4xl: 2.25rem;
    --font-size-5xl: 3rem;

    /* Transitions */
    --transition-fast: all 0.15s ease;
    --transition-base: all 0.3s ease;
    --transition-slow: all 0.5s ease;
}

/* ================================
   GLOBAL STYLES
   ================================ */

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

html {
    scroll-behavior: smooth;
}

body {
    background-color: var(--bg-light);
    color: var(--text-primary);
    font-family: var(--font-primary);
    font-size: var(--font-size-base);
    line-height: 1.6;
    /* Sticky footer: fill the viewport so the footer sits at the bottom even
       when a page has little content (e.g. About). */
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}
/* NOTE: deliberately NOT setting overflow-x:hidden on html/body — it turns them
   into scroll containers and breaks position: sticky (homepage hero pin). */
/* Push the public footer to the bottom of the flex column. */
.footer { margin-top: auto; }
/* The admin/hotel shell manages its own full-height layout — let it fill. */
.admin-layout { flex: 1 0 auto; }

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

h1 { font-size: var(--font-size-5xl); }
h2 { font-size: var(--font-size-4xl); }
h3 { font-size: var(--font-size-3xl); }
h4 { font-size: var(--font-size-2xl); }
h5 { font-size: var(--font-size-xl); }
h6 { font-size: var(--font-size-lg); }

p {
    margin-bottom: 1rem;
    color: var(--text-secondary);
}

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

a:hover {
    color: var(--primary-dark);
}

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

/* ================================
   LAYOUT & STRUCTURE
   ================================ */

.container-fluid {
    padding-left: 2.5rem;
    padding-right: 2.5rem;
    max-width: 100%;
    margin: 0 auto;
}

/* Widen Bootstrap's capped .container so the site uses the available
   horizontal space on large screens instead of sitting in a narrow column.
   A generous cap keeps text pages readable on ultra-wide monitors. */
@media (min-width: 1400px) {
    .container,
    .container-lg,
    .container-md,
    .container-sm,
    .container-xl,
    .container-xxl {
        max-width: 1800px;
    }
}

.section {
    padding: 3rem 0;
}

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

.section-header h2 {
    margin-bottom: 1rem;
    position: relative;
    display: inline-block;
}

.section-header h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, var(--gradient-dark), var(--gradient-light));
    border-radius: var(--radius-full);
}

.section-header p {
    font-size: var(--font-size-lg);
    color: var(--text-muted);
    max-width: 600px;
    margin: 0 auto;
}

.page-header {
    margin-bottom: 2rem;
    padding: 1rem 0;
}

.page-header h1,
.page-header h2 {
    margin-bottom: 0.5rem;
    font-weight: 700;
    color: var(--text-dark);
}

.page-header p {
    color: var(--text-muted);
    margin-bottom: 0;
}

/* ================================
   NAVIGATION
   ================================ */

.navbar {
    padding: 0.75rem 0;
    transition: var(--transition-base);
    background: linear-gradient(135deg, var(--bg-primary) 0%, var(--bg-secondary) 100%) !important;
    backdrop-filter: blur(10px);
    z-index: 1040;
    position: sticky;
    top: 0;
}

.navbar.scrolled {
    padding: 0.5rem 0;
    box-shadow: var(--shadow-lg);
}

.navbar-brand {
    font-weight: 800;
    font-size: 1.5rem;
    color: var(--white) !important;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.navbar-brand:hover {
    color: var(--secondary) !important;
}

.navbar-logo {
    max-height: 50px;
    width: auto;
}

.navbar-nav .nav-link {
    font-family: var(--font-primary);
    font-weight: 500;
    font-size: var(--font-size-sm);
    padding: 0.6rem 1rem;
    margin: 0 0.15rem;
    border-radius: var(--radius-md);
    transition: var(--transition-base);
    color: rgba(255, 255, 255, 0.85) !important;
    position: relative;
}

.navbar-nav .nav-link::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--gradient-dark), var(--gradient-light));
    transition: var(--transition-base);
    border-radius: var(--radius-full);
}

.navbar-nav .nav-link:hover {
    color: var(--white) !important;
}

.navbar-nav .nav-link:hover::before {
    width: 80%;
}

.navbar-nav .nav-link.active {
    background: linear-gradient(135deg, var(--gradient-dark), var(--gradient-light));
    color: var(--white) !important;
}

.navbar-nav .nav-link.active::before {
    display: none;
}

.navbar .dropdown-menu {
    background: var(--white);
    border: none;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-xl);
    padding: 0.5rem;
    margin-top: 0.5rem;
    z-index: 1050;
}

.navbar .dropdown-item {
    padding: 0.75rem 1rem;
    border-radius: var(--radius-md);
    font-size: var(--font-size-sm);
    color: var(--text-primary);
    transition: var(--transition-base);
}

.navbar .dropdown-item:hover {
    background: var(--gray-100);
    color: var(--primary);
}

.navbar .dropdown-item i {
    width: 20px;
    color: var(--primary);
}

/* ================================
   HERO SECTION
   ================================ */

.hero-section {
    position: relative;
    min-height: 78vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    color: var(--white);
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        135deg,
        rgba(10, 22, 40, 0.85) 0%,
        rgba(37, 150, 190, 0.6) 50%,
        rgba(162, 106, 12, 0.7) 100%
    );
    z-index: 1;
}

.hero-section .container {
    position: relative;
    z-index: 2;
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    padding: 1.5rem 0;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    padding: 0.5rem 1.25rem;
    border-radius: var(--radius-full);
    font-size: var(--font-size-sm);
    font-weight: 500;
    margin-bottom: 1.5rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.hero-badge i {
    color: var(--secondary);
}

.hero-title {
    font-family: var(--font-heading);
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.1;
    color: var(--white);
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
}

/* "Chilika & Odisha" — white glyphs with a brand-gold outline drawn
   directly on the letters (no card/panel behind them). */
.hero-title span {
    color: var(--white);
    -webkit-text-stroke: 2px var(--primary-light);
    paint-order: stroke fill;   /* stroke sits behind the white fill */
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.35);
}

.hero-subtitle {
    font-size: var(--font-size-xl);
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-top: 2rem;
    flex-wrap: wrap;
}

.hero-stat {
    text-align: center;
}

.hero-stat-number {
    font-size: var(--font-size-4xl);
    font-weight: 700;
    color: var(--secondary);
    display: block;
}

.hero-stat-label {
    font-size: var(--font-size-sm);
    color: rgba(255, 255, 255, 0.8);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* ================================
   HERO QUICK ACCESS ICONS
   ================================ */
.hero-quick-access {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-top: 2.5rem;
    flex-wrap: wrap;
}

.hero-quick-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
    padding: 1.5rem 2rem;
    min-width: 150px;
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.25);
    border-radius: var(--radius-xl);
    color: #fff;
    text-decoration: none;
    backdrop-filter: blur(6px);
    transition: transform 0.25s ease, background 0.25s ease;
}

.hero-quick-item:hover {
    transform: translateY(-6px);
    background: rgba(255, 255, 255, 0.22);
    color: #fff;
}

.hero-quick-icon {
    width: 64px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
    color: var(--secondary);
    background: rgba(0, 0, 0, 0.25);
    border-radius: var(--radius-full);
}

.hero-quick-label {
    font-weight: 600;
    letter-spacing: 0.5px;
}

/* ================================
   HERO ANIMATED CHILIKA SCENE
   (scroll-driven canvas, no banner photo)
   ================================ */
.hero-scene {
    background-image: none !important;
    background: #0a2233;
    isolation: isolate;
}
/* Kill the old dark diagonal overlay for the scene variant */
.hero-scene::before { display: none; }

/* Full-bleed canvas holding the gradient sky + scroll-driven sun */
.hero-scene__canvas {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    display: block;
    pointer-events: none;
}

/* ---- Lottie layers (transparent, over the canvas, under content) ---- */
.hero-lottie {
    position: absolute;
    pointer-events: none;
    z-index: 2;
}
.hero-lottie dotlottie-player,
.hero-lottie .dotlottie-container {
    width: 100%;
    height: 100%;
}

/* Birds drift across the upper sky */
.hero-lottie--birds {
    top: 4%;
    left: 0;
    right: 0;
    height: 42%;
    z-index: 2;
    opacity: 0.9;
}

/* Boat gliding on the lake, sitting just above the waterline */
.hero-lottie--boat {
    left: 8%;
    bottom: 20%;
    width: 200px;
    height: 133px;
    z-index: 3;
}

/* Dolphin breaching near the horizon */
.hero-lottie--dolphin {
    /* horizontal position (left) is randomized by JS on each loop */
    left: 55%;
    bottom: 24%;
    width: 220px;
    height: 147px;
    z-index: 3;
    /* no left-transition: the position snaps instantly while underwater
       so the dolphin never slides sideways mid-air */
}

@media (max-width: 767.98px) {
    .hero-lottie--boat { width: 130px; height: 86px; left: 4%; bottom: 22%; }
    .hero-lottie--dolphin { width: 150px; height: 100px; bottom: 26%; }
}

/* Staggered entrance for hero content */
.hero-fade {
    opacity: 0;
    transform: translateY(22px);
    animation: heroFadeUp .9s cubic-bezier(.22,.61,.36,1) forwards;
    animation-delay: var(--d, 0s);
}
@keyframes heroFadeUp {
    to { opacity: 1; transform: translateY(0); }
}

@media (prefers-reduced-motion: reduce) {
    .hero-fade {
        animation: none !important;
        opacity: 1;
        transform: none;
    }
}

/* ================================
   SEARCH BOX
   ================================ */

.search-container {
    background: var(--white);
    border-radius: var(--radius-2xl);
    padding: 2rem;
    box-shadow: var(--shadow-2xl);
    margin-top: 2rem;
    position: relative;
    z-index: 10;
}

.search-container .nav-tabs {
    border: none;
    background: var(--gray-100);
    padding: 0.5rem;
    border-radius: var(--radius-lg);
    margin-bottom: 1.5rem;
}

.search-container .nav-tabs .nav-link {
    border: none;
    color: var(--text-secondary);
    font-weight: 600;
    padding: 0.75rem 1.5rem;
    border-radius: var(--radius-md);
    transition: var(--transition-base);
    font-size: var(--font-size-sm);
}

.search-container .nav-tabs .nav-link i {
    margin-right: 0.5rem;
}

.search-container .nav-tabs .nav-link:hover {
    color: var(--primary);
    background: var(--white);
}

.search-container .nav-tabs .nav-link.active {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: var(--white);
    box-shadow: var(--shadow-primary);
}

.search-container .form-control,
.search-container .form-select {
    border: 2px solid var(--gray-200);
    padding: 0.875rem 1rem;
    font-size: var(--font-size-sm);
    border-radius: var(--radius-md);
    transition: var(--transition-base);
    background-color: var(--white);
}

.search-container .form-control:focus,
.search-container .form-select:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 4px rgba(162, 106, 12, 0.12);
}

.search-container .btn-search {
    background: linear-gradient(135deg, var(--gradient-dark), var(--gradient-light));
    color: var(--white);
    border: none;
    padding: 0.875rem 2rem;
    font-weight: 600;
    border-radius: var(--radius-md);
    transition: var(--transition-base);
}

.search-container .btn-search:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-golden);
}

/* ================================
   CARDS & COMPONENTS
   ================================ */

.card {
    transition: var(--transition-base);
    border: none;
    background-color: var(--white);
    color: var(--text-primary);
    box-shadow: var(--shadow-sm);
    border-radius: var(--radius-xl);
    overflow: hidden;
}

.card-hover:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
}

.card-header {
    background-color: var(--gray-50);
    border-bottom: 1px solid var(--gray-200);
    font-weight: 600;
    color: var(--text-dark);
    padding: 1.25rem 1.5rem;
}

.card-body {
    padding: 1.5rem;
    background-color: var(--white);
    color: var(--text-primary);
}

.card-img-top {
    width: 100%;
    object-fit: cover;
}

/* Destination Cards */
.destination-card {
    position: relative;
    border-radius: var(--radius-xl);
    overflow: hidden;
    height: 400px;
    cursor: pointer;
}

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

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

.destination-card-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 2rem;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
    color: var(--white);
}

.destination-card-title {
    font-family: var(--font-heading);
    font-size: var(--font-size-2xl);
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.destination-card-info {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: var(--font-size-sm);
}

.destination-card-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: linear-gradient(135deg, var(--gradient-dark), var(--gradient-light));
    color: var(--white);
    padding: 0.5rem 1rem;
    border-radius: var(--radius-full);
    font-size: var(--font-size-xs);
    font-weight: 600;
}

/* Tour Package Cards */
.tour-card {
    background: var(--white);
    border-radius: var(--radius-xl);
    overflow: hidden;
    transition: var(--transition-base);
    box-shadow: var(--shadow-md);
}

.tour-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-xl);
}

.tour-card-image {
    position: relative;
    height: 220px;
    overflow: hidden;
}

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

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

.tour-card-price {
    position: absolute;
    bottom: 1rem;
    right: 1rem;
    background: var(--white);
    padding: 0.5rem 1rem;
    border-radius: var(--radius-md);
    font-weight: 700;
    color: var(--primary);
    box-shadow: var(--shadow-md);
}

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

.tour-card-title {
    font-family: var(--font-heading);
    font-size: var(--font-size-xl);
    font-weight: 600;
    margin-bottom: 0.75rem;
    color: var(--text-dark);
}

.tour-card-location {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-muted);
    font-size: var(--font-size-sm);
    margin-bottom: 1rem;
}

.tour-card-location i {
    color: var(--primary);
}

.tour-card-features {
    display: flex;
    gap: 1rem;
    padding-top: 1rem;
    border-top: 1px solid var(--gray-200);
    margin-top: 1rem;
}

.tour-card-feature {
    display: flex;
    align-items: center;
    gap: 0.35rem;
    font-size: var(--font-size-xs);
    color: var(--text-secondary);
}

.tour-card-feature i {
    color: var(--secondary);
}

/* Statistics Cards */
.stats-card {
    text-align: center;
    padding: 2.5rem 1.5rem;
    background: var(--white);
    border-radius: var(--radius-xl);
    transition: var(--transition-base);
    position: relative;
    overflow: hidden;
    color: var(--text-primary);
    border: 1px solid var(--gray-200);
    box-shadow: var(--shadow-sm);
}

.stats-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary), var(--secondary));
}

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

.stat-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 1.25rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius-xl);
    transition: var(--transition-base);
    background: linear-gradient(135deg, rgba(201, 138, 30, 0.12), rgba(162, 106, 12, 0.22));
    color: var(--primary);
    font-size: var(--font-size-2xl);
}

.stats-card:hover .stat-icon {
    transform: scale(1.1);
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: var(--white);
}

.stat-number {
    font-size: var(--font-size-4xl);
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 0.25rem;
}

.stat-label {
    font-size: var(--font-size-sm);
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* ================================
   FEATURE SECTION
   ================================ */

.feature-box {
    position: relative;
    text-align: center;
    padding: 2.5rem 1.75rem 2rem;
    background: #fff;
    border: 1px solid rgba(201, 138, 30, 0.12);
    border-radius: var(--radius-2xl, 1.25rem);
    box-shadow: 0 10px 30px -18px rgba(31, 41, 55, 0.35);
    overflow: hidden;
    transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
}

/* Gold accent bar that grows in on hover */
.feature-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-light), var(--primary-dark));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.feature-box:hover {
    transform: translateY(-8px);
    box-shadow: 0 24px 44px -20px rgba(201, 138, 30, 0.45);
    border-color: rgba(201, 138, 30, 0.3);
}
.feature-box:hover::before { transform: scaleX(1); }

.feature-icon {
    position: relative;
    width: 92px;
    height: 92px;
    margin: 0 auto 1.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.4s ease;
}

/* PNG graphic — transparent, no disc/background behind it */
.feature-icon__img {
    position: relative;
    z-index: 2;
    width: 68px;
    height: 68px;
    object-fit: contain;
    filter: drop-shadow(0 6px 12px rgba(31, 41, 55, 0.22));
}

/* Soft outer glow halo */
.feature-icon::after {
    content: '';
    position: absolute;
    inset: -10px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(244, 176, 65, 0.35) 0%, rgba(244, 176, 65, 0) 70%);
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 0;
}

/* Rotating conic ring around the icon */
.feature-icon__ring {
    position: absolute;
    inset: -6px;
    border-radius: 50%;
    background: conic-gradient(from 0deg,
        transparent 0deg,
        var(--primary-light) 90deg,
        transparent 180deg,
        var(--primary-light) 270deg,
        transparent 360deg);
    -webkit-mask: radial-gradient(farthest-side, transparent calc(100% - 3px), #000 calc(100% - 3px));
            mask: radial-gradient(farthest-side, transparent calc(100% - 3px), #000 calc(100% - 3px));
    opacity: 0;
    z-index: 1;
    transition: opacity 0.4s ease;
    animation: featureRingSpin 6s linear infinite;
}
@keyframes featureRingSpin { to { transform: rotate(360deg); } }

.feature-box:hover .feature-icon { transform: translateY(-4px) scale(1.06); }
.feature-box:hover .feature-icon::after { opacity: 1; }
.feature-box:hover .feature-icon__ring { opacity: 1; }

.feature-title {
    font-family: var(--font-heading);
    font-size: var(--font-size-xl);
    font-weight: 600;
    margin-bottom: 0.75rem;
    color: var(--text-dark);
}

.feature-text {
    color: var(--text-secondary);
    font-size: var(--font-size-sm);
}

@media (prefers-reduced-motion: reduce) {
    .feature-icon__ring { animation: none; }
}

/* ================================
   ABOUT CHILIKA SECTION
   ================================ */

.about-section {
    background: linear-gradient(135deg, var(--bg-primary) 0%, var(--bg-secondary) 100%);
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.about-section::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 40%;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="50" cy="50" r="40" fill="none" stroke="rgba(255,255,255,0.05)" stroke-width="0.5"/><circle cx="50" cy="50" r="30" fill="none" stroke="rgba(255,255,255,0.05)" stroke-width="0.5"/><circle cx="50" cy="50" r="20" fill="none" stroke="rgba(255,255,255,0.05)" stroke-width="0.5"/></svg>');
    opacity: 0.5;
}

.about-content h2 {
    color: var(--white);
    margin-bottom: 1.5rem;
}

.about-content h2 span {
    color: var(--secondary);
}

.about-content p {
    color: rgba(255, 255, 255, 0.85);
    font-size: var(--font-size-lg);
    line-height: 1.8;
}

.about-highlights {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin-top: 2rem;
}

.about-highlight-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.about-highlight-icon {
    width: 50px;
    height: 50px;
    min-width: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius-lg);
    background: linear-gradient(135deg, var(--gradient-dark), var(--gradient-light));
    color: var(--white);
    font-size: var(--font-size-xl);
}

.about-highlight-text h5 {
    color: var(--white);
    font-size: var(--font-size-lg);
    margin-bottom: 0.25rem;
}

.about-highlight-text p {
    color: rgba(255, 255, 255, 0.7);
    font-size: var(--font-size-sm);
    margin: 0;
}

.about-image {
    position: relative;
    border-radius: var(--radius-2xl);
    overflow: hidden;
    box-shadow: var(--shadow-2xl);
}

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

.about-image-badge {
    position: absolute;
    bottom: 2rem;
    left: 2rem;
    background: var(--white);
    padding: 1.5rem;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-lg);
}

.about-image-badge h3 {
    color: var(--primary);
    font-size: var(--font-size-3xl);
    margin-bottom: 0;
}

.about-image-badge span {
    color: var(--text-secondary);
    font-size: var(--font-size-sm);
}

/* ================================
   TESTIMONIALS
   ================================ */

.testimonial-card {
    background: var(--white);
    padding: 2rem;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-md);
    transition: var(--transition-base);
    position: relative;
}

.testimonial-card::before {
    content: '\201C';
    font-family: Georgia, serif;
    font-size: 6rem;
    position: absolute;
    top: -20px;
    left: 20px;
    color: var(--gray-200);
    line-height: 1;
}

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

.testimonial-text {
    font-size: var(--font-size-lg);
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 1.5rem;
    font-style: italic;
    position: relative;
    z-index: 1;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.testimonial-avatar {
    width: 60px;
    height: 60px;
    border-radius: var(--radius-full);
    object-fit: cover;
    border: 3px solid var(--secondary);
}

.testimonial-info h5 {
    font-size: var(--font-size-base);
    font-weight: 600;
    margin-bottom: 0.25rem;
    color: var(--text-dark);
}

.testimonial-info span {
    font-size: var(--font-size-sm);
    color: var(--text-muted);
}

.testimonial-rating {
    color: var(--secondary);
    margin-top: 0.5rem;
}

/* ================================
   FORMS
   ================================ */

.form-label {
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
    font-size: var(--font-size-sm);
}

.form-control,
.form-select {
    padding: 0.875rem 1rem;
    font-size: var(--font-size-sm);
    border: 2px solid var(--gray-200);
    background-color: var(--white);
    color: var(--text-primary);
    transition: var(--transition-base);
    border-radius: var(--radius-md);
}

.form-control:focus,
.form-select:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 4px rgba(162, 106, 12, 0.12);
    background-color: var(--white);
    color: var(--text-primary);
}

.form-control:hover,
.form-select:hover {
    border-color: var(--gray-300);
}

.form-control::placeholder {
    color: var(--text-light);
}

.form-group {
    margin-bottom: 1.5rem;
}

.input-group {
    position: relative;
}

.input-group .btn {
    z-index: 5;
}

.required {
    color: var(--danger);
    font-weight: 600;
}

/* ================================
   BUTTONS
   ================================ */

.btn {
    font-family: var(--font-primary);
    font-weight: 600;
    padding: 0.75rem 1.5rem;
    border-radius: var(--radius-md);
    transition: var(--transition-base);
    border: none;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    position: relative;
    overflow: hidden;
    font-size: var(--font-size-sm);
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s;
}

.btn:hover::before {
    left: 100%;
}

.btn:hover {
    transform: translateY(-2px);
}

.btn:active {
    transform: translateY(0);
}

/* Button Variants */
.btn-primary {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: var(--white);
    box-shadow: 0 4px 15px rgba(162, 106, 12, 0.3);
}

.btn-primary:hover {
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 100%);
    color: var(--white);
    box-shadow: var(--shadow-primary);
}

.btn-secondary {
    background: linear-gradient(135deg, var(--gradient-dark) 0%, var(--gradient-light) 100%);
    color: var(--white);
    box-shadow: 0 4px 15px rgba(244, 176, 65, 0.3);
}

.btn-secondary:hover {
    background: linear-gradient(135deg, var(--gradient-light) 0%, var(--gradient-dark) 100%);
    color: var(--white);
    box-shadow: var(--shadow-golden);
}

.btn-success {
    background: linear-gradient(135deg, var(--success) 0%, #059669 100%);
    color: var(--white);
}

.btn-success:hover {
    background: linear-gradient(135deg, #059669 0%, var(--success) 100%);
    color: var(--white);
    box-shadow: 0 10px 30px rgba(16, 185, 129, 0.3);
}

.btn-warning {
    background: linear-gradient(135deg, var(--warning) 0%, #d97706 100%);
    color: var(--white);
}

.btn-warning:hover {
    background: linear-gradient(135deg, #d97706 0%, var(--warning) 100%);
    color: var(--white);
}

.btn-danger {
    background: linear-gradient(135deg, var(--danger) 0%, #dc2626 100%);
    color: var(--white);
}

.btn-danger:hover {
    background: linear-gradient(135deg, #dc2626 0%, var(--danger) 100%);
    color: var(--white);
}

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

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

.btn-outline-secondary {
    border: 2px solid var(--gray-300);
    color: var(--text-secondary);
    background: transparent;
}

.btn-outline-secondary:hover {
    background: var(--gray-100);
    color: var(--text-dark);
    border-color: var(--gray-400);
}

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

.btn-outline-success:hover {
    background: var(--success);
    color: var(--white);
    border-color: var(--success);
}

/* Button Sizes */
.btn-sm {
    padding: 0.5rem 1rem;
    font-size: var(--font-size-xs);
}

.btn-lg {
    padding: 1rem 2rem;
    font-size: var(--font-size-base);
}

/* ================================
   TABLES
   ================================ */

.table {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    color: var(--text-primary);
}

.table th {
    background-color: var(--gray-50);
    font-weight: 600;
    font-size: var(--font-size-xs);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--primary);
    border-bottom: 2px solid var(--gray-200);
    padding: 1rem;
}

.table td {
    padding: 1rem;
    vertical-align: middle;
    border-bottom: 1px solid var(--gray-200);
    color: var(--text-primary);
    background-color: var(--white);
}

.table tbody tr:hover {
    background-color: var(--gray-50);
}

.table tbody tr:hover td {
    background-color: var(--gray-50);
}

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

/* ================================
   BADGES & LABELS
   ================================ */

.badge {
    font-weight: 600;
    padding: 0.5rem 0.875rem;
    border-radius: var(--radius-md);
    font-size: var(--font-size-xs);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.badge.bg-success {
    background-color: var(--success) !important;
}

.badge.bg-warning {
    background-color: var(--warning) !important;
    color: var(--white) !important;
}

.badge.bg-danger {
    background-color: var(--danger) !important;
}

.badge.bg-info {
    background-color: var(--info) !important;
}

.badge.bg-primary {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark)) !important;
}

.badge.bg-secondary {
    background: linear-gradient(135deg, var(--gradient-dark), var(--gradient-light)) !important;
    color: var(--white) !important;
}

/* ================================
   ALERTS
   ================================ */

.alert {
    border-radius: var(--radius-lg);
    border: none;
    padding: 1rem 1.5rem;
    font-weight: 500;
    position: relative;
    overflow: hidden;
}

.alert::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
}

.alert-success {
    background-color: var(--success-light);
    color: #065f46;
}

.alert-success::before {
    background-color: var(--success);
}

.alert-danger {
    background-color: var(--danger-light);
    color: #991b1b;
}

.alert-danger::before {
    background-color: var(--danger);
}

.alert-warning {
    background-color: var(--warning-light);
    color: #92400e;
}

.alert-warning::before {
    background-color: var(--warning);
}

.alert-info {
    background-color: var(--info-light);
    color: #1e40af;
}

.alert-info::before {
    background-color: var(--info);
}

/* ================================
   TABS
   ================================ */

.nav-tabs {
    border-bottom: 2px solid var(--gray-200);
    margin-bottom: 2rem;
}

.nav-tabs .nav-link {
    border: none;
    color: var(--text-muted);
    font-weight: 600;
    padding: 1rem 1.5rem;
    border-bottom: 3px solid transparent;
    transition: var(--transition-base);
    background: none;
    margin-bottom: -2px;
}

.nav-tabs .nav-link:hover {
    color: var(--primary);
    border-bottom-color: var(--primary);
    background: none;
}

.nav-tabs .nav-link.active {
    color: var(--primary);
    border-bottom-color: var(--primary);
    background: none;
}

/* ================================
   MODALS
   ================================ */

.modal-content {
    border-radius: var(--radius-xl);
    border: none;
    box-shadow: var(--shadow-2xl);
}

.modal-header {
    border-bottom: 1px solid var(--gray-200);
    padding: 1.5rem;
}

.modal-body {
    padding: 1.5rem;
}

.modal-footer {
    border-top: 1px solid var(--gray-200);
    padding: 1.5rem;
}

.modal-title {
    font-weight: 600;
    color: var(--text-dark);
}

/* ================================
   WELCOME BANNER (Dashboard)
   ================================ */

.welcome-banner {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    border-radius: var(--radius-xl);
    color: var(--white);
    position: relative;
    overflow: hidden;
    padding: 2rem;
}

.welcome-banner::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 100%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    animation: float 6s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(180deg); }
}

/* ================================
   BOOKING COMPONENTS
   ================================ */

.booking-item {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 1.5rem;
    margin-bottom: 1rem;
    box-shadow: var(--shadow-sm);
    transition: var(--transition-base);
    border: 1px solid var(--gray-200);
}

.booking-item:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.booking-icon {
    width: 56px;
    height: 56px;
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    transition: var(--transition-base);
}

.booking-item:hover .booking-icon {
    transform: scale(1.1);
}

/* ================================
   PROFILE COMPONENTS
   ================================ */

.profile-image-container {
    position: relative;
    text-align: center;
}

.profile-image-container img {
    transition: var(--transition-base);
}

.profile-image-container:hover img {
    transform: scale(1.05);
}

.stat-item {
    padding: 1rem;
    text-align: center;
    transition: var(--transition-base);
}

.stat-item:hover {
    transform: translateY(-2px);
}

.stat-item h6 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.25rem;
}

.stat-item small {
    font-size: var(--font-size-xs);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* ================================
   SEARCH & FILTER COMPONENTS
   ================================ */

.filter-sidebar {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 1.5rem;
    box-shadow: var(--shadow-sm);
    height: fit-content;
    position: sticky;
    top: 2rem;
}

.filter-group {
    margin-bottom: 2rem;
}

.filter-group h6 {
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

/* ================================
   FOOTER
   ================================ */

.footer {
    background: linear-gradient(135deg, var(--bg-primary) 0%, var(--bg-secondary) 100%);
    color: var(--white);
    padding: 3rem 0 1.5rem;
    position: relative;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary), var(--secondary), var(--primary));
}

.footer-brand {
    margin-bottom: 1.5rem;
}

.footer-brand img {
    max-height: 50px;
    margin-bottom: 1rem;
}

.footer-brand p {
    color: rgba(255, 255, 255, 0.7);
    font-size: var(--font-size-sm);
    max-width: 300px;
}

.footer-title {
    font-family: var(--font-heading);
    font-size: var(--font-size-lg);
    font-weight: 600;
    color: var(--white);
    margin-bottom: 1.5rem;
    position: relative;
    padding-bottom: 0.75rem;
}

.footer-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background: linear-gradient(90deg, var(--gradient-dark), var(--gradient-light));
    border-radius: var(--radius-full);
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

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

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    font-size: var(--font-size-sm);
    transition: var(--transition-base);
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.footer-links a:hover {
    color: var(--secondary);
    padding-left: 0.5rem;
}

.footer-links a i {
    font-size: var(--font-size-xs);
}

.footer-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1rem;
}

.footer-contact-icon {
    width: 40px;
    height: 40px;
    min-width: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius-md);
    background: rgba(255, 255, 255, 0.1);
    color: var(--secondary);
}

.footer-contact-text {
    color: rgba(255, 255, 255, 0.7);
    font-size: var(--font-size-sm);
}

.footer-contact-text strong {
    color: var(--white);
    display: block;
    margin-bottom: 0.25rem;
}

.footer-social {
    display: flex;
    gap: 0.75rem;
    margin-top: 1.5rem;
}

.footer-social a {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius-md);
    background: rgba(255, 255, 255, 0.1);
    color: var(--white);
    transition: var(--transition-base);
}

.footer-social a:hover {
    background: linear-gradient(135deg, var(--gradient-dark), var(--gradient-light));
    transform: translateY(-3px);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    margin-top: 3rem;
    padding-top: 2rem;
    text-align: center;
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.6);
    font-size: var(--font-size-sm);
    margin: 0;
}

.footer-bottom a {
    color: var(--secondary);
}

/* ================================
   CAR & HOTEL CARDS (Browse Pages)
   ================================ */

.car-card,
.hotel-card {
    background: var(--white);
    border-radius: var(--radius-xl);
    overflow: hidden;
    transition: var(--transition-base);
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--gray-200);
}

.car-card:hover,
.hotel-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
    border-color: transparent;
}

.car-card .card-img-top,
.hotel-card .card-img-top {
    height: 200px;
    object-fit: cover;
    transition: var(--transition-slow);
}

.car-card:hover .card-img-top,
.hotel-card:hover .card-img-top {
    transform: scale(1.05);
}

.car-card .card-body,
.hotel-card .card-body {
    padding: 1.5rem;
}

.car-card .card-title,
.hotel-card .card-title {
    font-family: var(--font-heading);
    font-size: var(--font-size-lg);
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 0.75rem;
}

/* ================================
   PAGINATION
   ================================ */

.pagination {
    gap: 0.5rem;
}

.page-item .page-link {
    border: none;
    padding: 0.75rem 1rem;
    border-radius: var(--radius-md);
    color: var(--text-secondary);
    font-weight: 500;
    transition: var(--transition-base);
}

.page-item .page-link:hover {
    background: var(--gray-100);
    color: var(--primary);
}

.page-item.active .page-link {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: var(--white);
    box-shadow: var(--shadow-primary);
}

/* ================================
   RESPONSIVE UTILITIES
   ================================ */

@media (max-width: 1200px) {
    .container-fluid {
        padding-left: 1.5rem;
        padding-right: 1.5rem;
    }
}

@media (max-width: 992px) {
    .container-fluid {
        padding-left: 1rem;
        padding-right: 1rem;
    }

    .hero-section {
        min-height: auto;
        padding: 5rem 0 3rem;
    }

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

    .hero-stats {
        gap: 2rem;
    }

    .section {
        padding: 2.5rem 0;
    }

    .about-highlights {
        grid-template-columns: 1fr;
    }

    .welcome-banner {
        text-align: center;
    }

    .stats-card {
        padding: 1.5rem 1rem;
        margin-bottom: 1rem;
    }

    .booking-item {
        text-align: center;
        padding: 1rem;
    }

    .nav-tabs .nav-link {
        padding: 0.75rem 1rem;
        font-size: var(--font-size-sm);
    }
}

@media (max-width: 768px) {
    .page-header {
        text-align: center;
        margin-bottom: 1.5rem;
    }

    .page-header h1,
    .page-header h2 {
        font-size: 1.5rem;
    }

    .btn {
        padding: 0.5rem 1rem;
        font-size: var(--font-size-sm);
    }

    .btn-lg {
        padding: 0.75rem 1.5rem;
        font-size: var(--font-size-base);
    }

    .card-body {
        padding: 1rem;
    }

    .modal-content {
        margin: 1rem;
    }

    .table-responsive {
        border-radius: var(--radius-lg);
        box-shadow: var(--shadow-sm);
    }

    .search-container {
        margin-top: -2rem;
        padding: 1.5rem;
    }

    .footer {
        padding: 3rem 0 1.5rem;
    }

    .footer-title {
        margin-top: 2rem;
    }
}

@media (max-width: 576px) {
    .container-fluid {
        padding-left: 0.75rem;
        padding-right: 0.75rem;
    }

    .hero-section {
        padding: 6rem 0 3rem;
    }

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

    .hero-subtitle {
        font-size: var(--font-size-base);
    }

    .hero-stats {
        flex-direction: column;
        gap: 1.5rem;
    }

    .welcome-banner {
        padding: 1.5rem;
    }

    .stats-card {
        padding: 1rem 0.75rem;
    }

    .stat-icon {
        width: 50px;
        height: 50px;
    }

    .booking-icon {
        width: 40px;
        height: 40px;
    }

    .nav-tabs .nav-link {
        padding: 0.5rem 0.75rem;
        font-size: var(--font-size-xs);
    }

    .table th,
    .table td {
        padding: 0.75rem 0.5rem;
        font-size: var(--font-size-xs);
    }

    .btn {
        width: 100%;
        margin-bottom: 0.5rem;
    }

    .btn-group .btn {
        width: auto;
        margin-bottom: 0;
    }

    .destination-card {
        height: 300px;
    }

    .search-container .nav-tabs .nav-link {
        padding: 0.5rem 1rem;
        font-size: var(--font-size-xs);
    }
}

/* ================================
   ACCESSIBILITY IMPROVEMENTS
   ================================ */

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.focus-visible:focus {
    outline: 2px solid var(--primary);
    outline-offset: 2px;
}

@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

@media (prefers-contrast: high) {
    .btn {
        border: 2px solid currentColor;
    }

    .card {
        border: 2px solid var(--gray-400);
    }

    .form-control,
    .form-select {
        border: 2px solid var(--gray-400);
    }
}

/* ================================
   PRINT STYLES
   ================================ */

@media print {
    .navbar,
    .footer,
    .btn,
    .search-container {
        display: none !important;
    }

    body {
        background: white;
        color: black;
    }

    .card {
        box-shadow: none;
        border: 1px solid #ddd;
    }
}

/* ================================
   UTILITY CLASSES
   ================================ */

.text-gradient {
    background: linear-gradient(90deg, var(--gradient-dark), var(--gradient-light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.bg-gradient-primary {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
}

/* ---- "Ready to Explore" CTA band (readable over gold) ---- */
.cta-band {
    /* deeper gold gradient gives white text stronger contrast */
    background: linear-gradient(135deg, #b5781a 0%, #8a5808 100%);
    position: relative;
}
.cta-band h2 {
    text-shadow: 0 2px 12px rgba(0, 0, 0, 0.28);
}
.cta-band__lead {
    color: #fff;
    opacity: 1;
    text-shadow: 0 1px 6px rgba(0, 0, 0, 0.3);
}
.cta-band__btn {
    font-weight: 700;
    padding: 0.85rem 2rem;
    border-radius: var(--radius-full, 999px);
    transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, color 0.2s ease;
}
.cta-band__btn:hover { transform: translateY(-2px); }

/* Solid white primary button — maximum contrast on gold */
.cta-band__btn--solid {
    background: #fff;
    color: #8a5808;
    border: 2px solid #fff;
    box-shadow: 0 8px 20px -8px rgba(0, 0, 0, 0.45);
}
.cta-band__btn--solid:hover {
    background: #fff8ec;
    color: #7a4d06;
    box-shadow: 0 12px 26px -8px rgba(0, 0, 0, 0.5);
}

/* Ghost button — solid white border + white text, readable on gold */
.cta-band__btn--ghost {
    background: rgba(255, 255, 255, 0.08);
    color: #fff;
    border: 2px solid rgba(255, 255, 255, 0.9);
    text-shadow: 0 1px 4px rgba(0, 0, 0, 0.25);
}
.cta-band__btn--ghost:hover {
    background: #fff;
    color: #8a5808;
    border-color: #fff;
}

.bg-gradient-golden {
    background: linear-gradient(135deg, var(--gradient-dark), var(--gradient-light));
}

.bg-light-blue {
    background-color: rgba(37, 150, 190, 0.1);
}

.bg-light-golden {
    background-color: rgba(244, 176, 65, 0.1);
}

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

.text-secondary {
    color: var(--secondary) !important;
}

.shadow-primary {
    box-shadow: var(--shadow-primary);
}

.shadow-golden {
    box-shadow: var(--shadow-golden);
}

/* ================================
   STATUS DROPDOWN STYLING
   ================================ */

.status-dropdown {
    min-width: 130px;
    font-size: var(--font-size-xs);
    font-weight: 600;
    border: 2px solid var(--gray-300);
    border-radius: var(--radius-md);
    padding: 0.5rem 0.75rem;
    cursor: pointer;
    transition: var(--transition-base);
    background-color: var(--white);
    color: var(--text-primary);
}

.status-dropdown:hover {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(162, 106, 12, 0.12);
}

.status-dropdown:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 4px rgba(162, 106, 12, 0.18);
    outline: none;
}

.status-dropdown option {
    padding: 0.5rem;
    font-weight: 600;
}

/* ================================
   ADMIN / HOTEL SIDEBAR LAYOUT
   ================================ */
:root {
    --admin-sidebar-w: 248px;
    --admin-topbar-h: 60px;
    --admin-sidebar-bg: #0f2137;
    --admin-content-bg: #f1f5f9;
}

.admin-layout {
    display: flex;
    min-height: 100vh;
    background: var(--admin-content-bg);
}

/* Sidebar */
.admin-sidebar {
    position: fixed;
    top: 0;
    left: 0;
    bottom: 0;
    width: var(--admin-sidebar-w);
    background: var(--admin-sidebar-bg);
    color: #cbd5e1;
    display: flex;
    flex-direction: column;
    z-index: 1040;
    transition: transform 0.25s ease;
    overflow-y: auto;
}
.admin-sidebar__brand {
    height: var(--admin-topbar-h);
    display: flex;
    align-items: center;
    gap: 0.6rem;
    padding: 0 1.25rem;
    border-bottom: 1px solid rgba(255,255,255,0.08);
    flex-shrink: 0;
}
.admin-sidebar__brand img { max-height: 34px; width: auto; }
.admin-sidebar__brand span {
    font-weight: 700;
    color: #fff;
    font-size: 0.95rem;
    white-space: nowrap;
}
.admin-sidebar__nav { padding: 0.75rem 0.6rem; flex: 1; }
.admin-sidebar__section {
    font-size: 0.68rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: #64748b;
    padding: 0.9rem 0.9rem 0.35rem;
}
.admin-nav-link {
    display: flex;
    align-items: center;
    gap: 0.7rem;
    padding: 0.55rem 0.9rem;
    border-radius: var(--radius-md);
    color: #cbd5e1;
    font-size: 0.875rem;
    font-weight: 500;
    text-decoration: none;
    margin-bottom: 2px;
    transition: background 0.15s ease, color 0.15s ease;
}
.admin-nav-link i { width: 18px; text-align: center; font-size: 0.9rem; }
.admin-nav-link:hover { background: rgba(255,255,255,0.06); color: #fff; }
.admin-nav-link.active {
    background: var(--primary);
    color: #fff;
    box-shadow: 0 4px 12px -4px rgba(37,150,190,0.6);
}

/* Main column */
.admin-main {
    flex: 1;
    margin-left: var(--admin-sidebar-w);
    min-width: 0;
    display: flex;
    flex-direction: column;
}
.admin-topbar {
    height: var(--admin-topbar-h);
    background: #fff;
    border-bottom: 1px solid var(--gray-200);
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 1.5rem;
    position: sticky;
    top: 0;
    z-index: 1030;
}
.admin-topbar__title { font-family: var(--font-primary); font-size: 1.05rem; font-weight: 600; color: var(--text-dark); margin: 0; }
.admin-topbar__toggle {
    background: none; border: none; font-size: 1.15rem; color: var(--text-secondary); display: none; margin-right: 0.5rem;
}
.admin-content-area { padding: 1.5rem; flex: 1; }
/* Neutralize the old centered container inside the admin shell */
.admin-content-area > .container,
.admin-content-area > .container-fluid { max-width: 100%; padding-left: 0; padding-right: 0; margin: 0; }

.admin-user-menu .dropdown-toggle { color: var(--text-secondary); font-weight: 500; font-size: 0.9rem; }

/* Denser tables in admin */
.admin-content-area .table { font-size: 0.875rem; }
.admin-content-area .table > :not(caption) > * > * { padding: 0.6rem 0.75rem; }
.admin-content-area .card { border-radius: var(--radius-lg); }

/* Sidebar backdrop for mobile */
.admin-backdrop {
    display: none;
    position: fixed; inset: 0; background: rgba(0,0,0,0.4); z-index: 1035;
}

@media (max-width: 991.98px) {
    .admin-sidebar { transform: translateX(-100%); }
    .admin-sidebar.open { transform: translateX(0); }
    .admin-main { margin-left: 0; }
    .admin-topbar__toggle { display: inline-block; }
    .admin-backdrop.show { display: block; }
}

/* ================================
   DENSITY & DISCLOSURE
   Utilities to keep cards calm: clamp long text, reveal on demand,
   and lighten badge/feature clutter. No JS required.
   ================================ */

/* Clamp descriptions to N lines so cards stay a uniform height */
.text-clamp-2,
.text-clamp-3 {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.text-clamp-2 { -webkit-line-clamp: 2; line-clamp: 2; }
.text-clamp-3 { -webkit-line-clamp: 3; line-clamp: 3; }

/* CSS-only "Read more" using <details>. Markup:
   <details class="reveal"><summary>Read more</summary>…hidden content…</details> */
.reveal { margin-top: 0.5rem; }
.reveal > summary {
    list-style: none;
    cursor: pointer;
    color: var(--primary-dark);
    font-weight: 600;
    font-size: var(--font-size-sm);
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    width: fit-content;
}
.reveal > summary::-webkit-details-marker { display: none; }
.reveal > summary::after {
    content: '\f078'; /* chevron-down */
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    font-size: 0.7em;
    transition: transform 0.2s ease;
}
.reveal[open] > summary::after { transform: rotate(180deg); }
.reveal[open] > summary { margin-bottom: 0.5rem; }
.reveal > summary:hover { color: var(--primary); }

/* Feature chips — replace loud full-color badges inside cards with a quiet,
   uniform chip so a card with 3-4 attributes doesn't turn into a rainbow. */
.feature-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 0.4rem;
    margin: 0.25rem 0 0.75rem;
}
.feature-chip {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    padding: 0.3rem 0.7rem;
    border-radius: var(--radius-full);
    font-size: var(--font-size-xs);
    font-weight: 500;
    color: var(--text-secondary);
    background: var(--gray-100);
    border: 1px solid var(--gray-200);
    text-transform: none;
    letter-spacing: 0;
}
.feature-chip i { color: var(--primary); font-size: 0.8em; }

/* Soften badges: solid saturated fills read as noisy when several stack up.
   Keep semantic meaning but lower the visual weight to tinted pills. */
.badge.badge-soft {
    text-transform: none;
    letter-spacing: 0;
    font-weight: 600;
    padding: 0.35rem 0.7rem;
    border-radius: var(--radius-full);
    background: var(--gray-100) !important;
    color: var(--text-secondary) !important;
    border: 1px solid var(--gray-200);
}
.badge.badge-soft.bg-success { background: var(--success-light) !important; color: #1c6b40 !important; border-color: transparent; }
.badge.badge-soft.bg-danger  { background: var(--danger-light)  !important; color: #a12 !important;    border-color: transparent; }
.badge.badge-soft.bg-warning { background: var(--warning-light) !important; color: #8a5a0c !important; border-color: transparent; }
.badge.badge-soft.bg-info    { background: var(--info-light)    !important; color: #1e40af !important; border-color: transparent; }

/* Alerts: they currently span full width with heavy fills. Tighten to a
   quieter tinted card so a page of alerts doesn't shout. */
.alert {
    font-size: var(--font-size-sm);
    padding: 0.85rem 1.15rem 0.85rem 1.35rem;
    display: flex;
    align-items: flex-start;
    gap: 0.65rem;
}
.alert > i:first-child { margin-top: 0.15rem; opacity: 0.9; }

/* Uniform card heights inside a grid row so cards line up cleanly */
.card-grid { display: grid; gap: 1.5rem; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); }

/* Respect reduced-motion for the disclosure chevron */
@media (prefers-reduced-motion: reduce) {
    .reveal > summary::after { transition: none; }
}

/* ================================
   PAGE HERO / SECTION HEADERS
   One consistent header band; per-section accent via a modifier class.
   Usage: <section class="page-hero page-hero--hotels">…</section>
   ================================ */
.page-hero {
    padding: 1.4rem 0;
    color: #fff;
    position: relative;
    background: linear-gradient(135deg, var(--sec-contact) 0%, var(--sec-contact-deep) 100%);
}
/* Some pages also add Bootstrap's .py-5 to the hero <section>; neutralise it
   so the band stays ~60% shorter than before across all screens. */
.page-hero.py-5 {
    padding-top: 1.4rem !important;
    padding-bottom: 1.4rem !important;
}
/* Compact the hero typography so the shorter band stays balanced. */
.page-hero h1,
.page-hero h2,
.page-hero .display-5 {
    font-size: clamp(1.6rem, 3vw, 2.1rem);
    margin-bottom: 0.15rem !important;
}
.page-hero p,
.page-hero .lead { font-size: var(--font-size-base); margin-bottom: 0 !important; }
.page-hero h1,
.page-hero h2 { color: #fff; margin-bottom: 0.35rem; }
.page-hero p { color: rgba(255, 255, 255, 0.92); margin-bottom: 0; }
.page-hero .breadcrumb-inline { color: rgba(255, 255, 255, 0.85); font-weight: 500; }
.page-hero .breadcrumb-inline a { color: #fff; }

.page-hero--cars     { background: linear-gradient(135deg, var(--sec-cars) 0%, var(--sec-cars-deep) 100%); }
.page-hero--hotels   { background: linear-gradient(135deg, var(--sec-hotels) 0%, var(--sec-hotels-deep) 100%); }
.page-hero--packages { background: linear-gradient(135deg, var(--sec-packages) 0%, var(--sec-packages-deep) 100%); }
.page-hero--boats    { background: linear-gradient(135deg, var(--sec-boats) 0%, var(--sec-boats-deep) 100%); }
.page-hero--contact  { background: linear-gradient(135deg, var(--sec-contact) 0%, var(--sec-contact-deep) 100%); }

/* On a colored hero the title should not inherit the dark serif color */
.page-hero .page-header h1,
.page-hero .page-header h2 { color: #fff; }

/* Tidy the package code chip — Bootstrap <code> defaults to magenta on white */
code, .code-chip {
    color: var(--text-secondary);
    background: var(--gray-100);
    padding: 0.1rem 0.45rem;
    border-radius: var(--radius-sm);
    font-size: 0.8em;
    letter-spacing: 0.02em;
}

/* ================================
   SECTION THEME SCOPES
   A page can opt into a section accent by adding .theme-* on <body>.
   This recolors the section's CTAs to the accent WITHOUT changing the
   global semantic success/info colors used for alerts and statuses.
   ================================ */
.theme-hotels .btn-success {
    background: linear-gradient(135deg, var(--sec-hotels) 0%, var(--sec-hotels-deep) 100%);
    box-shadow: 0 4px 15px rgba(61, 122, 90, 0.3);
}
.theme-hotels .btn-success:hover {
    background: linear-gradient(135deg, var(--sec-hotels-deep) 0%, var(--sec-hotels) 100%);
    box-shadow: 0 10px 30px rgba(61, 122, 90, 0.35);
}
.theme-hotels .btn-outline-success {
    border-color: var(--sec-hotels);
    color: var(--sec-hotels);
}
.theme-hotels .btn-outline-success:hover {
    background: var(--sec-hotels);
    border-color: var(--sec-hotels);
    color: #fff;
}
.theme-hotels .badge.bg-success {
    background-color: var(--sec-hotels) !important;
}
.theme-hotels .rating-pill,
.theme-hotels .guest-rating { background-color: var(--sec-hotels) !important; }

/* Recolor the section's success-tinted accents (icons, rating chips, check
   marks) to the hotels emerald. Semantic success elsewhere is untouched. */
.theme-hotels .text-success { color: var(--sec-hotels) !important; }
.theme-hotels .bg-success { background-color: var(--sec-hotels) !important; }
.theme-hotels .bg-success.bg-opacity-10 {
    background-color: rgba(61, 122, 90, 0.12) !important;
}

/* ================================
   CONTACT INFO CARDS (light context)
   ================================ */
.contact-info-card {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: var(--surface, #fff);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-lg);
    padding: 1rem 1.25rem;
    transition: var(--transition-base);
}
.contact-info-card:hover {
    border-color: var(--primary);
    box-shadow: var(--shadow-sm);
    transform: translateY(-2px);
}
.contact-info-card .footer-contact-icon {
    background: rgba(201, 138, 30, 0.12);
    color: var(--primary-dark);
    flex-shrink: 0;
}
.contact-info-card strong { display: block; color: var(--text-dark); font-size: 0.95rem; }
.contact-info-card a { color: var(--text-secondary); font-weight: 500; }
.contact-info-card a:hover { color: var(--primary-dark); }

/* Cars section scope — blue wayfinding accents; CTA stays gold (brand action). */
.theme-cars .badge.bg-primary {
    background: linear-gradient(135deg, var(--sec-cars) 0%, var(--sec-cars-deep) 100%) !important;
}
.theme-cars .bg-light-blue { background-color: rgba(47, 111, 143, 0.12); }
.theme-cars .bg-light-blue i,
.theme-cars .bg-light-blue .fa,
.theme-cars .bg-light-blue .fas { color: var(--sec-cars); }


/* ================================
   PACKAGE SEARCH BAR — one clean line, no double borders
   ================================ */
.package-search {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--white);
    border: 2px solid var(--primary);
    border-radius: var(--radius-md);
    padding: 0.35rem 0.35rem 0.35rem 0.9rem;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
.package-search:focus-within {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(162, 106, 12, 0.12);
}
.package-search__icon {
    color: var(--text-muted);
    font-size: 0.85rem;
    flex-shrink: 0;
}
.package-search__input {
    flex: 1 1 auto;
    min-width: 0;
    border: 0;
    outline: 0;
    background: transparent;
    font-size: var(--font-size-sm);
    color: var(--text-primary);
    padding: 0.4rem 0;
}
.package-search__input::placeholder {
    color: var(--text-light);
    font-size: var(--font-size-sm);
}
.package-search__clear {
    color: var(--text-muted);
    font-size: 1.1rem;
    line-height: 1;
    text-decoration: none;
    padding: 0 0.4rem;
    flex-shrink: 0;
}
.package-search__clear:hover { color: var(--text-dark); }
.package-search__btn {
    flex-shrink: 0;
    padding: 0.5rem 1.4rem;
}
@media (max-width: 575.98px) {
    .package-search__btn { padding: 0.5rem 1rem; }
}

/* ================================
   HOTEL DETAILS — sticky details column + scrollable rooms grid
   ================================ */
.hotel-detail-sticky {
    position: sticky;
    top: 1.5rem;
}
.rooms-scroll {
    max-height: calc(100vh - 4rem);
    overflow-y: auto;
    padding-right: 0.5rem;
}
/* Slim, on-brand scrollbar for the rooms column */
.rooms-scroll::-webkit-scrollbar { width: 8px; }
.rooms-scroll::-webkit-scrollbar-track { background: var(--gray-100); border-radius: 999px; }
.rooms-scroll::-webkit-scrollbar-thumb { background: var(--gray-300); border-radius: 999px; }
.rooms-scroll::-webkit-scrollbar-thumb:hover { background: var(--sec-hotels); }
.rooms-scroll { scrollbar-width: thin; scrollbar-color: var(--gray-300) var(--gray-100); }

/* On narrow screens, drop the sticky/scroll behaviour so the page flows naturally */
@media (max-width: 991.98px) {
    .hotel-detail-sticky { position: static; }
    .rooms-scroll { max-height: none; overflow: visible; padding-right: 0; }
}

/* ================================
   HOMEPAGE SCROLL-OVER
   The hero pins to the top (sticky) and fills the screen; the Chilika section
   below has a higher z-index and a solid background, so as you scroll it climbs
   up and over the pinned hero. Once it covers the hero, the rest scrolls normally.
   ================================ */
.hero-sticky {
    position: sticky;
    top: 0;
    z-index: 0;
    min-height: 100vh;                 /* fill the screen while pinned */
    background-attachment: scroll !important; /* sticky ≠ fixed bg */
}
.chilika-climb {
    position: relative;
    z-index: 1;                        /* sits above the pinned hero */
    margin-top: 0;
    border-top-left-radius: 2rem;
    border-top-right-radius: 2rem;
    box-shadow: 0 -24px 48px -20px rgba(0, 0, 0, 0.5);
}
/* Everything after Chilika keeps covering the hero as it scrolls. */
.chilika-climb ~ section,
.chilika-climb ~ footer {
    position: relative;
    z-index: 1;
    background-color: var(--bg-light);
}

/* Small screens / reduced-motion: no pinning, plain stacked scroll. */
@media (max-width: 991.98px) {
    .hero-sticky { position: relative; min-height: auto; }
    .chilika-climb { border-radius: 0; box-shadow: none; }
}
@media (prefers-reduced-motion: reduce) {
    .hero-sticky { position: relative; min-height: auto; }
    .chilika-climb { border-radius: 0; box-shadow: none; }
}
