:root {
    --ink: #003b23;
    --ink-2: #08291b;
    --muted: #5d6b64;
    --paper: #ffffff;
    --cream: #f4f5f2;
    --gold: #008f53;
    --line: #d8e0d9;
    --aqua: #00d56b;
    --shadow: 0 12px 28px rgba(0, 59, 35, 0.12);
}

* {
    box-sizing: border-box;
}

body {
    margin: 0;
    color: var(--ink);
    background: var(--paper);
    font-family: Inter, Arial, sans-serif;
    line-height: 1.6;
}

img {
    max-width: 100%;
    display: block;
}

a {
    color: inherit;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 60;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding: 12px clamp(18px, 5vw, 68px);
    background: rgba(255, 255, 255, 0.98);
    border-bottom: 1px solid var(--line);
    backdrop-filter: blur(12px);
}

.admin-header,
.user-header {
    position: sticky;
    background: #fffdf7;
}

.brand img {
    width: 190px;
}

.main-nav {
    display: flex;
    align-items: center;
    gap: 2px;
    font-size: 15px;
    font-weight: 800;
}

.main-nav a {
    padding: 10px 12px;
    text-decoration: none;
}

.main-nav a:hover {
    color: var(--gold);
}

.nav-cta,
.btn {
    border-radius: 999px;
    background: var(--gold);
    color: #fff;
}

.nav-toggle {
    display: none;
    width: 44px;
    height: 44px;
    border: 1px solid var(--line);
    border-radius: 5px;
    background: #fff;
}

.nav-toggle span {
    display: block;
    width: 20px;
    height: 2px;
    margin: 5px auto;
    background: var(--ink);
}

h1,
h2,
h3 {
    margin: 0;
    line-height: 1.14;
}

h1,
h2 {
    font-family: Inter, Arial, sans-serif;
    font-weight: 900;
}

h1 {
    max-width: 980px;
    font-size: clamp(44px, 6.2vw, 78px);
}

h2 {
    font-size: clamp(30px, 4vw, 52px);
}

h3 {
    font-size: 24px;
}

.eyebrow {
    margin: 0 0 10px;
    color: var(--gold);
    font-size: 12px;
    font-weight: 900;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.home-shell {
    width: min(1140px, calc(100% - 36px));
    margin: 0 auto;
}

.travel-search-hero {
    padding-top: clamp(54px, 8vw, 92px);
    padding-bottom: clamp(48px, 7vw, 78px);
    text-align: center;
    background: #fff;
}

.travel-search-hero h1 {
    max-width: none;
    margin-bottom: 34px;
    color: var(--ink);
}

.search-tabs {
    display: flex;
    justify-content: center;
    gap: clamp(14px, 3vw, 34px);
    margin-bottom: 20px;
    font-weight: 900;
}

.search-tabs a {
    padding: 9px 0;
    border-bottom: 2px solid transparent;
    text-decoration: none;
}

.search-tabs a.active,
.search-tabs a:hover {
    border-color: var(--ink);
}

.big-search {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 8px;
    width: min(800px, 100%);
    margin: 0 auto;
    padding: 5px;
    border: 1px solid #8aa092;
    border-radius: 999px;
    background: #fff;
    box-shadow: 0 6px 18px rgba(0, 59, 35, 0.14);
}

.big-search input {
    min-height: 48px;
    margin: 0;
    border: 0;
    border-radius: 999px;
    font-size: 16px;
}

.deal-hero {
    display: grid;
    grid-template-columns: minmax(0, 0.95fr) minmax(320px, 0.8fr);
    gap: clamp(28px, 5vw, 58px);
    align-items: center;
    width: min(1140px, calc(100% - 36px));
    margin: 0 auto 32px;
    padding: clamp(28px, 5vw, 54px);
    border-radius: 8px;
    background: #16130d;
    color: #fff;
}

.deal-hero h2 {
    color: #fff;
    font-size: clamp(34px, 4.6vw, 60px);
}

.deal-hero p {
    max-width: 620px;
    color: #efece5;
    font-size: 18px;
}

.deal-badge {
    display: inline-flex;
    margin-bottom: 12px;
    padding: 7px 12px;
    border-radius: 999px;
    background: #00d56b;
    color: #08291b;
    font-weight: 900;
}

.interest-section {
    padding-top: 44px;
}

.interest-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 16px;
}

