/* ============================================
   DNA Vacation - Main Stylesheet
   Premium Navy + Gold — matching brand logo
   ============================================ */

:root {
    /* Primary — Deep Royal Navy (from DNA logo) */
    --primary: #0B2545;
    --primary-dark: #061838;
    --primary-darker: #030F26;
    --primary-mid: #13315C;
    --primary-light: #E8EEF7;
    --primary-lighter: #F4F7FC;

    /* Secondary — Luxury Gold (from DNA logo) */
    --gold: #C9A961;
    --gold-dark: #A88540;
    --gold-light: #E8D6A3;
    --gold-lighter: #FBF5E4;

    /* Legacy aliases (kept for existing markup) */
    --secondary: #C9A961;
    --secondary-dark: #A88540;
    --secondary-light: #FBF5E4;

    /* Tropical accent for CTAs */
    --accent: #EC7B4E;
    --accent-light: #FFEDD5;

    /* Utility */
    --success: #10B981;
    --success-light: #D1FAE5;
    --danger: #EF4444;
    --warning: #F59E0B;

    /* Neutrals */
    --dark: #0F172A;
    --gray-50: #F8FAFC;
    --gray-100: #F1F5F9;
    --gray-200: #E2E8F0;
    --gray-300: #CBD5E1;
    --gray-400: #94A3B8;
    --gray-500: #64748B;
    --gray-600: #475569;
    --gray-700: #334155;
    --gray-800: #1E293B;

    --font-main: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;
    --font-script: 'Pacifico', 'Dancing Script', cursive;

    --radius: 14px;
    --radius-sm: 10px;
    --radius-lg: 20px;
    --radius-xl: 28px;
    --shadow: 0 1px 3px rgba(11,37,69,.06), 0 1px 2px rgba(11,37,69,.04);
    --shadow-md: 0 4px 16px rgba(11,37,69,.08);
    --shadow-lg: 0 12px 32px rgba(11,37,69,.12);
    --shadow-xl: 0 20px 48px rgba(11,37,69,.18);
    --transition: all .25s cubic-bezier(.4,0,.2,1);
}

* { box-sizing: border-box; }

body {
    font-family: var(--font-main);
    color: var(--dark);
    line-height: 1.65;
    background: #fff;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
}

a { text-decoration: none; }
img { max-width: 100%; height: auto; }

/* ---------- UTILITY ---------- */
.text-primary-custom { color: var(--primary) !important; }
.text-secondary-custom { color: var(--gold-dark) !important; }
.text-gold { color: var(--gold-dark) !important; }
.bg-primary-custom { background-color: var(--primary) !important; }
.bg-gray-50 { background-color: var(--gray-50) !important; }
.bg-gray-100 { background-color: var(--gray-100) !important; }
.bg-primary-light { background-color: var(--primary-light) !important; }
.border-primary-custom { border-color: var(--primary) !important; }
.text-white-85 { color: rgba(255,255,255,.85); }

.script-text {
    font-family: var(--font-script);
    font-weight: 400;
    font-style: italic;
}

/* ---------- BUTTONS ---------- */
.btn-primary-custom {
    background: var(--primary);
    color: #fff;
    border: none;
    border-radius: 100px;
    padding: .7rem 1.6rem;
    font-weight: 600;
    font-size: .9rem;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: .5rem;
}
.btn-primary-custom:hover, .btn-primary-custom:focus {
    background: var(--primary-mid);
    color: #fff;
    transform: translateY(-1px);
    box-shadow: 0 10px 24px rgba(11,37,69,.35);
}

.btn-outline-primary-custom {
    border: 1.5px solid var(--primary);
    color: var(--primary);
    background: transparent;
    border-radius: 100px;
    padding: .65rem 1.5rem;
    font-weight: 600;
    font-size: .9rem;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: .5rem;
}
.btn-outline-primary-custom:hover, .btn-outline-primary-custom:focus {
    background: var(--primary);
    color: #fff;
}

.btn-gold {
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    color: #fff;
    border: none;
    border-radius: 100px;
    padding: .7rem 1.6rem;
    font-weight: 700;
    font-size: .9rem;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: .5rem;
    box-shadow: 0 4px 14px rgba(201,169,97,.35);
}
.btn-gold:hover, .btn-gold:focus {
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 10px 24px rgba(201,169,97,.45);
}

.btn-wa {
    background: #25D366;
    color: #fff;
    border: none;
    border-radius: 100px;
    padding: .65rem 1.5rem;
    font-weight: 600;
    font-size: .9rem;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: .5rem;
}
.btn-wa:hover, .btn-wa:focus {
    background: #1DA851;
    color: #fff;
    transform: translateY(-1px);
    box-shadow: 0 8px 20px rgba(37,211,102,.35);
}

