:root {
    --bg: #f4f8fc;
    --surface: #ffffff;
    --surface-alt: #0d223f;
    --text: #17304d;
    --muted: #61748a;
    --primary: #0c5ea9;
    --primary-dark: #083d70;
    --secondary: #ff8e26;
    --secondary-soft: #fff1e4;
    --border: rgba(23, 48, 77, 0.12);
    --shadow: 0 24px 50px rgba(9, 38, 68, 0.12);
    --radius-lg: 28px;
    --radius-md: 20px;
    --radius-sm: 14px;
    --container: 1180px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: 'Manrope', sans-serif;
    color: var(--text);
    background:
        radial-gradient(circle at top left, rgba(255, 142, 38, 0.15), transparent 28%),
        radial-gradient(circle at top right, rgba(12, 94, 169, 0.2), transparent 32%),
        var(--bg);
}

a {
    color: inherit;
    text-decoration: none;
}

img {
    display: block;
    width: 100%;
}

button,
input,
textarea,
select {
    font: inherit;
}

main {
    overflow: hidden;
}

.container {
    width: min(calc(100% - 32px), var(--container));
    margin: 0 auto;
}

.section {
    padding: 88px 0;
}

.section-alt {
    background: linear-gradient(180deg, rgba(12, 94, 169, 0.03), rgba(255, 255, 255, 0));
}

.section-header {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 24px;
    margin-bottom: 36px;
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 8px 14px;
    border-radius: 999px;
    font-size: 0.8rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    background: rgba(12, 94, 169, 0.08);
    color: var(--primary);
}

.section h2,
.page-hero h1,
.hero h1 {
    margin: 16px 0 12px;
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(2.3rem, 5vw, 4.8rem);
    line-height: 0.95;
    letter-spacing: -0.03em;
}

.section p.lead,
.hero p,
.page-hero p {
    max-width: 700px;
    color: var(--muted);
    line-height: 1.8;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 50;
    backdrop-filter: blur(18px);
    background: rgba(244, 248, 252, 0.88);
    border-bottom: 1px solid rgba(23, 48, 77, 0.08);
}

.nav-shell {
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 24px;
    min-height: 86px;
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 14px;
}

.brand strong {
    display: block;
    font-size: 1rem;
}

.brand small {
    color: var(--muted);
}

.brand-mark {
    width: 48px;
    height: 48px;
    border-radius: 16px;
    display: grid;
    place-items: center;
    font-weight: 800;
    color: white;
    background: linear-gradient(140deg, var(--secondary), var(--primary));
    box-shadow: var(--shadow);
}

.site-nav {
    display: flex;
    justify-content: center;
    gap: 18px;
    font-size: 0.95rem;
}

.site-nav a {
    position: relative;
    padding: 10px 0;
    color: var(--muted);
}

.site-nav a::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 2px;
    width: 100%;
    height: 2px;
    transform: scaleX(0);
    transform-origin: right;
    background: linear-gradient(90deg, var(--secondary), var(--primary));
    transition: transform 0.3s ease;
}

.site-nav a:hover,
.site-nav a.active {
    color: var(--text);
}

.site-nav a:hover::after,
.site-nav a.active::after {
    transform: scaleX(1);
    transform-origin: left;
}

.nav-actions {
    display: flex;
    gap: 12px;
}

.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 20px;
    border-radius: 999px;
    border: 1px solid transparent;
    font-weight: 700;
    transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}

.button:hover {
    transform: translateY(-2px);
}

