/*
Theme Name: Chookies Travel v2
Theme URI: https://chookiestravel.com
Description: Clean, modern travel theme for Chookies Travel - Ninh Binh base
Author: Chookies Travel
Version: 2.1.0
License: GNU General Public License v2 or later
Text Domain: chookies-travel-v2
*/

/* =============================================
   CUSTOM PROPERTIES
============================================= */
:root {
    /* Brand colours */
    --color-primary:     #1B3A2D;   /* deep forest green - top bar, footer, explore bg */
    --color-nav:         #F5F0E8;   /* warm cream - sticky navbar bg */
    --color-accent:      #C8714A;   /* terracotta CTA */
    --color-accent-dark: #A85C3A;   /* hover state */
    --color-bg:          #FAF7F0;   /* cream page bg */
    --color-bg-dark:     #EEE8DF;   /* slightly warmer section bg */
    --color-text:        #1A1A1A;   /* primary body text */
    --color-text-muted:  #5C5C5C;   /* secondary body text */
    --color-white:       #FFFFFF;
    --color-border:      #E8E0D4;

    /* Typography */
    --font-heading: 'Playfair Display', Georgia, serif;
    --font-body:    'Inter', 'Helvetica Neue', Arial, sans-serif;

    /* Layout */
    --max-width:      1200px;
    --section-pad:    100px;
    --section-padding: var(--section-pad) 0;
    --radius:         4px;
    --radius-card:    16px;

    /* Effects */
    --shadow:       0 4px 24px rgba(0,0,0,0.08);
    --shadow-hover: 0 10px 44px rgba(0,0,0,0.14);
    --transition:   0.3s ease;
}

/* =============================================
   RESET & BASE
============================================= */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; font-size: 16px; }

body {
    font-family: var(--font-body);
    background-color: var(--color-bg);
    color: var(--color-text);
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; transition: color var(--transition); }
ul { list-style: none; }

/* =============================================
   TYPOGRAPHY
============================================= */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.25;
    color: var(--color-text);
}

h1 { font-size: clamp(2.5rem, 5vw, 4rem); }
h2 { font-size: clamp(2rem, 3.5vw, 3rem); }
h3 { font-size: clamp(1.4rem, 2vw, 1.8rem); }
h4 { font-size: 1.2rem; }

p { margin-bottom: 1rem; }
p:last-child { margin-bottom: 0; }

/* =============================================
   LAYOUT
============================================= */
.container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 24px;
}

.section-label {
    display: inline-block;
    font-family: var(--font-body);
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--color-accent);
    margin-bottom: 16px;
}

.section-title {
    font-family: var(--font-heading);
    margin-bottom: 24px;
}

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

.section-header {
    text-align: center;
    margin-bottom: 60px;
}
.section-header .section-intro { margin: 0 auto; }

/* =============================================
   BUTTONS
============================================= */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 32px;
    font-family: var(--font-body);
    font-size: 0.88rem;
    font-weight: 600;
    letter-spacing: 0.04em;
    border-radius: 50px;
    cursor: pointer;
    transition: all var(--transition);
    border: 2px solid transparent;
    white-space: nowrap;
}

.btn-primary {
    background: var(--color-accent);
    color: var(--color-white);
    border-color: var(--color-accent);
}
.btn-primary:hover {
    background: var(--color-accent-dark);
    border-color: var(--color-accent-dark);
    color: var(--color-white);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(200,113,74,0.38);
}

.btn-outline {
    background: transparent;
    color: var(--color-white);
    border-color: rgba(255,255,255,0.7);
}
.btn-outline:hover {
    background: var(--color-white);
    border-color: var(--color-white);
    color: var(--color-text);
    transform: translateY(-2px);
}

.btn-outline-dark {
    background: transparent;
    color: var(--color-text);
    border-color: var(--color-text);
}
.btn-outline-dark:hover {
    background: var(--color-text);
    color: var(--color-white);
    transform: translateY(-2px);
}

.btn-white {
    background: var(--color-white);
    color: var(--color-accent);
    border-color: var(--color-white);
    font-weight: 700;
}
.btn-white:hover {
    background: var(--color-primary);
    border-color: var(--color-primary);
    color: var(--color-white);
    transform: translateY(-2px);
}

