/* ==========================================================================
   THE TEMENGGOR HOUSEBOAT — Main Stylesheet
   Premium nature-retreat theme: deep forest green + white + natural
   ========================================================================== */

/* --------------------------------------------------------------------------
   1. Design tokens
   -------------------------------------------------------------------------- */
:root {
    --forest:        #183C2B;
    --deep-green:    #234D38;
    --sage:          #6F866F;
    --light-sage:    #E8EEE7;
    --white:         #FFFFFF;
    --cream:         #F7F5EF;
    --dark-text:     #1E2922;
    --muted-text:    #68736B;

    --font-serif:    'Lora', Georgia, 'Times New Roman', serif;
    --font-sans:     'Inter', 'Helvetica Neue', Arial, sans-serif;

    --radius:        8px;
    --shadow-soft:   0 10px 30px rgba(24, 60, 43, 0.08);
    --shadow-card:   0 8px 24px rgba(24, 60, 43, 0.10);
    --shadow-nav:    0 2px 12px rgba(24, 60, 43, 0.08);

    --container:     1200px;
    --gutter:        24px;
}

/* --------------------------------------------------------------------------
   2. Reset & base
   -------------------------------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
    font-family: var(--font-sans);
    font-size: 17px;
    line-height: 1.7;
    color: var(--dark-text);
    background: var(--white);
    -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a { color: var(--deep-green); text-decoration: none; }
ul { list-style: none; }
button, input, select, textarea { font: inherit; color: inherit; }

h1, h2, h3, h4 { line-height: 1.2; }

.container {
    max-width: var(--container);
    margin: 0 auto;
    padding-left: var(--gutter);
    padding-right: var(--gutter);
}

/* --------------------------------------------------------------------------
   3. Utility / section helpers
   -------------------------------------------------------------------------- */
.section { padding: 80px 0; }
.section-cream { background: var(--cream); }
.section-deep { background: var(--forest); }

.section-head { text-align: center; margin-bottom: 48px; }
.section-head-light { color: var(--white); }

.section-title {
    font-family: var(--font-serif);
    font-weight: 600;
    font-size: clamp(28px, 4vw, 42px);
    letter-spacing: 0.5px;
    color: var(--dark-text);
    margin-top: 8px;
}
.section-head-light .section-title { color: var(--white); }
.section-title-light { color: var(--white) !important; }

.eyebrow {
    text-transform: uppercase;
    letter-spacing: 3px;
    font-size: 13px;
    font-weight: 600;
    color: var(--sage);
}

.section-foot { text-align: center; margin-top: 48px; }

/* --------------------------------------------------------------------------
   4. Buttons
   -------------------------------------------------------------------------- */
.btn {
    display: inline-block;
    padding: 14px 28px;
    font-weight: 600;
    font-size: 15px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    text-align: center;
    border-radius: var(--radius);
    border: 2px solid transparent;
    transition: background .25s ease, color .25s ease, border-color .25s ease, transform .2s ease;
}
.btn:hover { transform: translateY(-2px); }

.btn-primary { background: var(--forest); color: var(--white); }
.btn-primary:hover { background: var(--deep-green); }

.btn-accent { background: var(--deep-green); color: var(--white); }
.btn-accent:hover { background: var(--forest); }

