@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,500;0,600;0,700;1,500&family=Plus+Jakarta+Sans:wght@400;500;600;700&display=swap');

:root {
    --premium-navy: #0c1b2e;
    --premium-navy-mid: #152a45;
    --premium-navy-soft: #1e3a5f;
    --premium-gold: #c9a962;
    --premium-gold-light: #e8d5a8;
    --premium-gold-dark: #a68b4b;
    --premium-cream: #f8f6f2;
    --premium-sand: #efe9e0;
    --premium-text: #1a2332;
    --premium-muted: #5c6578;
    --premium-radius: 1rem;
    --premium-radius-lg: 1.5rem;
    --premium-shadow: 0 20px 50px rgba(12, 27, 46, 0.12);
    --premium-shadow-lg: 0 30px 70px rgba(12, 27, 46, 0.18);
    --hero-overlay: linear-gradient(135deg, rgba(12, 27, 46, 0.88) 0%, rgba(21, 42, 69, 0.82) 45%, rgba(12, 27, 46, 0.9) 100%);
    --booking-blue: #1e3a5f;
    --booking-blue-dark: #0c1b2e;
    --booking-blue-light: #2d5a8a;
}

* {
    box-sizing: border-box;
}

body {
    font-family: "Plus Jakarta Sans", system-ui, sans-serif;
    color: var(--premium-text);
    background: var(--premium-cream);
    -webkit-font-smoothing: antialiased;
}

h1, h2, h3, .display-font {
    font-family: "Cormorant Garamond", Georgia, serif;
    font-weight: 600;
}

/* ── Header ── */
.top-announcement {
    background: var(--premium-navy);
    color: rgba(255, 255, 255, 0.85);
    font-size: 0.8rem;
    text-align: center;
    padding: 0.45rem 1rem;
    border-bottom: 1px solid rgba(201, 169, 98, 0.25);
}

.top-announcement strong {
    color: var(--premium-gold-light);
}

.site-header {
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(12, 27, 46, 0.06);
    position: sticky;
    top: 0;
    z-index: 1030;
    overflow: visible;
}

.site-header .navbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: nowrap;
    width: 100%;
    padding-top: 0.75rem;
    padding-bottom: 0.75rem;
    overflow: visible;
}

.navbar-brand {
    font-family: "Cormorant Garamond", serif;
    font-size: 1.65rem;
    font-weight: 700;
    color: var(--premium-navy) !important;
    letter-spacing: 0.02em;
    max-width: calc(100% - 58px);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    margin-right: 0.5rem;
}

.site-logo {
    display: inline-flex;
    align-items: center;
    line-height: 1;
    text-decoration: none;
    flex-shrink: 0;
}

.site-logo-img {
    display: block;
    height: 63px;
    width: auto;
    max-width: min(252px, 42vw);
    object-fit: contain;
}

.site-footer .site-logo-img {
    height: 57px;
    max-width: 270px;
}

.admin-logo {
    display: inline-flex !important;
    align-items: center;
    gap: 0.65rem;
    max-width: none;
    overflow: visible;
    white-space: nowrap;
}

.admin-logo .site-logo-img {
    height: 51px;
    max-width: 210px;
}

.mobile-nav-brand.site-logo {
    max-width: calc(100% - 3rem);
}

.mobile-nav-brand .site-logo-img {
    height: 54px;
    max-width: 225px;
}

.navbar-brand span {
    color: var(--premium-gold-dark);
}

.nav-link {
    color: var(--premium-text) !important;
    font-weight: 500;
    font-size: 0.92rem;
    padding: 0.5rem 0.85rem !important;
}

.nav-link:hover,
.nav-link.active {
    color: var(--premium-gold-dark) !important;
}

@media (min-width: 992px) {
    .site-header .navbar {
        display: grid;
        grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
        align-items: center;
        column-gap: 1rem;
        min-height: 4.75rem;
    }

    .site-header .navbar-brand {
        grid-column: 1;
        grid-row: 1;
        justify-self: start;
        max-width: 100%;
        margin-right: 0;
    }

    .site-header .site-desktop-nav-links {
        grid-column: 2;
        grid-row: 1;
        justify-self: center;
        flex-wrap: nowrap;
        min-width: 0;
    }

    .site-header .site-desktop-nav-links .nav-link {
        white-space: nowrap;
        padding-left: 0.55rem !important;
        padding-right: 0.55rem !important;
    }

    .site-header .site-desktop-nav-auth {
        grid-column: 3;
        grid-row: 1;
        justify-self: end;
        flex-shrink: 0;
        min-width: 0;
    }

    .site-header .site-desktop-nav-auth .nav-item:not(.dropdown) {
        display: flex;
        align-items: center;
    }

    .site-header .site-account-dropdown {
        position: relative;
    }

    .site-header .site-account-toggle {
        display: inline-flex;
        align-items: center;
        max-width: 10rem;
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: nowrap;
    }

    .site-header .site-account-menu {
        position: absolute !important;
        top: calc(100% + 0.35rem);
        right: 0;
        left: auto;
        margin: 0;
        min-width: 11.5rem;
        z-index: 1050;
    }
}

/* ── Mobile hamburger menu ── */
.mobile-menu-btn {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
    width: 46px;
    height: 46px;
    padding: 0;
    border: 1px solid rgba(12, 27, 46, 0.1);
    border-radius: 12px;
    background: #fff;
    box-shadow: 0 2px 12px rgba(12, 27, 46, 0.08);
    cursor: pointer;
    transition: border-color 0.2s, box-shadow 0.2s, transform 0.2s;
    margin-left: auto;
}

.mobile-menu-btn:hover {
    border-color: var(--premium-gold);
    box-shadow: 0 4px 16px rgba(12, 27, 46, 0.12);
}

.mobile-menu-btn.is-open .mobile-menu-bar:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}

.mobile-menu-btn.is-open .mobile-menu-bar:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
}

.mobile-menu-btn.is-open .mobile-menu-bar:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}

.mobile-menu-bar {
    display: block;
    width: 20px;
    height: 2px;
    background: var(--premium-navy);
    border-radius: 2px;
    transition: transform 0.3s ease, opacity 0.2s ease;
}

.mobile-nav-overlay {
    position: fixed;
    inset: 0;
    z-index: 2000;
    pointer-events: none;
    visibility: hidden;
}

.mobile-nav-overlay.is-open {
    pointer-events: auto;
    visibility: visible;
}