/* =============================================
   TOP BAR  (#1B3A2D deep green)
============================================= */
.top-bar {
    background: var(--color-primary);
    color: rgba(255,255,255,0.75);
    font-size: 0.78rem;
    padding: 9px 0;
    letter-spacing: 0.02em;
}

.top-bar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
}

.top-bar a {
    color: rgba(255,255,255,0.75);
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: color var(--transition);
}
.top-bar a:hover { color: var(--color-accent); }

.top-bar-address,
.top-bar-contact {
    display: flex;
    align-items: center;
    gap: 20px;
}

.top-bar-icon {
    width: 14px;
    height: 14px;
    fill: currentColor;
    flex-shrink: 0;
}

/* =============================================
   NAVIGATION  (#F5F0E8 warm cream, contrasts with #1B3A2D top bar)
============================================= */
.site-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: var(--color-nav);
    border-bottom: 1px solid var(--color-border);
    box-shadow: 0 2px 12px rgba(27,58,45,0.07);
    transition: box-shadow var(--transition);
}

/* Single-row flex navbar */
.nav-inner {
    display: flex;
    flex-direction: row;
    align-items: center;
    height: 80px;
    overflow: visible;
}

/* ── Logo ── */
.site-logo {
    flex: 0 0 auto;
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    margin-right: 48px;
}
.site-logo img { height: 48px; width: auto; }

/* Avatar circle "C" shown when no custom logo is set */
.logo-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--color-accent);
    color: var(--color-white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
    font-size: 1.3rem;
    font-weight: 700;
    flex-shrink: 0;
    line-height: 1;
    user-select: none;
}

.logo-text {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--color-primary);
    line-height: 1.15;
    white-space: nowrap;
}
.logo-text span {
    display: block;
    font-size: 0.6rem;
    font-family: var(--font-body);
    font-weight: 600;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: rgba(27,58,45,0.48);
}

/* ── Primary nav: flex row, no wrap ── */
.primary-nav {
    flex: 1 1 auto;
    display: flex;
    flex-direction: row;
    align-items: stretch;
    flex-wrap: nowrap;
    min-width: 0;
    overflow: visible;
}

/* Suppress WP list defaults */
.primary-nav li,
.primary-nav ul { list-style: none; margin: 0; padding: 0; }

.primary-nav li {
    display: flex;
    align-items: stretch;
    position: relative;
    flex-shrink: 0;
}

/* Top-level links fill navbar height for large click targets */
.primary-nav > li > a,
.primary-nav > a {
    display: flex;
    align-items: center;
    height: 80px;
    padding: 0 18px;
    font-size: 1rem;
    font-weight: 500;
    color: var(--color-primary);
    white-space: nowrap;
    text-decoration: none;
    transition: color var(--transition);
    border-bottom: 3px solid transparent;
}
.primary-nav > li > a:hover,
.primary-nav > li > a.active,
.primary-nav > a:hover,
.primary-nav > a.active {
    color: var(--color-accent);
    border-bottom-color: var(--color-accent);
}

/* ── Sub-menu dropdown ── */
.primary-nav .sub-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 220px;
    background: var(--color-white);
    border: 1px solid var(--color-border);
    border-radius: 12px;
    box-shadow: 0 8px 32px rgba(0,0,0,0.12);
    z-index: 1010;
    padding: 8px 0;
}
.primary-nav li:hover > .sub-menu,
.primary-nav li:focus-within > .sub-menu {
    display: block;
    animation: dropIn 0.18s ease;
}
@keyframes dropIn {
    from { opacity: 0; transform: translateY(-6px); }
    to   { opacity: 1; transform: translateY(0); }
}
.primary-nav .sub-menu li {
    display: block;
    flex-shrink: 1;
}
.primary-nav .sub-menu a {
    display: block;
    height: auto;
    padding: 10px 20px;
    font-size: 0.88rem;
    font-weight: 500;
    color: var(--color-text);
    border-bottom: none;
    white-space: nowrap;
}
.primary-nav .sub-menu a:hover {
    color: var(--color-accent);
    background: var(--color-bg);
}

