/* =========================================================
   Giachuma Gardens — Custom Stylesheet
   ========================================================= */

:root {
    --green: #177753;
    --green-dark: #115c3f;
    --green-deeper: #0c4631;
    --green-soft: #e8f2ec;
    --sage: #6a6f5c;
    --sage-dark: #52583f;
    --gold: #c5995a;
    --gold-dark: #a88042;
    --gold-soft: #f6eedd;
    --cream: #f7f5ee;
    --cream-2: #efece0;
    --ink: #27302a;
    --muted: #5d635c;
    --white: #ffffff;
    --radius: 14px;
    --shadow: 0 12px 34px rgba(23, 119, 83, 0.14);
    --shadow-lg: 0 24px 60px rgba(23, 119, 83, 0.2);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', ui-sans-serif, system-ui, sans-serif;
    color: var(--ink);
    background: var(--white);
    line-height: 1.7;
    font-size: 16px;
    overflow-x: hidden;
}

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

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

h1, h2, h3, h4, h5 {
    font-family: 'Playfair Display', Georgia, serif;
    line-height: 1.2;
    color: var(--green);
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ---------- Buttons ---------- */

.btn {
    display: inline-block;
    padding: 14px 32px;
    border-radius: 999px;
    font-weight: 600;
    font-size: 0.95rem;
    letter-spacing: 0.02em;
    border: 2px solid transparent;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
}

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

.btn-gold:hover {
    background: var(--gold-dark);
    transform: translateY(-2px);
    box-shadow: 0 10px 22px rgba(197, 153, 90, 0.4);
}

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

.btn-green:hover {
    background: var(--green-dark);
    transform: translateY(-2px);
    box-shadow: 0 10px 22px rgba(23, 119, 83, 0.35);
}

.btn-outline {
    border-color: rgba(255, 255, 255, 0.7);
    color: #fff;
    background: transparent;
}

.btn-outline:hover {
    background: rgba(255, 255, 255, 0.14);
    border-color: #fff;
}

.btn-outline-green {
    border-color: var(--green);
    color: var(--green);
    background: transparent;
}

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

.btn-block {
    width: 100%;
}

/* ---------- Top bar ---------- */

.topbar {
    background: var(--green);
    color: #eaf4ee;
    font-size: 0.82rem;
}

.topbar-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding-top: 8px;
    padding-bottom: 8px;
    flex-wrap: wrap;
}

.topbar-contacts,
.topbar-social {
    display: flex;
    align-items: center;
    gap: 18px;
    flex-wrap: wrap;
}

.topbar-link {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    color: #eaf4ee;
    transition: color 0.3s;
}

.topbar-link:hover {
    color: var(--gold);
}

.topbar-link svg,
.social-icon svg {
    width: 15px;
    height: 15px;
    flex-shrink: 0;
}

.topbar-hint {
    opacity: 0.75;
}

.social-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.12);
    color: #fff;
    transition: all 0.3s;
}

.social-icon:hover {
    background: var(--gold);
    transform: translateY(-2px);
}

/* ---------- Navbar ---------- */

.navbar {
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(255, 255, 255, 0.97);
    box-shadow: 0 4px 20px rgba(15, 90, 63, 0.08);
}

.nav-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding-top: 14px;
    padding-bottom: 14px;
}

.brand {
    display: flex;
    align-items: center;
    gap: 12px;
}

.brand-logo {
    height: 52px;
    width: auto;
}

.brand-text {
    display: flex;
    flex-direction: column;
    line-height: 1.15;
}

.brand-name {
    font-family: 'Playfair Display', Georgia, serif;
    font-weight: 700;
    font-size: 1.25rem;
    color: var(--green);
}

.brand-tagline {
    font-size: 0.68rem;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--gold-dark);
}

.main-nav {
    display: flex;
    align-items: center;
    gap: 30px;
}

.nav-link {
    font-weight: 500;
    font-size: 0.95rem;
    color: var(--ink);
    position: relative;
    padding: 6px 0;
    transition: color 0.3s;
}

.nav-link::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 0;
    height: 2px;
    background: var(--gold);
    transition: width 0.3s ease;
}

.nav-link:hover {
    color: var(--green);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.nav-link.active {
    color: var(--green);
}

.nav-book {
    padding: 11px 26px;
    font-size: 0.9rem;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 6px;
}

.nav-toggle span {
    width: 26px;
    height: 3px;
    background: var(--green);
    border-radius: 3px;
    transition: all 0.3s;
}

/* ---------- Hero ---------- */

.hero {
    position: relative;
    min-height: 88vh;
    overflow: hidden;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(12, 70, 49, 0.72) 0%, rgba(23, 119, 83, 0.55) 60%, rgba(12, 70, 49, 0.82) 100%);
}

