:root {
    --vh-primary: #0f4bb8;
    --vh-primary-dark: #0b3a8d;
    --vh-ink: #1a1f2c;
    --vh-soft-bg: #f5f6fb;
    --vh-card: #ffffff;
    --vh-muted: #6a7285;
    --vh-warning: #f7b420;
    --vh-border: #e4e8f1;
    --vh-radius-lg: 24px;
    --vh-radius-md: 16px;
}

* {
    box-sizing: border-box;
}

body {
    font-family: "Plus Jakarta Sans", sans-serif;
    color: var(--vh-ink);
    background: #fff;
}

a {
    text-decoration: none;
}

.app-page {
    background: var(--vh-soft-bg);
    min-height: 100vh;
}

.main-header {
    background: #fff;
    border-bottom: 1px solid var(--vh-border);
    position: sticky;
    top: 0;
    z-index: 1030;
}

.navbar-brand {
    letter-spacing: -0.4px;
}

.nav-link {
    font-weight: 500;
    color: #6d7384;
}

.nav-link.active {
    color: var(--vh-primary) !important;
    font-weight: 700;
}

.icon-btn {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #f3f5fa;
    color: #5f6a7f;
    font-size: 0.9rem;
}

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

.btn-primary:hover,
.btn-primary:focus {
    background-color: var(--vh-primary-dark);
    border-color: var(--vh-primary-dark);
}

.site-footer {
    background: #eef1f7;
}

.footer-link {
    display: block;
    color: #515d74;
    margin-bottom: 6px;
    font-size: 0.92rem;
}

.footer-link:hover {
    color: var(--vh-primary);
}

.footer-icons i {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: #dde3ef;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #44506a;
}

.section-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 18px;
}

.section-head h2 {
    font-size: 1.2rem;
    margin: 0;
}

.section-head a {
    font-size: 0.85rem;
    color: #6a7389;
}

.hero-spotlight {
    padding: 28px 0 76px;
}

.hero-card {
    position: relative;
    overflow: hidden;
    border-radius: 28px;
    min-height: 555px;
    background-image:
        linear-gradient(90deg, rgba(7, 20, 38, 0.94) 0%, rgba(10, 28, 50, 0.8) 42%, rgba(10, 28, 50, 0.14) 76%),
        url("../uploads/golden-triangle-signature.png");
    background-size: cover;
    background-position: center;
    padding: 62px 64px;
    color: #fff;
    display: flex;
    flex-direction: column;
    justify-content: center;
    box-shadow: 0 30px 70px rgba(10, 35, 63, 0.18);
}

.hero-card::after {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: inherit;
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 690px;
}

.hero-chip {
    font-size: 0.72rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: #fff;
    background: rgba(255, 255, 255, 0.13);
    border: 1px solid rgba(255, 255, 255, 0.24);
    backdrop-filter: blur(8px);
    border-radius: 999px;
    padding: 6px 12px;
    display: inline-block;
    margin-bottom: 14px;
    width: fit-content;
}

.hero-card h1 {
    max-width: 680px;
    font-size: clamp(2.7rem, 5.6vw, 5.25rem);
    line-height: 0.98;
    margin-bottom: 22px;
    letter-spacing: -2.8px;
    text-wrap: balance;
}

.hero-card h1 em {
    color: #ffc85a;
    font-style: italic;
}

.hero-intro {
    max-width: 650px;
    margin: 0 0 22px;
    color: rgba(255, 255, 255, 0.84);
    font-size: 1.05rem;
    line-height: 1.75;
}

.hero-trust-row,
.hero-actions {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 12px 22px;
}

.hero-trust-row {
    margin-bottom: 26px;
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.84rem;
    font-weight: 600;
}

.hero-trust-row i {
    color: #ffc85a;
    margin-right: 5px;
}

.hero-actions .btn {
    min-height: 48px;
    display: inline-flex;
    align-items: center;
    padding-inline: 22px;
    border-radius: 12px;
}

.hero-search-dock {
    position: relative;
    z-index: 3;
    width: calc(100% - 128px);
    max-width: 990px;
    margin: -38px auto 0;
    padding: 13px 14px 13px 20px;
    border: 1px solid #e2e8f0;
    border-radius: 17px;
    background: #fff;
    box-shadow: 0 18px 45px rgba(12, 37, 66, 0.16);
    display: grid;
    grid-template-columns: minmax(220px, 0.7fr) minmax(420px, 1.3fr);
    align-items: center;
    gap: 18px;
}

.hero-search-label {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 3px;
    color: #182940;
}

.hero-search-label span {
    font-weight: 800;
    font-size: 0.94rem;
}

.hero-search-label small {
    color: #6f7d90;
    font-size: 0.72rem;
}

.hero-search-bar {
    display: flex;
    align-items: center;
    gap: 10px;
    background: #f1f5f9;
    border: 1px solid #e0e7ef;
    border-radius: 12px;
    padding: 7px 7px 7px 15px;
    width: 100%;
    max-width: 760px;
    box-shadow: none;
}

.hero-search-bar i {
    color: #7d879d;
}

.hero-search-bar input {
    border: none;
    background: transparent;
    flex: 1;
    min-width: 0;
    outline: none;
    color: #2b3448;
}

.hero-search-bar button {
    border-radius: 9px !important;
    padding-left: 24px !important;
    padding-right: 24px !important;
    flex-shrink: 0;
    white-space: nowrap;
}

.auth-back-link {
    position: fixed;
    top: 22px;
    left: 24px;
    z-index: 20;
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 10px 15px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.94);
    color: #17324d;
    font-size: 0.86rem;
    font-weight: 700;
    box-shadow: 0 8px 24px rgba(9, 27, 51, 0.14);
}

.auth-back-link:hover {
    color: var(--vh-primary);
    transform: translateY(-1px);
}

.city-card {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    height: 330px;
    box-shadow: 0 14px 36px rgba(16, 39, 65, 0.1);
}

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

.city-card-overlay {
    position: absolute;
    inset: 0;
    padding: 24px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    background: linear-gradient(180deg, transparent 35%, rgba(4, 17, 31, 0.78));
    color: #fff;
}

.city-card-kicker {
    margin-bottom: 5px;
    color: #ffd36d;
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.09em;
    text-transform: uppercase;
}

.city-card-overlay h5 {
    margin-bottom: 7px;
    font-size: 1.35rem;
}

.city-card-overlay a {
    color: rgba(255, 255, 255, 0.86);
    font-size: 0.82rem;
    font-weight: 600;
}

.city-section-head {
    align-items: flex-end;
    margin-bottom: 22px;
}

.city-section-head h2 {
    font-size: 1.55rem;
}

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

.city-card-overlay h5 {
    margin: 0;
}

.city-card-overlay p {
    margin: 0;
    color: rgba(255, 255, 255, 0.86);
}

.tour-card {
    background: #fff;
    border-radius: var(--vh-radius-md);
    overflow: hidden;
    border: 1px solid #e6eaf3;
    height: 100%;
}

.tour-card img {
    width: 100%;
    height: 180px;
    object-fit: cover;
}

.tour-card-body {
    padding: 18px;
}

.tour-label {
    display: inline-block;
    background: #edf2ff;
    color: var(--vh-primary);
    border-radius: 999px;
    font-size: 0.72rem;
    padding: 5px 10px;
    margin-bottom: 10px;
    font-weight: 600;
}

.tour-card h5 {
    font-size: 1.05rem;
    margin-bottom: 8px;
}

.tour-card p {
    color: var(--vh-muted);
    font-size: 0.9rem;
    min-height: 46px;
}