.btn-ghost {
    background: transparent; color: var(--white);
    border-color: rgba(255, 255, 255, 0.65);
}
.btn-ghost:hover { background: rgba(255, 255, 255, 0.12); border-color: #fff; }

.btn-outline {
    background: transparent; color: var(--forest);
    border-color: var(--sage);
}
.btn-outline:hover { background: var(--forest); color: var(--white); border-color: var(--forest); }

.btn-whatsapp { background: #2E7D4F; color: var(--white); }
.btn-whatsapp:hover { background: #256B42; }

.btn-block { display: block; width: 100%; }

/* --------------------------------------------------------------------------
   5. Navigation
   -------------------------------------------------------------------------- */
.site-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: var(--white);
    border-bottom: 1px solid rgba(24, 60, 43, 0.12);
    box-shadow: var(--shadow-nav);
}

.nav-wrap {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 76px;
    gap: 20px;
}

.brand { display: flex; align-items: center; gap: 12px; flex-shrink: 0; }
.brand-mark { display: grid; place-items: center; line-height: 0; }
.brand-logo {
    width: 60px;
    height: 60px;
    object-fit: contain;
    display: block;
}
.brand-text { display: flex; flex-direction: column; line-height: 1.1; }
.brand-name {
    font-family: var(--font-serif);
    font-weight: 700;
    font-size: 19px;
    letter-spacing: 1.5px;
    color: var(--forest);
}
.brand-sub {
    font-size: 11px;
    letter-spacing: 5px;
    text-transform: uppercase;
    color: var(--sage);
}

.primary-nav { display: flex; align-items: center; gap: 12px; }

.nav-list { display: flex; align-items: center; gap: 6px; }
.nav-list li a {
    display: inline-block;
    padding: 10px 14px;
    font-weight: 500;
    font-size: 15.5px;
    color: var(--dark-text);
    border-radius: 6px;
    transition: color .2s ease, background .2s ease;
}
.nav-list li a:hover { color: var(--forest); background: var(--light-sage); }
.nav-list li.is-active a { color: var(--forest); font-weight: 600; }

.nav-cta { margin-left: 10px; padding: 12px 22px; }

/* Hamburger */
.nav-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    width: 44px;
    height: 44px;
    position: relative;
    z-index: 1001;
}
.hamburger, .hamburger::before, .hamburger::after {
    content: "";
    position: absolute;
    left: 10px;
    width: 24px;
    height: 2px;
    background: var(--forest);
    transition: transform .3s ease, opacity .3s ease;
}
.hamburger { top: 21px; }
.hamburger::before { top: -7px; }
.hamburger::after { top: 7px; }

body.nav-open .hamburger { background: transparent; }
body.nav-open .hamburger::before { transform: translateY(7px) rotate(45deg); }
body.nav-open .hamburger::after { transform: translateY(-7px) rotate(-45deg); }

/* --------------------------------------------------------------------------
   6. Hero
   -------------------------------------------------------------------------- */
.hero {
    position: relative;
    min-height: 88vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    color: var(--white);
}
.hero-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}
.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(24,60,43,0.55) 0%, rgba(24,60,43,0.35) 45%, rgba(24,60,43,0.75) 100%);
    z-index: 1;
}
.hero-content { position: relative; z-index: 2; padding: 100px 0 130px; }

.hero-kicker {
    text-transform: uppercase;
    letter-spacing: 4px;
    font-weight: 600;
    font-size: 14px;
    color: rgba(255,255,255,0.9);
    margin-bottom: 16px;
}
.hero-title {
    font-family: var(--font-serif);
    font-weight: 600;
    font-size: clamp(34px, 6vw, 62px);
    line-height: 1.15;
    margin-bottom: 22px;
}
.hero-sub {
    font-size: clamp(17px, 2vw, 20px);
    max-width: 620px;
    color: rgba(255,255,255,0.92);
    margin-bottom: 34px;
}
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; }

.hero-info {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 2;
    background: rgba(24,60,43,0.82);
    backdrop-filter: blur(3px);
}
.hero-info-inner {
    display: flex;
    justify-content: center;
    gap: 46px;
    flex-wrap: wrap;
    padding: 16px 24px;
    color: rgba(255,255,255,0.95);
    font-size: 14.5px;
    letter-spacing: 0.5px;
    text-align: center;
}
.hero-fact { display: flex; align-items: center; gap: 8px; }


/* --------------------------------------------------------------------------
   7. Introduction
   -------------------------------------------------------------------------- */
.intro-grid {
    display: grid;
    grid-template-columns: 1.05fr 1fr;
    gap: 60px;
    align-items: center;
}
.intro-image img {
    width: 100%;
    height: 100%;
    min-height: 420px;
    object-fit: cover;
    border-radius: var(--radius);
    box-shadow: var(--shadow-soft);
}
.intro-text p { color: var(--muted-text); margin-bottom: 18px; }
.intro-text p:first-of-type { font-size: 19px; color: var(--dark-text); }