.hero-content {
    position: relative;
    z-index: 2;
    padding: 40px 20px;
    max-width: 720px;
    text-align: center;
    color: #fff;
    text-shadow: 0 2px 24px rgba(0, 0, 0, 0.45);
}

.hero-content .eyebrow {
    color: var(--gold);
}

.hero-content h1 {
    color: #fff;
    font-size: clamp(2.3rem, 5.2vw, 4rem);
    margin: 14px 0 18px;
}

.hero-content p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.05rem;
    font-weight: 300;
    max-width: 620px;
    margin: 0 auto 30px;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

.hero-slider {
    position: absolute;
    inset: 0;
}

.hero-slides {
    display: flex;
    height: 100%;
    transition: transform 0.6s ease;
}

.hero-slide {
    flex: 0 0 100%;
    height: 100%;
    min-width: 0;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-slide-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
}

.hero-slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: none;
    background: rgba(255, 255, 255, 0.85);
    color: var(--green);
    font-size: 1.6rem;
    line-height: 1;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.2);
    z-index: 6;
    transition: background 0.25s, color 0.25s, transform 0.25s;
}

.hero-slider-arrow:hover {
    background: var(--green);
    color: #fff;
}

.hero-slider-arrow.prev { left: 18px; }
.hero-slider-arrow.next { right: 18px; }

.hero-slider-dots {
    position: absolute;
    bottom: 24px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
    z-index: 6;
}

.hero-slider-dots button {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    border: none;
    background: rgba(255, 255, 255, 0.55);
    cursor: pointer;
    padding: 0;
    transition: background 0.25s, transform 0.25s;
}

.hero-slider-dots button.active {
    background: var(--gold);
    transform: scale(1.35);
}

/* ---------- Booking card ---------- */

.booking-card {
    position: relative;
    z-index: 3;
    margin-top: -180px;
    background: #fff;
    border-radius: var(--radius);
    box-shadow: var(--shadow-lg);
    padding: 28px;
}

.booking-title {
    text-align: center;
    margin-bottom: 20px;
    font-size: 1.3rem;
    color: var(--green);
}

.booking-form {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
    align-items: end;
}

.booking-field {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.booking-field label {
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--sage);
}

.booking-field input,
.booking-field select {
    border: 1px solid var(--cream-2);
    border-radius: 10px;
    padding: 11px 14px;
    font-family: inherit;
    font-size: 0.9rem;
    color: var(--ink);
    background: var(--cream);
    width: 100%;
    outline: none;
    transition: border-color 0.3s, box-shadow 0.3s;
}

.booking-field input:focus,
.booking-field select:focus {
    border-color: var(--green);
    box-shadow: 0 0 0 3px rgba(23, 119, 83, 0.12);
    background: #fff;
}

.booking-submit {
    grid-column: span 3;
}

/* ---------- Booking modal ---------- */

.booking-modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(12, 32, 24, 0.65);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.booking-modal-overlay.open {
    opacity: 1;
    visibility: visible;
}

.booking-modal {
    background: #fff;
    border-radius: var(--radius);
    width: 100%;
    max-width: 560px;
    max-height: 90vh;
    overflow-y: auto;
    padding: 36px;
    position: relative;
    transform: translateY(24px);
    transition: transform 0.3s ease;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.35);
}

.booking-modal-overlay.open .booking-modal {
    transform: translateY(0);
}

.booking-modal-close {
    position: absolute;
    top: 14px;
    right: 14px;
    width: 34px;
    height: 34px;
    border: none;
    background: var(--cream);
    color: var(--green);
    font-size: 1.25rem;
    line-height: 1;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.25s, color 0.25s;
}

.booking-modal-close:hover {
    background: var(--green);
    color: #fff;
}

.booking-modal h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    margin: 0 0 6px;
    color: var(--green);
}

.booking-modal-sub {
    color: var(--muted);
    font-size: 0.92rem;
    margin: 0 0 22px;
}

.booking-form-modal {
    grid-template-columns: repeat(2, 1fr);
}

.booking-form-modal .booking-submit {
    grid-column: span 2;
}