.btn-secondary-custom {
    background: var(--gold);
    color: #fff;
    border: none;
    border-radius: 100px;
    padding: .65rem 1.5rem;
    font-weight: 600;
    font-size: .9rem;
    transition: var(--transition);
}
.btn-secondary-custom:hover, .btn-secondary-custom:focus {
    background: var(--gold-dark);
    color: #fff;
    transform: translateY(-1px);
}

.section-eyebrow {
    display: inline-block;
    color: var(--gold-dark);
    font-family: var(--font-script);
    font-size: 1.35rem;
    line-height: 1;
    margin-bottom: .25rem;
}
.section-title {
    font-size: 2.1rem;
    font-weight: 800;
    margin-bottom: .5rem;
    color: var(--primary);
    letter-spacing: -.5px;
}
.section-title .script-accent {
    font-family: var(--font-script);
    color: var(--gold-dark);
    font-weight: 400;
    font-size: 1.2em;
    padding: 0 .1em;
}
.section-subtitle {
    color: var(--gray-500);
    font-size: .98rem;
    margin-bottom: 2rem;
}

/* ---------- NAVBAR ---------- */
.navbar {
    padding: .7rem 0;
    z-index: 1030;
    background: rgba(255,255,255,.97);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(11,37,69,.06);
    box-shadow: 0 1px 20px rgba(11,37,69,.04);
}
.navbar-brand {
    padding: 0;
    display: flex;
    align-items: center;
    gap: .6rem;
}
.navbar-brand img {
    height: 46px;
    width: auto;
    border-radius: 8px;
    object-fit: cover;
}
.navbar-brand .brand-text {
    display: flex;
    flex-direction: column;
    line-height: 1;
}
.navbar-brand .brand-name {
    font-size: 1.15rem;
    font-weight: 800;
    color: var(--primary);
    letter-spacing: -.3px;
}
.navbar-brand .brand-tag {
    font-family: var(--font-script);
    font-size: .78rem;
    color: var(--gold-dark);
    line-height: 1;
    margin-top: 2px;
}
.navbar .nav-link {
    font-weight: 500;
    color: var(--gray-700);
    padding: .5rem .9rem !important;
    font-size: .92rem;
    transition: var(--transition);
    border-radius: 6px;
    position: relative;
}
.navbar .nav-link:hover,
.navbar .nav-link.active {
    color: var(--primary);
}
.navbar .nav-link.active::after,
.navbar .nav-link:hover::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 50%;
    transform: translateX(-50%);
    width: 20px;
    height: 2px;
    background: var(--gold);
    border-radius: 2px;
}

/* ---------- HERO ---------- */
.hero-section {
    background:
      linear-gradient(180deg, rgba(6,24,56,.55) 0%, rgba(6,24,56,.35) 40%, rgba(6,24,56,.75) 100%),
      url('../img/nature.jpg') center/cover no-repeat;
    min-height: 620px;
    display: flex;
    align-items: center;
    color: #fff;
    position: relative;
    overflow: hidden;
}
.hero-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
      radial-gradient(ellipse at 15% 20%, rgba(201,169,97,.20) 0%, transparent 45%),
      radial-gradient(ellipse at 85% 80%, rgba(11,37,69,.35) 0%, transparent 55%);
    z-index: 1;
}
.hero-section .container {
    position: relative;
    z-index: 2;
    padding-top: 2rem;
    padding-bottom: 2rem;
}
.hero-section h1 {
    font-size: 3.4rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1.25rem;
    letter-spacing: -1.5px;
    text-shadow: 0 4px 30px rgba(0,0,0,.35);
}
.hero-section h1 .script {
    font-family: var(--font-script);
    font-weight: 400;
    color: var(--gold-light);
    font-size: 1.05em;
    font-style: italic;
    letter-spacing: 0;
    display: inline-block;
    text-shadow: 0 2px 20px rgba(0,0,0,.4);
}
.hero-section p.hero-lead {
    font-size: 1.1rem;
    opacity: .95;
    max-width: 580px;
    line-height: 1.6;
}
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    background: rgba(255,255,255,.14);
    backdrop-filter: blur(12px);
    padding: .5rem 1.1rem;
    border-radius: 100px;
    font-size: .85rem;
    font-weight: 500;
    margin-bottom: 1.25rem;
    border: 1px solid rgba(255,255,255,.22);
}
.hero-badge i { color: var(--gold-light); }