.interest-card {
    position: relative;
    min-height: 250px;
    overflow: hidden;
    border-radius: 8px;
    color: #fff;
    text-decoration: none;
    box-shadow: var(--shadow);
}

.interest-card::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.02), rgba(0, 0, 0, 0.64));
}

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

.interest-card strong {
    position: absolute;
    left: 18px;
    right: 18px;
    bottom: 16px;
    z-index: 1;
    font-size: 28px;
    line-height: 1.05;
}

.hero {
    position: relative;
    min-height: calc(100vh - 82px);
    display: grid;
    align-items: end;
    isolation: isolate;
    overflow: hidden;
}

.hero::after,
.page-hero::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -1;
    background: linear-gradient(90deg, rgba(15, 41, 44, 0.82), rgba(15, 41, 44, 0.5) 52%, rgba(15, 41, 44, 0.12));
}

.hero > img,
.page-hero > img {
    position: absolute;
    inset: 0;
    z-index: -2;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-copy {
    width: min(1120px, calc(100% - 36px));
    margin: 0 auto clamp(36px, 6vw, 76px);
    color: #fffdf7;
}

.hero-copy p:not(.eyebrow) {
    max-width: 720px;
    font-size: 20px;
}

.deal-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 22px;
}

.inline-actions {
    margin-top: 0;
}

.btn.light {
    background: #fff;
    color: var(--ink);
}

.whatsapp-btn {
    background: #168a55;
    box-shadow: 0 12px 28px rgba(22, 138, 85, 0.24);
}

.booking-strip {
    display: grid;
    grid-template-columns: 1.1fr 1.25fr 1fr 1fr auto;
    gap: 12px;
    margin-top: 30px;
    padding: 18px;
    border-radius: 8px;
    background: rgba(255, 253, 247, 0.96);
    color: var(--ink);
    box-shadow: var(--shadow);
}

.deal-strip {
    grid-template-columns: 1fr;
    max-width: 760px;
    margin-top: 0;
    border: 1px solid rgba(255, 255, 255, 0.28);
    background: #fff;
}

.deal-strip textarea {
    min-height: 92px;
}

.terms-note {
    margin: 0;
    color: var(--muted);
    font-size: 13px;
    font-weight: 800;
}

.booking-strip label,
.field {
    display: block;
    font-size: 13px;
    font-weight: 900;
}

input,
select,
textarea {
    width: 100%;
    min-height: 46px;
    margin-top: 7px;
    padding: 11px 12px;
    border: 1px solid #d7c7aa;
    border-radius: 5px;
    background: #fff;
    color: var(--ink);
    font: inherit;
}

textarea {
    resize: vertical;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 46px;
    padding: 12px 18px;
    border: 0;
    text-decoration: none;
    font-weight: 900;
    cursor: pointer;
}

.btn.primary {
    box-shadow: 0 12px 28px rgba(184, 121, 44, 0.22);
}

.btn.outline {
    border: 1px solid var(--ink);
    background: #fff;
    color: var(--ink);
    box-shadow: none;
}

section {
    padding: clamp(56px, 8vw, 102px) clamp(18px, 6vw, 76px);
}

.band {
    background: var(--cream);
}

.stats-band {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1px;
    padding-top: 0;
    padding-bottom: 0;
    background: var(--line);
}

.stats-band div {
    padding: 26px;
    background: #fff;
}

.stats-band strong {
    display: block;
    color: var(--gold);
    font-size: 34px;
}

.stats-band span {
    font-weight: 900;
}

.section-heading {
    max-width: 860px;
    margin-bottom: 28px;
}

.feature-grid,
.property-grid,
.connect-grid,
.service-grid {
    display: grid;
    gap: 22px;
}

.feature-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.feature-grid article,
.service-grid article,
.contact-panel,
.form-panel {
    padding: 26px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: #fff;
    box-shadow: 0 12px 34px rgba(16, 37, 39, 0.08);
}

.property-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.property-card,
.hotel-row {
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: #fff;
    box-shadow: var(--shadow);
}

.property-card.featured {
    border-top: 7px solid var(--aqua);
}

.property-card img {
    width: 100%;
    aspect-ratio: 4 / 3;
    object-fit: cover;
}

.property-card div {
    padding: 24px;
}