@media (max-width: 480px) {
    .booking-form-modal {
        grid-template-columns: 1fr;
    }

    .booking-form-modal .booking-submit {
        grid-column: span 1;
    }
}

/* ---------- Chat widget ---------- */

.chat-widget {
    position: fixed;
    bottom: 22px;
    right: 22px;
    z-index: 900;
}

.chat-fab {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    border: none;
    background: var(--green);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 10px 26px rgba(23, 119, 83, 0.45);
    transition: background 0.25s, transform 0.25s;
}

.chat-fab:hover {
    background: var(--green-dark);
    transform: translateY(-3px);
}

.chat-fab svg {
    width: 30px;
    height: 30px;
}

.chat-fab .chat-fab-close {
    display: none;
    width: 26px;
    height: 26px;
}

.chat-widget.open .chat-fab {
    background: var(--green-dark);
}

.chat-widget.open .chat-fab-open {
    display: none;
}

.chat-widget.open .chat-fab-close {
    display: block;
}

.chat-panel {
    position: absolute;
    bottom: 74px;
    right: 0;
    width: 280px;
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 20px 50px rgba(12, 32, 24, 0.25);
    padding: 10px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(14px) scale(0.95);
    transform-origin: bottom right;
    transition: opacity 0.25s ease, transform 0.25s ease, visibility 0.25s;
}

.chat-widget.open .chat-panel {
    opacity: 1;
    visibility: visible;
    transform: none;
}

.chat-panel-head {
    padding: 10px 14px 12px;
    border-bottom: 1px solid var(--cream-2);
    margin-bottom: 6px;
}

.chat-panel-head strong {
    display: block;
    font-family: 'Playfair Display', serif;
    font-size: 1.05rem;
    color: var(--green);
}

.chat-panel-head span {
    font-size: 0.78rem;
    color: var(--muted);
}

.chat-option {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 14px;
    border-radius: 12px;
    text-decoration: none;
    color: var(--ink);
    font-weight: 600;
    font-size: 0.9rem;
    transition: background 0.2s;
}

.chat-option:hover {
    background: var(--cream);
}

.chat-option-icon {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    flex-shrink: 0;
}

.chat-option-icon svg {
    width: 20px;
    height: 20px;
}

.chat-wa .chat-option-icon { background: #25d366; }
.chat-messenger .chat-option-icon { background: #0084ff; }
.chat-call .chat-option-icon { background: var(--green); }
.chat-email .chat-option-icon { background: var(--gold); }

@media (max-width: 480px) {
    .chat-panel {
        width: min(280px, calc(100vw - 40px));
    }
}

/* ---------- Cottage booking actions ---------- */

.booking-actions {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-top: 18px;
}

.booking-actions .btn {
    width: 100%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
    padding: 9px 16px;
    font-size: 0.84rem;
}

.booking-actions svg {
    width: 15px;
    height: 15px;
    flex-shrink: 0;
}

.booking-actions-inline {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
    margin-top: 26px;
}

.booking-actions-inline .btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
    padding: 4px 10px;
    font-size: 0.74rem;
    border-width: 1.5px;
    border-radius: 999px;
}

.booking-actions-inline svg {
    width: 11px;
    height: 11px;
    flex-shrink: 0;
}

.btn-whatsapp {
    background: #25d366;
    color: #fff;
}

.btn-whatsapp:hover {
    background: #1fb958;
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 10px 22px rgba(37, 211, 102, 0.4);
}

/* ---------- Sections ---------- */

.section {
    padding: 96px 0;
}

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

.section-head {
    text-align: center;
    max-width: 720px;
    margin: 0 auto 56px;
}

.eyebrow {
    display: inline-block;
    color: var(--gold-dark);
    text-transform: uppercase;
    letter-spacing: 3px;
    font-weight: 600;
    font-size: 0.8rem;
    margin-bottom: 10px;
}

.section-title {
    font-size: clamp(2rem, 4vw, 2.8rem);
    margin-bottom: 14px;
}

.section-head p {
    color: var(--muted);
}

/* ---------- Welcome / split ---------- */

.split {
    display: grid;
    grid-template-columns: 1.05fr 1fr;
    gap: 56px;
    align-items: center;
}

.split-text .eyebrow {
    margin-bottom: 12px;
}

.split-text h2 {
    font-size: clamp(2rem, 3.8vw, 2.7rem);
    margin-bottom: 16px;
}

.split-text p {
    color: var(--muted);
    margin-bottom: 16px;
}

.split-text .btn {
    margin-top: 12px;
}

.split-media {
    position: relative;
}

.split-media img {
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    height: 520px;
    width: 100%;
    object-fit: cover;
}

.split-media .split-badge {
    position: absolute;
    bottom: -26px;
    right: -18px;
    background: var(--gold);
    color: #fff;
    border-radius: var(--radius);
    padding: 20px 26px;
    text-align: center;
    box-shadow: var(--shadow);
}

.split-badge strong {
    display: block;
    font-size: 1.8rem;
    font-family: 'Playfair Display', serif;
    line-height: 1;
}

.split-badge span {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* ---------- Feature cards ---------- */

.feature-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 26px;
}

.feature-card {
    background: #fff;
    border: 1px solid var(--cream-2);
    border-radius: var(--radius);
    padding: 34px 26px;
    text-align: center;
    transition: all 0.35s ease;
}

.feature-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow);
    border-color: transparent;
}