/* ── Book Now ── */
.nav-cta {
    flex: 0 0 auto;
    margin-left: 24px;
}
.nav-cta .btn { padding: 10px 24px; font-size: 0.9rem; }

/* ── Hamburger (mobile only) ── */
.hamburger {
    display: none;
    flex: 0 0 auto;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 6px 4px;
    background: none;
    border: none;
    margin-left: auto;
}
.hamburger span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--color-primary);
    transition: all var(--transition);
    border-radius: 2px;
}
.hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.hamburger.open span:nth-child(2) { opacity: 0; width: 0; }
.hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* =============================================
   HERO
============================================= */
.hero-section {
    position: relative;
    height: 95vh;
    min-height: 600px;
    max-height: 920px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background-image: url('assets/images/hero-bg.jpg');
    background-size: cover;
    background-position: center;
    transform: scale(1.05);
    transition: transform 8s ease;
    will-change: transform;
}
.hero-section:hover .hero-bg { transform: scale(1); }

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to bottom,
        rgba(0,0,0,0.45) 0%,
        rgba(0,0,0,0.50) 40%,
        rgba(0,0,0,0.58) 100%
    );
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: var(--color-white);
    padding: 0 24px;
    max-width: 820px;
}

.hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #FFB085;   /* cam nhạt - light terracotta on dark hero */
    margin-bottom: 22px;
}
.hero-eyebrow::before,
.hero-eyebrow::after {
    content: '';
    display: block;
    width: 32px;
    height: 1px;
    background: rgba(255,255,255,0.5);
}

.hero-title {
    font-family: var(--font-heading);
    font-size: clamp(2.8rem, 6vw, 5.2rem);
    font-weight: 700;
    color: var(--color-white);
    margin-bottom: 20px;
    text-shadow: 0 2px 24px rgba(0,0,0,0.28);
    line-height: 1.1;
    word-break: break-word;
    overflow-wrap: break-word;
}

.hero-subtitle {
    font-size: 1.1rem;
    color: rgba(255,255,255,0.82);
    margin-bottom: 40px;
    line-height: 1.75;
    font-weight: 300;
    max-width: 640px;
    margin-left: auto;
    margin-right: auto;
}

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

.hero-scroll {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    color: rgba(255,255,255,0.65);
    font-size: 0.68rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    cursor: pointer;
    animation: scrollBounce 2.2s ease-in-out infinite;
}
.hero-scroll::after {
    content: '';
    display: block;
    width: 1px;
    height: 44px;
    background: linear-gradient(to bottom, rgba(255,255,255,0.55), rgba(255,255,255,0));
}

@keyframes scrollBounce {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50%       { transform: translateX(-50%) translateY(8px); }
}

/* =============================================
   INTRO / WELCOME
============================================= */
.intro-section {
    padding: var(--section-padding);
    background: var(--color-bg);   /* #FAF7F0 warm cream */
}

.intro-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.intro-text .section-title { margin-bottom: 20px; }

.intro-text p {
    font-size: 1.05rem;
    color: var(--color-text-muted);
    line-height: 1.85;
    margin-bottom: 32px;
}

.intro-link {
    font-weight: 600;
    color: var(--color-accent);
    border-bottom: 2px solid var(--color-accent);
    padding-bottom: 2px;
    transition: all var(--transition);
}
.intro-link:hover {
    color: var(--color-accent-dark);
    border-color: var(--color-accent-dark);
}

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

.stat-item {
    text-align: center;
    padding: 36px 20px;
    background: var(--color-white);
    border-radius: var(--radius-card);
    border: 1px solid var(--color-border);
    box-shadow: 0 2px 12px rgba(0,0,0,0.06);
    transition: all var(--transition);
}
.stat-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow);
    border-color: var(--color-accent);
}

.stat-number {
    font-family: var(--font-heading);
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--color-accent);
    line-height: 1;
    margin-bottom: 10px;
}

.stat-label {
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--color-text-muted);
    line-height: 1.4;
}

/* =============================================
   STAY SECTION
============================================= */
.stay-section {
    padding: var(--section-padding);
    background: var(--color-bg-dark);
}

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