.text-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-weight: 600;
    color: var(--forest);
    margin-top: 6px;
}
.text-link:hover { text-decoration: underline; }

/* --------------------------------------------------------------------------
   8. Packages
   -------------------------------------------------------------------------- */
.packages-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
}
.package-card {
    background: var(--white);
    border: 1px solid var(--light-sage);
    border-radius: var(--radius-card);
    padding: 32px 30px;
    box-shadow: var(--shadow-card);
    display: flex;
    flex-direction: column;
    transition: transform .25s ease, box-shadow .25s ease;
}
.package-card:hover { transform: translateY(-4px); box-shadow: 0 16px 34px rgba(24,60,43,0.14); }

.package-card-top { display: flex; align-items: center; justify-content: space-between; margin-bottom: 18px; }
.package-badge {
    background: var(--light-sage);
    color: var(--forest);
    font-size: 12.5px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    padding: 6px 12px;
    border-radius: 0 var(--radius) var(--radius) 0;
}
.package-duration { font-weight: 600; color: var(--sage); font-size: 15px; }

.package-price { display: flex; align-items: baseline; gap: 6px; margin-bottom: 6px; }
.price-amount {
    font-family: var(--font-serif);
    font-weight: 700;
    font-size: 40px;
    color: var(--forest);
    line-height: 1;
}
.price-note { color: var(--muted-text); font-size: 15px; }

.package-minimum {
    display: inline-block;
    font-size: 13px;
    font-weight: 600;
    color: var(--deep-green);
    background: var(--cream);
    padding: 5px 12px;
    border-radius: var(--radius);
    margin-bottom: 16px;
}

.package-best { color: var(--muted-text); margin-bottom: 20px; }

.package-inclusions { margin-bottom: 26px; display: grid; gap: 10px; }
.package-inclusions li { display: flex; gap: 10px; align-items: flex-start; color: var(--dark-text); }
.check { color: var(--forest); font-weight: 700; }

.package-card .btn { margin-top: auto; }

/* --------------------------------------------------------------------------
   9. Why choose us
   -------------------------------------------------------------------------- */
.why-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 28px;
}
.why-block {
    text-align: center;
    padding: 30px 22px;
    border-radius: var(--radius-card);
    border: 1px solid var(--light-sage);
    background: var(--white);
    transition: transform .25s ease, box-shadow .25s ease;
}
.why-block:hover { transform: translateY(-4px); box-shadow: var(--shadow-card); }
.why-icon { color: var(--forest); margin-bottom: 14px; }
.why-title {
    font-family: var(--font-serif);
    font-size: 20px;
    color: var(--forest);
    margin-bottom: 8px;
    letter-spacing: 0.5px;
}
.why-block p { color: var(--muted-text); font-size: 15px; }

/* --------------------------------------------------------------------------
   10. Activities
   -------------------------------------------------------------------------- */
.activities-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}
.activity-card {
    position: relative;
    border-radius: var(--radius);
    overflow: hidden;
    aspect-ratio: 4 / 5;
}
.activity-card img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .5s ease;
}
.activity-card:hover img { transform: scale(1.06); }
.activity-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 22px;
    background: linear-gradient(180deg, rgba(24,60,43,0.1) 40%, rgba(24,60,43,0.85) 100%);
    color: var(--white);
}
.activity-title { font-family: var(--font-serif); font-size: 22px; margin-bottom: 6px; }
.activity-text { font-size: 14.5px; color: rgba(255,255,255,0.9); }


/* --------------------------------------------------------------------------
   11. Houseboat experience
   -------------------------------------------------------------------------- */