.feature-icon {
    width: 68px;
    height: 68px;
    margin: 0 auto 18px;
    border-radius: 50%;
    background: var(--green-soft);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--green);
    transition: all 0.35s;
}

.feature-card:hover .feature-icon {
    background: var(--green);
    color: #fff;
}

.feature-icon svg {
    width: 30px;
    height: 30px;
}

.feature-card h3 {
    font-size: 1.15rem;
    margin-bottom: 10px;
}

.feature-card p {
    font-size: 0.9rem;
    color: var(--muted);
}

/* ---------- CTA banner ---------- */

.cta-banner {
    background: linear-gradient(120deg, var(--green-dark), var(--green-deeper));
    position: relative;
    overflow: hidden;
    padding: 84px 0;
}

.cta-banner::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(600px 300px at 85% 20%, rgba(197, 153, 90, 0.25), transparent);
}

.cta-inner {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    flex-wrap: wrap;
}

.cta-inner h2 {
    color: #fff;
    font-size: clamp(1.9rem, 3.6vw, 2.7rem);
    max-width: 560px;
}

.cta-inner p {
    color: rgba(255, 255, 255, 0.85);
    margin-top: 8px;
    max-width: 560px;
}

/* ---------- Gallery strip ---------- */

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

.gallery-item {
    position: relative;
    border-radius: var(--radius);
    overflow: hidden;
    height: 260px;
}

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

.gallery-item:hover img {
    transform: scale(1.08);
}

.gallery-item::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 45%, rgba(12, 70, 49, 0.75));
    opacity: 0;
    transition: opacity 0.4s;
}

.gallery-item:hover::after {
    opacity: 1;
}

.gallery-cap {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 18px;
    color: #fff;
    font-weight: 600;
    z-index: 2;
    transform: translateY(8px);
    opacity: 0;
    transition: all 0.4s;
}

.gallery-item:hover .gallery-cap {
    transform: translateY(0);
    opacity: 1;
}

/* ---------- Cottage cards ---------- */

.cottage-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.cottage-card {
    background: #fff;
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: 0 6px 24px rgba(23, 119, 83, 0.08);
    border: 1px solid var(--cream-2);
    transition: all 0.35s;
}

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

.cottage-media {
    position: relative;
    height: 320px;
    overflow: hidden;
}

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

.cottage-card:hover .cottage-media img {
    transform: scale(1.06);
}

.cottage-tag {
    position: absolute;
    top: 16px;
    left: 16px;
    background: var(--gold);
    color: #fff;
    font-size: 0.72rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 7px 14px;
    border-radius: 999px;
}

.cottage-body {
    padding: 26px 28px 30px;
}

.cottage-body h3 {
    font-size: 1.45rem;
    margin-bottom: 8px;
}

.cottage-body p {
    color: var(--muted);
    font-size: 0.95rem;
    margin-bottom: 18px;
}

.cottage-meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-top: 1px solid var(--cream-2);
    padding-top: 16px;
}

.cottage-price {
    color: var(--green);
    font-weight: 700;
}

.cottage-price small {
    font-weight: 400;
    color: var(--muted);
}

/* ---------- Cottage slider ---------- */

.cottage-slider {
    position: relative;
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    margin-top: 48px;
}

.cottage-slides {
    display: flex;
    transition: transform 0.6s ease;
}

.cottage-slide {
    position: relative;
    flex: 0 0 100%;
    min-width: 0;
}

.cottage-slide img {
    width: 100%;
    height: 540px;
    object-fit: cover;
    display: block;
}