.mobile-nav-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(12, 27, 46, 0.55);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    opacity: 0;
    transition: opacity 0.35s ease;
}

.mobile-nav-overlay.is-open .mobile-nav-backdrop {
    opacity: 1;
}

.mobile-nav-panel {
    position: absolute;
    top: 0;
    right: 0;
    width: min(320px, 88vw);
    height: 100%;
    background: linear-gradient(180deg, #fff 0%, var(--premium-cream) 100%);
    box-shadow: -12px 0 48px rgba(12, 27, 46, 0.2);
    display: flex;
    flex-direction: column;
    padding: 1.25rem 1.25rem calc(1.25rem + env(safe-area-inset-bottom, 0));
    transform: translateX(100%);
    transition: transform 0.38s cubic-bezier(0.4, 0, 0.2, 1);
    border-left: 3px solid var(--premium-gold);
}

.mobile-nav-overlay.is-open .mobile-nav-panel {
    transform: translateX(0);
}

.mobile-nav-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1.75rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(12, 27, 46, 0.08);
}

.mobile-nav-brand {
    font-family: "Cormorant Garamond", serif;
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--premium-navy);
    text-decoration: none;
}

.mobile-nav-close {
    width: 40px;
    height: 40px;
    border: none;
    background: var(--premium-sand);
    border-radius: 50%;
    position: relative;
    cursor: pointer;
    flex-shrink: 0;
}

.mobile-nav-close span {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 16px;
    height: 2px;
    background: var(--premium-navy);
    border-radius: 1px;
}

.mobile-nav-close span:first-child {
    transform: translate(-50%, -50%) rotate(45deg);
}

.mobile-nav-close span:last-child {
    transform: translate(-50%, -50%) rotate(-45deg);
}

.mobile-nav-links {
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
    flex: 1;
    overflow-y: auto;
}

.mobile-nav-link {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.95rem 1rem;
    border-radius: 0.75rem;
    text-decoration: none;
    color: var(--premium-navy);
    font-weight: 600;
    font-size: 1.05rem;
    transition: background 0.2s, color 0.2s, transform 0.2s;
}

.mobile-nav-link:hover,
.mobile-nav-link:focus {
    background: rgba(201, 169, 98, 0.12);
    color: var(--premium-gold-dark);
}

.mobile-nav-link.active {
    background: var(--premium-navy);
    color: #fff;
}

.mobile-nav-link.active .mobile-nav-link-arrow {
    color: var(--premium-gold-light);
}

.mobile-nav-link-arrow {
    font-size: 1.1rem;
    opacity: 0.6;
    transition: transform 0.2s;
}

.mobile-nav-link:hover .mobile-nav-link-arrow {
    transform: translateX(3px);
    opacity: 1;
}

.mobile-nav-actions {
    padding-top: 1.25rem;
    margin-top: auto;
    border-top: 1px solid rgba(12, 27, 46, 0.08);
}

.mobile-nav-footer {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    margin-top: 1rem;
    font-size: 0.78rem;
    color: var(--premium-muted);
    text-align: center;
}

body.mobile-nav-open {
    overflow: hidden;
}

/* ── Buttons ── */
.btn-booking,
.btn-premium {
    background: linear-gradient(135deg, var(--premium-gold) 0%, var(--premium-gold-dark) 100%);
    border: none;
    color: var(--premium-navy);
    font-weight: 600;
    border-radius: 999px;
    padding: 0.65rem 1.5rem;
    transition: transform 0.2s, box-shadow 0.2s;
}

.btn-booking:hover,
.btn-premium:hover {
    background: linear-gradient(135deg, var(--premium-gold-light) 0%, var(--premium-gold) 100%);
    color: var(--premium-navy);
    transform: translateY(-1px);
    box-shadow: 0 8px 24px rgba(201, 169, 98, 0.35);
}

.btn-premium-outline {
    border: 1px solid var(--premium-navy);
    color: var(--premium-navy);
    background: transparent;
    border-radius: 999px;
    font-weight: 600;
    font-size: 0.85rem;
}

.btn-premium-outline:hover {
    background: var(--premium-navy);
    color: #fff;
    border-color: var(--premium-navy);
}

.btn-premium-dark {
    background: var(--premium-navy);
    color: #fff;
    border-radius: 999px;
    font-weight: 600;
    border: none;
}

.btn-premium-dark:hover {
    background: var(--premium-navy-mid);
    color: #fff;
}

/* ── Hero ── */
.hero-full {
    position: relative;
    min-height: 620px;
    background: var(--premium-navy);
    color: #fff;
    overflow: hidden;
    border-radius: 0 0 var(--premium-radius-lg) var(--premium-radius-lg);
    margin: -1rem -0.75rem 0;
}

.hero-full::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image: var(--hero-bg-image, url("https://images.unsplash.com/photo-1469474968028-56623f02e42e?auto=format&fit=crop&w=1800&q=80"));
    background-size: cover;
    background-position: center;
    opacity: 0.35;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: var(--hero-overlay);
}

.hero-content {
    position: relative;
    z-index: 2;
    padding: 5rem 0 3.5rem;
}

.hero-badge {
    display: inline-block;
    background: rgba(201, 169, 98, 0.15);
    border: 1px solid rgba(201, 169, 98, 0.45);
    color: var(--premium-gold-light);
    border-radius: 999px;
    padding: 0.4rem 1.1rem;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    margin-bottom: 1.25rem;
}

.hero-title {
    font-family: "Cormorant Garamond", serif;
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 600;
    line-height: 1.1;
    letter-spacing: -0.02em;
}

.hero-title .highlight {
    color: var(--premium-gold);
    font-style: italic;
}

.hero-lead {
    font-size: 1.1rem;
    opacity: 0.9;
    max-width: 540px;
    line-height: 1.7;
}

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

.hero-stat strong {
    display: block;
    font-family: "Cormorant Garamond", serif;
    font-size: 1.75rem;
    color: var(--premium-gold);
}

.hero-stat span {
    font-size: 0.8rem;
    opacity: 0.75;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

.search-card {
    background: rgba(255, 255, 255, 0.98);
    border-radius: var(--premium-radius-lg);
    box-shadow: var(--premium-shadow-lg);
    padding: 1.5rem;
    margin-top: 2rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.search-card .form-label {
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--premium-muted);
}

.feature-pill {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: var(--premium-radius);
    padding: 0.85rem 1rem;
    text-align: center;
    font-size: 0.82rem;
    backdrop-filter: blur(4px);
}

.feature-pill-icon {
    color: var(--premium-gold);
    font-size: 1.1rem;
    margin-bottom: 0.25rem;
}

/* ── Sections ── */
.section-padding {
    padding: 4rem 0;
}

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

.section-eyebrow {
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--premium-gold-dark);
    margin-bottom: 0.5rem;
}