.button-primary {
    color: white;
    background: linear-gradient(135deg, var(--primary), #1481dd);
    box-shadow: 0 16px 34px rgba(12, 94, 169, 0.28);
}

.button-outline {
    color: var(--primary);
    background: rgba(255, 255, 255, 0.72);
    border-color: rgba(12, 94, 169, 0.18);
}

.button-accent {
    color: var(--text);
    background: linear-gradient(135deg, #ffd29a, var(--secondary));
    box-shadow: 0 16px 34px rgba(255, 142, 38, 0.25);
}

.hero {
    position: relative;
    padding: 64px 0 90px;
}

.hero-slider {
    position: relative;
}

.hero-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    pointer-events: none;
    transform: scale(1.015);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.hero-slide.is-active {
    position: relative;
    opacity: 1;
    pointer-events: auto;
    transform: scale(1);
}

.hero-card,
.page-hero-card {
    position: relative;
    overflow: hidden;
    border-radius: 40px;
    min-height: 620px;
    display: grid;
    align-items: center;
    background-size: cover;
    background-position: center;
    box-shadow: var(--shadow);
}

.page-hero-card {
    min-height: 420px;
    background-position: center;
}

.hero-card::before,
.page-hero-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(110deg, rgba(8, 24, 48, 0.82), rgba(8, 24, 48, 0.35) 58%, rgba(255, 142, 38, 0.12));
}

.page-hero-card::before {
    background:
        linear-gradient(100deg, rgba(4, 16, 32, 0.9), rgba(4, 16, 32, 0.58) 52%, rgba(255, 142, 38, 0.16)),
        linear-gradient(0deg, rgba(4, 16, 32, 0.4), rgba(4, 16, 32, 0.4));
}

.hero-grid,
.page-hero-grid {
    position: relative;
    z-index: 1;
    padding: 56px;
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: 28px;
    color: white;
}

.page-hero-grid {
    grid-template-columns: 1fr;
}

.hero-grid-single {
    grid-template-columns: 1fr;
    max-width: 780px;
}

.hero h1,
.page-hero h1,
.hero p,
.page-hero p {
    color: white;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 28px;
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    align-self: end;
}

.hero-controls {
    position: absolute;
    left: 32px;
    right: 32px;
    bottom: 28px;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}

.hero-control {
    width: 52px;
    height: 52px;
    border: 0;
    border-radius: 50%;
    display: grid;
    place-items: center;
    color: white;
    cursor: pointer;
    background: rgba(255, 255, 255, 0.14);
    backdrop-filter: blur(12px);
    transition: transform 0.25s ease, background 0.25s ease;
}

.hero-control:hover {
    transform: translateY(-2px);
    background: rgba(255, 255, 255, 0.24);
}

.hero-dots {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.hero-dot {
    width: 12px;
    height: 12px;
    padding: 0;
    border: 0;
    border-radius: 999px;
    cursor: pointer;
    background: rgba(255, 255, 255, 0.4);
    transition: width 0.25s ease, background 0.25s ease;
}

.hero-dot.is-active {
    width: 34px;
    background: linear-gradient(135deg, var(--secondary), #ffd29a);
}

.stat-card,
.info-card,
.feature-card,
.package-card,
.destination-card,
.testimonial-card,
.contact-card,
.admin-card,
.admin-panel,
.form-card,
.gallery-card {
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    background: rgba(255, 255, 255, 0.9);
    box-shadow: var(--shadow);
}

.stat-card {
    padding: 24px;
    color: var(--text);
}

.stat-card strong {
    display: block;
    font-size: 2rem;
    font-family: 'Cormorant Garamond', serif;
}

.cards-3,
.cards-4,
.trust-grid,
.state-grid,
.package-grid,
.destination-grid,
.gallery-grid,
.footer-grid,
.contact-grid,
.admin-grid,
.overview-grid,
.dual-grid {
    display: grid;
    gap: 24px;
}

.cards-3,
.trust-grid,
.state-grid,
.package-grid,
.destination-grid,
.contact-grid,
.overview-grid,
.dual-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.cards-4,
.gallery-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.feature-card,
.info-card,
.contact-card,
.form-card,
.admin-card {
    padding: 28px;
}

.trust-grid {
    gap: 20px;
}

.trust-card,
.tour-card {
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    background: rgba(255, 255, 255, 0.9);
    box-shadow: var(--shadow);
}

.trust-card {
    padding: 28px;
}

.trust-list {
    display: grid;
    gap: 18px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.trust-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-weight: 700;
    color: var(--text);
}

.trust-list i {
    margin-top: 3px;
    color: var(--secondary);
}

.state-card {
    position: relative;
    display: flex;
    flex-direction: column;
    height: 100%;
    overflow: hidden;
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    background: rgba(255, 255, 255, 0.9);
    box-shadow: var(--shadow);
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.state-card::before,
.destination-card::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: inherit;
    pointer-events: none;
    opacity: 0;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0) 10%, rgba(12, 94, 169, 0.08) 100%);
    transition: opacity 0.3s ease;
}

.state-card::after,
.destination-card::after {
    content: '';
    position: absolute;
    top: 18px;
    right: 18px;
    width: 46px;
    height: 46px;
    border-radius: 50%;
    pointer-events: none;
    opacity: 0;
    transform: scale(0.75);
    background: radial-gradient(circle, rgba(255, 142, 38, 0.28) 0%, rgba(255, 142, 38, 0) 72%);
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.state-card:hover {
    transform: translateY(-10px);
    border-color: rgba(12, 94, 169, 0.22);
    box-shadow: 0 30px 56px rgba(9, 38, 68, 0.2);
}

.state-card:hover::before,
.destination-card:hover::before,
.state-card:hover::after,
.destination-card:hover::after {
    opacity: 1;
}

.state-card:hover::after,
.destination-card:hover::after {
    transform: scale(1);
}

.state-card-media {
    position: relative;
    height: 230px;
    background-size: cover;
    background-position: center;
    transition: transform 0.45s ease;
}

.state-card-media::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(8, 24, 48, 0.04), rgba(8, 24, 48, 0.34));
}