.houseboat-showcase {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 20px;
    margin-bottom: 36px;
}
.houseboat-main, .houseboat-side { border-radius: var(--radius); overflow: hidden; }
.houseboat-main img { width: 100%; height: 100%; min-height: 400px; object-fit: cover; }
.houseboat-side { display: grid; grid-template-rows: 1fr 1fr; gap: 20px; }
.houseboat-side img { width: 100%; height: 100%; object-fit: cover; }

.houseboat-features {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
}
.h-feature {
    border: 1px solid var(--light-sage);
    color: var(--deep-green);
    background: var(--white);
    padding: 10px 18px;
    border-radius: 100px;
    font-size: 15px;
    font-weight: 600;
}

/* --------------------------------------------------------------------------
   12. Itinerary
   -------------------------------------------------------------------------- */
.itinerary-tabs {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-bottom: 40px;
}
.itab {
    background: var(--white);
    border: 2px solid var(--light-sage);
    color: var(--sage);
    font-weight: 600;
    font-size: 15px;
    letter-spacing: 1px;
    padding: 12px 24px;
    border-radius: 100px;
    cursor: pointer;
    transition: all .25s ease;
}
.itab.is-active { background: var(--forest); border-color: var(--forest); color: var(--white); }

.itinerary-block { max-width: 720px; margin: 0 auto; }
.itinerary-title {
    font-family: var(--font-serif);
    text-align: center;
    color: var(--forest);
    font-size: 24px;
    margin-bottom: 10px;
}
.itinerary-day {
    border-left: 3px solid var(--sage);
    margin-left: 12px;
    padding-left: 24px;
    padding-bottom: 28px;
    position: relative;
}
.itinerary-day::before {
    content: "";
    position: absolute;
    left: -8px;
    top: 4px;
    width: 13px;
    height: 13px;
    border-radius: 50%;
    background: var(--forest);
    border: 3px solid var(--light-sage);
}
.day-label {
    font-weight: 700;
    font-size: 17px;
    color: var(--forest);
    letter-spacing: 1px;
    margin-bottom: 8px;
}
.day-items { display: grid; gap: 6px; }
.day-item { display: grid; grid-template-columns: 110px 1fr; gap: 12px; align-items: baseline; }
.day-time { font-weight: 600; color: var(--sage); font-size: 14.5px; }
.day-task { color: var(--dark-text); }

/* --------------------------------------------------------------------------
   13. Private rental
   -------------------------------------------------------------------------- */
.private-rental { position: relative; padding: 0; overflow: hidden; color: var(--white); }
.private-bg { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.private-bg-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(180deg, rgba(24,60,43,0.7) 0%, rgba(24,60,43,0.55) 100%);
}
.private-content {
    position: relative;
    z-index: 2;
    padding: 110px 0;
    text-align: center;
    max-width: 760px;
}
.private-content p { color: rgba(255,255,255,0.9); margin-bottom: 22px; }
.private-features { display: flex; flex-wrap: wrap; justify-content: center; gap: 10px; margin-bottom: 30px; }
.private-features span {
    background: rgba(255,255,255,0.14);
    border: 1px solid rgba(255,255,255,0.4);
    padding: 8px 16px;
    border-radius: 100px;
    font-size: 14.5px;
    font-weight: 600;
}
.private-pricing { display: flex; justify-content: center; gap: 40px; margin-bottom: 22px; flex-wrap: wrap; }
.private-price { text-align: center; }
.pp-dur {
    display: block;
    font-size: 14px;
    letter-spacing: 2px;
    font-weight: 600;
    color: rgba(255,255,255,0.85);
}
.pp-val {
    font-family: var(--font-serif);
    font-size: 34px;
    font-weight: 700;
    color: var(--white);
}
.pp-val small { font-size: 15px; font-weight: 400; color: rgba(255,255,255,0.8); }
.private-suitable { font-size: 15.5px; }


/* --------------------------------------------------------------------------
   14. Comfort & safety
   -------------------------------------------------------------------------- */