/* Cards - shared */
.property-card {
    background: var(--color-white);
    border-radius: var(--radius-card);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: all var(--transition);
    position: relative;
}
.property-card:hover {
    transform: translateY(-7px);
    box-shadow: var(--shadow-hover);
}

.card-image {
    position: relative;
    overflow: hidden;
    aspect-ratio: 4/3;
}
.card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.65s ease;
}
.property-card:hover .card-image img { transform: scale(1.06); }

.card-badge {
    position: absolute;
    top: 18px;
    left: 18px;
    background: var(--color-accent);
    color: var(--color-white);
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    padding: 6px 14px;
    border-radius: 50px;
}

.card-body { padding: 32px; }

.card-tag {
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--color-accent);
    margin-bottom: 10px;
}

.card-title {
    font-family: var(--font-heading);
    font-size: 1.55rem;
    margin-bottom: 12px;
    color: var(--color-text);
}

.card-desc {
    font-size: 0.95rem;
    color: var(--color-text-muted);
    line-height: 1.75;
    margin-bottom: 24px;
}

.card-features {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 28px;
}
.feature-tag {
    font-size: 0.76rem;
    font-weight: 500;
    color: var(--color-text-muted);
    background: var(--color-bg-dark);
    border-radius: 50px;
    padding: 4px 14px;
    border: 1px solid var(--color-border);
}

.card-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 20px;
    border-top: 1px solid var(--color-border);
}

.card-price {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--color-text);
}
.card-price small {
    font-family: var(--font-body);
    font-size: 0.78rem;
    font-weight: 400;
    color: var(--color-text-muted);
}

/* =============================================
   EAT & DRINK
============================================= */
.eatdrink-section {
    padding: var(--section-padding);
    background: #F5EFE5;
}

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

.venue-card {
    background: var(--color-white);
    border-radius: var(--radius-card);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: all var(--transition);
    display: flex;
    flex-direction: column;
}
.venue-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-hover);
}

/* ── Venue card inner elements ── */
.venue-card-photo {
    aspect-ratio: 4/3;
    background-size: cover;
    background-position: center;
    border-radius: var(--radius-card) var(--radius-card) 0 0;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    flex-shrink: 0;
}
/* Subtle dark overlay so any image has text contrast */
.venue-card-photo::after {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.08);
    transition: background var(--transition);
}
.venue-card:hover .venue-card-photo::after { background: rgba(0,0,0,0.04); }

.venue-card-placeholder {
    font-size: 3.2rem;
    line-height: 1;
    position: relative;
    z-index: 1;
    filter: drop-shadow(0 2px 10px rgba(0,0,0,0.25));
}

.venue-card-body {
    padding: 22px 24px 26px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    flex: 1;
}

.venue-card-tag {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--color-accent);
}

.venue-card-name {
    font-family: var(--font-heading);
    font-size: 1.45rem;
    font-weight: 700;
    color: var(--color-primary);
    line-height: 1.22;
    margin: 0;
}

.venue-card-desc {
    font-size: 0.88rem;
    color: var(--color-text-muted);
    line-height: 1.65;
    margin: 0;
    flex: 1;
}

.venue-card-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 6px 14px;
    padding: 10px 0;
    border-top: 1px solid var(--color-border);
    border-bottom: 1px solid var(--color-border);
}
.venue-card-meta span {
    font-size: 0.78rem;
    color: var(--color-text-muted);
    white-space: nowrap;
}

.venue-card-link {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--color-accent);
    transition: all var(--transition);
    padding-top: 2px;
    text-decoration: none;
}
.venue-card-link:hover {
    color: var(--color-accent-dark);
    gap: 8px;
}

/* =============================================
   EXPLORE   (#1B3A2D dark green)
============================================= */
.explore-section {
    padding: var(--section-padding);
    background: var(--color-primary);
    color: var(--color-white);
    position: relative;
    overflow: hidden;
}
.explore-section::before {
    content: '';
    position: absolute;
    top: -80px;
    right: -80px;
    width: 420px;
    height: 420px;
    border-radius: 50%;
    background: rgba(200,113,74,0.07);
    pointer-events: none;
}

.explore-section .section-label { color: var(--color-accent); }
.explore-section .section-title { color: var(--color-white); }
.explore-section .section-intro { color: rgba(255,255,255,0.68); }