.state-card-body {
    position: relative;
    padding: 24px;
}

.state-card-body::before,
.destination-card .card-body::before {
    content: '';
    display: block;
    width: 58px;
    height: 3px;
    margin-bottom: 18px;
    border-radius: 999px;
    background: linear-gradient(90deg, var(--secondary), var(--primary));
    transition: width 0.3s ease;
}

.feature-card .icon,
.contact-card .icon,
.info-card .icon {
    width: 56px;
    height: 56px;
    display: grid;
    place-items: center;
    margin-bottom: 18px;
    border-radius: 18px;
    color: white;
    background: linear-gradient(135deg, var(--secondary), var(--primary));
    box-shadow: 0 16px 34px rgba(12, 94, 169, 0.22);
}

.package-card,
.destination-card,
.gallery-card {
    position: relative;
    display: flex;
    flex-direction: column;
    height: 100%;
    overflow: hidden;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.package-card:hover,
.destination-card:hover,
.gallery-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 28px 48px rgba(9, 38, 68, 0.18);
}

.state-card:hover .state-card-media,
.destination-card:hover .card-media {
    transform: scale(1.06);
}

.state-card:hover .state-card-body::before,
.destination-card:hover .card-body::before {
    width: 92px;
}

.state-card:hover .button,
.destination-card:hover .button {
    transform: translateX(4px);
}

.card-media {
    height: 240px;
    background-size: cover;
    background-position: center;
    position: relative;
}

.card-media::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent, rgba(8, 24, 48, 0.45));
}

.card-body {
    padding: 26px;
}

.meta-row {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 16px;
    color: var(--muted);
    font-size: 0.92rem;
}

.price-chip,
.tag-chip {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 14px;
    border-radius: 999px;
    font-size: 0.85rem;
    font-weight: 700;
}