.cottage-slide .cottage-tag {
    position: absolute;
    top: 18px;
    left: 18px;
}

.cottage-slide-caption {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    padding: 56px 32px 26px;
    background: linear-gradient(to top, rgba(12, 32, 24, 0.82), rgba(12, 32, 24, 0.35) 55%, transparent);
    color: #fff;
    pointer-events: none;
}

.cottage-slide-caption h3 {
    margin: 0 0 6px;
    font-size: 1.6rem;
    color: #fff;
}

.cottage-slide-caption p {
    margin: 0;
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.95rem;
    max-width: 560px;
}

.cottage-slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 46px;
    height: 46px;
    border-radius: 50%;
    border: none;
    background: rgba(255, 255, 255, 0.92);
    color: var(--green);
    font-size: 1.7rem;
    line-height: 1;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.25);
    z-index: 5;
    transition: background 0.25s, color 0.25s, transform 0.25s;
}

.cottage-slider-arrow:hover {
    background: var(--green);
    color: #fff;
}

.cottage-slider-arrow.prev { left: 18px; }
.cottage-slider-arrow.next { right: 18px; }

.cottage-slider-dots {
    position: absolute;
    bottom: 16px;
    right: 20px;
    display: flex;
    gap: 8px;
    z-index: 5;
}

.cottage-slider-dots button {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    border: none;
    background: rgba(255, 255, 255, 0.55);
    cursor: pointer;
    padding: 0;
    transition: background 0.25s, transform 0.25s;
}

.cottage-slider-dots button.active {
    background: var(--gold);
    transform: scale(1.35);
}

/* ---------- Events ---------- */

.events-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 26px;
}

.event-card {
    background: #fff;
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: 0 6px 24px rgba(23, 119, 83, 0.08);
    transition: all 0.35s;
}

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

.event-media {
    height: 230px;
    overflow: hidden;
}

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

.event-card:hover .event-media img {
    transform: scale(1.07);
}

.event-body {
    padding: 26px;
    text-align: center;
}

.event-body h3 {
    font-size: 1.25rem;
    margin-bottom: 10px;
}

.event-body p {
    color: var(--muted);
    font-size: 0.9rem;
}

.event-tags {
    margin-top: 14px;
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    justify-content: center;
}

.event-tags span {
    background: var(--gold-soft);
    color: var(--gold-dark);
    font-size: 0.7rem;
    padding: 4px 10px;
    border-radius: 999px;
    font-weight: 500;
}

/* ---------- Testimonials ---------- */

.testimonials {
    background: var(--cream);
    padding: 96px 0;
}

.testimonial-slider {
    max-width: 760px;
    margin: 0 auto;
    text-align: center;
}

.testimonial-slide {
    display: none;
    animation: fadeIn 0.6s ease;
}

.testimonial-slide.active {
    display: block;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(16px); }
    to { opacity: 1; transform: translateY(0); }
}

.testimonial-stars {
    color: var(--gold);
    font-size: 1.2rem;
    margin-bottom: 18px;
    letter-spacing: 4px;
}

.testimonial-quote {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 1.3rem;
    line-height: 1.6;
    color: var(--green-dark);
    margin-bottom: 22px;
}

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

.testimonial-author span {
    display: block;
    font-weight: 400;
    color: var(--muted);
    font-size: 0.85rem;
}

.testimonial-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 28px;
}

.testimonial-dots button {
    width: 11px;
    height: 11px;
    border-radius: 50%;
    border: none;
    background: #cfd6cb;
    cursor: pointer;
    transition: all 0.3s;
}

.testimonial-dots button.active {
    background: var(--green);
    transform: scale(1.25);
}

/* ---------- Page hero (inner pages) ---------- */

.page-hero {
    position: relative;
    padding: 130px 0 110px;
    background-size: cover;
    background-position: center;
    text-align: center;
    color: #fff;
}

.page-hero .hero-overlay {
    background: linear-gradient(180deg, rgba(12, 70, 49, 0.82), rgba(23, 119, 83, 0.7));
}

.page-hero-content {
    position: relative;
    z-index: 2;
}

.page-hero h1 {
    color: #fff;
    font-size: clamp(2.4rem, 5vw, 3.6rem);
    margin: 10px 0 8px;
}

.page-hero p {
    color: rgba(255, 255, 255, 0.9);
    max-width: 640px;
    margin: 0 auto;
}

.breadcrumb {
    font-size: 0.85rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--gold);
    font-weight: 500;
}