.tag,
.pill-row span {
    display: inline-flex;
    width: fit-content;
    padding: 5px 10px;
    border-radius: 4px;
    background: #e1f5e8;
    color: var(--ink);
    font-size: 12px;
    font-weight: 900;
    text-transform: uppercase;
}

.card-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    padding: 0 !important;
}

.property-card ul {
    padding-left: 18px;
}

.text-link {
    color: var(--gold);
    font-weight: 900;
    text-decoration-thickness: 2px;
    text-underline-offset: 5px;
}

.connect-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.connect-grid article {
    border: 1px solid var(--line);
    border-radius: 8px;
    background: #fff;
    overflow: hidden;
    box-shadow: var(--shadow);
}

.connect-grid img {
    width: 100%;
    aspect-ratio: 16 / 9;
    object-fit: cover;
}

.connect-grid h2,
.connect-grid p,
.connect-grid a {
    margin-left: 24px;
    margin-right: 24px;
}

.connect-grid a {
    margin-bottom: 24px;
}

.page-title {
    background: var(--cream);
}

.page-title h1 {
    max-width: 1000px;
}

.page-title p:not(.eyebrow) {
    max-width: 780px;
    font-size: 19px;
}

.hotel-list {
    display: grid;
    gap: 24px;
}

.hotel-row {
    display: grid;
    grid-template-columns: minmax(280px, 0.95fr) minmax(0, 1fr);
    align-items: center;
}

.hotel-row img {
    width: 100%;
    height: 100%;
    min-height: 340px;
    object-fit: cover;
}

.hotel-row > div {
    padding: clamp(24px, 5vw, 54px);
}

.pill-row {
    display: flex;
    flex-wrap: wrap;
    gap: 9px;
    margin: 18px 0 24px;
}

.page-hero {
    position: relative;
    min-height: 48vh;
    display: grid;
    align-items: end;
    color: #fff;
    isolation: isolate;
    overflow: hidden;
}

.page-hero > div {
    width: min(900px, calc(100% - 36px));
    margin: 0 0 56px clamp(18px, 7vw, 92px);
}

.destination-detail,
.contact-layout,
.cta-section {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(300px, 0.9fr);
    align-items: center;
    gap: clamp(28px, 5vw, 70px);
}

.riders-hero::after {
    background: linear-gradient(90deg, rgba(15, 41, 44, 0.88), rgba(15, 41, 44, 0.56) 48%, rgba(15, 41, 44, 0.08));
}

.destination-detail img {
    width: 100%;
    aspect-ratio: 4 / 3;
    object-fit: cover;
    border-radius: 8px;
    box-shadow: var(--shadow);
}

.rider-benefits {
    background: #fffdf7;
}

.benefit-list {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1px;
    border: 1px solid var(--line);
    background: var(--line);
}

.benefit-list div {
    padding: 24px;
    background: #fff;
}

.benefit-list strong {
    display: block;
    margin-bottom: 10px;
    color: var(--gold);
    font-size: 20px;
}

.benefit-list span {
    color: var(--muted);
    font-weight: 700;
}

.service-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.cta-section {
    background: var(--cream);
}

.contact-layout {
    align-items: start;
    background: var(--cream);
}

.contact-links {
    display: grid;
    gap: 12px;
    margin-top: 24px;
}

.contact-links a {
    padding: 15px;
    border: 1px solid var(--line);
    border-radius: 6px;
    background: var(--paper);
    text-decoration: none;
    font-weight: 900;
}

.field {
    margin-bottom: 16px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
}

.empty-panel,
.admin-section {
    padding-top: 28px;
}

.empty-panel {
    border: 1px solid var(--line);
    border-radius: 8px;
    background: #fff;
    padding: 24px;
    font-weight: 900;
}

.admin-login {
    max-width: 520px;
}

.login-shell {
    min-height: calc(100vh - 84px);
    display: grid;
    place-items: center;
    background: var(--cream);
}

.login-shell h1 {
    font-size: clamp(32px, 4vw, 48px);
}

.table-wrap {
    overflow-x: auto;
}

.admin-table {
    width: 100%;
    border-collapse: collapse;
    background: #fff;
    box-shadow: var(--shadow);
}

.admin-table th,
.admin-table td {
    padding: 13px;
    border: 1px solid var(--line);
    text-align: left;
    vertical-align: top;
}