.section-title {
    font-family: "Cormorant Garamond", serif;
    font-weight: 600;
    color: var(--premium-navy);
    font-size: clamp(1.75rem, 3vw, 2.5rem);
    margin-bottom: 0;
}

.section-subtitle {
    color: var(--premium-muted);
    max-width: 560px;
    margin-top: 0.75rem;
}

/* ── Tour cards ── */
.tour-card-premium {
    border-radius: var(--premium-radius-lg) !important;
    overflow: hidden;
    background: #fff;
    box-shadow: 0 4px 24px rgba(12, 27, 46, 0.06);
    transition: transform 0.35s ease, box-shadow 0.35s ease;
}

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

.tour-card-media {
    position: relative;
    display: block;
    overflow: hidden;
    aspect-ratio: 5 / 3;
    min-height: 200px;
    background: linear-gradient(135deg, var(--premium-navy-mid), var(--premium-navy));
}

.tour-card-img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    -webkit-object-fit: cover;
    transition: transform 0.5s ease;
    font-size: 0;
}

.tour-card-premium:hover .tour-card-img {
    transform: scale(1.05);
}

.tour-card-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(12, 27, 46, 0.5) 0%, transparent 50%);
    pointer-events: none;
}

.tour-card-badge {
    position: absolute;
    top: 1rem;
    left: 1rem;
    background: var(--premium-gold);
    color: var(--premium-navy);
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    padding: 0.35rem 0.75rem;
    border-radius: 999px;
}

.tour-card-category {
    position: absolute;
    bottom: 1rem;
    right: 1rem;
    max-width: calc(100% - 8rem);
    background: rgba(12, 27, 46, 0.85);
    color: #fff;
    font-size: 0.65rem;
    font-weight: 600;
    letter-spacing: 0.04em;
    padding: 0.35rem 0.65rem;
    border-radius: 999px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.tour-card-discount {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: #dc3545;
    color: #fff;
    font-size: 0.75rem;
    font-weight: 700;
    padding: 0.3rem 0.6rem;
    border-radius: 0.35rem;
}

.tour-card-duration {
    position: absolute;
    bottom: 1rem;
    left: 1rem;
    background: rgba(255, 255, 255, 0.95);
    color: var(--premium-navy);
    font-size: 0.75rem;
    font-weight: 600;
    padding: 0.35rem 0.75rem;
    border-radius: 999px;
}

.tour-card-meta {
    color: var(--premium-gold-dark);
    font-weight: 600;
    letter-spacing: 0.08em;
}

.tour-card-title a {
    color: var(--premium-navy);
    transition: color 0.2s;
}

.tour-card-title a:hover {
    color: var(--premium-gold-dark);
}

.tour-card-desc {
    color: var(--premium-muted);
    line-height: 1.6;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.tour-card-rating .stars {
    color: var(--premium-gold);
}

.price-tag,
.price-tag-lg {
    color: var(--premium-navy);
    font-weight: 700;
}

.price-tag-lg {
    font-size: 1.35rem;
    font-family: "Cormorant Garamond", serif;
}

.text-booking-blue {
    color: var(--booking-blue-light);
}

/* ── Why us / features ── */
.premium-feature-card {
    background: #fff;
    border-radius: var(--premium-radius-lg);
    padding: 2rem;
    border: 1px solid rgba(12, 27, 46, 0.06);
    transition: box-shadow 0.3s;
}

.premium-feature-card:hover {
    box-shadow: var(--premium-shadow);
}

.premium-feature-icon {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--premium-sand), var(--premium-cream));
    border: 1px solid rgba(201, 169, 98, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.35rem;
    color: var(--premium-gold-dark);
    margin-bottom: 1.25rem;
}

/* ── Destinations ── */
.dest-card {
    position: relative;
    border-radius: var(--premium-radius-lg);
    overflow: hidden;
    height: 200px;
    display: block;
    text-decoration: none;
}

.dest-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

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

.dest-card-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(12, 27, 46, 0.85), transparent 60%);
    display: flex;
    align-items: flex-end;
    padding: 1.25rem;
    color: #fff;
}

.dest-card h4 {
    font-family: "Cormorant Garamond", serif;
    font-size: 1.5rem;
    margin: 0;
}

/* ── Testimonials ── */
.testimonial-card {
    background: #fff;
    border-radius: var(--premium-radius-lg);
    padding: 2rem;
    border: 1px solid rgba(12, 27, 46, 0.06);
    height: 100%;
}

.testimonial-stars {
    color: var(--premium-gold);
    margin-bottom: 1rem;
}

.testimonial-text {
    font-style: italic;
    color: var(--premium-muted);
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.testimonial-author {
    font-weight: 600;
    color: var(--premium-navy);
}

/* ── CTA band ── */
.cta-premium {
    background: var(--premium-navy);
    color: #fff;
    border-radius: var(--premium-radius-lg);
    padding: 3.5rem 2rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-premium::before {
    content: "";
    position: absolute;
    top: -50%;
    right: -20%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(201, 169, 98, 0.15) 0%, transparent 70%);
    pointer-events: none;
}

.cta-premium h2 {
    color: #fff;
    font-size: clamp(1.75rem, 3vw, 2.75rem);
}

.cta-premium p {
    opacity: 0.85;
    max-width: 520px;
    margin: 0 auto 1.5rem;
}

/* ── Detail page ── */
.page-hero-bar {
    background: var(--premium-navy);
    color: #fff;
    padding: 2rem 0;
    margin-bottom: 2rem;
    border-radius: var(--premium-radius-lg);
}

.breadcrumb-premium {
    font-size: 0.85rem;
    margin-bottom: 0.5rem;
}

.breadcrumb-premium a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
}

.breadcrumb-premium a:hover {
    color: var(--premium-gold);
}

.detail-hero {
    max-height: 520px;
    object-fit: cover;
    border-radius: var(--premium-radius-lg);
}

.thumb-img {
    height: 80px;
    width: 100%;
    object-fit: cover;
    border-radius: 0.65rem;
    cursor: pointer;
    opacity: 0.8;
    border: 2px solid transparent;
    transition: all 0.2s;
}