.price-chip {
    color: white;
    background: linear-gradient(135deg, var(--secondary), #ffb35d);
}

.tag-chip {
    color: var(--primary);
    background: rgba(12, 94, 169, 0.08);
}

.destination-card .card-body,
.gallery-card .card-body {
    padding-top: 22px;
}

.gallery-card .card-media {
    height: 280px;
}

.tour-slider {
    position: relative;
}

.tour-slider.is-static .tour-controls {
    display: none;
}

.tour-slider-viewport {
    overflow: hidden;
    padding: 4px 0 8px;
}

.tour-track {
    position: relative;
    left: 0;
    display: flex;
    gap: 18px;
    transition: left 0.5s ease;
}

.tour-slide {
    min-width: calc((100% - 54px) / 4);
}

.tour-card {
    position: relative;
    display: block;
    height: 100%;
    overflow: hidden;
    border-radius: 28px;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.tour-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 28px 48px rgba(9, 38, 68, 0.18);
}

.tour-card-media {
    height: 340px;
    background-size: cover;
    background-position: center;
    position: relative;
}

.tour-card-media::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(8, 24, 48, 0.06), rgba(8, 24, 48, 0.18) 42%, rgba(8, 24, 48, 0.86) 100%);
}

.tour-card-image-only {
    display: block;
}

.tour-card-image-only .tour-card-media {
    height: clamp(260px, 32vw, 380px);
}

.tour-card-caption {
    position: absolute;
    left: 18px;
    right: 18px;
    bottom: 18px;
    z-index: 1;
    color: white;
}

.tour-card-caption span {
    display: inline-block;
    max-width: 100%;
    padding: 10px 14px;
    border-radius: 16px;
    font-size: 1rem;
    font-weight: 700;
    line-height: 1.35;
    background: rgba(4, 16, 32, 0.5);
    backdrop-filter: blur(10px);
}

.tour-controls {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    margin-top: 24px;
}