/* Hero search box */
.hero-search {
    background: #fff;
    border-radius: var(--radius-lg);
    padding: 1.25rem 1.5rem 1.5rem;
    box-shadow: 0 30px 60px rgba(6,24,56,.35);
    margin-top: 2.5rem;
    color: var(--dark);
}
.hero-search .nav-tabs {
    border-bottom: 1px solid var(--gray-100);
    gap: .25rem;
    margin-bottom: 1.25rem;
    padding-bottom: .5rem;
}
.hero-search .nav-tabs .nav-link {
    border: none !important;
    background: transparent;
    color: var(--gray-500);
    font-weight: 600;
    font-size: .9rem;
    padding: .55rem 1.15rem;
    border-radius: 100px;
    display: inline-flex;
    align-items: center;
    gap: .45rem;
}
.hero-search .nav-tabs .nav-link:hover {
    background: var(--primary-lighter);
    color: var(--primary);
}
.hero-search .nav-tabs .nav-link.active {
    background: var(--primary);
    color: #fff;
}
.hero-search .btn-search-primary {
    background: linear-gradient(135deg, var(--primary), var(--primary-mid));
    color: #fff;
    border: none;
    border-radius: 100px;
    padding: .7rem 1.5rem;
    font-weight: 700;
    width: 100%;
    box-shadow: 0 8px 20px rgba(11,37,69,.3);
    transition: var(--transition);
}
.hero-search .btn-search-primary:hover {
    transform: translateY(-1px);
    box-shadow: 0 12px 28px rgba(11,37,69,.4);
}

/* Trust strip below hero */
.trust-strip {
    background: #fff;
    padding: 1.5rem 0;
    border-bottom: 1px solid var(--gray-100);
}
.trust-item {
    display: flex;
    align-items: center;
    gap: .75rem;
}
.trust-item .icon {
    width: 44px;
    height: 44px;
    background: var(--primary-lighter);
    color: var(--primary);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    flex-shrink: 0;
}
.trust-item strong {
    display: block;
    font-size: .9rem;
    color: var(--dark);
    line-height: 1.2;
}
.trust-item span {
    font-size: .78rem;
    color: var(--gray-500);
}

/* ---------- CARDS ---------- */
.tour-card, .car-card {
    border: none;
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
    height: 100%;
    background: #fff;
}
.tour-card:hover, .car-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
}
.tour-card .card-img-top, .car-card .card-img-top {
    height: 220px;
    object-fit: cover;
    transition: transform .6s ease;
}
.tour-card:hover .card-img-top, .car-card:hover .card-img-top {
    transform: scale(1.06);
}
.tour-card .card-body, .car-card .card-body {
    padding: 1.25rem;
}
.tour-card .card-title, .car-card .card-title {
    font-weight: 700;
    font-size: 1.05rem;
    margin-bottom: .5rem;
    color: var(--dark);
    line-height: 1.35;
}
.tour-card .price, .car-card .price {
    color: var(--primary);
    font-weight: 800;
    font-size: 1.2rem;
}
.tour-card .price small, .car-card .price small {
    font-weight: 500;
    color: var(--gray-400);
    font-size: .75rem;
}
.image-wrapper { overflow: hidden; position: relative; }

.badge-bestseller {
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    color: #fff;
    font-size: .7rem;
    padding: .35rem .8rem;
    border-radius: 100px;
    font-weight: 700;
    position: absolute;
    top: 14px;
    left: 14px;
    z-index: 2;
    box-shadow: 0 6px 14px rgba(168,133,64,.4);
    letter-spacing: .3px;
}
.badge-promo {
    background: var(--accent);
    color: #fff;
    font-size: .7rem;
    padding: .35rem .8rem;
    border-radius: 100px;
    font-weight: 700;
    position: absolute;
    top: 14px;
    right: 14px;
    z-index: 2;
    box-shadow: 0 6px 14px rgba(236,123,78,.4);
    letter-spacing: .3px;
}

.card-meta {
    display: flex;
    gap: .75rem;
    font-size: .8rem;
    color: var(--gray-500);
    margin-bottom: .75rem;
    flex-wrap: wrap;
}
.card-meta i {
    color: var(--gold-dark);
}

/* Wanderly-style destination card with gradient */
.destination-card {
    position: relative;
    border-radius: var(--radius);
    overflow: hidden;
    height: 240px;
    cursor: pointer;
    transition: var(--transition);
}
.destination-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}
.destination-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .6s ease;
}
.destination-card:hover img {
    transform: scale(1.08);
}
.destination-card .overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 30%, rgba(6,24,56,.85) 100%);
    z-index: 1;
}
.destination-card .dest-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    background: rgba(255,255,255,.95);
    color: var(--primary);
    font-size: .68rem;
    font-weight: 700;
    padding: .3rem .7rem;
    border-radius: 100px;
    z-index: 2;
    text-transform: uppercase;
    letter-spacing: .5px;
}
.destination-card .dest-badge.bestseller {
    background: var(--gold);
    color: #fff;
}
.destination-card .dest-badge.popular {
    background: var(--accent);
    color: #fff;
}
.destination-card .dest-badge.trending {
    background: var(--primary);
    color: #fff;
}
.destination-card .dest-info {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 1rem 1.15rem;
    color: #fff;
    z-index: 2;
    display: flex;
    justify-content: space-between;
    align-items: end;
}
.destination-card .dest-name {
    font-weight: 700;
    font-size: 1.15rem;
    line-height: 1.2;
    margin-bottom: 3px;
}
.destination-card .dest-loc {
    font-size: .78rem;
    opacity: .85;
}
.destination-card .dest-price {
    text-align: right;
}
.destination-card .dest-price small {
    display: block;
    font-size: .7rem;
    opacity: .8;
}
.destination-card .dest-price strong {
    font-size: 1.05rem;
    color: var(--gold-light);
}