.thumb-img:hover,
.thumb-img.active {
    opacity: 1;
    border-color: var(--premium-gold);
}

.booking-sidebar {
    border-radius: var(--premium-radius-lg);
    border: 1px solid rgba(12, 27, 46, 0.08);
    box-shadow: var(--premium-shadow);
    background: #fff;
    position: sticky;
    top: 100px;
    align-self: flex-start;
    z-index: 2;
}

.booking-sidebar-premium {
    border-top: 4px solid var(--premium-gold);
}

.included-list li {
    padding: 0.5rem 0;
    border-bottom: 1px solid var(--premium-sand);
    display: flex;
    gap: 0.75rem;
    align-items: flex-start;
}

.included-list li::before {
    content: "✓";
    color: var(--premium-gold-dark);
    font-weight: 700;
}

.itinerary-day {
    border-left: 3px solid var(--premium-gold);
    padding-left: 1.5rem;
    margin-bottom: 2rem;
}

.itinerary-day-num {
    font-family: "Cormorant Garamond", serif;
    font-size: 1.25rem;
    color: var(--premium-gold-dark);
    font-weight: 600;
}

/* ── Filter bar ── */
.filter-bar-premium {
    background: #fff;
    border-radius: var(--premium-radius-lg);
    padding: 1.5rem;
    box-shadow: 0 4px 24px rgba(12, 27, 46, 0.06);
    border: 1px solid rgba(12, 27, 46, 0.05);
    margin-bottom: 2rem;
}

/* ── Contact ── */
.contact-info-card {
    background: var(--premium-navy);
    color: #fff;
    border-radius: var(--premium-radius-lg);
    padding: 2rem;
}

.contact-info-card a {
    color: var(--premium-gold-light);
}

/* ── Footer ── */
.site-footer {
    background: var(--premium-navy);
    color: rgba(255, 255, 255, 0.8);
    margin-top: 4rem;
    border-top: 3px solid var(--premium-gold);
}

.site-footer h5, .site-footer h6 {
    color: #fff;
    font-family: "Cormorant Garamond", serif;
}

.site-footer a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color 0.2s;
}

.site-footer a:hover {
    color: var(--premium-gold);
}

.footer-credit {
    opacity: 0.55;
    letter-spacing: 0.02em;
}

.footer-credit a {
    color: rgba(255, 255, 255, 0.65);
    text-decoration: underline;
    text-underline-offset: 2px;
}

.footer-trust {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
    margin-top: 1rem;
}

.footer-trust span {
    font-size: 0.8rem;
    opacity: 0.7;
}

.footer-trust strong {
    color: var(--premium-gold-light);
}

/* ── Misc ── */
.tour-img-placeholder {
    object-fit: cover;
    background: linear-gradient(135deg, var(--premium-navy-mid), var(--premium-navy));
}

.detail-hero.tour-img-placeholder {
    min-height: 320px;
}

.page-detail-wrap {
    position: relative;
    z-index: 1;
    margin-bottom: 2rem;
}

.tour-detail-row,
.booking-page-row {
    align-items: flex-start;
}

.booking-form-card {
    background: #fff;
    border-radius: var(--premium-radius-lg);
    padding: 2rem;
    border: 1px solid rgba(12, 27, 46, 0.06);
    box-shadow: 0 4px 24px rgba(12, 27, 46, 0.04);
}

.booking-tour-preview {
    background: #fff;
    border-radius: var(--premium-radius-lg);
    overflow: hidden;
    border: 1px solid rgba(12, 27, 46, 0.06);
    box-shadow: 0 4px 24px rgba(12, 27, 46, 0.04);
}

.booking-tour-preview .detail-hero {
    max-height: 280px;
    border-radius: 0;
}

.booking-tour-preview-meta {
    padding: 1rem 1.25rem;
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
    font-size: 0.9rem;
    color: var(--premium-muted);
}

.booking-tour-preview-meta strong {
    color: var(--premium-navy);
    font-size: 1.05rem;
}

.related-tours-section {
    margin-bottom: 2rem;
}

.itinerary-day-img {
    max-height: 160px;
    width: 100%;
    object-fit: cover;
}

main.container-fluid {
    max-width: 1280px;
    padding-bottom: 2rem;
}

.content-page h5 {
    margin-top: 1.25rem;
    font-family: "Cormorant Garamond", serif;
}

.content-page img {
    max-width: 100%;
    height: auto;
    display: block;
    border-radius: var(--premium-radius);
    margin: 1rem 0;
}

.content-page table {
    width: 100%;
    max-width: 100%;
    overflow-x: auto;
    display: block;
}

.max-w-400 {
    max-width: 420px;
}

.status-badge-pending { background: #fef3c7; color: #92400e; }
.status-badge-confirmed { background: #d1fae5; color: #065f46; }
.status-badge-cancelled { background: #fee2e2; color: #991b1b; }
.status-badge-completed { background: #e0e7ff; color: #3730a3; }

.cta-premium .btn-premium-outline {
    border-color: rgba(255, 255, 255, 0.55);
    color: #fff;
}

.cta-premium .btn-premium-outline:hover {
    background: #fff;
    color: var(--premium-navy);
    border-color: #fff;
}

.stretched-link-title {
    position: relative;
}

.alert {
    border-radius: var(--premium-radius);
    border: none;
}

.card {
    border-radius: var(--premium-radius);
}

.pagination .page-link {
    border-radius: 0.5rem;
    margin: 0 0.15rem;
    color: var(--premium-navy);
}

.pagination .page-item.active .page-link {
    background: var(--premium-navy);
    border-color: var(--premium-navy);
}

@media (max-width: 768px) {
    .hero-full {
        min-height: auto;
        margin: -0.5rem -0.5rem 0;
    }

    .hero-content {
        padding: 3rem 0 2rem;
    }

    .hero-stats {
        gap: 1.25rem;
    }

    .booking-sidebar {
        position: static;
    }
}

/* ── Bungasoft-style home ── */
.hero-bunga {
    position: relative;
    margin: -1rem -0.75rem 0;
    min-height: 560px;
    background: linear-gradient(135deg, #0071c2 0%, #003580 45%, #0c1b2e 100%);
    color: #fff;
    text-align: center;
    border-radius: 0 0 1.25rem 1.25rem;
    overflow: hidden;
}

.hero-bunga::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image: var(--hero-bg-image, url("https://images.unsplash.com/photo-1469474968028-56623f02e42e?auto=format&fit=crop&w=1800&q=80"));
    background-size: cover;
    background-position: center;
    opacity: 0.22;
}

.hero-bunga-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0, 53, 128, 0.75) 0%, rgba(12, 27, 46, 0.88) 100%);
}

.hero-bunga-tag {
    font-size: 0.8rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    opacity: 0.9;
    font-weight: 600;
}

.hero-bunga-title {
    font-family: "Cormorant Garamond", serif;
    font-size: clamp(2.25rem, 5vw, 3.75rem);
    font-weight: 700;
    line-height: 1.15;
    margin-bottom: 1rem;
}

.hero-bunga-highlight {
    color: #fbbf24;
    font-style: italic;
}

.hero-bunga-sub {
    font-size: 1.05rem;
    opacity: 0.92;
    max-width: 640px;
    line-height: 1.7;
    margin-bottom: 2rem;
}

.search-bunga {
    background: #fff;
    border-radius: 1rem;
    padding: 1.25rem 1.5rem;
    max-width: 920px;
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.25);
}