.tour-control {
    width: 46px;
    height: 46px;
    border: 0;
    border-radius: 50%;
    display: grid;
    place-items: center;
    color: white;
    cursor: pointer;
    background: linear-gradient(135deg, var(--primary), #1481dd);
    box-shadow: 0 16px 34px rgba(12, 94, 169, 0.24);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.tour-control:hover {
    transform: translateY(-2px);
    box-shadow: 0 20px 40px rgba(12, 94, 169, 0.3);
}

.tour-dots {
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 1;
    gap: 10px;
}

.tour-dot {
    width: 12px;
    height: 12px;
    padding: 0;
    border: 0;
    border-radius: 999px;
    cursor: pointer;
    background: rgba(12, 94, 169, 0.22);
    transition: width 0.25s ease, background 0.25s ease;
}

.tour-dot.is-active {
    width: 34px;
    background: linear-gradient(135deg, var(--secondary), #ffd29a);
}

.testimonial-wrap {
    position: relative;
    overflow: hidden;
}

.testimonial-track {
    display: flex;
    gap: 24px;
    transition: transform 0.5s ease;
}

.testimonial-card {
    min-width: calc(33.333% - 16px);
    padding: 28px;
}

.testimonial-head {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 18px;
}

.testimonial-head img {
    width: 72px;
    height: 72px;
    object-fit: cover;
    border-radius: 50%;
    border: 4px solid rgba(12, 94, 169, 0.1);
}

.stars {
    color: #ffad32;
}

.contact-grid {
    grid-template-columns: 1.1fr 0.9fr;
}

.form-row {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
}

.field {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 16px;
}

.field label {
    font-size: 0.92rem;
    font-weight: 700;
}

.field input,
.field textarea,
.field select {
    width: 100%;
    padding: 15px 16px;
    border-radius: 16px;
    border: 1px solid rgba(23, 48, 77, 0.14);
    background: rgba(255, 255, 255, 0.95);
    color: var(--text);
}

.field textarea {
    min-height: 160px;
    resize: vertical;
}

.split-banner {
    padding: 26px 28px;
    border-radius: var(--radius-lg);
    background: linear-gradient(135deg, rgba(12, 94, 169, 0.92), rgba(8, 61, 112, 0.95));
    color: white;
    display: grid;
    grid-template-columns: 1.2fr auto;
    gap: 24px;
    align-items: center;
    box-shadow: var(--shadow);
}

.split-banner p {
    color: rgba(255, 255, 255, 0.78);
    margin: 8px 0 0;
}

.page-hero {
    padding: 54px 0 24px;
}

.breadcrumbs {
    color: rgba(255, 255, 255, 0.78);
    display: inline-flex;
    gap: 8px;
    font-size: 0.92rem;
}

.package-layout,
.admin-layout {
    display: grid;
    grid-template-columns: 1.45fr 0.55fr;
    gap: 28px;
}

.content-panel,
.sidebar-panel,
.admin-sidebar,
.admin-panel {
    padding: 28px;
}

.content-panel ul,
.sidebar-panel ul {
    padding-left: 18px;
    color: var(--muted);
    line-height: 1.8;
}

.itinerary-item {
    position: relative;
    padding: 0 0 28px 24px;
    border-left: 2px solid rgba(12, 94, 169, 0.15);
}

.itinerary-item::before {
    content: '';
    position: absolute;
    left: -8px;
    top: 6px;
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--secondary), var(--primary));
}

.itinerary-item:last-child {
    padding-bottom: 0;
}

.badge-list {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.badge-list span {
    padding: 10px 14px;
    border-radius: 999px;
    background: rgba(12, 94, 169, 0.08);
    color: var(--primary);
    font-weight: 700;
    font-size: 0.88rem;
}

.map-frame {
    width: 100%;
    min-height: 420px;
    border: 0;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
}

.site-footer {
    padding: 72px 0 24px;
    background: linear-gradient(180deg, #081a30, #061221);
    color: rgba(255, 255, 255, 0.82);
}

.footer-brand {
    max-width: 620px;
    margin-bottom: 28px;
}

.site-footer h3,
.site-footer h4 {
    color: white;
}

.site-footer ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.site-footer li {
    margin-bottom: 10px;
}

.footer-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    align-items: start;
}

.social-links {
    display: flex;
    gap: 12px;
    margin-top: 18px;
}

.social-links a {
    width: 42px;
    height: 42px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.08);
}

.footer-bottom {
    padding-top: 24px;
    margin-top: 32px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    justify-content: space-between;
    gap: 20px;
    font-size: 0.92rem;
}

.flash {
    position: fixed;
    top: 102px;
    right: 18px;
    z-index: 70;
    max-width: 360px;
    padding: 14px 18px;
    border-radius: 18px;
    color: white;
    box-shadow: var(--shadow);
}

.flash-success {
    background: linear-gradient(135deg, #0a8f5c, #0bb87c);
}

.flash-error {
    background: linear-gradient(135deg, #c03a2b, #f06e5b);
}

.menu-toggle,
.mobile-sticky-bar {
    display: none;
}

.admin-login-shell {
    min-height: 100vh;
    display: grid;
    place-items: center;
    padding: 32px;
}

.admin-login-card {
    width: min(100%, 460px);
    padding: 32px;
    border-radius: var(--radius-lg);
    background: rgba(255, 255, 255, 0.96);
    box-shadow: var(--shadow);
    border: 1px solid var(--border);
}

.admin-layout {
    grid-template-columns: 290px 1fr;
    align-items: start;
    padding: 24px 0 64px;
}

.admin-sidebar {
    position: sticky;
    top: 112px;
    background: linear-gradient(180deg, #0c223e, #081a30);
    color: rgba(255, 255, 255, 0.78);
}

.admin-sidebar a {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 16px;
    margin-bottom: 8px;
    border-radius: 16px;
}

.admin-sidebar a.active,
.admin-sidebar a:hover {
    background: rgba(255, 255, 255, 0.1);
    color: white;
}

.admin-panel {
    background: rgba(255, 255, 255, 0.92);
}

.admin-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.admin-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 20px;
}

.admin-table th,
.admin-table td {
    padding: 14px 12px;
    border-bottom: 1px solid rgba(23, 48, 77, 0.08);
    text-align: left;
    vertical-align: top;
    font-size: 0.94rem;
}

.admin-toolbar {
    display: flex;
    justify-content: space-between;
    gap: 18px;
    align-items: center;
    flex-wrap: wrap;
}

.admin-actions {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.admin-form-grid {
    display: grid;
    gap: 16px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.admin-form-grid .field.full {
    grid-column: 1 / -1;
}

.empty-state {
    padding: 30px;
    text-align: center;
    color: var(--muted);
    border: 1px dashed rgba(23, 48, 77, 0.2);
    border-radius: var(--radius-lg);
}

.text-muted {
    color: var(--muted);
}

@media (max-width: 1080px) {
    .site-nav,
    .nav-actions {
        display: none;
    }

    .nav-shell {
        grid-template-columns: auto auto;
        justify-content: space-between;
    }

    .menu-toggle {
        display: inline-flex;
        flex-direction: column;
        gap: 5px;
        padding: 0;
        background: transparent;
        border: 0;
    }

    .menu-toggle span {
        width: 28px;
        height: 3px;
        border-radius: 999px;
        background: var(--text);
        transition: transform 0.2s ease, opacity 0.2s ease;
    }

    .site-nav.open {
        position: absolute;
        top: calc(100% + 12px);
        right: 16px;
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        width: min(320px, calc(100vw - 32px));
        padding: 18px;
        border-radius: 24px;
        background: rgba(255, 255, 255, 0.98);
        box-shadow: var(--shadow);
    }

    .site-nav.open a {
        width: 100%;
        padding: 12px 0;
    }

    .hero-grid,
    .package-layout,
    .admin-layout,
    .contact-grid,
    .cards-3,
    .cards-4,
    .trust-grid,
    .state-grid,
    .package-grid,
    .destination-grid,
    .gallery-grid,
    .overview-grid,
    .dual-grid,
    .admin-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .testimonial-card {
        min-width: calc(50% - 12px);
    }

    .tour-slide {
        min-width: calc((100% - 36px) / 3);
    }

    .form-row,
    .admin-form-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .section {
        padding: 72px 0;
    }

    .hero-card,
    .page-hero-card {
        min-height: auto;
    }

    .hero-grid,
    .page-hero-grid,
    .cards-3,
    .cards-4,
    .trust-grid,
    .state-grid,
    .package-grid,
    .destination-grid,
    .gallery-grid,
    .footer-grid,
    .contact-grid,
    .overview-grid,
    .dual-grid,
    .package-layout,
    .admin-layout,
    .admin-grid {
        grid-template-columns: 1fr;
    }

    .hero-grid,
    .page-hero-grid {
        padding: 34px 24px;
    }

    .hero-controls {
        left: 20px;
        right: 20px;
        bottom: 20px;
    }

    .tour-controls {
        gap: 12px;
    }

    .tour-slide {
        min-width: calc((100% - 18px) / 2);
    }

    .hero-stats {
        grid-template-columns: 1fr;
    }

    .section-header,
    .split-banner,
    .tour-controls,
    .footer-bottom,
    .admin-toolbar {
        flex-direction: column;
        align-items: flex-start;
    }

    .admin-sidebar {
        position: static;
    }

    .testimonial-card {
        min-width: 100%;
    }

    .mobile-sticky-bar {
        position: fixed;
        left: 12px;
        right: 12px;
        bottom: 12px;
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
        z-index: 40;
    }


@media (max-width: 560px) {
    .tour-slide {
        min-width: 88%;
    }

    .tour-card-image-only .tour-card-media {
        height: 290px;
    }

    .tour-card-caption span {
        font-size: 0.94rem;
    }
}

    .mobile-sticky-bar a {
        padding: 14px 10px;
        border-radius: 18px;
        text-align: center;
        font-weight: 800;
        color: white;
        box-shadow: var(--shadow);
    }

    .mobile-sticky-bar a:first-child {
        background: linear-gradient(135deg, var(--primary), #1481dd);
    }

    .mobile-sticky-bar a:last-child {
        background: linear-gradient(135deg, #0a8f5c, #16c977);
    }
}