/* ---------- Amenities page ---------- */

.amenities-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 26px;
}

.amenity-card {
    background: #fff;
    border: 1px solid var(--cream-2);
    border-radius: var(--radius);
    overflow: hidden;
    transition: all 0.35s;
}

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

.amenity-media {
    height: 210px;
    overflow: hidden;
}

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

.amenity-card:hover .amenity-media img {
    transform: scale(1.07);
}

.amenity-body {
    padding: 24px;
}

.amenity-body h3 {
    font-size: 1.15rem;
    margin-bottom: 8px;
}

.amenity-body p {
    color: var(--muted);
    font-size: 0.9rem;
}

/* ---------- Checklist ---------- */

.checklist {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px 30px;
}

.checklist li {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--ink);
    font-weight: 500;
}

.checklist li::before {
    content: '✓';
    flex-shrink: 0;
    width: 26px;
    height: 26px;
    border-radius: 50%;
    background: var(--green);
    color: #fff;
    font-size: 0.8rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

/* ---------- Blog ---------- */

.posts-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.post-card {
    background: #fff;
    border: 1px solid var(--cream-2);
    border-radius: var(--radius);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: all 0.35s;
}

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

.post-media {
    position: relative;
    height: 230px;
    overflow: hidden;
}

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

.post-card:hover .post-media img {
    transform: scale(1.07);
}

.post-cat {
    position: absolute;
    top: 14px;
    left: 14px;
    background: var(--gold);
    color: #fff;
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 6px 12px;
    border-radius: 999px;
}

.post-body {
    padding: 24px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.post-date {
    font-size: 0.8rem;
    color: var(--gold-dark);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 8px;
}

.post-body h3 {
    font-size: 1.2rem;
    line-height: 1.35;
    margin-bottom: 10px;
}

.post-body h3 a {
    color: var(--green);
    transition: color 0.3s;
}

.post-body h3 a:hover {
    color: var(--gold-dark);
}

.post-body p {
    color: var(--muted);
    font-size: 0.92rem;
    flex: 1;
}

.post-more {
    margin-top: 16px;
    color: var(--green);
    font-weight: 600;
    font-size: 0.9rem;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.post-more:hover {
    color: var(--gold-dark);
}

.post-more::after {
    content: '→';
    transition: transform 0.3s;
}

.post-more:hover::after {
    transform: translateX(4px);
}

.section-intro {
    color: var(--muted);
    font-size: 1.05rem;
    line-height: 1.8;
}

/* ---------- Single post ---------- */

.single-post {
    max-width: 860px;
    margin: 0 auto;
}

.post-meta-line {
    display: flex;
    flex-wrap: wrap;
    gap: 8px 22px;
    font-size: 0.82rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--gold-dark);
    margin-bottom: 28px;
}

.single-post-image {
    border-radius: var(--radius);
    overflow: hidden;
    margin-bottom: 32px;
    box-shadow: var(--shadow-lg);
}

.single-post-image img {
    width: 100%;
    display: block;
    object-fit: cover;
}

.single-post-excerpt {
    font-size: 1.15rem;
    line-height: 1.7;
    color: var(--green);
    font-weight: 500;
    border-left: 4px solid var(--gold);
    padding-left: 18px;
    margin-bottom: 28px;
}

.single-post-content {
    font-size: 1.02rem;
    line-height: 1.9;
    color: var(--ink);
}

.single-post-content p {
    margin: 0 0 1.3em;
}

.single-post-content h2 {
    font-family: 'Playfair Display', serif;
    font-size: 1.7rem;
    margin: 1.6em 0 0.6em;
    color: var(--green);
}

.single-post-content h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.35rem;
    margin: 1.4em 0 0.5em;
    color: var(--green);
}

.single-post-content img {
    max-width: 100%;
    border-radius: var(--radius);
    margin: 1.4em 0;
}

.single-post-content ul,
.single-post-content ol {
    margin: 0 0 1.3em 1.4em;
}

.single-post-content li {
    margin-bottom: 0.4em;
}

.single-post-content blockquote {
    border-left: 4px solid var(--gold);
    background: var(--cream);
    padding: 18px 22px;
    margin: 1.4em 0;
    font-style: italic;
    color: var(--muted);
    border-radius: 0 var(--radius) var(--radius) 0;
}

.single-post-content a {
    color: var(--green);
    font-weight: 600;
}

.single-post-content a:hover {
    color: var(--gold-dark);
}

/* ---------- Blog pagination ---------- */

.pagination {
    display: inline-flex;
    flex-wrap: wrap;
    gap: 8px;
}

.pagination .page-link,
.pagination .page-item {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 40px;
    height: 40px;
    padding: 0 12px;
    border: 1px solid var(--cream-2);
    border-radius: var(--radius);
    color: var(--green);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s;
}

.pagination a:hover {
    background: var(--green);
    border-color: var(--green);
    color: #fff;
}

.pagination .page-item.active .page-link {
    background: var(--green);
    border-color: var(--green);
    color: #fff;
}

.pagination .page-item.disabled .page-link {
    opacity: 0.45;
    pointer-events: none;
}

/* ---------- About page ---------- */

.stats-row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-top: 56px;
}