.search-bunga-label {
    display: block;
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--premium-muted);
    margin-bottom: 0.35rem;
}

.search-bunga-input {
    border: 1px solid #e8ecf1 !important;
    border-radius: 0.65rem !important;
}

.search-bunga-input:focus {
    border-color: var(--booking-blue-light) !important;
    box-shadow: 0 0 0 3px rgba(0, 113, 194, 0.15) !important;
}

.btn-search-bunga {
    background: linear-gradient(135deg, #0071c2, #003580);
    color: #fff;
    font-weight: 700;
    border: none;
    border-radius: 0.65rem;
    padding: 0.75rem 1rem;
    height: 100%;
    min-height: 48px;
    transition: transform 0.2s, box-shadow 0.2s;
}

.btn-search-bunga:hover {
    color: #fff;
    transform: translateY(-1px);
    box-shadow: 0 8px 20px rgba(0, 53, 128, 0.35);
}

.trust-bunga-item {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 0.75rem;
    padding: 1rem;
    text-align: center;
    backdrop-filter: blur(6px);
}

.trust-bunga-icon {
    display: block;
    font-size: 1.25rem;
    color: #fbbf24;
    margin-bottom: 0.35rem;
}

.trust-bunga-item strong {
    display: block;
    font-size: 0.85rem;
    margin-bottom: 0.15rem;
}

.trust-bunga-item span:last-child {
    font-size: 0.75rem;
    opacity: 0.8;
}

.home-section {
    padding: 3.5rem 0;
}

.bg-home-alt {
    background: #fff;
    border-radius: 1rem;
    margin: 0 -0.25rem;
}

.section-block-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    gap: 1rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.section-block-title {
    font-family: "Cormorant Garamond", serif;
    font-size: clamp(1.5rem, 3vw, 2rem);
    font-weight: 700;
    color: var(--premium-navy);
    margin-bottom: 0.35rem;
}

.section-block-desc {
    color: var(--premium-muted);
    font-size: 0.95rem;
    margin: 0;
    max-width: 520px;
}

.section-view-all {
    color: var(--booking-blue);
    font-weight: 600;
    text-decoration: none;
    font-size: 0.95rem;
    white-space: nowrap;
}

.section-view-all:hover {
    color: var(--premium-navy);
}

.empty-home-card {
    background: #fff;
    border-radius: 1rem;
    padding: 3rem;
    text-align: center;
    color: var(--premium-muted);
    border: 1px dashed #dde3eb;
}

.tour-card-horizontal {
    border-radius: 1rem !important;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(12, 27, 46, 0.06);
    transition: transform 0.25s, box-shadow 0.25s;
}

.tour-card-horizontal:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 32px rgba(12, 27, 46, 0.1);
}

.tour-card-horizontal-img {
    display: block;
    position: relative;
    aspect-ratio: 16 / 9;
    min-height: 180px;
    overflow: hidden;
    background: linear-gradient(135deg, var(--premium-navy-mid), var(--premium-navy));
}

.tour-card-horizontal-img img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    -webkit-object-fit: cover;
    transition: transform 0.4s;
    font-size: 0;
}

.tour-card-horizontal:hover .tour-card-horizontal-img img {
    transform: scale(1.05);
}

.rating-mini {
    font-size: 0.8rem;
    color: var(--premium-gold-dark);
    font-weight: 600;
}

.most-booked-card .most-booked-rank {
    position: absolute;
    top: 12px;
    left: 12px;
    z-index: 5;
    background: var(--premium-navy);
    color: #fbbf24;
    font-weight: 700;
    font-size: 0.75rem;
    padding: 0.25rem 0.6rem;
    border-radius: 999px;
}

.promo-bunga {
    border-radius: 1rem;
    padding: 1.75rem;
    color: #fff;
    height: 100%;
    min-height: 160px;
}

.promo-bunga h3 {
    font-family: "Cormorant Garamond", serif;
    font-size: 1.35rem;
    margin-bottom: 0.5rem;
}

.promo-bunga p {
    font-size: 0.9rem;
    opacity: 0.92;
    margin: 0;
    line-height: 1.5;
}