.rewards-banner {
    border-radius: var(--vh-radius-lg);
    background:
        linear-gradient(120deg, rgba(17, 82, 189, 0.96), rgba(16, 53, 136, 0.88)),
        url("https://images.unsplash.com/photo-1519985176271-adb1088fa94c?auto=format&fit=crop&w=1600&q=80");
    background-size: cover;
    color: #fff;
    padding: 36px;
    display: flex;
    justify-content: space-between;
    gap: 24px;
    align-items: center;
}

.kicker {
    text-transform: uppercase;
    font-size: 0.74rem;
    letter-spacing: 0.08em;
    opacity: 0.86;
}

.rewards-banner h3 {
    margin-bottom: 10px;
}

.rewards-banner p {
    max-width: 580px;
    margin-bottom: 0;
    color: rgba(255, 255, 255, 0.86);
}

.testimonial-card {
    background: #fff;
    border-radius: 16px;
    border: 1px solid #e4e9f2;
    padding: 20px;
}

.testimonial-card .stars {
    color: #f6a90d;
    font-size: 0.85rem;
    letter-spacing: 2px;
    margin-bottom: 8px;
}

.testimonial-card p {
    color: #566177;
    min-height: 64px;
}

.testimonial-card img {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    object-fit: cover;
}

.testimonial-card h6 {
    margin-bottom: 1px;
    font-size: 0.92rem;
}

.testimonial-card small {
    color: #7b8398;
}

.review-carousel {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 72px 42px;
}

.testimonial-slide-card {
    min-height: 280px;
    padding: 42px 54px;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    box-shadow: 0 18px 48px rgba(16, 39, 65, 0.1);
}

.review-rating-line {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
}

.review-rating-line .stars {
    margin: 0;
    font-size: 1.05rem;
    letter-spacing: 2px;
}

.review-rating-line strong {
    color: #243750;
    font-size: 0.92rem;
}

.testimonial-slide-card blockquote {
    max-width: 680px;
    margin: 0 auto 26px;
    color: #33435a;
    font-size: 1.05rem;
    line-height: 1.75;
}

.review-carousel .carousel-control-prev,
.review-carousel .carousel-control-next {
    width: 44px;
    height: 44px;
    top: 50%;
    border-radius: 50%;
    background: #17324d;
    opacity: 1;
    transform: translateY(-70%);
}

.review-carousel .carousel-control-prev-icon,
.review-carousel .carousel-control-next-icon {
    width: 18px;
    height: 18px;
}

.review-carousel .carousel-indicators {
    bottom: 0;
}

.review-carousel .carousel-indicators [data-bs-target] {
    width: 8px;
    height: 8px;
    border: 0;
    border-radius: 50%;
    background-color: #8290a3;
}

.review-carousel .carousel-indicators .active {
    width: 24px;
    border-radius: 999px;
    background-color: var(--vh-primary);
}

@media (max-width: 767.98px) {
    .review-carousel {
        padding: 0 0 38px;
    }

    .testimonial-slide-card {
        min-height: 320px;
        padding: 32px 24px;
    }

    .testimonial-slide-card blockquote {
        font-size: 0.95rem;
    }

    .review-carousel .carousel-control-prev,
    .review-carousel .carousel-control-next {
        display: none;
    }
}

.auth-body {
    min-height: 100vh;
    background: #dce5f4;
}

.auth-bg-login {
    background:
        linear-gradient(180deg, rgba(3, 20, 48, 0.36), rgba(5, 16, 42, 0.22)),
        url("https://images.unsplash.com/photo-1507525428034-b723cf961d3e?auto=format&fit=crop&w=1800&q=80");
    background-size: cover;
    background-position: center;
}

.auth-card {
    max-width: 1180px;
    min-height: 520px;
    display: flex;
    flex-direction: column;
    border-radius: 24px;
    overflow: hidden;
    margin: 0 auto;
    box-shadow: 0 30px 70px rgba(10, 29, 67, 0.3);
}

.auth-card > .row {
    flex-grow: 1;
}

.auth-info-panel {
    background: #0f49b1;
    color: #fff;
    padding: 50px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.brand-title {
    font-weight: 800;
    letter-spacing: -0.8px;
    margin-bottom: 14px;
}

.lead-copy {
    max-width: 380px;
    color: rgba(255, 255, 255, 0.84);
}

.auth-feature-list {
    display: grid;
    gap: 18px;
}

.feature-item {
    display: flex;
    gap: 12px;
    align-items: start;
}

.feature-item h6 {
    margin-bottom: 2px;
    font-size: 1.15rem;
}

.feature-item p {
    margin: 0;
    color: rgba(255, 255, 255, 0.72);
}

.feature-icon {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.15);
}

.auth-form-panel {
    background: #eef4f6;
    padding: 34px;
}

.auth-form-wrap {
    max-width: 420px;
    margin: 0 auto;
    padding-top: 18px;
}

.auth-switch {
    background: #e2e8f2;
    border-radius: 999px;
    padding: 4px;
}

.btn-auth-toggle {
    border: none;
    border-radius: 999px;
    font-weight: 600;
    color: #6c7890;
    padding: 8px 22px;
}

.btn-auth-toggle.active {
    background: #0f49b1;
    color: #fff;
    box-shadow: 0 8px 20px rgba(11, 49, 121, 0.3);
}

.form-label {
    font-size: 0.76rem;
    letter-spacing: 0.08em;
    color: #5f6880;
    font-weight: 700;
}

.input-icon-wrap {
    position: relative;
}

.input-icon-wrap > i:first-child {
    position: absolute;
    left: 14px;
    top: 50%;
    transform: translateY(-50%);
    color: #79839a;
}

.input-icon-wrap .icon-right {
    position: absolute;
    right: 14px;
    top: 50%;
    transform: translateY(-50%);
    color: #79839a;
}

.input-icon-wrap input {
    padding-left: 42px;
    border: 1px solid #dce3f0;
    border-radius: 12px;
    background: #fff;
}

.tiny-link {
    font-size: 0.78rem;
    font-weight: 700;
}