/* ---------- FEATURES ---------- */
.feature-icon {
    width: 64px;
    height: 64px;
    border-radius: 18px;
    background: linear-gradient(135deg, var(--primary-lighter), var(--primary-light));
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    margin-bottom: 1rem;
    transition: var(--transition);
}
.feature-item:hover .feature-icon {
    background: linear-gradient(135deg, var(--primary), var(--primary-mid));
    color: #fff;
    transform: scale(1.05);
}

/* ---------- CATEGORY CARDS ---------- */
.category-card {
    border: 1.5px solid var(--gray-200);
    border-radius: var(--radius);
    padding: 1.75rem 1.25rem;
    text-align: center;
    transition: var(--transition);
    text-decoration: none;
    color: var(--dark);
    display: block;
    height: 100%;
    background: #fff;
}
.category-card:hover {
    border-color: var(--gold);
    background: linear-gradient(135deg, var(--gold-lighter), #fff);
    color: var(--primary);
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}
.category-card i {
    font-size: 2.2rem;
    color: var(--primary);
    margin-bottom: .75rem;
    display: block;
    transition: var(--transition);
}
.category-card:hover i { color: var(--gold-dark); }

/* ---------- TESTIMONIALS ---------- */
.testimonial-card {
    background: #fff;
    border: 1px solid var(--gray-200);
    border-radius: var(--radius);
    padding: 1.75rem 1.5rem;
    height: 100%;
    transition: var(--transition);
    position: relative;
}
.testimonial-card:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-3px);
    border-color: var(--gold-light);
}
.testimonial-card::before {
    content: '\201C';
    position: absolute;
    top: -8px;
    left: 20px;
    font-size: 4.5rem;
    color: var(--gold);
    opacity: .18;
    font-family: Georgia, serif;
    line-height: 1;
}
.testimonial-card .stars {
    color: #F5A623;
    margin-bottom: .75rem;
    font-size: .9rem;
}
.testimonial-card .customer-name {
    font-weight: 700;
    font-size: .95rem;
    color: var(--dark);
}
.testimonial-card .customer-location {
    color: var(--gray-400);
    font-size: .78rem;
}
.testimonial-card .customer-avatar {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary), var(--primary-mid));
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: .95rem;
    flex-shrink: 0;
}

/* ---------- STEPS ---------- */
.step-item {
    text-align: center;
    padding: 1.5rem 1rem;
}
.step-number {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary), var(--primary-mid));
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 1.35rem;
    margin: 0 auto 1rem;
    box-shadow: 0 10px 24px rgba(11,37,69,.25);
    border: 3px solid var(--gold-lighter);
}

/* ---------- CTA SECTION ---------- */
.cta-section {
    background: linear-gradient(135deg, var(--primary-darker) 0%, var(--primary) 50%, var(--primary-mid) 100%);
    color: #fff;
    padding: 4.5rem 0;
    border-radius: 0;
    position: relative;
    overflow: hidden;
}
.cta-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
      radial-gradient(ellipse at bottom left, rgba(201,169,97,.20), transparent 55%),
      radial-gradient(ellipse at top right, rgba(236,123,78,.15), transparent 60%);
}
.cta-section .container { position: relative; z-index: 2; }
.cta-section h2, .cta-section h3 {
    font-size: 2.1rem;
    font-weight: 800;
    letter-spacing: -.5px;
}
.cta-section .script-accent {
    font-family: var(--font-script);
    color: var(--gold-light);
    font-weight: 400;
    font-size: 1.15em;
    padding: 0 .1em;
}

/* ---------- BLOG CARDS ---------- */
.blog-card {
    border: none;
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
    height: 100%;
    background: #fff;
}
.blog-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}
.blog-card .card-img-top {
    height: 200px;
    object-fit: cover;
    transition: transform .5s ease;
}
.blog-card:hover .card-img-top {
    transform: scale(1.06);
}
.blog-card .blog-category {
    font-size: .72rem;
    font-weight: 700;
    color: var(--gold-dark);
    text-transform: uppercase;
    letter-spacing: .8px;
    background: var(--gold-lighter);
    padding: .25rem .6rem;
    border-radius: 100px;
    display: inline-block;
    margin-bottom: .5rem;
}
.blog-card .card-title {
    font-weight: 700;
    font-size: 1rem;
    line-height: 1.4;
    color: var(--dark);
}

/* ---------- FILTER SIDEBAR ---------- */
.filter-section {
    background: #fff;
    border: 1px solid var(--gray-200);
    border-radius: var(--radius);
    padding: 1.5rem;
    position: sticky;
    top: 90px;
}
.filter-section h6 {
    font-weight: 700;
    margin-bottom: .75rem;
    color: var(--primary);
    font-size: .88rem;
    letter-spacing: -.2px;
}