.explore-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}
.explore-text { order: 1; }
.explore-visual { order: 2; }

.tour-list { margin-top: 40px; }

.tour-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 20px 0;
    border-bottom: 1px solid rgba(255,255,255,0.08);
    transition: all var(--transition);
    cursor: pointer;
}
.tour-item:first-child { padding-top: 0; }
.tour-item:last-child  { border-bottom: none; }
.tour-item:hover       { padding-left: 8px; }

.tour-icon {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(200,113,74,0.18);
    border: 1px solid rgba(200,113,74,0.35);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 1.1rem;
    transition: all var(--transition);
}
.tour-item:hover .tour-icon {
    background: var(--color-accent);
    border-color: var(--color-accent);
}

.tour-info h4 {
    color: var(--color-white);
    font-family: var(--font-heading);
    font-size: 1.02rem;
    margin-bottom: 4px;
}
.tour-info p {
    font-size: 0.84rem;
    color: rgba(255,255,255,0.58);
    margin: 0;
}

.explore-image-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
}
.explore-img {
    border-radius: var(--radius-card);
    overflow: hidden;
    aspect-ratio: 1/1;
}
.explore-img:first-child {
    grid-column: auto;
    aspect-ratio: 1/1;
}
.explore-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.65s ease;
}
.explore-img:hover img { transform: scale(1.05); }

@media (min-width: 1024px) {
    .explore-image-grid {
        grid-template-columns: 1fr 1fr;
        grid-template-rows: 1fr 1fr;
        gap: 12px;
        height: 480px;
    }
    .explore-img {
        aspect-ratio: unset;
        border-radius: 8px;
    }
    .explore-img:first-child {
        grid-column: 1;
        grid-row: 1 / 3;
        aspect-ratio: unset;
    }
    .explore-img:nth-child(2) {
        grid-column: 2;
        grid-row: 1;
    }
    .explore-img:nth-child(3) {
        grid-column: 2;
        grid-row: 2;
    }
    .explore-img img {
        border-radius: 8px;
    }
}

/* =============================================
   WHY US
============================================= */
.whyus-section {
    padding: var(--section-padding);
    background: var(--color-bg);
}

.whyus-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 28px;
    margin-top: 60px;
}

.whyus-item {
    text-align: center;
    padding: 40px 24px;
    border-radius: var(--radius-card);
    border: 1px solid var(--color-border);
    background: var(--color-white);
    transition: all var(--transition);
}
.whyus-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow);
    border-color: var(--color-accent);
}

.whyus-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 20px;
    background: rgba(27,58,45,0.08);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    transition: all var(--transition);
}
.whyus-item:hover .whyus-icon { background: rgba(200,113,74,0.12); }

.whyus-item h4 {
    font-family: var(--font-heading);
    font-size: 1.08rem;
    margin-bottom: 12px;
    color: var(--color-text);
}
.whyus-item p {
    font-size: 0.9rem;
    color: var(--color-text-muted);
    line-height: 1.75;
    margin: 0;
}

/* =============================================
   CTA STRIP
============================================= */
.cta-section {
    padding: 100px 0;
    background: var(--color-accent);
    text-align: center;
    position: relative;
    overflow: hidden;
}
.cta-section::before {
    content: '';
    position: absolute;
    top: -100px; left: -100px;
    width: 500px; height: 500px;
    border-radius: 50%;
    background: rgba(255,255,255,0.06);
    pointer-events: none;
}
.cta-section::after {
    content: '';
    position: absolute;
    bottom: -80px; right: -80px;
    width: 350px; height: 350px;
    border-radius: 50%;
    background: rgba(0,0,0,0.06);
    pointer-events: none;
}

.cta-section .section-label { color: rgba(255,255,255,0.78); }
.cta-section h2 {
    color: var(--color-white);
    margin-bottom: 16px;
    font-size: clamp(2rem, 4vw, 3rem);
}
.cta-section p {
    color: rgba(255,255,255,0.84);
    font-size: 1.08rem;
    max-width: 560px;
    margin: 0 auto 40px;
    line-height: 1.8;
}
.cta-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
    position: relative;
    z-index: 1;
}