.divider-text {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #7f8798;
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.divider-text::before,
.divider-text::after {
    content: "";
    height: 1px;
    background: #dbe1ed;
    flex: 1;
}

.auth-meta-row {
    max-width: 1180px;
    margin: 22px auto 0;
    display: flex;
    justify-content: space-between;
    gap: 18px;
    flex-wrap: wrap;
    color: rgba(255, 255, 255, 0.83);
    font-size: 0.74rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.reg-visual-panel {
    background:
        linear-gradient(180deg, rgba(7, 15, 39, 0.26), rgba(6, 14, 35, 0.72)),
        url("https://images.unsplash.com/photo-1539650116574-75c0c6d73f7c?auto=format&fit=crop&w=1400&q=80");
    background-size: cover;
    background-position: center;
    color: #fff;
    position: relative;
    padding: 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.reg-overlay-content {
    max-width: 560px;
}

.reg-subtitle {
    font-size: 1.8rem;
    line-height: 1.55;
    max-width: 560px;
    color: rgba(255, 255, 255, 0.86);
}

.reg-social-proof {
    position: absolute;
    left: 60px;
    right: 60px;
    bottom: 28px;
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 600;
}

.social-avatars {
    display: flex;
}

.social-avatars img {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, 0.75);
    margin-left: -8px;
}

.social-avatars img:first-child {
    margin-left: 0;
}

.reg-form-panel {
    background: #f3f4fa;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px 24px;
}

.reg-form-wrap {
    width: 100%;
    max-width: 500px;
}

.pill-badge {
    border-radius: 999px;
    padding: 6px 12px;
    background: #e4e8f3;
    color: #5d6780;
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.07em;
    font-weight: 700;
}

.tiny-breadcrumb {
    color: #9099ab;
    font-size: 0.82rem;
}

.filter-panel {
    background: #fff;
    border-radius: 18px;
    border: 1px solid #dfe5ef;
    padding: 20px;
    box-shadow: 0 12px 35px rgba(20, 47, 86, 0.06);
}

.filter-form {
    display: grid;
    gap: 0;
}

.filter-panel-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding-bottom: 17px;
    border-bottom: 1px solid #edf0f5;
}

.filter-panel-header small {
    color: #8a93a5;
    font-size: 0.72rem;
}

.filter-heading-icon {
    width: 34px;
    height: 34px;
    display: inline-grid;
    place-items: center;
    flex: 0 0 auto;
    border-radius: 10px;
    color: var(--vh-primary);
    background: #edf4ff;
}

.filter-clear {
    color: #68758a;
    font-size: 0.75rem;
    font-weight: 600;
    text-decoration: none;
}

.filter-section {
    padding: 17px 0;
    border-bottom: 1px solid #edf0f5;
}

.filter-section:last-of-type {
    border-bottom: 0;
}

.filter-form > .btn {
    min-height: 44px;
    margin-top: 17px;
    border-radius: 11px;
    font-weight: 600;
}

.filter-label {
    font-size: 0.75rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #6d758a;
    font-weight: 700;
    margin-bottom: 8px;
    display: block;
}

.form-check {
    margin-bottom: 8px;
}

.tours-control-bar {
    min-height: 64px;
    margin-bottom: 18px;
    padding: 10px 12px 10px 18px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    background: #fff;
    border: 1px solid #e1e6ef;
    border-radius: 14px;
    box-shadow: 0 8px 24px rgba(20, 47, 86, 0.05);
}

.tour-results-summary {
    display: flex;
    align-items: baseline;
    gap: 6px;
    white-space: nowrap;
    color: #69758a;
    font-size: 0.84rem;
}

.tour-results-summary strong {
    color: var(--vh-ink);
    font-size: 1.15rem;
}

.tour-control-actions,
.tour-sort-form {
    display: flex;
    align-items: center;
    gap: 10px;
}

.tour-sort-form label {
    margin: 0;
    color: #778196;
    font-size: 0.78rem;
    font-weight: 600;
    white-space: nowrap;
}

.tour-sort-select {
    position: relative;
}

.tour-sort-select > i {
    position: absolute;
    z-index: 1;
    left: 12px;
    top: 50%;
    color: #71809a;
    font-size: 0.78rem;
    transform: translateY(-50%);
    pointer-events: none;
}

.tour-sort-select .form-select {
    width: 190px;
    min-height: 42px;
    padding-left: 34px;
    border-color: #dce3ed;
    border-radius: 10px;
    color: #26344d;
    font-size: 0.82rem;
    font-weight: 500;
    background-color: #f8fafc;
}

.member-box {
    background: linear-gradient(150deg, #0f4bb8, #0d3f9c);
    color: #fff;
    border-radius: 14px;
    padding: 18px;
}

.member-box h6 {
    margin-bottom: 8px;
}

.member-box p {
    color: rgba(255, 255, 255, 0.83);
    font-size: 0.9rem;
}

.tour-list-card {
    border-radius: 14px;
    border: 1px solid #e4e8f2;
    background: #fff;
    overflow: hidden;
    height: 100%;
}

.tour-list-card img {
    width: 100%;
    height: 220px;
    object-fit: cover;
}

.tour-list-body {
    padding: 16px;
}

.tour-list-body p {
    color: #667084;
    font-size: 0.92rem;
}

.destination-hero {
    padding: 24px 0 8px;
}

.destination-hero-card {
    min-height: 330px;
    border-radius: var(--vh-radius-lg);
    background:
        linear-gradient(180deg, rgba(5, 27, 65, 0.15), rgba(13, 32, 81, 0.35)),
        url("https://images.unsplash.com/photo-1501785888041-af3ef285b470?auto=format&fit=crop&w=1700&q=80");
    background-size: cover;
    background-position: center;
    padding: 40px;
    color: #fff;
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: center;
}

.destination-hero h1 {
    font-size: clamp(2rem, 4.5vw, 3.8rem);
    line-height: 1.02;
    margin-bottom: 20px;
}

.destination-hero h1 em {
    color: var(--vh-warning);
    font-style: italic;
}

.destination-search {
    margin: 0 auto;
    max-width: 620px;
}

.destination-tabs .nav-link {
    background: #eef2f8;
    color: #63708a;
    border-radius: 999px;
    margin: 2px;
    padding: 8px 14px;
    font-size: 0.84rem;
    font-weight: 600;
}

.destination-tabs .nav-link.active {
    background: #0f4bb8;
    color: #fff !important;
}

.destination-card {
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid #e4e8f2;
    background: #fff;
    height: 100%;
}

.destination-card img {
    width: 100%;
    height: 230px;
    object-fit: cover;
}

.destination-card-content {
    padding: 18px;
}

.destination-card-content h4 {
    margin-top: 10px;
    margin-bottom: 8px;
}

.destination-card-content p {
    color: #667084;
    font-size: 0.9rem;
    margin-bottom: 12px;
}

.newsletter-panel {
    background: linear-gradient(160deg, #0f4bb8, #1149ad 58%, #0a3f95);
    color: #fff;
}

.newsletter-panel p {
    color: rgba(255, 255, 255, 0.86);
}

.tour-hero-card {
    border-radius: 16px;
    overflow: hidden;
    position: relative;
    min-height: 390px;
}

.tour-hero-card > img {
    width: 100%;
    height: 390px;
    object-fit: cover;
}

.tour-hero-overlay {
    position: absolute;
    left: 18px;
    right: 18px;
    bottom: 18px;
    background: rgba(245, 247, 252, 0.95);
    border-radius: 14px;
    padding: 18px;
}

.tour-hero-overlay h1 {
    font-size: clamp(1.4rem, 3vw, 2rem);
    margin-top: 8px;
    margin-bottom: 8px;
}

.tour-meta span {
    font-size: 0.84rem;
    color: #5e667a;
}

.detail-section {
    background: #fff;
    border: 1px solid #e4e8f2;
    border-radius: 16px;
    padding: 22px;
    margin-top: 16px;
}

.detail-section h3 {
    margin-bottom: 12px;
    font-size: 1.25rem;
}

.detail-section p {
    color: #606a7e;
}

.journey-section-heading {
    margin-bottom: 24px;
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 16px;
}

.journey-section-heading h3 {
    margin: 5px 0 0;
}

.journey-kicker {
    color: #71809a;
    font-size: 0.67rem;
    font-weight: 700;
    letter-spacing: 0.09em;
    text-transform: uppercase;
}

.journey-kicker i {
    color: #0f4bb8;
}

.journey-day-count {
    padding: 7px 11px;
    color: #0f4bb8;
    background: #edf4ff;
    border: 1px solid #d7e5fb;
    border-radius: 999px;
    font-size: 0.7rem;
    font-weight: 700;
}

.journey-timeline {
    position: relative;
    padding: 6px 0;
}

.journey-timeline::before {
    content: "";
    position: absolute;
    z-index: 0;
    top: 28px;
    bottom: 28px;
    left: 50%;
    width: 12px;
    transform: translateX(-50%);
    background: #d9e0e9;
    border: 1px solid #c5cfdb;
    border-radius: 999px;
    box-shadow: inset 0 0 0 3px #eef2f6;
}

.journey-timeline::after {
    content: "";
    position: absolute;
    z-index: 1;
    top: 35px;
    bottom: 35px;
    left: 50%;
    width: 2px;
    transform: translateX(-50%);
    background: repeating-linear-gradient(to bottom, #fff 0 8px, transparent 8px 16px);
}

.journey-stop {
    position: relative;
    z-index: 2;
    min-height: 132px;
    display: grid;
    grid-template-columns: minmax(0, 1fr) 72px minmax(0, 1fr);
    align-items: center;
}

.journey-day-card {
    position: relative;
    grid-column: 1;
    padding: 18px;
    background: #f9fbfd;
    border: 1px solid #dfe6ef;
    border-radius: 14px;
    box-shadow: 0 10px 28px rgba(22, 48, 86, 0.07);
}

.journey-stop:nth-child(even) .journey-day-card {
    grid-column: 3;
}

.journey-day-card::after {
    content: "";
    position: absolute;
    top: 50%;
    right: -9px;
    width: 16px;
    height: 16px;
    transform: translateY(-50%) rotate(45deg);
    background: #f9fbfd;
    border-top: 1px solid #dfe6ef;
    border-right: 1px solid #dfe6ef;
}

.journey-stop:nth-child(even) .journey-day-card::after {
    right: auto;
    left: -9px;
    border: 0;
    border-bottom: 1px solid #dfe6ef;
    border-left: 1px solid #dfe6ef;
}

.journey-card-label {
    color: #e28c00;
    font-size: 0.65rem;
    font-weight: 800;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.journey-day-card h4 {
    margin: 5px 0 7px;
    color: #182741;
    font-size: 0.98rem;
}

.journey-day-card p {
    margin: 0;
    color: #657187;
    font-size: 0.8rem;
    line-height: 1.65;
}

.journey-marker {
    position: relative;
    z-index: 3;
    grid-column: 2;
    grid-row: 1;
    width: 48px;
    height: 48px;
    margin: auto;
    display: grid;
    place-items: center;
    color: #fff;
    background: linear-gradient(145deg, #175cc2, #0c4097);
    border: 5px solid #fff;
    border-radius: 50%;
    box-shadow: 0 0 0 3px #bfd2ee, 0 7px 18px rgba(15, 75, 184, 0.22);
}

.journey-marker span {
    font-size: 0.78rem;
    font-weight: 800;
}

.inclusion-card {
    border-radius: 12px;
    background: #f7f9fd;
    border: 1px solid #e4e8f1;
    padding: 14px;
    height: 100%;
}

.inclusion-card ul {
    margin: 0;
    padding-left: 17px;
}

.inclusion-card li {
    margin-bottom: 4px;
    color: #586278;
}

.inclusion-card.exclusion {
    background: #fbfbfd;
}

.tour-map-wrap {
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid #e4e9f2;
    background: #f7f9fd;
}

.tour-map-wrap iframe {
    width: 100%;
    height: 280px;
    border: 0;
}

.venue-card {
    border: 1px solid #e4e9f2;
    border-radius: 12px;
    background: #f7f9fd;
    padding: 12px;
}

.venue-card h6 {
    margin: 0 0 6px;
    color: #1f2a43;
}

.venue-card p {
    color: #56627a;
}

.venue-card small {
    color: #6b7690;
}

.tour-gallery-image {
    width: 100%;
    height: 180px;
    object-fit: cover;
    border-radius: 10px;
    border: 1px solid #e3e8f2;
}

.booking-panel {
    background: #fff;
    border: 1px solid #e3e8f2;
    border-radius: 16px;
    padding: 18px;
    top: 90px;
}

.booking-panel-image {
    width: 100%;
    height: 180px;
    object-fit: cover;
    border-radius: 12px;
}

.support-box {
    background: #f5f7fb;
    border-radius: 12px;
    padding: 12px;
}

.support-box p {
    color: #656f84;
    font-size: 0.9rem;
    margin-top: 4px;
    margin-bottom: 10px;
}

.stats-card {
    background: #fff;
    border: 1px solid #e4e8f2;
    border-radius: 12px;
    padding: 18px;
}

.stats-card .icon {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: #edf2ff;
    color: #0f4bb8;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 8px;
}

.stats-card h3 {
    margin: 0;
}

.stats-card p {
    color: #667084;
    margin: 0;
    font-size: 0.9rem;
}

.stats-card-primary {
    background: #0f4bb8;
    color: #fff;
}

.stats-card-primary .icon {
    background: rgba(255, 255, 255, 0.2);
    color: #fff;
}

.stats-card-primary p {
    color: rgba(255, 255, 255, 0.82);
}

.booking-tabs .nav-link {
    background: #eef2f8;
    color: #69748b;
    border-radius: 999px;
    margin-right: 6px;
    font-size: 0.84rem;
    font-weight: 600;
}

.booking-tabs .nav-link.active {
    background: #0f4bb8;
    color: #fff;
}

.booking-item {
    display: grid;
    grid-template-columns: 220px 1fr auto;
    gap: 14px;
    background: #fff;
    border: 1px solid #e4e8f2;
    border-radius: 12px;
    overflow: hidden;
}

.booking-item img {
    width: 100%;
    height: 170px;
    object-fit: cover;
}

.booking-content {
    padding: 16px 0;
}

.booking-content h4 {
    margin-bottom: 4px;
    font-size: 1.12rem;
}

.booking-actions {
    padding: 16px;
    display: flex;
    align-items: center;
}

.booking-status {
    font-size: 0.72rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.booking-status-upcoming {
    background: #ddf3e1;
    color: #1a7b34;
}

.booking-status-completed {
    background: #e5ecfb;
    color: #244ca1;
}

.booking-status-canceled {
    background: #fde7e8;
    color: #b72a36;
}

.booking-detail-hero {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    min-height: 280px;
    border: 1px solid #dfe5f0;
}

.booking-detail-hero > img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    filter: saturate(1.08);
}

.booking-detail-hero-content {
    position: absolute;
    left: 18px;
    right: 18px;
    bottom: 18px;
    background: rgba(247, 250, 255, 0.94);
    border-radius: 14px;
    padding: 16px;
}

.booking-detail-hero-content h2 {
    margin: 0 0 4px;
    font-size: clamp(1.3rem, 2.8vw, 1.9rem);
}

.booking-detail-hero-content p {
    margin: 0;
    color: #5a667f;
}

.booking-detail-status {
    position: absolute;
    top: 14px;
    right: 14px;
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.booking-pay-status {
    font-size: 0.72rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.booking-pay-status-paid {
    background: #ddf3e1;
    color: #1a7b34;
}

.booking-pay-status-pending {
    background: #fff2d9;
    color: #8c5a00;
}

.booking-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
}

.booking-info-box {
    border: 1px solid #e3e8f2;
    border-radius: 12px;
    background: #f7f9fd;
    padding: 12px;
}

.booking-info-box h6 {
    margin: 0 0 6px;
    font-size: 0.76rem;
    text-transform: uppercase;
    letter-spacing: 0.07em;
    color: #647189;
}

.booking-info-box p {
    margin: 0;
    font-size: 0.96rem;
    color: #1d2740;
    font-weight: 600;
}

.booking-price-list {
    display: grid;
    gap: 10px;
}

.booking-price-list > div {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border: 1px solid #e3e8f2;
    border-radius: 10px;
    padding: 10px 12px;
    background: #f9fbff;
}

.booking-price-list span {
    color: #5f6d86;
    font-size: 0.9rem;
}

.booking-price-list strong {
    color: #1f2a43;
}

.booking-price-list .total {
    background: #0f4bb8;
    border-color: #0f4bb8;
}

.booking-price-list .total span,
.booking-price-list .total strong {
    color: #fff;
}

.help-cta {
    border-radius: 16px;
    background:
        linear-gradient(120deg, rgba(13, 31, 76, 0.95), rgba(17, 55, 125, 0.92)),
        url("https://images.unsplash.com/photo-1489515217757-5fd1be406fef?auto=format&fit=crop&w=1600&q=80");
    background-size: cover;
    color: #fff;
    padding: 30px 26px;
    text-align: center;
}

.help-cta p {
    color: rgba(255, 255, 255, 0.84);
    max-width: 640px;
    margin: 8px auto 16px;
}

@media (max-width: 991.98px) {
    .auth-card {
        min-height: auto;
    }

    .auth-info-panel,
    .auth-form-panel {
        padding: 28px;
    }

    .reg-visual-panel {
        min-height: 470px;
        padding: 34px;
    }

    .reg-social-proof {
        left: 34px;
        right: 34px;
    }

    .booking-item {
        grid-template-columns: 1fr;
    }

    .booking-item img {
        height: 220px;
    }

    .booking-content {
        padding: 0 16px 12px;
    }

    .booking-actions {
        padding: 0 16px 16px;
        justify-content: flex-start;
    }

    .booking-grid {
        grid-template-columns: 1fr;
    }

    .rewards-banner {
        flex-direction: column;
        align-items: flex-start;
    }
}

@media (max-width: 767.98px) {
    .hero-card,
    .destination-hero-card {
        padding: 22px;
    }

    .hero-card {
        min-height: 600px;
        justify-content: center;
        background-position: 64% center;
    }

    .hero-card h1 {
        letter-spacing: -1.7px;
    }

    .hero-intro {
        font-size: 0.94rem;
        line-height: 1.6;
    }

    .hero-spotlight {
        padding-bottom: 30px;
    }

    .hero-search-dock {
        width: calc(100% - 24px);
        margin: 14px auto 0;
        padding: 16px;
        grid-template-columns: 1fr;
        gap: 12px;
        border-radius: 15px;
    }

    .hero-search-label {
        gap: 1px;
    }

    .hero-search-bar {
        flex-wrap: wrap;
        border-radius: 16px;
    }

    .hero-search-bar button {
        width: 100%;
    }

    .city-card {
        height: 300px;
    }

    .auth-meta-row {
        justify-content: center;
    }

    .auth-back-link {
        top: 12px;
        left: 12px;
    }
}

.admin-login-page {
    min-height: 100vh;
    background: linear-gradient(150deg, #0f4bb8, #0b3d95);
    display: flex;
    align-items: center;
    justify-content: center;
}

.admin-login-wrap {
    width: 100%;
    max-width: 430px;
    margin: 0 auto;
}

.admin-login-card {
    background: #fff;
    border-radius: 18px;
    padding: 28px;
    box-shadow: 0 20px 50px rgba(12, 29, 66, 0.25);
}

.admin-login-card h1 {
    margin-bottom: 6px;
}

.admin-login-card p {
    color: #677087;
}

.admin-page {
    background: #eef1f8;
}

.admin-shell {
    min-height: 100vh;
    display: grid;
    grid-template-columns: 270px 1fr;
}

.admin-sidebar {
    background: linear-gradient(180deg, #112e69, #0d2452);
    color: #fff;
    padding: 18px;
    display: flex;
    flex-direction: column;
    position: sticky;
    top: 0;
    height: 100vh;
}

.admin-brand {
    padding-bottom: 14px;
    margin-bottom: 14px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.18);
}

.admin-brand small {
    color: rgba(255, 255, 255, 0.7);
}

.admin-nav {
    display: grid;
    gap: 6px;
}

.admin-nav a {
    border-radius: 10px;
    padding: 9px 12px;
    color: rgba(255, 255, 255, 0.82);
    display: flex;
    align-items: center;
    gap: 9px;
    font-size: 0.92rem;
    transition: all 0.2s ease;
}

.admin-nav a:hover,
.admin-nav a.active {
    background: rgba(255, 255, 255, 0.16);
    color: #fff;
}

.admin-sidebar-footer {
    margin-top: auto;
}

.admin-main {
    padding: 0 10px;
}

.admin-topbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 18px;
    margin-bottom: 16px;
}

.admin-topbar h1 {
    margin: 0;
    font-size: 1.5rem;
}

.admin-topbar p {
    margin: 2px 0 0;
    color: #6e7790;
}

.admin-user-pill {
    background: #fff;
    border-radius: 999px;
    border: 1px solid #e1e5ef;
    padding: 8px 14px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.admin-panel {
    background: #fff;
    border-radius: 14px;
    border: 1px solid #e2e6ef;
    padding: 16px;
}

.dashboard-welcome {
    position: relative;
    overflow: hidden;
    min-height: 148px;
    padding: 28px 30px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    color: #fff;
    background: linear-gradient(125deg, #102d67 0%, #1556bd 64%, #2d77d5 100%);
    border-radius: 20px;
    box-shadow: 0 18px 45px rgba(16, 45, 103, 0.2);
}

.dashboard-welcome::after {
    content: "";
    position: absolute;
    width: 260px;
    height: 260px;
    right: -75px;
    top: -110px;
    border: 42px solid rgba(255, 255, 255, 0.08);
    border-radius: 50%;
}

.dashboard-welcome > * { position: relative; z-index: 1; }
.dashboard-welcome h2 { margin: 7px 0 5px; font-size: clamp(1.45rem, 2.4vw, 2rem); }
.dashboard-welcome p { margin: 0; color: rgba(255, 255, 255, 0.75); }
.dashboard-eyebrow { font-size: 0.72rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: #ffd269; }
.dashboard-welcome-actions { display: flex; align-items: center; gap: 12px; }
.dashboard-date { padding: 10px 13px; white-space: nowrap; color: rgba(255,255,255,.85); background: rgba(255,255,255,.1); border: 1px solid rgba(255,255,255,.15); border-radius: 10px; font-size: .78rem; }
.dashboard-welcome .btn { white-space: nowrap; color: #15386f; font-weight: 700; border-radius: 10px; }

.dashboard-stats .admin-stat-card {
    min-height: 126px;
    padding: 20px;
    display: flex;
    align-items: center;
    gap: 15px;
    border-radius: 16px;
    box-shadow: 0 10px 28px rgba(21, 44, 82, 0.05);
}

.admin-stat-icon { width: 48px; height: 48px; display: inline-grid; place-items: center; flex: 0 0 auto; color: #14825f; background: #e6f7f1; border-radius: 14px; font-size: 1.2rem; }
.admin-stat-icon.icon-blue { color: #1556bd; background: #eaf2ff; }
.admin-stat-icon.icon-amber { color: #a76600; background: #fff3d8; }
.admin-stat-icon.icon-violet { color: #7048b8; background: #f1eaff; }
.admin-stat-copy p { margin: 0 0 3px; color: #778197; font-size: .76rem; font-weight: 600; }
.admin-stat-copy h3 { margin: 0; color: #16233b; font-size: 1.45rem; letter-spacing: -.03em; }
.admin-stat-copy small { display: block; margin-top: 4px; color: #97a0b0; font-size: .68rem; }

.admin-panel-heading { display: flex; align-items: center; justify-content: space-between; gap: 15px; margin-bottom: 16px; }
.admin-panel-heading h5 { margin: 2px 0 0; font-size: 1.02rem; }
.admin-section-kicker { color: #8a94a7; font-size: .65rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; }
.admin-text-link { color: #1556bd; font-size: .76rem; font-weight: 600; }
.dashboard-table-panel { padding-bottom: 4px; }
.admin-dashboard-table { margin: 0; }
.admin-dashboard-table thead th { padding: 10px 12px; color: #929bac; background: #f7f9fc; border: 0; font-size: .67rem; letter-spacing: .06em; text-transform: uppercase; }
.admin-dashboard-table tbody td { padding: 13px 12px; border-color: #edf0f5; color: #59657a; font-size: .8rem; }
.admin-dashboard-table td:first-child strong, .admin-dashboard-table td:first-child small { display: block; }
.admin-dashboard-table td:first-child strong { color: #1b2941; font-size: .82rem; }
.admin-dashboard-table td:first-child small { max-width: 260px; color: #8993a5; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.admin-status-dot { display: inline-flex; align-items: center; gap: 6px; padding: 5px 9px; border-radius: 999px; color: #176d54; background: #e8f7f1; font-size: .68rem; font-weight: 700; }
.admin-status-dot::before { content: ""; width: 6px; height: 6px; background: currentColor; border-radius: 50%; }
.admin-status-dot.status-completed { color: #315aa9; background: #eaf1ff; }
.admin-status-dot.status-canceled { color: #a64545; background: #fdecec; }

.dashboard-tour-list { display: grid; }
.dashboard-tour-row { padding: 12px 2px; display: grid; grid-template-columns: 38px minmax(0,1fr) auto; align-items: center; gap: 11px; border-bottom: 1px solid #edf0f5; }
.dashboard-tour-row:last-child { border-bottom: 0; }
.dashboard-tour-icon { width: 36px; height: 36px; display: grid; place-items: center; color: #1556bd; background: #edf4ff; border-radius: 10px; }
.dashboard-tour-row strong, .dashboard-tour-row small { display: block; }
.dashboard-tour-row strong { color: #1b2941; font-size: .82rem; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.dashboard-tour-row small { color: #8c96a8; font-size: .68rem; }
.dashboard-tour-row b { color: #1556bd; font-size: .82rem; }

.dashboard-action-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 10px; }
.dashboard-action-grid a { min-height: 88px; padding: 15px 10px; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 8px; color: #35435b; background: #f7f9fc; border: 1px solid #e8ecf3; border-radius: 12px; font-size: .76rem; font-weight: 600; transition: .2s ease; }
.dashboard-action-grid a i { color: #1556bd; font-size: 1.15rem; }
.dashboard-action-grid a:hover { color: #1556bd; background: #edf4ff; border-color: #cedfff; transform: translateY(-2px); }
.dashboard-health-row { padding: 13px 0; display: flex; align-items: center; justify-content: space-between; border-bottom: 1px solid #edf0f5; color: #667287; font-size: .79rem; }
.dashboard-health-row span { display: flex; align-items: center; gap: 9px; }
.dashboard-health-row i { color: #1556bd; }
.dashboard-health-row strong { color: #19263d; }

/* Shared admin design system */
.admin-page .admin-main > .container-fluid {
    max-width: 1680px;
    padding: 26px 28px !important;
}

.admin-page .admin-topbar {
    margin-bottom: 24px;
}

.admin-page .admin-topbar h1 {
    color: #15233b;
    font-size: 1.7rem;
    font-weight: 800;
    letter-spacing: -0.04em;
}

.admin-page .admin-panel {
    padding: 22px;
    border-color: #e1e6ef;
    border-radius: 17px;
    box-shadow: 0 10px 30px rgba(21, 44, 82, 0.055);
}

.admin-page .admin-stat-card {
    position: relative;
    overflow: hidden;
    min-height: 108px;
    padding: 20px;
    border-color: #e1e6ef;
    border-radius: 16px;
    box-shadow: 0 10px 28px rgba(21, 44, 82, 0.05);
}

.admin-page .admin-stat-card::before {
    content: "";
    position: absolute;
    inset: 0 auto 0 0;
    width: 4px;
    background: linear-gradient(180deg, #1556bd, #68a2ef);
}

.admin-page .admin-stat-card h3 { color: #17253d; font-weight: 800; letter-spacing: -.035em; }
.admin-page .admin-stat-card p { color: #7b8699; font-size: .76rem; font-weight: 600; }

.admin-page .admin-panel > h5 {
    margin-bottom: 18px !important;
    color: #1a2942;
    font-size: 1.02rem;
    font-weight: 750;
}

.admin-page .form-label {
    margin-bottom: 7px;
    color: #66738a;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.045em;
    text-transform: uppercase;
}

.admin-page .form-control,
.admin-page .form-select {
    min-height: 44px;
    color: #26344c;
    background-color: #f9fbfd;
    border-color: #dce3ed;
    border-radius: 10px;
    font-size: 0.82rem;
}

.admin-page textarea.form-control { min-height: auto; }
.admin-page .form-control:focus,
.admin-page .form-select:focus { background-color: #fff; border-color: #729ce0; box-shadow: 0 0 0 3px rgba(21, 86, 189, 0.1); }
.admin-page .btn { min-height: 40px; border-radius: 9px; font-size: 0.78rem; font-weight: 650; }
.admin-page .btn-sm { min-height: 32px; }
.admin-page .table { margin-bottom: 0; }
.admin-page .table thead th { padding: 11px 12px; color: #8994a8; background: #f6f8fb; border-top: 1px solid #edf0f5; border-bottom-color: #e5e9f0; font-size: 0.66rem; font-weight: 750; letter-spacing: 0.065em; text-transform: uppercase; }
.admin-page .table thead th:first-child { border-radius: 9px 0 0 9px; }
.admin-page .table thead th:last-child { border-radius: 0 9px 9px 0; }
.admin-page .table tbody td { padding: 13px 12px; color: #5f6b80; border-color: #edf0f5; font-size: 0.78rem; }
.admin-page .table tbody td strong { color: #1d2b43; }
.admin-page .alert { border: 0; border-radius: 12px; box-shadow: 0 8px 22px rgba(21, 44, 82, 0.06); }
.admin-page .form-check-input { border-color: #bac5d5; }
.admin-page .form-check-label { color: #536078; font-size: .8rem; }

.admin-brand h5 { font-weight: 800; letter-spacing: -0.03em; }
.admin-nav a i { width: 24px; height: 24px; display: inline-grid; place-items: center; border-radius: 7px; background: rgba(255,255,255,.08); }
.admin-nav a.active { box-shadow: inset 3px 0 0 #ffc247; }

/* Contact page */
.contact-hero { padding: 76px 0 96px; text-align: center; color: #fff; background: linear-gradient(125deg, rgba(9,30,67,.95), rgba(18,77,163,.9)), url('../uploads/golden-triangle-signature.png') center/cover; }
.contact-eyebrow, .contact-card-kicker { color: #f3ad28; font-size: .7rem; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; }
.contact-hero h1 { max-width: 760px; margin: 10px auto 12px; font-size: clamp(2rem,5vw,3.7rem); letter-spacing: -.05em; }
.contact-hero p { max-width: 720px; margin: 0 auto; color: rgba(255,255,255,.78); line-height: 1.7; }
.contact-content { margin-top: -46px; padding-bottom: 30px; }
.contact-main-card, .contact-details-card { padding: 30px; background: #fff; border: 1px solid #e1e6ef; border-radius: 18px; box-shadow: 0 18px 46px rgba(14,38,77,.1); }
.contact-main-card h2 { margin: 8px 0 12px; color: #17263e; font-size: clamp(1.5rem,3vw,2.2rem); }
.contact-main-card > p { color: #68758a; line-height: 1.7; }
.contact-feature-grid { margin-top: 25px; display: grid; grid-template-columns: repeat(2,1fr); gap: 12px; }
.contact-feature-grid > div { padding: 14px; display: flex; gap: 11px; background: #f7f9fc; border-radius: 12px; }
.contact-feature-grid i { color: #1556bd; font-size: 1.1rem; }
.contact-feature-grid strong, .contact-feature-grid small { display: block; }
.contact-feature-grid strong { color: #25334b; font-size: .8rem; }
.contact-feature-grid small { margin-top: 3px; color: #8590a3; font-size: .68rem; }
.contact-details-card h3 { margin: 8px 0 18px; color: #17263e; }
.contact-method { padding: 15px 0; display: flex; align-items: center; gap: 13px; color: inherit; border-bottom: 1px solid #edf0f5; }
.contact-method > i { width: 40px; height: 40px; display: grid; place-items: center; flex: 0 0 auto; color: #1556bd; background: #edf4ff; border-radius: 11px; }
.contact-method small, .contact-method strong { display: block; }
.contact-method small { color: #8a94a7; font-size: .67rem; }
.contact-method strong { margin-top: 2px; color: #26344c; font-size: .78rem; word-break: break-word; }

.footer-bottom,
.admin-credit-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}

.developer-credit a {
    color: inherit;
    font-weight: 700;
    text-decoration: none;
    transition: color 0.2s ease;
}

.developer-credit a:hover {
    color: var(--vh-warning);
}

.admin-credit-footer {
    margin-top: 28px;
    padding: 18px 2px 4px;
    color: #8a94a7;
    border-top: 1px solid #dfe5ee;
    font-size: 0.7rem;
}

.admin-credit-footer .developer-credit a {
    color: #1556bd;
}

.admin-credit-footer .developer-credit a:hover {
    color: #0e3f8f;
}

.tag-editor {
    border: 1px solid #dfe4ef;
    border-radius: 10px;
    padding: 10px;
    background: #fff;
}

.tag-editor-list {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-bottom: 8px;
}

.tag-chip {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: #edf3ff;
    color: #1947a0;
    border-radius: 999px;
    font-size: 0.8rem;
    padding: 5px 10px;
}

.tag-chip-remove {
    border: none;
    background: transparent;
    color: #1947a0;
    padding: 0;
    line-height: 1;
    font-size: 0.75rem;
}

.tag-editor-input {
    border: none;
    width: 100%;
    outline: none;
    font-size: 0.92rem;
    color: #47536b;
}

.media-slot-card {
    border: 1px solid #dfe4ef;
    border-radius: 12px;
    padding: 10px;
    height: 100%;
}

.itinerary-row,
.venue-row {
    border: 1px solid #e0e6f1;
    border-radius: 10px;
    padding: 8px;
    background: #f9fbff;
    margin-bottom: 8px;
}

.media-main-card {
    border: 1px solid #dfe4ef;
    border-radius: 12px;
    padding: 10px;
}

.media-main-preview {
    width: 100%;
    height: 140px;
    border: 1px dashed #cfd7e8;
    border-radius: 10px;
    margin-bottom: 10px;
    overflow: hidden;
    background: #f6f9ff;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #69758e;
    font-size: 0.84rem;
}

.media-main-preview img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.gallery-chip-list {
    display: grid;
    gap: 8px;
}

.gallery-chip-item {
    display: grid;
    grid-template-columns: 110px 1fr;
    gap: 8px;
    border: 1px solid #dfe4ef;
    border-radius: 10px;
    padding: 8px;
    background: #fff;
}

.gallery-chip-item img {
    width: 110px;
    height: 72px;
    border-radius: 8px;
    object-fit: cover;
}

.gallery-chip-actions {
    display: flex;
    align-items: center;
    gap: 6px;
    flex-wrap: wrap;
}

.media-slot-title {
    margin: 0 0 8px;
    font-size: 0.82rem;
    font-weight: 700;
}

.media-slot-preview {
    height: 110px;
    border-radius: 10px;
    border: 1px dashed #cfd7e8;
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: #f5f8fe;
}

.media-slot-preview img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.media-slot-empty {
    font-size: 0.78rem;
    color: #6a7285;
}

.media-upload-box {
    border: 1px solid #e0e6f1;
    border-radius: 12px;
    padding: 12px;
    background: #f8faff;
}

.admin-image-upload {
    padding: 10px;
    display: grid;
    grid-template-columns: 118px minmax(0, 1fr);
    align-items: center;
    gap: 14px;
    background: #f8fafc;
    border: 1px solid #dfe5ef;
    border-radius: 12px;
}

.admin-image-preview {
    height: 82px;
    overflow: hidden;
    display: grid;
    place-items: center;
    color: #8090a9;
    background: #eef2f7;
    border: 1px dashed #cbd5e3;
    border-radius: 9px;
}

.admin-image-upload-wide .admin-image-preview {
    height: 92px;
}

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

.admin-image-preview i {
    font-size: 1.5rem;
}

.admin-image-upload-copy {
    min-width: 0;
}

.admin-image-upload-copy .form-control {
    font-size: 0.78rem;
}

.admin-image-upload-copy small {
    display: block;
    margin-top: 7px;
    color: #7d8799;
    font-size: 0.68rem;
    line-height: 1.4;
}

.media-library-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
    gap: 10px;
}

.media-library-item {
    border: 1px solid #d7dfee;
    border-radius: 10px;
    background: #fff;
    padding: 6px;
    text-align: left;
    transition: all 0.2s ease;
}

.media-library-item:hover,
.media-library-item.active {
    border-color: #0f4bb8;
    box-shadow: 0 0 0 2px rgba(15, 75, 184, 0.1);
}

.media-library-item img {
    width: 100%;
    height: 95px;
    object-fit: cover;
    border-radius: 7px;
}

.media-library-item span {
    margin-top: 5px;
    font-size: 0.73rem;
    display: block;
    color: #4f5d77;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.admin-stat-card {
    background: #fff;
    border: 1px solid #e2e6ef;
    border-radius: 12px;
    padding: 16px;
}

.admin-stat-card h3 {
    margin-bottom: 4px;
}

.admin-stat-card p {
    margin: 0;
    color: #667084;
}

.content-html h3 {
    margin-top: 22px;
    margin-bottom: 10px;
}

.content-html p {
    color: #586378;
    line-height: 1.7;
}

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

    .admin-sidebar {
        position: static;
        height: auto;
        padding: 13px 16px;
    }

    .admin-brand {
        padding-bottom: 10px;
        margin-bottom: 10px;
    }

    .admin-nav {
        display: flex;
        gap: 7px;
        overflow-x: auto;
        padding-bottom: 4px;
        scrollbar-width: none;
    }

    .admin-nav::-webkit-scrollbar { display: none; }

    .admin-nav a {
        flex: 0 0 auto;
        white-space: nowrap;
    }

    .admin-sidebar-footer {
        display: none;
    }

    .dashboard-welcome {
        align-items: flex-start;
        flex-direction: column;
    }

    .dashboard-welcome-actions {
        width: 100%;
        justify-content: space-between;
    }
}

@media (max-width: 575.98px) {
    .admin-main { padding: 0 3px; }
    .admin-main > .container-fluid { padding: 15px 10px !important; }
    .admin-topbar { align-items: flex-start; }
    .admin-topbar p { font-size: .75rem; }
    .admin-user-pill { padding: 7px 9px; }
    .admin-user-pill span { display: none; }
    .dashboard-welcome { min-height: 0; padding: 21px; border-radius: 16px; }
    .dashboard-welcome p { font-size: .8rem; }
    .dashboard-welcome-actions { align-items: stretch; flex-direction: column; }
    .dashboard-welcome-actions .btn { width: 100%; }
    .dashboard-date { text-align: center; }
    .dashboard-stats .admin-stat-card { min-height: 105px; }
    .admin-dashboard-table th:nth-child(2),
    .admin-dashboard-table td:nth-child(2) { display: none; }
    .dashboard-tour-row { grid-template-columns: 36px minmax(0,1fr); }
    .dashboard-tour-row > b { grid-column: 2; }
    .admin-image-upload { grid-template-columns: 1fr; }
    .admin-image-preview,
    .admin-image-upload-wide .admin-image-preview { height: 145px; }
    .contact-hero { padding: 52px 0 72px; }
    .contact-hero p { padding: 0 12px; font-size: .82rem; }
    .contact-content { margin-top: -34px; }
    .contact-main-card,
    .contact-details-card { padding: 21px; border-radius: 15px; }
    .contact-feature-grid { grid-template-columns: 1fr; }
    .footer-bottom,
    .admin-credit-footer { flex-direction: column; text-align: center; gap: 7px; }
}

/* Support Topbar Styles */
.site-topbar {
    background-color: var(--vh-ink);
    color: rgba(255, 255, 255, 0.82);
    font-size: 0.82rem;
    font-weight: 500;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.site-topbar a {
    color: rgba(255, 255, 255, 0.82);
    transition: color 0.2s ease;
    display: inline-flex;
    align-items: center;
    text-decoration: none;
}

.site-topbar a:hover {
    color: var(--vh-warning);
}

.site-topbar i {
    color: var(--vh-warning);
}

/* Compact mobile header and hero */
@media (max-width: 767.98px) {
    .site-topbar {
        display: none;
    }

    .main-header .navbar.py-3 {
        min-height: 58px;
        padding-top: 8px !important;
        padding-bottom: 8px !important;
    }

    .main-header .navbar-brand {
        font-size: 1.05rem;
    }

    .main-header .navbar-toggler {
        padding: 5px 8px;
        border-radius: 8px;
    }

    .main-header .navbar-toggler-icon {
        width: 1.25em;
        height: 1.25em;
    }

    .hero-spotlight {
        padding-top: 14px;
        padding-bottom: 20px;
    }

    .hero-card,
    .destination-hero-card-v2 {
        min-height: 200px;
        padding: 20px;
        border-radius: 20px;
        background-position: 66% center;
    }

    .hero-chip {
        margin-bottom: 9px;
        padding: 4px 9px;
        font-size: 0.58rem;
    }

    .hero-card h1 {
        margin-bottom: 10px;
        font-size: clamp(1.82rem, 9.5vw, 2.2rem);
        line-height: 1.02;
        letter-spacing: -1.5px;
    }

    .hero-intro {
        display: -webkit-box;
        overflow: hidden;
        margin-bottom: 13px;
        font-size: 0.76rem;
        line-height: 1.42;
        -webkit-box-orient: vertical;
        -webkit-line-clamp: 2;
    }

    .hero-trust-row {
        display: none;
    }

    .hero-actions {
        display: none;
    }

    .hero-actions .btn {
        min-height: 38px;
        padding-inline: 14px;
        font-size: 0.77rem;
        border-radius: 10px;
    }

    .hero-actions .btn-outline-light {
        display: none;
    }

    .hero-search-dock {
        width: calc(100% - 20px);
        position: relative;
        z-index: 3;
        margin: -28px auto 0;
        padding: 6px;
        display: block;
        border-radius: 13px;
        box-shadow: 0 10px 28px rgba(12, 37, 66, 0.12);
    }

    .hero-search-label {
        display: none;
    }

    .hero-search-bar {
        min-height: 48px;
        padding: 4px 4px 4px 12px;
        flex-wrap: nowrap;
        gap: 7px;
        border: 0;
        border-radius: 9px;
        background: #f4f7fa;
    }

    .hero-search-bar input {
        font-size: 0.78rem;
    }

    .hero-search-bar button {
        width: auto;
        min-height: 40px;
        padding: 0 13px !important;
        font-size: 0.75rem;
        border-radius: 8px !important;
    }

    #tourFilters.show,
    #tourFilters.collapsing {
        margin-bottom: 16px;
    }

    #tourFilters.filter-panel {
        padding: 16px;
        border-radius: 14px;
        box-shadow: 0 10px 28px rgba(20, 47, 86, 0.07);
    }

    .tours-control-bar {
        min-height: auto;
        margin-bottom: 14px;
        padding: 11px;
        align-items: center;
        gap: 10px;
        border-radius: 13px;
    }

    .tour-results-summary {
        display: grid;
        gap: 0;
        line-height: 1.05;
    }

    .tour-results-summary strong {
        font-size: 1rem;
    }

    .tour-results-summary span {
        font-size: 0.67rem;
    }

    .tour-control-actions {
        margin-left: auto;
        gap: 7px;
    }

    .mobile-filter-button {
        min-width: 42px;
        min-height: 40px;
        padding: 0 11px;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        gap: 6px;
        color: var(--vh-primary);
        background: #edf4ff;
        border: 1px solid #d6e5ff;
        border-radius: 10px;
        font-weight: 600;
        font-size: 0.76rem;
    }

    .tour-sort-form {
        gap: 0;
    }

    .tour-sort-form > label {
        position: absolute;
        width: 1px;
        height: 1px;
        overflow: hidden;
        clip: rect(0, 0, 0, 0);
    }

    .tour-sort-select .form-select {
        width: 142px;
        min-height: 40px;
        padding-left: 31px;
        padding-right: 28px;
        font-size: 0.75rem;
        border-radius: 10px;
    }

    .tour-sort-select > i {
        left: 10px;
        font-size: 0.72rem;
    }

    .journey-section-heading {
        margin-bottom: 18px;
        align-items: center;
    }

    .journey-kicker {
        font-size: 0.59rem;
    }

    .journey-timeline {
        padding: 4px 0;
    }

    .journey-timeline::before {
        top: 24px;
        bottom: 24px;
        left: 22px;
        width: 10px;
    }

    .journey-timeline::after {
        top: 31px;
        bottom: 31px;
        left: 22px;
    }

    .journey-stop {
        min-height: 0;
        margin-bottom: 18px;
        grid-template-columns: 50px minmax(0, 1fr);
    }

    .journey-stop:last-child {
        margin-bottom: 0;
    }

    .journey-day-card,
    .journey-stop:nth-child(even) .journey-day-card {
        grid-column: 2;
        padding: 15px;
        border-radius: 12px;
    }

    .journey-day-card::after,
    .journey-stop:nth-child(even) .journey-day-card::after {
        right: auto;
        left: -8px;
        width: 14px;
        height: 14px;
        border: 0;
        border-bottom: 1px solid #dfe6ef;
        border-left: 1px solid #dfe6ef;
    }

    .journey-marker {
        grid-column: 1;
        width: 42px;
        height: 42px;
        border-width: 4px;
    }

    .journey-day-card p {
        font-size: 0.76rem;
        line-height: 1.58;
    }
}