.admin-table th {
    background: var(--ink);
    color: #fff;
}

.small-btn {
    min-height: 34px;
    margin: 2px;
    padding: 7px 10px;
    border: 0;
    border-radius: 4px;
    background: var(--gold);
    color: #fff;
    font-weight: 900;
    cursor: pointer;
}

.small-btn.muted {
    background: #62706f;
}

.gallery-strip {
    padding-top: 56px;
}

.mini-gallery {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
}

.mini-gallery img {
    width: 100%;
    aspect-ratio: 4 / 3;
    object-fit: cover;
    border-radius: 8px;
    box-shadow: var(--shadow);
}

.reviews-section {
    background: #fffdf7;
}

.review-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 20px;
}

.review-card {
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: #fff;
    box-shadow: var(--shadow);
}

.review-card img {
    width: 100%;
    aspect-ratio: 4 / 3;
    object-fit: cover;
}

.review-body {
    padding: 20px;
}

.review-body h3 {
    font-size: 20px;
}

.stars {
    display: block;
    margin-bottom: 8px;
    color: var(--gold);
    font-size: 20px;
    letter-spacing: 0;
}

.rating-breakdown {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 8px;
    margin-top: 14px;
}

.rating-breakdown span {
    padding: 8px 9px;
    border-radius: 6px;
    background: #eef7f1;
    color: var(--ink);
    font-size: 12px;
    font-weight: 900;
}

.review-form-panel {
    display: grid;
    grid-template-columns: minmax(0, 0.8fr) minmax(320px, 1fr);
    align-items: start;
    gap: clamp(28px, 5vw, 70px);
}

.rating-select {
    color: var(--gold);
    font-weight: 900;
}

.submit {
    width: 100%;
    font-size: 16px;
}

.field-error,
.validation {
    color: #a62020;
    font-size: 14px;
    font-weight: 800;
}

.success {
    margin-bottom: 18px;
    padding: 14px;
    border: 1px solid #5e9d67;
    border-radius: 5px;
    background: #eff9f0;
    color: #205728;
    font-weight: 900;
}

.error-panel {
    margin-bottom: 18px;
    padding: 12px;
    border: 1px solid #d9a0a0;
    border-radius: 5px;
    background: #fff1f1;
}

.site-footer {
    padding: 50px clamp(18px, 6vw, 76px) 22px;
    background: var(--ink-2);
    color: #fffdf7;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.3fr 1fr 1fr;
    gap: 36px;
}

.footer-logo {
    width: 230px;
    margin-bottom: 16px;
}

.site-footer h2 {
    font-size: 22px;
}

.site-footer a {
    display: block;
    margin: 8px 0;
    color: #f3c97b;
    text-decoration: none;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    gap: 16px;
    margin-top: 34px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 253, 247, 0.2);
}

@media (max-width: 980px) {
    .nav-toggle {
        display: block;
    }

    .main-nav {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        display: none;
        flex-direction: column;
        align-items: stretch;
        padding: 12px 18px 18px;
        background: #fffdf7;
        border-bottom: 1px solid var(--line);
    }

    .main-nav.is-open {
        display: flex;
    }

    .booking-strip,
    .deal-hero,
    .feature-grid,
    .interest-grid,
    .property-grid,
    .connect-grid,
    .stats-band,
    .benefit-list,
    .service-grid,
    .mini-gallery,
    .review-grid,
    .footer-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .hotel-row,
    .destination-detail,
    .contact-layout,
    .cta-section,
    .deal-hero,
    .review-form-panel {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 640px) {
    .brand img {
        width: 180px;
    }

    .hero {
        min-height: 88vh;
    }

    .booking-strip,
    .big-search,
    .feature-grid,
    .interest-grid,
    .property-grid,
    .connect-grid,
    .stats-band,
    .benefit-list,
    .service-grid,
    .mini-gallery,
    .review-grid,
    .form-row,
    .footer-grid {
        grid-template-columns: 1fr;
    }

    .search-tabs {
        flex-wrap: wrap;
    }

    .deal-hero {
        width: min(100% - 24px, 1140px);
        padding: 24px;
    }

    .interest-card {
        min-height: 210px;
    }

    .deal-actions .btn {
        width: 100%;
    }

    .footer-bottom {
        flex-direction: column;
    }
}