.stat-card {
    background: #fff;
    border: 1px solid var(--cream-2);
    border-radius: var(--radius);
    padding: 30px 20px;
    text-align: center;
    transition: all 0.35s;
}

.stat-card:hover {
    box-shadow: var(--shadow);
    transform: translateY(-4px);
}

.stat-card strong {
    font-family: 'Playfair Display', serif;
    font-size: 2.2rem;
    color: var(--gold-dark);
    display: block;
    line-height: 1;
}

.stat-card span {
    color: var(--muted);
    font-size: 0.85rem;
}

.value-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 26px;
}

.value-card {
    background: var(--cream);
    border-radius: var(--radius);
    padding: 32px 26px;
    border-top: 4px solid var(--gold);
    transition: all 0.35s;
}

.value-card:hover {
    background: #fff;
    box-shadow: var(--shadow);
}

.value-card h3 {
    font-size: 1.2rem;
    margin-bottom: 10px;
}

.value-card p {
    color: var(--muted);
    font-size: 0.92rem;
}

/* ---------- Contact page ---------- */

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 46px;
    align-items: start;
}

.contact-cards {
    display: grid;
    gap: 20px;
}

.contact-card {
    display: flex;
    gap: 18px;
    background: #fff;
    border: 1px solid var(--cream-2);
    border-radius: var(--radius);
    padding: 24px;
    transition: all 0.3s;
}

.contact-card:hover {
    box-shadow: var(--shadow);
    transform: translateY(-4px);
}

.contact-icon {
    flex-shrink: 0;
    width: 54px;
    height: 54px;
    border-radius: 50%;
    background: var(--green-soft);
    color: var(--green);
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-icon svg {
    width: 24px;
    height: 24px;
}

.contact-card h3 {
    font-size: 1.05rem;
    margin-bottom: 4px;
}

.contact-card p,
.contact-card a {
    color: var(--muted);
    font-size: 0.92rem;
}

.contact-card a:hover {
    color: var(--green);
}

.contact-form-card {
    background: #fff;
    border: 1px solid var(--cream-2);
    border-radius: var(--radius);
    padding: 36px;
    box-shadow: var(--shadow);
}

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

.form-group {
    display: flex;
    flex-direction: column;
    gap: 7px;
    margin-bottom: 16px;
}

.form-group label {
    font-size: 0.78rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--sage);
}

.form-group input,
.form-group textarea,
.form-group select {
    border: 1px solid var(--cream-2);
    background: var(--cream);
    border-radius: 10px;
    padding: 12px 15px;
    font-family: inherit;
    font-size: 0.93rem;
    color: var(--ink);
    outline: none;
    transition: all 0.3s;
}

.form-group textarea {
    resize: vertical;
    min-height: 130px;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    border-color: var(--green);
    box-shadow: 0 0 0 3px rgba(23, 119, 83, 0.12);
    background: #fff;
}

.map-wrap {
    margin-top: 80px;
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    height: 420px;
}

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

/* ---------- Footer ---------- */

.footer {
    background: var(--green-deeper);
    color: rgba(255, 255, 255, 0.82);
    font-size: 0.92rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1.2fr 1.2fr;
    gap: 46px;
    padding: 76px 20px 50px;
}

.footer-logo {
    height: 46px;
    width: auto;
    margin-bottom: 18px;
    background: #fff;
    border-radius: 8px;
    padding: 6px;
}

.footer-about p {
    margin-bottom: 20px;
}

.footer-social {
    display: flex;
    gap: 10px;
}

.footer-social .social-icon {
    background: rgba(255, 255, 255, 0.1);
}

.footer-heading {
    color: #fff;
    font-size: 1.1rem;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 12px;
}