/* ---------- DETAIL PAGE ---------- */
.detail-gallery img {
    border-radius: var(--radius-sm);
    cursor: pointer;
    transition: var(--transition);
}
.detail-gallery img:hover {
    opacity: .85;
    transform: scale(1.02);
}
.detail-main-img {
    width: 100%;
    height: 440px;
    object-fit: cover;
    border-radius: var(--radius);
}
.itinerary-day {
    border-left: 3px solid var(--gold);
    padding: .25rem 0 .25rem 1.5rem;
    margin-bottom: 1.75rem;
    position: relative;
}
.itinerary-day::before {
    content: '';
    position: absolute;
    left: -8px;
    top: 6px;
    width: 13px;
    height: 13px;
    background: var(--gold);
    border-radius: 50%;
    border: 3px solid #fff;
    box-shadow: 0 0 0 1px var(--gold);
}
.itinerary-day h6 {
    font-weight: 700;
    color: var(--primary);
    font-size: 1rem;
}
.facility-list {
    list-style: none;
    padding: 0;
    margin: 0;
}
.facility-list li {
    padding: .5rem 0;
    font-size: .92rem;
    display: flex;
    align-items: start;
    gap: .6rem;
    border-bottom: 1px solid var(--gray-100);
}
.facility-list li:last-child { border-bottom: none; }
.facility-list li i {
    margin-top: .2rem;
    flex-shrink: 0;
}
.facility-list .included i { color: var(--success); }
.facility-list .excluded i { color: var(--danger); }

/* ---------- BOOKING SIDEBAR ---------- */
.booking-sidebar {
    background: #fff;
    border: 1.5px solid var(--gray-200);
    border-radius: var(--radius);
    padding: 1.75rem;
    position: sticky;
    top: 90px;
    box-shadow: var(--shadow);
}
.booking-sidebar .price-display {
    font-size: 1.85rem;
    font-weight: 800;
    color: var(--primary);
    line-height: 1.1;
}

/* ---------- PAGE HEADER ---------- */
.page-header {
    background:
      linear-gradient(135deg, rgba(6,24,56,.85), rgba(11,37,69,.75)),
      url('../img/nature.jpg') center/cover;
    padding: 5rem 0 4.5rem;
    color: #fff;
    text-align: center;
    position: relative;
    overflow: hidden;
}
.page-header::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at bottom, rgba(201,169,97,.15), transparent 60%);
}
.page-header > .container { position: relative; z-index: 2; }
.page-header h1 {
    font-size: 2.5rem;
    font-weight: 800;
    letter-spacing: -.5px;
    margin-bottom: .5rem;
}
.page-header h1 .script {
    font-family: var(--font-script);
    color: var(--gold-light);
    font-weight: 400;
    font-size: 1.1em;
    padding: 0 .1em;
}
.page-header p {
    opacity: .9;
    font-size: 1rem;
    max-width: 620px;
    margin: 0 auto;
}
.breadcrumb-custom {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: .5rem;
    font-size: .85rem;
    margin-top: .75rem;
    flex-wrap: wrap;
}
.breadcrumb-custom a {
    color: rgba(255,255,255,.75);
    text-decoration: none;
    transition: var(--transition);
}
.breadcrumb-custom a:hover { color: var(--gold-light); }
.breadcrumb-custom .active { color: #fff; font-weight: 500; }

/* ---------- WHATSAPP FLOAT ---------- */
.wa-float {
    position: fixed;
    bottom: 24px;
    right: 24px;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: #25D366;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
    box-shadow: 0 6px 20px rgba(37,211,102,.4);
    z-index: 1000;
    transition: var(--transition);
    text-decoration: none;
    animation: pulse-wa 2s ease-in-out infinite;
}
.wa-float:hover {
    transform: scale(1.1);
    color: #fff;
    box-shadow: 0 8px 28px rgba(37,211,102,.55);
    animation: none;
}
@keyframes pulse-wa {
    0%, 100% { box-shadow: 0 6px 20px rgba(37,211,102,.4), 0 0 0 0 rgba(37,211,102,.5); }
    50% { box-shadow: 0 6px 20px rgba(37,211,102,.4), 0 0 0 15px rgba(37,211,102,0); }
}

/* ---------- FORMS ---------- */
.form-control, .form-select {
    border-radius: var(--radius-sm);
    border: 1.5px solid var(--gray-200);
    padding: .65rem 1rem;
    font-size: .92rem;
    transition: var(--transition);
    background: #fff;
}
.form-control:focus, .form-select:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(11,37,69,.1);
    outline: none;
}
.form-label {
    color: var(--gray-700);
}

/* ---------- PAGINATION ---------- */
.pagination .page-link {
    border-radius: var(--radius-sm);
    margin: 0 3px;
    border: 1px solid var(--gray-200);
    color: var(--gray-600);
    font-weight: 500;
    font-size: .88rem;
    padding: .5rem .85rem;
}
.pagination .page-link:hover {
    background: var(--primary-lighter);
    color: var(--primary);
    border-color: var(--primary-light);
}
.pagination .page-item.active .page-link {
    background: var(--primary);
    border-color: var(--primary);
    color: #fff;
}