.comfort-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    max-width: 980px;
    margin: 0 auto;
}
.comfort-text p { color: var(--muted-text); }
.comfort-text .section-title { margin-bottom: 18px; }
.comfort-list { display: grid; gap: 16px; }
.comfort-list li {
    display: flex;
    gap: 12px;
    align-items: center;
    font-size: 18px;
    color: var(--dark-text);
    background: var(--white);
    padding: 16px 20px;
    border: 1px solid var(--light-sage);
    border-radius: var(--radius);
}
.comfort-list .check {
    display: grid;
    place-items: center;
    width: 28px;
    height: 28px;
    background: var(--forest);
    color: var(--white);
    border-radius: 50%;
    font-size: 14px;
    flex-shrink: 0;
}

/* --------------------------------------------------------------------------
   15. Who is it for
   -------------------------------------------------------------------------- */
.who-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}
.who-card {
    position: relative;
    border-radius: var(--radius);
    overflow: hidden;
    aspect-ratio: 3 / 4;
}
.who-card img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.who-card:hover img { transform: scale(1.05); }
.who-card-text {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 20px;
    background: linear-gradient(180deg, transparent 50%, rgba(24,60,43,0.85) 100%);
    color: var(--white);
}
.who-card-text h3 { font-family: var(--font-serif); font-size: 20px; margin-bottom: 4px; }
.who-card-text p { font-size: 14px; color: rgba(255,255,255,0.92); }

/* --------------------------------------------------------------------------
   16. Destination
   -------------------------------------------------------------------------- */
.destination { position: relative; overflow: hidden; color: var(--white); }
.destination-bg { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.destination-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(180deg, rgba(24,60,43,0.75) 0%, rgba(24,60,43,0.6) 100%);
}
.destination-content {
    position: relative;
    z-index: 2;
    padding: 110px 0;
    max-width: 820px;
    margin: 0 auto;
    text-align: center;
}
.destination-content p { color: rgba(255,255,255,0.92); margin-bottom: 26px; }
.destination-content .section-title { margin-bottom: 18px; }
.destination-tags { display: flex; flex-wrap: wrap; justify-content: center; gap: 10px; margin-bottom: 6px; }
.destination-tags span {
    background: rgba(255,255,255,0.14);
    border: 1px solid rgba(255,255,255,0.4);
    padding: 8px 16px;
    border-radius: 100px;
    font-size: 14px;
    font-weight: 600;
}

/* --------------------------------------------------------------------------
   17. Gallery
   -------------------------------------------------------------------------- */
.gallery-masonry {
    column-count: 4;
    column-gap: 14px;
    padding: 0 var(--gutter);
    max-width: var(--container);
    margin: 0 auto;
}
.gallery-item { display: block; margin-bottom: 14px; break-inside: avoid; border-radius: var(--radius); overflow: hidden; position: relative; }
.gallery-item img { width: 100%; object-fit: cover; transition: transform .5s ease; }
.gallery-item:hover img { transform: scale(1.05); }
.gallery-item::after {
    content: attr(data-caption);
    position: absolute;
    left: 0; right: 0; bottom: 0;
    padding: 28px 14px 12px;
    background: linear-gradient(180deg, transparent, rgba(24,60,43,0.82));
    color: var(--white);
    font-size: 14px;
    font-weight: 600;
    opacity: 0;
    transition: opacity .3s ease;
}
.gallery-item:hover::after { opacity: 1; }


/* --------------------------------------------------------------------------
   18. Booking CTA
   -------------------------------------------------------------------------- */
.cta-band { background: var(--forest); color: var(--white); padding: 70px 0; }
.cta-inner { text-align: center; max-width: 760px; margin: 0 auto; }
.cta-heading {
    font-family: var(--font-serif);
    font-size: clamp(28px, 4vw, 40px);
    margin-bottom: 16px;
}
.cta-text { color: rgba(255,255,255,0.9); margin-bottom: 30px; font-size: 18px; }
.cta-actions { display: flex; justify-content: center; align-items: center; gap: 28px; flex-wrap: wrap; }
.cta-phone {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--white);
    font-size: 20px;
    font-weight: 600;
}
.cta-phone:hover { text-decoration: underline; }