/* =============================================
   FOOTER  (#1B3A2D deep green)
============================================= */
.site-footer {
    background: var(--color-primary);
    color: rgba(255,255,255,0.68);
    padding: 80px 0 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 48px;
    padding-bottom: 60px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.footer-brand .logo-text { color: var(--color-white); }
.footer-brand .logo-text span { color: rgba(255,255,255,0.45); }

.footer-tagline {
    font-size: 0.9rem;
    line-height: 1.8;
    margin: 20px 0 28px;
    color: rgba(255,255,255,0.58);
}

.footer-socials { display: flex; gap: 12px; }

.social-link {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    border: 1px solid rgba(255,255,255,0.18);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.85rem;
    color: rgba(255,255,255,0.65);
    transition: all var(--transition);
}
.social-link:hover {
    background: var(--color-accent);
    border-color: var(--color-accent);
    color: var(--color-white);
    transform: translateY(-2px);
}

.footer-col h5 {
    font-family: var(--font-body);
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--color-white);
    margin-bottom: 20px;
}

.footer-links { display: flex; flex-direction: column; gap: 10px; }
.footer-links a {
    font-size: 0.9rem;
    color: rgba(255,255,255,0.58);
    transition: color var(--transition);
}
.footer-links a:hover { color: var(--color-accent); }

.footer-contact { display: flex; flex-direction: column; gap: 12px; }

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 0.87rem;
    color: rgba(255,255,255,0.58);
}
.contact-item a { transition: color var(--transition); }
.contact-item a:hover { color: var(--color-accent); }

.contact-icon {
    width: 16px;
    flex-shrink: 0;
    margin-top: 2px;
    color: var(--color-accent);
}

.footer-bottom {
    padding: 24px 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 0.8rem;
    color: rgba(255,255,255,0.38);
    gap: 16px;
}

/* =============================================
   WHATSAPP FLOAT BUTTON
============================================= */
.whatsapp-float {
    position: fixed;
    bottom: 32px;
    right: 32px;
    z-index: 9990;
    width: 58px;
    height: 58px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(37,211,102,0.45), 0 2px 8px rgba(0,0,0,0.15);
    transition: all var(--transition);
    text-decoration: none;
}
.whatsapp-float svg {
    width: 28px;
    height: 28px;
    fill: #fff;
    flex-shrink: 0;
}
.whatsapp-float:hover {
    transform: scale(1.1) translateY(-3px);
    box-shadow: 0 8px 30px rgba(37,211,102,0.5), 0 4px 12px rgba(0,0,0,0.18);
    background: #20bf5e;
    color: #fff;
}
/* pulse ring */
.whatsapp-float::before {
    content: '';
    position: absolute;
    inset: -4px;
    border-radius: 50%;
    border: 2px solid rgba(37,211,102,0.4);
    animation: waPulse 2.5s ease-out infinite;
}
@keyframes waPulse {
    0%   { transform: scale(1);   opacity: 0.8; }
    70%  { transform: scale(1.35); opacity: 0; }
    100% { transform: scale(1.35); opacity: 0; }
}

/* =============================================
   RESPONSIVE
============================================= */
@media (max-width: 1024px) {
    .venue-grid { grid-template-columns: repeat(2, 1fr); }
    .footer-grid { grid-template-columns: 1fr 1fr; row-gap: 40px; }
    .footer-grid > *:first-child { grid-column: 1 / -1; }
}