/* ---------- PLACEHOLDER IMG ---------- */
.placeholder-img {
    background: linear-gradient(135deg, var(--primary-lighter), var(--gray-100));
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-size: 2.5rem;
    overflow: hidden;
    position: relative;
}
.placeholder-img::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
      radial-gradient(circle at 20% 30%, rgba(255,255,255,.5) 0%, transparent 40%),
      radial-gradient(circle at 80% 70%, rgba(201,169,97,.15) 0%, transparent 50%);
}

/* ---------- STATS ---------- */
.stat-box {
    text-align: center;
    padding: 1.25rem;
}
.stat-box .stat-num {
    font-size: 2.5rem;
    font-weight: 800;
    line-height: 1;
    margin-bottom: .25rem;
    background: linear-gradient(135deg, var(--primary), var(--gold-dark));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.stat-box .stat-label {
    font-size: .85rem;
    color: var(--gray-500);
}

/* ---------- FOOTER ---------- */
footer {
    background: linear-gradient(180deg, var(--primary-darker), var(--primary)) !important;
    color: rgba(255,255,255,.75) !important;
}
footer h5, footer h6 { color: #fff; }
footer .text-white-50 { color: rgba(255,255,255,.6) !important; }
footer a.text-white-50:hover { color: var(--gold-light) !important; }
footer .footer-brand-tag {
    font-family: var(--font-script);
    color: var(--gold-light);
    font-size: .9rem;
}

/* ---------- RESPONSIVE ---------- */
@media (max-width: 991px) {
    .hero-section { min-height: 500px; }
    .hero-section h1 { font-size: 2.4rem; }
    .section-title { font-size: 1.7rem; }
    .detail-main-img { height: 300px; }
    .cta-section h2, .cta-section h3 { font-size: 1.6rem; }
    .navbar-brand img { height: 40px; }
    .navbar-brand .brand-name { font-size: 1.05rem; }
}
@media (max-width: 576px) {
    .hero-section { min-height: 440px; padding: 2rem 0; }
    .hero-section h1 { font-size: 1.9rem; letter-spacing: -.5px; }
    .hero-section p.hero-lead { font-size: .95rem; }
    .section-title { font-size: 1.4rem; }
    .wa-float { bottom: 16px; right: 16px; width: 52px; height: 52px; font-size: 1.5rem; }
    .booking-sidebar, .filter-section { position: static; }
    .page-header { padding: 3rem 0 2.5rem; }
    .page-header h1 { font-size: 1.85rem; }
    .stat-box .stat-num { font-size: 1.9rem; }
    .navbar-brand img { height: 36px; }
    .navbar-brand .brand-tag { display: none; }
}

/* ---------- ADMIN STYLES ---------- */
body.admin-body {
    background: var(--gray-50);
}
.admin-sidebar {
    width: 260px;
    min-height: 100vh;
    background: linear-gradient(180deg, var(--primary-darker) 0%, var(--primary) 100%);
    color: #fff;
    position: fixed;
    left: 0;
    top: 0;
    z-index: 1040;
    transition: var(--transition);
    overflow-y: auto;
    box-shadow: 4px 0 24px rgba(6,24,56,.15);
}
.admin-sidebar .sidebar-brand {
    padding: 1.15rem 1.4rem;
    font-size: 1.05rem;
    font-weight: 700;
    border-bottom: 1px solid rgba(255,255,255,.1);
}
.admin-sidebar .sidebar-brand a {
    color: #fff;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: .6rem;
}
.admin-sidebar .sidebar-brand img {
    width: 36px;
    height: 36px;
    border-radius: 8px;
    object-fit: cover;
    background: #fff;
    padding: 3px;
}
.admin-sidebar .sidebar-brand .tag {
    font-family: var(--font-script);
    font-size: .72rem;
    color: var(--gold-light);
    display: block;
    line-height: 1;
    margin-top: 2px;
}
.admin-sidebar .sidebar-nav {
    padding: .75rem 0;
}
.admin-sidebar .sidebar-heading {
    padding: 1rem 1.5rem .5rem;
    font-size: .66rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    color: rgba(201,169,97,.85);
    text-transform: uppercase;
}
.admin-sidebar .sidebar-link {
    color: rgba(255,255,255,.75);
    padding: .65rem 1.5rem;
    font-size: .9rem;
    font-weight: 500;
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: .8rem;
    text-decoration: none;
    border-left: 3px solid transparent;
}
.admin-sidebar .sidebar-link:hover {
    color: #fff;
    background: rgba(255,255,255,.06);
    border-left-color: rgba(201,169,97,.5);
}
.admin-sidebar .sidebar-link.active {
    color: #fff;
    background: rgba(201,169,97,.12);
    border-left-color: var(--gold);
}
.admin-sidebar .sidebar-link i {
    width: 20px;
    text-align: center;
    font-size: 1.05rem;
}
/* Highlighted shortcut (Pengaturan Tampilan) */
.admin-sidebar .sidebar-link-highlight {
    background: rgba(201,169,97,.14);
    border-left-color: var(--gold);
    color: #fff;
    font-weight: 600;
}
.admin-sidebar .sidebar-link-highlight i { color: var(--gold-light); }
.admin-sidebar .sidebar-link-highlight:hover {
    background: rgba(201,169,97,.22);
    border-left-color: var(--gold);
}

/* ---------- DASHBOARD: QUICK ACTIONS ---------- */
.quick-action {
    display: flex !important;
    flex-direction: row;
    align-items: center;
    gap: .85rem;
    padding: 1rem 1.15rem;
    background: #fff;
    border: 1px solid var(--gray-200);
    border-radius: var(--radius);
    text-decoration: none !important;
    transition: var(--transition);
    height: 100%;
}
.quick-action:hover {
    border-color: var(--gold);
    box-shadow: var(--shadow-md);
    transform: translateY(-2px);
}
.quick-action-gold {
    border-color: var(--gold);
    background: linear-gradient(135deg, var(--gold-lighter), #fff);
}
.quick-action .qa-icon {
    width: 46px;
    height: 46px;
    min-width: 46px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    flex: 0 0 46px;
}
.quick-action .qa-text {
    display: flex;
    flex-direction: column;
    min-width: 0;
    gap: 2px;
}
.quick-action .qa-title {
    display: block;
    font-size: .9rem;
    font-weight: 700;
    line-height: 1.25;
    color: var(--dark);
}
.quick-action .qa-desc {
    display: block;
    font-size: .76rem;
    line-height: 1.3;
    color: var(--gray-500);
    font-weight: 400;
}
.quick-action:hover .qa-title { color: var(--primary); }

/* ---------- DASHBOARD: REVENUE CARD ---------- */
.revenue-card {
    background: linear-gradient(135deg, var(--primary-darker) 0%, var(--primary) 60%, var(--primary-mid) 100%);
    color: #fff;
    border-radius: var(--radius);
    padding: 1.5rem;
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-md);
}
.revenue-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at top right, rgba(201,169,97,.25), transparent 60%);
    pointer-events: none;
}
.revenue-card > * { position: relative; z-index: 1; }
.revenue-card h3 { font-size: 1.9rem; }