/* --------------------------------------------------------------------------
   19. Contact & enquiry form
   -------------------------------------------------------------------------- */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 60px;
}
.contact-info p { color: var(--muted-text); margin-bottom: 16px; }
.contact-details { margin-bottom: 24px; }
.phone-link { color: var(--forest); font-weight: 600; }
.phone-link.big { font-size: 26px; color: var(--forest); }
.contact-buttons { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 18px; }
.contact-location { font-size: 15px; color: var(--sage) !important; }

.enquiry-form {
    background: var(--white);
    border: 1px solid var(--light-sage);
    border-radius: var(--radius);
    padding: 34px;
    box-shadow: var(--shadow-soft);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.form-field { margin-bottom: 18px; }
.form-field label {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: var(--dark-text);
    margin-bottom: 6px;
}
.form-field input,
.form-field select,
.form-field textarea {
    width: 100%;
    padding: 13px 15px;
    border: 1px solid var(--light-sage);
    border-radius: var(--radius);
    background: var(--white);
    color: var(--dark-text);
    transition: border-color .2s ease;
}
.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
    outline: none;
    border-color: var(--sage);
}
.form-field textarea { resize: vertical; }

/* --------------------------------------------------------------------------
   20. Footer
   -------------------------------------------------------------------------- */
.site-footer { background: var(--forest); color: rgba(255,255,255,0.85); }
.footer-grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr 1fr;
    gap: 40px;
    padding-top: 60px;
    padding-bottom: 40px;
}
.footer-brand-text .brand-name { color: var(--white); }
.footer-brand-text .brand-sub { color: var(--light-sage); }
.footer-location { margin-top: 16px; font-size: 15px; color: rgba(255,255,255,0.8); }
.footer-tagline { margin-top: 8px; font-size: 14px; color: rgba(255,255,255,0.6); font-style: italic; }

.footer-heading {
    color: var(--white);
    font-size: 15px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-bottom: 16px;
    font-weight: 600;
}
.footer-links { display: grid; gap: 10px; }
.footer-links a { color: rgba(255,255,255,0.8); font-size: 15.5px; }
.footer-links a:hover { color: var(--white); }

.footer-contact { display: flex; align-items: center; gap: 8px; }
.foot-icon { color: var(--light-sage); }
.footer-contact .phone-link { color: rgba(255,255,255,0.9); }
.footer-contact .phone-link:hover { color: var(--white); }

.footer-cta-col .btn { margin-top: 6px; }

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.15);
    padding: 20px 0;
    font-size: 14px;
    color: rgba(255,255,255,0.6);
    text-align: center;
}


/* --------------------------------------------------------------------------
   21. Page hero (subpages)
   -------------------------------------------------------------------------- */
.page-hero {
    position: relative;
    min-height: 48vh;
    display: flex;
    align-items: center;
    color: var(--white);
    overflow: hidden;
    text-align: center;
}
.page-hero-overlay { position: absolute; inset: 0; background: rgba(24,60,43,0.72); z-index: 1; }
.page-hero-content { position: relative; z-index: 2; padding: 80px 0; }
.page-title {
    font-family: var(--font-serif);
    font-size: clamp(32px, 5vw, 50px);
    font-weight: 600;
    margin-bottom: 12px;
}
.page-sub { font-size: 18px; color: rgba(255,255,255,0.92); max-width: 640px; margin: 0 auto; }
.page-hero .hero-kicker { margin-bottom: 10px; }

.page-hero-packages { background-image: url('../images/page-hero-packages.jpg'); background-size: cover; background-position: center; }
.page-hero-activities { background-image: url('../images/page-hero-activities.jpg'); background-size: cover; background-position: center; }
.page-hero-about { background-image: url('../images/page-hero-about.jpg'); background-size: cover; background-position: center; }
.page-hero-contact { background-image: url('../images/page-hero-contact.jpg'); background-size: cover; background-position: center; }
.page-hero-package { background-image: url('../images/page-hero-package.jpg'); background-size: cover; background-position: center; }