.promo-bunga-1 {
    background: linear-gradient(135deg, #0071c2, #003580);
}

.promo-bunga-2 {
    background: linear-gradient(135deg, #0c1b2e, #1e3a5f);
}

.promo-bunga-3 {
    background: linear-gradient(135deg, #c9a962, #8b7340);
    color: var(--premium-navy);
}

.why-bunga-card {
    background: #fff;
    border-radius: 1rem;
    padding: 1.75rem;
    border: 1px solid #eef1f5;
    height: 100%;
    transition: box-shadow 0.25s;
}

.why-bunga-card:hover {
    box-shadow: 0 12px 32px rgba(12, 27, 46, 0.08);
}

.why-bunga-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: linear-gradient(135deg, #e8f4fc, #f0f4f8);
    color: var(--booking-blue);
    font-weight: 700;
    font-size: 1.25rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
}

.why-bunga-card h4 {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--premium-navy);
    margin-bottom: 0.5rem;
}

.why-bunga-card p {
    font-size: 0.88rem;
    color: var(--premium-muted);
    margin: 0;
    line-height: 1.6;
}

.newsletter-bunga {
    background: linear-gradient(135deg, #003580, #0c1b2e);
    color: #fff;
    border-radius: 1.25rem;
    padding: 2.5rem;
}

.newsletter-bunga h2 {
    font-family: "Cormorant Garamond", serif;
    color: #fff;
}

.newsletter-form input {
    border: none;
    border-radius: 0.65rem;
    flex: 1;
    min-width: 200px;
}

@media (max-width: 768px) {
    .hero-bunga {
        margin: 0 0 1rem;
        min-height: auto;
        padding-bottom: 2rem;
    }

    .hero-bunga .container {
        padding-top: 2rem;
        padding-bottom: 1rem;
    }

    .search-bunga {
        padding: 1rem;
    }

    .btn-search-bunga {
        min-height: 44px;
    }
}

/* ── Premium mobile ── */
@media (max-width: 991.98px) {
    body {
        padding-bottom: env(safe-area-inset-bottom, 0);
    }

    .mobile-menu-btn {
        display: flex !important;
        flex-shrink: 0;
    }

    body.has-mobile-book-bar {
        padding-bottom: calc(5.5rem + env(safe-area-inset-bottom, 0));
    }

    main.container-fluid {
        padding-left: 1rem;
        padding-right: 1rem;
    }

    .page-hero-bar {
        padding: 1.5rem 0;
        margin-bottom: 1.25rem;
        border-radius: var(--premium-radius);
    }

    .page-hero-bar h1 {
        font-size: 1.75rem;
    }

    .detail-hero,
    .tour-hero-wrap .detail-hero {
        min-height: 220px;
        max-height: 280px;
        width: 100%;
        display: block;
        object-fit: cover;
        -webkit-object-fit: cover;
    }

    .tour-gallery-thumbs {
        flex-wrap: nowrap;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        margin-left: -0.25rem;
        margin-right: -0.25rem;
        padding-bottom: 0.25rem;
    }

    .tour-gallery-thumbs > .col-3 {
        flex: 0 0 28%;
        max-width: 28%;
    }

    .thumb-img {
        height: 72px;
        min-height: 72px;
        display: block;
        width: 100%;
    }

    .tour-card-img {
        min-height: 100%;
    }

    .tour-card-media {
        min-height: 200px;
    }

    .tour-card-horizontal-img {
        min-height: 180px;
    }

    .booking-tour-preview .detail-hero {
        min-height: 200px;
        max-height: 240px;
    }

    .hero-bunga {
        margin: 0 0 1rem;
        border-radius: var(--premium-radius-lg);
        min-height: 480px;
    }

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

    .search-bunga {
        margin-top: 1rem;
    }

    .section-block-header {
        flex-direction: column;
        align-items: flex-start !important;
        gap: 0.75rem;
    }

    .home-section {
        padding: 2.5rem 0;
    }

    .site-footer {
        margin-top: 2.5rem;
    }

    .navbar .btn-booking {
        width: auto;
        margin-top: 0;
    }

    .site-header .navbar {
        flex-wrap: nowrap;
    }

    .booking-form-card {
        padding: 1.25rem;
    }

    .premium-feature-card {
        padding: 1.25rem;
    }

    .mobile-book-bar {
        position: fixed;
        left: 0;
        right: 0;
        bottom: 0;
        z-index: 1040;
        display: flex;
        align-items: center;
        gap: 1rem;
        padding: 0.85rem 1rem calc(0.85rem + env(safe-area-inset-bottom, 0));
        background: rgba(255, 255, 255, 0.96);
        backdrop-filter: blur(12px);
        -webkit-backdrop-filter: blur(12px);
        border-top: 1px solid rgba(12, 27, 46, 0.08);
        box-shadow: 0 -8px 32px rgba(12, 27, 46, 0.12);
    }

    .mobile-book-bar-price {
        min-width: 90px;
    }

    .top-announcement {
        font-size: 0.72rem;
        padding: 0.35rem 0.75rem;
    }
}

@media (max-width: 575.98px) {
    .tour-card-media {
        min-height: 190px;
    }

    .promo-bunga {
        min-height: 140px;
        padding: 1.25rem;
    }
}

/* ── Premium auth (login / register) ── */
.auth-page {
    min-height: 100vh;
    background: var(--premium-cream);
    display: flex;
    flex-direction: column;
}

.auth-shell {
    display: grid;
    grid-template-columns: minmax(320px, 1.05fr) minmax(360px, 0.95fr);
    flex: 1;
    min-height: 0;
}

.auth-showcase {
    position: relative;
    background: linear-gradient(145deg, var(--premium-navy-mid) 0%, var(--premium-navy) 55%, #081525 100%);
    color: #fff;
    overflow: hidden;
}

.auth-showcase::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 80% 60% at 20% 10%, rgba(201, 169, 98, 0.18), transparent 55%),
        radial-gradient(ellipse 50% 40% at 90% 80%, rgba(255, 255, 255, 0.06), transparent 50%);
    pointer-events: none;
}

.auth-showcase-inner {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    min-height: 100%;
    padding: 2rem 2.5rem 2.5rem;
}

.auth-showcase-content-flush {
    padding-top: 0.5rem;
}

.auth-showcase-brand {
    font-family: Georgia, "Times New Roman", serif;
    font-size: 1.35rem;
    font-weight: 700;
    color: #fff;
    text-decoration: none;
    letter-spacing: 0.02em;
}

.auth-showcase-brand span {
    color: var(--premium-gold-light);
    font-weight: 400;
}

.auth-showcase-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    max-width: 440px;
    padding: 2rem 0;
}

.auth-showcase-eyebrow {
    text-transform: uppercase;
    letter-spacing: 0.14em;
    font-size: 0.72rem;
    font-weight: 600;
    color: var(--premium-gold);
    margin-bottom: 0.75rem;
}

.auth-showcase-title {
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(1.75rem, 3vw, 2.35rem);
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 1rem;
}

.auth-showcase-lead {
    color: rgba(255, 255, 255, 0.78);
    font-size: 1.02rem;
    line-height: 1.65;
    margin-bottom: 2rem;
}

.auth-benefits {
    list-style: none;
    padding: 0;
    margin: 0 0 2rem;
}

.auth-benefits li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    margin-bottom: 0.85rem;
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.95rem;
    line-height: 1.45;
}

.auth-benefit-icon {
    flex-shrink: 0;
    width: 1.35rem;
    height: 1.35rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    background: rgba(201, 169, 98, 0.2);
    color: var(--premium-gold-light);
    font-size: 0.7rem;
    font-weight: 700;
    margin-top: 0.1rem;
}

.auth-trust-strip {
    display: flex;
    flex-wrap: wrap;
    gap: 1.25rem;
    padding: 1.25rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
    margin-bottom: 1.5rem;
}