/* ---------- DASHBOARD: ATTENTION TILES ---------- */
.attention-tile {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    gap: .3rem;
    padding: .9rem .5rem;
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-sm);
    text-decoration: none !important;
    transition: var(--transition);
    height: 100%;
    background: #fff;
}
.attention-tile:hover {
    border-color: var(--primary);
    box-shadow: var(--shadow);
    transform: translateY(-2px);
}
.attention-tile.has-items {
    border-color: var(--gold);
    background: var(--gold-lighter);
}
.attention-tile .at-icon {
    width: 36px;
    height: 36px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
}
.attention-tile .at-count {
    font-size: 1.35rem;
    font-weight: 800;
    line-height: 1;
    color: var(--dark);
}
.attention-tile.has-items .at-count { color: var(--gold-dark); }
.attention-tile .at-label {
    font-size: .72rem;
    color: var(--gray-500);
    line-height: 1.2;
}

/* ---------- DASHBOARD: STAT CARD LINK ---------- */
.stat-card-link {
    text-decoration: none !important;
    cursor: pointer;
}
.stat-card-link:hover .stat-value { color: var(--primary); }
.stat-card .stat-sub {
    font-size: .74rem;
    color: var(--gold-dark);
    font-weight: 600;
}

/* ---------- DASHBOARD: MISC ---------- */
.empty-state {
    text-align: center;
    padding: 2rem 1rem;
    color: var(--gray-400);
}
.empty-state i {
    font-size: 2.25rem;
    display: block;
    margin-bottom: .5rem;
    opacity: .5;
}
.empty-state p {
    margin: 0;
    font-size: .85rem;
}
.rank-badge {
    width: 28px;
    height: 28px;
    min-width: 28px;
    border-radius: 8px;
    background: linear-gradient(135deg, var(--primary), var(--primary-mid));
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: .8rem;
    flex-shrink: 0;
}
.pending-testi {
    padding: .85rem 1rem;
    border: 1px solid var(--gray-200);
    border-left: 3px solid var(--warning);
    border-radius: var(--radius-sm);
    margin-bottom: .6rem;
    background: #fff;
}
.pending-testi:last-child { margin-bottom: 0; }
.min-w-0 { min-width: 0; }
.admin-content {
    margin-left: 260px;
    min-height: 100vh;
    background: var(--gray-50);
}
.admin-topbar {
    background: #fff;
    padding: .85rem 1.5rem;
    border-bottom: 1px solid var(--gray-200);
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: sticky;
    top: 0;
    z-index: 10;
}
.admin-topbar .sidebar-toggle {
    color: var(--gray-700);
    padding: 0;
    display: none;
}