/* --------------------------------------------------------------------------
   22. Package detail page
   -------------------------------------------------------------------------- */
.package-hero-meta { display: flex; justify-content: center; gap: 18px; flex-wrap: wrap; margin-top: 6px; }
.pm-item {
    background: rgba(255,255,255,0.16);
    border: 1px solid rgba(255,255,255,0.4);
    padding: 8px 18px;
    border-radius: 100px;
    font-size: 15px;
    font-weight: 600;
}

.detail-overview {
    display: grid;
    grid-template-columns: 1.4fr 1fr;
    gap: 60px;
    align-items: start;
}
.overview-main p { color: var(--muted-text); margin-bottom: 16px; }
.overview-main .section-title { margin-bottom: 18px; }
.detail-sub { font-family: var(--font-serif); color: var(--forest); margin-top: 20px; margin-bottom: 6px; }

.overview-card {
    position: sticky;
    top: 100px;
    background: var(--white);
    border: 1px solid var(--light-sage);
    border-radius: var(--radius);
    padding: 34px;
    box-shadow: var(--shadow-card);
    text-align: center;
}
.detail-price { margin-bottom: 6px; }
.detail-price .price-amount { font-size: 48px; }
.detail-minimum {
    display: inline-block;
    background: var(--cream);
    color: var(--deep-green);
    font-size: 13.5px;
    font-weight: 600;
    padding: 5px 12px;
    border-radius: var(--radius);
    margin: 10px 0 20px;
}
.detail-actions { display: grid; gap: 12px; margin-bottom: 14px; }
.detail-contact { font-size: 18px; }

.detail-inclusions {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
    max-width: 900px;
    margin: 0 auto;
}
.detail-inclusions li {
    display: flex;
    gap: 12px;
    align-items: center;
    background: var(--white);
    border: 1px solid var(--light-sage);
    padding: 16px 20px;
    border-radius: var(--radius);
}
.detail-inclusions .check {
    display: grid;
    place-items: center;
    width: 28px; height: 28px;
    background: var(--forest);
    color: var(--white);
    border-radius: 50%;
    font-size: 14px;
    flex-shrink: 0;
}

.suitable-tags { display: flex; flex-wrap: wrap; justify-content: center; gap: 12px; }
.suitable-tag {
    background: var(--white);
    border: 1px solid var(--light-sage);
    color: var(--deep-green);
    font-weight: 600;
    padding: 10px 20px;
    border-radius: 100px;
}

/* --------------------------------------------------------------------------
   23. Floating WhatsApp button
   -------------------------------------------------------------------------- */
.wa-float {
    position: fixed;
    right: 22px;
    bottom: 22px;
    z-index: 1000;
    display: grid;
    place-items: center;
    width: 58px;
    height: 58px;
    padding: 0;
    background: #25D366;                 /* official WhatsApp green */
    color: #fff;
    border-radius: 50%;
    box-shadow: 0 6px 18px rgba(37, 211, 102, 0.4), 0 2px 8px rgba(24, 60, 43, 0.18);
    transition: transform .25s ease, box-shadow .25s ease;
}
.wa-float:hover { transform: translateY(-4px) scale(1.06); box-shadow: 0 10px 26px rgba(37, 211, 102, 0.5); }
.wa-float:focus-visible { outline: 3px solid var(--forest); outline-offset: 2px; }

.wa-float-icon { display: block; }

/* Tooltip label (desktop) */
.wa-float-tip {
    position: absolute;
    right: calc(100% + 12px);
    top: 50%;
    transform: translateY(-50%) translateX(6px);
    background: var(--forest);
    color: var(--white);
    font-family: var(--font-sans);
    font-size: 13.5px;
    font-weight: 500;
    white-space: nowrap;
    padding: 7px 12px;
    border-radius: var(--radius);
    box-shadow: var(--shadow-card);
    opacity: 0;
    visibility: hidden;
    transition: opacity .25s ease, transform .25s ease, visibility .25s;
}
.wa-float-tip::after {
    content: "";
    position: absolute;
    left: 100%;
    top: 50%;
    transform: translateY(-50%);
    border: 6px solid transparent;
    border-left-color: var(--forest);
}
.wa-float:hover .wa-float-tip {
    opacity: 1;
    visibility: visible;
    transform: translateY(-50%) translateX(0);
}