.auth-trust-item {
    display: flex;
    flex-direction: column;
    gap: 0.15rem;
}

.auth-trust-item strong {
    font-size: 1.25rem;
    color: var(--premium-gold-light);
    line-height: 1.2;
}

.auth-trust-item span {
    font-size: 0.72rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: rgba(255, 255, 255, 0.55);
}

.auth-testimonial {
    margin: 0;
    padding: 1.25rem 1.35rem;
    background: rgba(255, 255, 255, 0.06);
    border-left: 3px solid var(--premium-gold);
    border-radius: 0 var(--premium-radius) var(--premium-radius) 0;
}

.auth-testimonial p {
    margin-bottom: 0.5rem;
    font-style: italic;
    color: rgba(255, 255, 255, 0.88);
    font-size: 0.95rem;
    line-height: 1.55;
}

.auth-testimonial footer {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.5);
}

.auth-showcase-foot {
    margin: 0;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.55);
}

.auth-showcase-foot a {
    color: var(--premium-gold-light);
    text-decoration: none;
}

.auth-showcase-foot a:hover {
    color: #fff;
}

.auth-showcase-foot span {
    margin: 0 0.5rem;
}

.auth-main {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem 1.5rem;
    background: linear-gradient(180deg, #fff 0%, var(--premium-cream) 100%);
}

.auth-main-inner {
    width: 100%;
    max-width: 440px;
}

.auth-main-inner:has(.auth-form-panel-wide) {
    max-width: 560px;
}

.auth-mobile-brand {
    display: none;
}

.btn-booking.active-auth-cta,
.mobile-nav-actions .btn-booking.active {
    box-shadow: 0 0 0 2px var(--premium-navy), 0 4px 14px rgba(201, 169, 98, 0.45);
}

.auth-form-panel {
    background: #fff;
    border-radius: var(--premium-radius-lg);
    box-shadow: var(--premium-shadow);
    border: 1px solid rgba(12, 27, 46, 0.06);
    padding: 2rem 2rem 1.75rem;
}

.auth-form-panel-wide {
    max-width: 520px;
}

.auth-form-header {
    margin-bottom: 1.75rem;
}

.auth-form-eyebrow {
    text-transform: uppercase;
    letter-spacing: 0.12em;
    font-size: 0.7rem;
    font-weight: 700;
    color: var(--premium-gold-dark);
    margin-bottom: 0.5rem;
}

.auth-form-title {
    font-family: Georgia, "Times New Roman", serif;
    font-size: 1.75rem;
    color: var(--premium-navy);
    margin-bottom: 0.5rem;
}

.auth-form-subtitle {
    color: var(--premium-muted);
    font-size: 0.92rem;
    line-height: 1.55;
    margin-bottom: 0;
}

.auth-form .auth-field {
    margin-bottom: 1.15rem;
}

.auth-label {
    display: block;
    font-size: 0.78rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--premium-navy);
    margin-bottom: 0.4rem;
}

.auth-input-wrap {
    position: relative;
    display: flex;
    align-items: center;
}

.auth-input-icon {
    position: absolute;
    left: 1rem;
    z-index: 2;
    color: var(--premium-muted);
    font-size: 0.85rem;
    pointer-events: none;
    opacity: 0.7;
}

.auth-input {
    padding: 0.75rem 1rem 0.75rem 2.5rem !important;
    border: 1px solid rgba(12, 27, 46, 0.12) !important;
    border-radius: 0.65rem !important;
    background: var(--premium-cream) !important;
    font-size: 0.95rem;
    transition: border-color 0.2s, box-shadow 0.2s, background 0.2s;
}

.auth-input:focus {
    border-color: var(--premium-gold) !important;
    box-shadow: 0 0 0 3px rgba(201, 169, 98, 0.2) !important;
    background: #fff !important;
}

.auth-input-wrap-password .auth-input {
    padding-right: 4.5rem !important;
}

.auth-password-toggle {
    position: absolute;
    right: 0.5rem;
    z-index: 2;
    border: none;
    background: transparent;
    color: var(--premium-gold-dark);
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    padding: 0.35rem 0.5rem;
    cursor: pointer;
}

.auth-password-toggle:hover {
    color: var(--premium-navy);
}

.auth-field-error,
.auth-form .field-validation-error {
    display: block;
    color: #c0392b;
    font-size: 0.8rem;
    margin-top: 0.35rem;
}

.auth-form-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1.25rem;
}

.auth-check .form-check-input:checked {
    background-color: var(--premium-navy);
    border-color: var(--premium-navy);
}

.auth-check .form-check-label {
    font-size: 0.88rem;
    color: var(--premium-muted);
}

.auth-submit {
    padding: 0.85rem 1.25rem !important;
    font-weight: 600;
    letter-spacing: 0.02em;
}

.auth-form-footer {
    text-align: center;
    margin-top: 1.5rem;
    padding-top: 1.25rem;
    border-top: 1px solid var(--premium-sand);
    font-size: 0.9rem;
    color: var(--premium-muted);
}

.auth-link {
    color: var(--premium-navy);
    font-weight: 600;
    text-decoration: none;
    border-bottom: 1px solid var(--premium-gold);
}

.auth-link:hover {
    color: var(--premium-gold-dark);
}

.auth-assurance {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.75rem 1.25rem;
    margin-top: 1.25rem;
    font-size: 0.75rem;
    color: var(--premium-muted);
}

.auth-alert {
    padding: 0.75rem 1rem;
    border-radius: 0.65rem;
    margin-bottom: 1rem;
    font-size: 0.88rem;
}

.auth-alert-danger:not(:empty) {
    background: #fdf0ef;
    border: 1px solid #f5c6cb;
    color: #922820;
}

.auth-alert:empty {
    display: none;
}

.auth-legal-note {
    margin: 0.5rem 0 1.25rem;
    line-height: 1.5;
}

/* ── Member account pages ── */
.member-page {
    max-width: 960px;
    margin: 0 auto;
}

.member-page-narrow {
    max-width: 560px;
}

.member-hero {
    background: linear-gradient(135deg, var(--premium-navy-mid), var(--premium-navy));
    color: #fff;
    border-radius: var(--premium-radius-lg);
    padding: 1.75rem 2rem;
    margin-bottom: 1.75rem;
    box-shadow: var(--premium-shadow);
}

.member-breadcrumb {
    margin-bottom: 1.25rem;
    color: rgba(255, 255, 255, 0.55);
}