.stat-card {
    background: #fff;
    border-radius: var(--radius);
    padding: 1.35rem;
    border: 1px solid var(--gray-200);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    gap: .45rem;
    height: 100%;
    text-decoration: none;
}
.stat-card:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-2px);
    border-color: var(--gold-light);
}
.stat-card .stat-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
}
.stat-card .stat-value {
    font-size: 1.75rem;
    font-weight: 800;
    color: var(--dark);
    line-height: 1;
}
.stat-card .stat-label {
    font-size: .82rem;
    color: var(--gray-500);
    font-weight: 500;
}

.admin-table {
    background: #fff;
    border-radius: var(--radius);
    border: 1px solid var(--gray-200);
    overflow: hidden;
}
.admin-table th {
    background: var(--gray-50);
    font-weight: 600;
    font-size: .78rem;
    text-transform: uppercase;
    letter-spacing: .5px;
    color: var(--gray-500);
    padding: .85rem 1rem;
    border-bottom: 1px solid var(--gray-200);
}
.admin-table td {
    padding: .85rem 1rem;
    font-size: .88rem;
    vertical-align: middle;
    border-bottom: 1px solid var(--gray-100);
}
.admin-table tr:last-child td { border-bottom: none; }

.status-badge {
    padding: .3rem .7rem;
    border-radius: 100px;
    font-size: .72rem;
    font-weight: 600;
    display: inline-block;
}
.status-baru { background: #DBEAFE; color: #1E40AF; }
.status-diproses { background: #FEF3C7; color: #92400E; }
.status-menunggu_pembayaran { background: #FEE2E2; color: #991B1B; }
.status-terkonfirmasi { background: #D1FAE5; color: #065F46; }
.status-selesai { background: #E0E7FF; color: #3730A3; }
.status-dibatalkan { background: var(--gray-100); color: var(--gray-500); }
.status-penawaran_terkirim { background: #FEF3C7; color: #92400E; }

@media (max-width: 991px) {
    .admin-sidebar {
        transform: translateX(-100%);
    }
    .admin-sidebar.show {
        transform: translateX(0);
    }
    .admin-content {
        margin-left: 0;
    }
    .admin-topbar .sidebar-toggle {
        display: inline-block;
    }
}

/* Admin login page */
.admin-login-page {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background:
      linear-gradient(135deg, rgba(6,24,56,.85), rgba(11,37,69,.75)),
      url('../img/nature.jpg') center/cover;
    padding: 1rem;
}
.admin-login-card {
    width: 100%;
    max-width: 420px;
    background: #fff;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-xl);
    padding: 2.5rem 2rem;
}

/* ====== User Auth ====== */
.auth-card {
    background: #fff;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    padding: 2rem;
    border: 1px solid var(--gray-200);
}
.auth-card .input-group-text {
    background: var(--gray-50);
    border-color: var(--gray-200);
    color: var(--gray-500);
}

.btn-user-account {
    display: inline-flex;
    align-items: center;
    gap: .35rem;
    background: var(--primary-lighter);
    border: 1.5px solid var(--primary-light);
    color: var(--primary);
    font-size: .82rem;
    font-weight: 600;
    padding: .35rem .7rem;
    border-radius: 100px;
    transition: var(--transition);
}
.btn-user-account:hover,
.btn-user-account:focus,
.btn-user-account.show {
    background: var(--primary);
    color: #fff;
    border-color: var(--primary);
}
.btn-user-account::after {
    font-size: .6rem;
    margin-left: .15rem;
}

.btn-user-login {
    display: inline-flex;
    align-items: center;
    gap: .35rem;
    background: var(--primary);
    border: 1.5px solid var(--primary);
    color: #fff;
    font-size: .82rem;
    font-weight: 600;
    padding: .35rem .75rem;
    border-radius: 100px;
    transition: var(--transition);
}
.btn-user-login:hover {
    background: var(--primary-dark);
    border-color: var(--primary-dark);
    color: #fff;
}

.user-avatar-sm {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 26px;
    height: 26px;
    border-radius: 50%;
    background: var(--primary);
    color: #fff;
    font-size: .72rem;
    font-weight: 700;
    line-height: 1;
}
.btn-user-account:hover .user-avatar-sm,
.btn-user-account.show .user-avatar-sm {
    background: #fff;
    color: var(--primary);
}

.user-avatar-large {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary), var(--primary-mid));
    color: #fff;
    font-size: 2rem;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
}

/* Login required modal */
.login-required-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,.5);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
}
.login-required-card {
    background: #fff;
    border-radius: var(--radius-lg);
    padding: 2rem;
    max-width: 420px;
    width: 100%;
    text-align: center;
    box-shadow: var(--shadow-xl);
    animation: fadeInUp .3s ease;
}
@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}