.footer-heading::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 40px;
    height: 3px;
    background: var(--gold);
    border-radius: 3px;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    transition: all 0.3s;
    display: inline-block;
}

.footer-links a:hover {
    color: var(--gold);
    transform: translateX(4px);
}

.footer-contact li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 16px;
    line-height: 1.5;
}

.footer-contact svg {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
    color: var(--gold);
    margin-top: 3px;
}

.footer-note {
    margin-bottom: 18px;
    color: rgba(255, 255, 255, 0.72);
}

.newsletter-form {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.newsletter-form input {
    border: 1px solid rgba(255, 255, 255, 0.18);
    background: rgba(255, 255, 255, 0.08);
    border-radius: 10px;
    padding: 12px 15px;
    color: #fff;
    font-family: inherit;
    outline: none;
    transition: all 0.3s;
}

.newsletter-form input::placeholder {
    color: rgba(255, 255, 255, 0.55);
}

.newsletter-form input:focus {
    border-color: var(--gold);
    background: rgba(255, 255, 255, 0.12);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    padding: 20px 0;
    font-size: 0.82rem;
}

.footer-bottom-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    flex-wrap: wrap;
}

.footer-bottom-links {
    display: flex;
    gap: 22px;
}

.footer-bottom-links a {
    color: rgba(255, 255, 255, 0.7);
    transition: color 0.3s;
}

.footer-bottom-links a:hover {
    color: var(--gold);
}

/* ---------- Form alerts ---------- */

.form-alert {
    border-radius: 10px;
    padding: 13px 16px;
    font-size: 0.9rem;
    font-weight: 500;
    line-height: 1.5;
}

.form-alert.success {
    background: var(--green-soft);
    color: var(--green-dark);
    border: 1px solid rgba(23, 119, 83, 0.25);
}

.form-alert.error {
    background: #fdecea;
    color: #a33d2e;
    border: 1px solid rgba(163, 61, 46, 0.25);
}

/* ---------- Reveal animation ---------- */

.reveal {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ---------- Responsive ---------- */

@media (max-width: 1024px) {
    .feature-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .amenities-grid,
    .posts-grid {
        grid-template-columns: repeat(2, 1fr);
    }

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

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

    .booking-form {
        grid-template-columns: repeat(3, 1fr);
    }

    .split {
        grid-template-columns: 1fr;
        gap: 44px;
    }

    .split-media img {
        height: 420px;
    }
}

@media (max-width: 768px) {
    .topbar {
        display: none;
    }

    .nav-toggle {
        display: flex;
    }

    .main-nav {
        position: fixed;
        top: 0;
        right: -100%;
        height: 100vh;
        width: min(320px, 84vw);
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
        background: #fff;
        box-shadow: -8px 0 30px rgba(0, 0, 0, 0.15);
        padding: 90px 34px 34px;
        transition: right 0.4s ease;
        z-index: 200;
    }

    .main-nav.open {
        right: 0;
    }

    .main-nav .nav-link {
        width: 100%;
        font-size: 1.05rem;
        padding: 10px 0;
    }

    .nav-book {
        margin-top: 16px;
        width: 100%;
    }

    .nav-toggle.open span:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }

    .nav-toggle.open span:nth-child(2) {
        opacity: 0;
    }

    .nav-toggle.open span:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }

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

    .booking-submit {
        grid-column: span 2;
    }

    .feature-grid,
    .amenities-grid,
    .posts-grid,
    .events-grid,
    .cottage-grid,
    .value-grid,
    .stats-row {
        grid-template-columns: 1fr;
    }

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

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

    .form-row {
        grid-template-columns: 1fr;
    }

    .gallery-strip {
        grid-template-columns: 1fr 1fr;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 36px;
        padding: 56px 20px 40px;
    }

    .split-media .split-badge {
        right: 10px;
    }

    .cottage-slide img {
        height: 380px;
    }
}

@media (max-width: 480px) {
    .booking-form {
        grid-template-columns: 1fr;
    }

    .booking-submit {
        grid-column: span 1;
    }

    .cottage-slide img {
        height: 300px;
    }

    .cottage-slider-arrow {
        width: 38px;
        height: 38px;
        font-size: 1.3rem;
    }

    .gallery-strip {
        grid-template-columns: 1fr;
    }

    .btn {
        width: 100%;
    }

    .hero-buttons {
        flex-direction: column;
    }

    .cta-inner {
        flex-direction: column;
        text-align: center;
    }
}