.member-breadcrumb a {
    color: rgba(255, 255, 255, 0.75);
}

.member-breadcrumb a:hover {
    color: var(--premium-gold-light);
}

.member-hero-inner {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 1.25rem;
}

.member-avatar {
    width: 4rem;
    height: 4rem;
    border-radius: 999px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 1.35rem;
    font-weight: 600;
    color: var(--premium-navy);
    background: linear-gradient(135deg, var(--premium-gold-light), var(--premium-gold));
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
}

.member-eyebrow {
    text-transform: uppercase;
    letter-spacing: 0.12em;
    font-size: 0.68rem;
    color: var(--premium-gold);
    margin-bottom: 0.25rem;
}

.member-title {
    font-family: Georgia, "Times New Roman", serif;
    font-weight: 600;
    color: inherit;
    margin-bottom: 0.25rem;
}

.member-subtitle {
    color: rgba(255, 255, 255, 0.72);
    font-size: 0.95rem;
}

.member-hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.member-hero .btn-premium-outline {
    border-color: rgba(255, 255, 255, 0.45);
    color: #fff;
}

.member-hero .btn-premium-outline:hover {
    background: #fff;
    color: var(--premium-navy);
    border-color: #fff;
}

.member-stat-card {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    background: #fff;
    border-radius: var(--premium-radius);
    padding: 1.25rem 1.35rem;
    border: 1px solid rgba(12, 27, 46, 0.06);
    box-shadow: 0 8px 24px rgba(12, 27, 46, 0.06);
    height: 100%;
}

.member-stat-icon {
    width: 2.25rem;
    height: 2.25rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 0.65rem;
    background: var(--premium-sand);
    color: var(--premium-gold-dark);
    font-size: 1rem;
}

.member-stat-label {
    font-size: 0.72rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--premium-muted);
    margin-bottom: 0.2rem;
}

.member-stat-value {
    font-weight: 600;
    color: var(--premium-navy);
    font-size: 0.95rem;
    word-break: break-word;
}

.member-card {
    padding: 0 !important;
    overflow: hidden;
}

.member-card-header {
    padding: 1.35rem 1.5rem 0;
}

.member-card-body {
    padding: 1rem 1.5rem 1.5rem;
}

.member-perks {
    list-style: none;
    padding: 0;
    margin: 0 0 1.25rem;
}

.member-perks li {
    position: relative;
    padding-left: 1.35rem;
    margin-bottom: 0.5rem;
    color: var(--premium-muted);
    font-size: 0.92rem;
}

.member-perks li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--premium-gold-dark);
    font-weight: 700;
}

.member-quick-link {
    display: block;
    padding: 0.85rem 1rem;
    border-radius: 0.65rem;
    background: var(--premium-cream);
    color: var(--premium-navy);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.92rem;
    transition: background 0.2s, transform 0.2s;
}

.member-quick-link:hover {
    background: var(--premium-sand);
    color: var(--premium-navy);
    transform: translateX(4px);
}

.member-form-hero {
    margin-bottom: 1.5rem;
}

.member-form-hero .member-breadcrumb {
    color: var(--premium-muted);
}

.member-form-hero .member-breadcrumb a {
    color: var(--premium-muted);
}

.member-form-hero .member-title {
    color: var(--premium-navy);
}

.member-form-card {
    padding: 1.75rem 1.5rem !important;
}

.member-form .auth-field:last-of-type {
    margin-bottom: 0.5rem;
}

@media (max-width: 991.98px) {
    .auth-shell {
        grid-template-columns: 1fr;
    }

    .auth-showcase {
        display: none;
    }

    .auth-main {
        min-height: auto;
        align-items: flex-start;
        padding: 1.5rem 1rem 2.5rem;
    }

    .auth-form-panel {
        padding: 1.5rem 1.25rem;
    }

    .member-hero {
        padding: 1.35rem 1.25rem;
    }

    .member-hero-actions {
        width: 100%;
    }
}

/* Wayfinding — breadcrumbs, page hero, account nav */
.breadcrumb-sep {
    color: rgba(255, 255, 255, 0.45);
    margin: 0 0.35rem;
}

.breadcrumb-current {
    color: rgba(255, 255, 255, 0.95);
    font-weight: 500;
}

.page-hero-bar-compact {
    padding-top: 1.25rem;
    padding-bottom: 1.25rem;
}

.page-hero-eyebrow {
    font-size: 0.75rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--premium-gold);
    font-weight: 600;
}

.account-nav {
    margin: -0.5rem 0 1.75rem;
    border-bottom: 1px solid rgba(15, 23, 42, 0.08);
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}

.account-nav-inner {
    display: flex;
    flex-wrap: nowrap;
    gap: 0.25rem;
    min-width: min-content;
    padding-bottom: 0.15rem;
}

.account-nav-link {
    display: inline-flex;
    align-items: center;
    padding: 0.65rem 1rem;
    border-radius: 999px;
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--premium-navy-muted, #64748b);
    text-decoration: none;
    white-space: nowrap;
    transition: background 0.15s ease, color 0.15s ease;
}

.account-nav-link:hover {
    color: var(--premium-navy);
    background: rgba(15, 23, 42, 0.04);
}

.account-nav-link.active {
    color: var(--premium-navy);
    background: rgba(201, 162, 39, 0.12);
    box-shadow: inset 0 0 0 1px rgba(201, 162, 39, 0.35);
}

.account-nav-link-muted {
    color: var(--premium-gold-dark, #a8841f);
}

.auth-wayfinder {
    margin-bottom: 1.25rem;
}

.auth-wayfinder .breadcrumb-premium {
    margin-bottom: 0;
}

.auth-wayfinder .breadcrumb-premium a,
.auth-wayfinder .breadcrumb-sep {
    color: rgba(15, 23, 42, 0.55);
}

.auth-wayfinder .breadcrumb-premium a:hover {
    color: var(--premium-navy);
}

.auth-wayfinder .breadcrumb-current {
    color: var(--premium-navy);
}

.member-hero-compact {
    margin-bottom: 1.5rem;
    padding: 1rem 1.25rem;
}

.member-hero-compact .member-hero-inner {
    align-items: center;
}

.mobile-nav-section-label {
    padding: 1rem 1.25rem 0.35rem;
    font-size: 0.7rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.45);
    font-weight: 600;
}

.dropdown-item.active,
.dropdown-item:active {
    background: rgba(201, 162, 39, 0.12);
    color: var(--premium-navy);
    font-weight: 600;
}