/* Slightly smaller on small screens; hide tooltip on touch */
@media (max-width: 480px) {
    .wa-float { width: 52px; height: 52px; right: 16px; bottom: 16px; }
    .wa-float-icon { width: 27px; height: 27px; }
    .wa-float-tip { display: none; }
}

/* --------------------------------------------------------------------------
   24. 404 / misc
   -------------------------------------------------------------------------- */
.notfound { text-align: center; padding: 120px 0; }
.notfound h1 { font-family: var(--font-serif); font-size: 90px; color: var(--forest); }
.notfound p { color: var(--muted-text); margin-bottom: 24px; }


/* --------------------------------------------------------------------------
   25. Responsive — Tablet & Mobile
   -------------------------------------------------------------------------- */
@media (max-width: 1024px) {
    .packages-grid { grid-template-columns: 1fr; max-width: 620px; margin: 0 auto; }
    .activities-grid { grid-template-columns: repeat(2, 1fr); }
    .who-grid { grid-template-columns: repeat(2, 1fr); }
    .gallery-masonry { column-count: 3; }
    .intro-grid { gap: 40px; }
    .detail-overview { grid-template-columns: 1fr; }
    .overview-card { position: static; }
}

@media (max-width: 860px) {
    .section { padding: 60px 0; }

    /* Mobile nav */
    .nav-toggle { display: block; }
    .primary-nav {
        position: fixed;
        top: 0;
        right: 0;
        height: 100vh;
        width: min(320px, 82vw);
        background: var(--white);
        flex-direction: column;
        justify-content: flex-start;
        align-items: stretch;
        gap: 10px;
        padding: 100px 28px 40px;
        box-shadow: -8px 0 30px rgba(24,60,43,0.18);
        transform: translateX(100%);
        transition: transform .35s ease;
        z-index: 1000;
    }
    body.nav-open .primary-nav { transform: translateX(0); }
    .nav-list { flex-direction: column; align-items: stretch; gap: 4px; width: 100%; }
    .nav-list li a { display: block; padding: 14px 12px; font-size: 17px; }
    .nav-cta { margin: 14px 0 0; width: 100%; text-align: center; }

    .intro-grid { grid-template-columns: 1fr; }
    .intro-image img { min-height: 280px; }

    .houseboat-showcase { grid-template-columns: 1fr; }
    .houseboat-side { grid-template-columns: 1fr 1fr; grid-template-rows: none; }

    .comfort-grid { grid-template-columns: 1fr; gap: 36px; }
    .contact-grid { grid-template-columns: 1fr; gap: 40px; }
    .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
    .detail-inclusions { grid-template-columns: 1fr; }
}

@media (max-width: 560px) {
    body { font-size: 16px; }
    .section { padding: 50px 0; }

    .hero { min-height: 92vh; }
    .hero-content { padding: 80px 0 130px; }
    .hero-actions { flex-direction: column; align-items: stretch; }
    .hero-actions .btn { width: 100%; }
    .hero-info-inner { gap: 12px; flex-direction: column; }

    .activities-grid { grid-template-columns: 1fr; }
    .who-grid { grid-template-columns: 1fr; }
    .gallery-masonry { column-count: 2; gap: 10px; }

    .houseboat-side { grid-template-columns: 1fr; }
    .form-row { grid-template-columns: 1fr; gap: 0; }
    .footer-grid { grid-template-columns: 1fr; gap: 30px; }
    .cta-actions { flex-direction: column; }
    .cta-phone { font-size: 18px; }

    .detail-inclusions li { font-size: 15px; }
    .day-item { grid-template-columns: 90px 1fr; gap: 8px; }
    .package-card { padding: 28px 22px; }
    .enquiry-form { padding: 26px 20px; }
}