@media (max-width: 768px) {
    :root { --section-pad: 60px; }

    .explore-image-grid { grid-template-columns: 1fr; }
    .stat-item { padding: 28px 16px; }
    .stat-number { font-size: 2.8rem; }

    /* ── Compact top bar ── */
    .top-bar { padding: 7px 0; font-size: 0.72rem; }
    .top-bar-address, .top-bar-contact { gap: 12px; }
    .top-bar-address span:not(:first-child) { display: none; }

    /* ── Compact navbar ── */
    .nav-inner { height: 60px; }
    .site-logo { margin-right: 0; }
    .site-logo img { height: 34px; }
    .logo-avatar { width: 36px; height: 36px; font-size: 1.05rem; }
    .logo-text { font-size: 1rem; }
    .logo-text span { font-size: 0.55rem; }

    /* ── Mobile nav dropdown - dark green panel ── */
    .primary-nav {
        display: none;
        position: fixed;
        top: 60px;
        left: 0;
        right: 0;
        background: var(--color-primary);
        flex-direction: column;
        gap: 2px;
        padding: 16px 20px 24px;
        box-shadow: 0 10px 32px rgba(0,0,0,0.28);
        z-index: 999;
        border-top: 1px solid rgba(255,255,255,0.08);
        max-height: calc(100vh - 60px);
        overflow-y: auto;
    }
    .primary-nav.open { display: flex; }

    /* Top-level links on mobile */
    .primary-nav > li > a,
    .primary-nav a {
        display: block;
        padding: 11px 16px;
        border-radius: var(--radius);
        color: rgba(255,255,255,0.88);
        font-size: 0.92rem;
    }
    .primary-nav a:hover,
    .primary-nav a.active {
        background: rgba(255,255,255,0.1);
        color: var(--color-white);
    }

    /* ── Mobile sub-menu ── */
    /* Disable desktop hover on mobile */
    .primary-nav li:hover > .sub-menu,
    .primary-nav li:focus-within > .sub-menu { display: none; }

    /* Only show when JS adds .is-open */
    .primary-nav li.is-open > .sub-menu { display: block; animation: none; }

    .primary-nav .sub-menu {
        position: static;
        top: auto;
        left: auto;
        min-width: 0;
        box-shadow: none;
        border: none;
        border-top: 1px solid rgba(255,255,255,0.08);
        border-radius: 0;
        padding: 4px 0 4px 12px;
        background: rgba(0,0,0,0.15);
        margin-top: 2px;
    }
    .primary-nav .sub-menu a {
        color: rgba(255,255,255,0.72);
        font-size: 0.84rem;
        padding: 8px 12px;
        white-space: normal;
    }
    .primary-nav .sub-menu a:hover {
        background: rgba(255,255,255,0.08);
        color: var(--color-white);
    }

    /* Arrow indicator on parent items */
    .primary-nav .menu-item-has-children > a { display: flex; justify-content: space-between; align-items: center; }
    .primary-nav .menu-item-has-children > a::after {
        content: '+';
        font-size: 1rem;
        line-height: 1;
        opacity: 0.65;
        margin-left: 8px;
        flex-shrink: 0;
        transition: transform var(--transition);
    }
    .primary-nav .menu-item-has-children.is-open > a::after {
        content: '-';
        transform: none;
    }

    /* Book Now hidden on mobile */
    .nav-cta { display: none !important; }
    .hamburger {
        display: flex;
        margin-left: auto;
    }

    /* ── Layout ── */
    .intro-inner   { grid-template-columns: 1fr; gap: 48px; }
    .stay-grid     { grid-template-columns: 1fr; }
    .explore-inner { grid-template-columns: 1fr; gap: 48px; }
    .explore-visual { order: -1; }
    .whyus-grid    { grid-template-columns: repeat(2, 1fr); }
    .footer-grid   { grid-template-columns: 1fr; }
    .footer-grid > *:first-child { grid-column: auto; }
    .footer-bottom { flex-direction: column; text-align: center; }

    .whatsapp-float { bottom: 20px; right: 20px; width: 52px; height: 52px; }
    .whatsapp-float svg { width: 24px; height: 24px; }
}

@media (max-width: 480px) {
    .hero-actions   { flex-direction: column; align-items: center; }
    .intro-stats    { grid-template-columns: 1fr; }
    .venue-grid     { grid-template-columns: 1fr; }
    .whyus-grid     { grid-template-columns: 1fr; }
    .cta-buttons    { flex-direction: column; align-items: center; }
    .cta-section    { padding: 72px 0; }
}

/* =============================================
   WORDPRESS CORE
============================================= */
.aligncenter { display: block; margin-left: auto; margin-right: auto; }
.alignright  { float: right; margin-left: 24px; }
.alignleft   { float: left; margin-right: 24px; }
.wp-caption  { max-width: 100%; }
.screen-reader-text {
    clip: rect(1px,1px,1px,1px);
    position: absolute;
    overflow: hidden;
    height: 1px;
    width: 1px;
    white-space: nowrap;
}
