/* ================================================
   HAVEN WEEKENDS – Main Stylesheet
   ================================================ */

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

:root {
  --forest: #1a3a2a;
  --forest-light: #2d5a3d;
  --gold: #c8922a;
  --gold-light: #e8b547;
  --cream: #faf7f2;
  --cream-dark: #f0ead8;
  --text: #1c1c1c;
  --text-mid: #555;
  --text-light: #888;
  --white: #ffffff;
  --border: #e0d8cc;
  --shadow: 0 4px 24px rgba(0,0,0,0.08);
  --shadow-hover: 0 12px 40px rgba(0,0,0,0.15);
  --radius: 12px;
  --radius-sm: 6px;
  --font-head: 'Playfair Display', Georgia, serif;
  --font-body: 'DM Sans', system-ui, sans-serif;
  --transition: all 0.3s ease;
}

html { scroll-behavior: smooth; }
body { font-family: var(--font-body); color: var(--text); background: var(--white); line-height: 1.65; }
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }

/* ---- Layout ---- */
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }

/* ---- Top Bar ---- */
.topbar { background: var(--forest); color: #a8d5b5; font-size: 13px; padding: 8px 0; }
.topbar-inner { display: flex; gap: 24px; flex-wrap: wrap; align-items: center; }
.topbar-inner span { display: flex; align-items: center; gap: 6px; }
.topbar-inner a { color: #c8f0d0; }
.topbar-inner a:hover { color: var(--white); }
.topbar-inner .fa, .topbar-inner .fab { color: var(--gold-light); font-size: 12px; }

/* ---- Header ---- */
.header { background: var(--white); position: sticky; top: 0; z-index: 100; border-bottom: 1px solid var(--border); box-shadow: 0 2px 12px rgba(0,0,0,0.06); transition: var(--transition); }
.header-inner { display: flex; align-items: center; gap: 24px; padding-top: 14px; padding-bottom: 14px; }
.logo { font-family: var(--font-head); font-size: 26px; letter-spacing: -0.5px; }
.logo-haven { color: var(--forest); font-weight: 700; }
.logo-weekends { color: var(--gold); font-weight: 400; font-style: italic; }
.nav { display: flex; gap: 4px; margin-left: auto; }
.nav-link { font-size: 14px; font-weight: 500; color: var(--text-mid); padding: 6px 14px; border-radius: 6px; transition: var(--transition); }
.nav-link:hover, .nav-link.active { color: var(--forest); background: var(--cream); }
.btn-book { background: var(--gold); color: var(--white); font-size: 14px; font-weight: 600; padding: 10px 22px; border-radius: 8px; transition: var(--transition); white-space: nowrap; }
.btn-book:hover { background: var(--forest); transform: translateY(-1px); }
.hamburger { display: none; background: none; border: none; font-size: 22px; color: var(--forest); cursor: pointer; }

/* ---- Hero ---- */
.hero { position: relative; height: 92vh; min-height: 560px; display: flex; align-items: center; justify-content: center; overflow: hidden; }
.hero-bg { position: absolute; inset: 0; }
.hero-img { width: 100%; height: 100%; object-fit: cover; transform: scale(1.05); animation: heroZoom 8s ease-out forwards; }
.hero-overlay { position: absolute; inset: 0; background: linear-gradient(to bottom, rgba(10,30,15,0.45) 0%, rgba(10,30,15,0.65) 100%); }
@keyframes heroZoom { to { transform: scale(1); } }
.hero-content { position: relative; z-index: 2; text-align: center; color: var(--white); padding: 0 24px; animation: fadeUp 1s ease 0.3s both; }
@keyframes fadeUp { from { opacity: 0; transform: translateY(30px); } to { opacity: 1; transform: translateY(0); } }
.hero-tag { font-size: 12px; font-weight: 600; letter-spacing: 3px; color: var(--gold-light); margin-bottom: 16px; }
.hero-title { font-family: var(--font-head); font-size: clamp(44px, 7vw, 80px); line-height: 1.1; margin-bottom: 16px; }
.hero-title em { color: var(--gold-light); font-style: italic; }
.hero-sub { font-size: 18px; font-weight: 300; letter-spacing: 1px; opacity: 0.85; margin-bottom: 36px; }
.hero-ctas { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
.btn-primary { background: var(--gold); color: var(--white); font-weight: 600; padding: 14px 32px; border-radius: 8px; font-size: 15px; transition: var(--transition); display: inline-flex; align-items: center; gap: 8px; }
.btn-primary:hover { background: var(--forest); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(0,0,0,0.2); }
.btn-outline-white { border: 2px solid rgba(255,255,255,0.7); color: var(--white); font-weight: 600; padding: 12px 28px; border-radius: 8px; font-size: 15px; transition: var(--transition); display: inline-flex; align-items: center; gap: 8px; }
.btn-outline-white:hover { background: rgba(255,255,255,0.15); border-color: var(--white); }
.hero-scroll { position: absolute; bottom: 30px; left: 50%; transform: translateX(-50%); color: rgba(255,255,255,0.6); font-size: 20px; animation: bounce 2s infinite; z-index: 2; }
@keyframes bounce { 0%,100%{transform:translateX(-50%) translateY(0)} 50%{transform:translateX(-50%) translateY(8px)} }

/* ---- Search Bar ---- */
.search-bar-section { padding: 24px 0; background: var(--white); border-bottom: 1px solid var(--border); }
.search-bar { display: flex; gap: 0; background: var(--white); border: 1.5px solid var(--border); border-radius: 12px; overflow: hidden; box-shadow: var(--shadow); }
.search-field { flex: 1; padding: 14px 20px; border-right: 1px solid var(--border); }
.search-field:last-of-type { border-right: none; }
.search-field label { display: flex; align-items: center; gap: 6px; font-size: 11px; font-weight: 600; letter-spacing: 1px; color: var(--text-light); text-transform: uppercase; margin-bottom: 4px; }
.search-field select { width: 100%; border: none; outline: none; font-family: var(--font-body); font-size: 14px; font-weight: 500; color: var(--text); background: transparent; cursor: pointer; }
.btn-search { background: var(--gold); color: var(--white); font-weight: 700; font-size: 15px; padding: 0 36px; border: none; cursor: pointer; transition: var(--transition); white-space: nowrap; letter-spacing: 0.5px; }
.btn-search:hover { background: var(--forest); }

/* ---- Stats ---- */
.stats-section { background: var(--forest); padding: 40px 0; }
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); text-align: center; gap: 0; }
.stat-item { padding: 20px; border-right: 1px solid rgba(255,255,255,0.1); }
.stat-item:last-child { border-right: none; }
.stat-num { display: block; font-family: var(--font-head); font-size: 42px; font-weight: 700; color: var(--gold-light); line-height: 1; }
.stat-label { font-size: 14px; color: rgba(255,255,255,0.6); margin-top: 6px; display: block; letter-spacing: 1px; }

/* ---- Section Defaults ---- */
.section { padding: 80px 0; }
.bg-cream { background: var(--cream); }
.bg-forest { background: var(--forest); }
.section-header { text-align: center; margin-bottom: 52px; }
.section-header.light .section-tag { color: var(--gold-light); }
.section-header.light .section-title { color: var(--white); }
.section-tag { font-size: 11px; font-weight: 700; letter-spacing: 3px; color: var(--gold); text-transform: uppercase; margin-bottom: 10px; display: block; }
.section-title { font-family: var(--font-head); font-size: clamp(28px, 4vw, 44px); color: var(--forest); line-height: 1.2; margin-bottom: 14px; }
.section-sub { font-size: 16px; color: var(--text-mid); max-width: 540px; margin: 0 auto; }
.center-cta { text-align: center; margin-top: 44px; }

/* ---- Categories ---- */
.categories-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 16px; }
.category-card { position: relative; border-radius: var(--radius); overflow: hidden; aspect-ratio: 3/4; cursor: pointer; }
.category-card img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.category-card:hover img { transform: scale(1.08); }
.cat-overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(10,30,15,0.85) 0%, transparent 55%); display: flex; flex-direction: column; justify-content: flex-end; padding: 20px; color: var(--white); }
.cat-icon { font-size: 22px; margin-bottom: 8px; color: var(--gold-light); }
.cat-overlay h3 { font-family: var(--font-head); font-size: 20px; margin-bottom: 4px; }
.cat-overlay p { font-size: 12px; opacity: 0.8; }

/* ---- Destinations ---- */
.destinations-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; grid-template-rows: auto auto; }
.dest-large { grid-row: span 2; }
.dest-card { position: relative; border-radius: var(--radius); overflow: hidden; display: block; }
.dest-card img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; min-height: 200px; }
.dest-large img { min-height: 420px; }
.dest-card:hover img { transform: scale(1.06); }
.dest-info { position: absolute; bottom: 0; left: 0; right: 0; padding: 24px 20px 20px; background: linear-gradient(to top, rgba(10,30,15,0.9) 0%, transparent 100%); color: var(--white); }
.dest-info h3 { font-family: var(--font-head); font-size: 22px; margin-bottom: 2px; }
.dest-info p { font-size: 13px; opacity: 0.8; }
.dest-count { display: inline-block; background: var(--gold); color: var(--white); font-size: 11px; font-weight: 600; padding: 3px 10px; border-radius: 20px; margin-top: 8px; }

/* ---- Properties Grid ---- */
.properties-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.prop-card { background: var(--white); border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); transition: var(--transition); }
.prop-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-hover); }
.prop-img-wrap { position: relative; height: 220px; overflow: hidden; }
.prop-img-wrap img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.prop-card:hover .prop-img-wrap img { transform: scale(1.06); }
.prop-badge { position: absolute; top: 14px; left: 14px; background: var(--gold); color: var(--white); font-size: 11px; font-weight: 700; padding: 4px 12px; border-radius: 20px; letter-spacing: 0.5px; }
.prop-featured { position: absolute; top: 14px; right: 14px; background: var(--forest); color: var(--gold-light); font-size: 11px; font-weight: 700; padding: 4px 12px; border-radius: 20px; }
.prop-body { padding: 20px; }
.prop-location { font-size: 12px; color: var(--gold); font-weight: 600; letter-spacing: 0.5px; margin-bottom: 6px; }
.prop-name { font-family: var(--font-head); font-size: 20px; color: var(--forest); margin-bottom: 8px; line-height: 1.2; }
.prop-rating { font-size: 12px; color: var(--gold); margin-bottom: 10px; }
.prop-rating .fa-star, .prop-rating .fa-star-half-alt { font-size: 11px; }
.prop-rating span { color: var(--text-light); margin-left: 4px; }
.prop-desc { font-size: 13px; color: var(--text-mid); line-height: 1.6; margin-bottom: 14px; }
.prop-amenities { display: flex; gap: 10px; flex-wrap: wrap; margin-bottom: 16px; }
.prop-amenities span { font-size: 11px; color: var(--text-mid); background: var(--cream); padding: 4px 10px; border-radius: 20px; display: flex; align-items: center; gap: 5px; }
.prop-amenities .fa, .prop-amenities .fab { color: var(--gold); font-size: 10px; }
.prop-footer { display: flex; align-items: center; justify-content: space-between; gap: 10px; padding-top: 14px; border-top: 1px solid var(--border); flex-wrap: wrap; }
.prop-price { font-size: 20px; font-weight: 700; color: var(--forest); font-family: var(--font-head); }
.prop-price span { font-size: 13px; font-weight: 400; color: var(--text-light); }
.btn-book-small { background: var(--forest); color: var(--white); font-size: 13px; font-weight: 600; padding: 9px 18px; border-radius: 8px; transition: var(--transition); }
.btn-book-small:hover { background: var(--gold); transform: translateY(-1px); }
.btn-call-price { background: var(--cream); color: var(--forest); border: 1.5px solid var(--forest); font-size: 13px; font-weight: 700; padding: 9px 16px; border-radius: 8px; transition: var(--transition); display: inline-flex; align-items: center; gap: 6px; white-space: nowrap; text-decoration: none; }
.btn-call-price:hover { background: var(--forest); color: var(--white); transform: translateY(-1px); }
.btn-call-price .fa { font-size: 12px; }

/* ---- Why Us ---- */
.why-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.why-card { background: rgba(255,255,255,0.07); border: 1px solid rgba(255,255,255,0.12); border-radius: var(--radius); padding: 28px; text-align: center; transition: var(--transition); }
.why-card:hover { background: rgba(255,255,255,0.12); transform: translateY(-4px); }
.why-icon { width: 56px; height: 56px; background: var(--gold); border-radius: 50%; display: flex; align-items: center; justify-content: center; margin: 0 auto 16px; font-size: 22px; color: var(--white); }
.why-card h3 { font-family: var(--font-head); font-size: 18px; color: var(--white); margin-bottom: 10px; }
.why-card p { font-size: 14px; color: rgba(255,255,255,0.65); line-height: 1.6; }

/* ---- Testimonials ---- */
.testimonials-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.testi-card { background: var(--cream); border-radius: var(--radius); padding: 28px; border: 1px solid var(--border); transition: var(--transition); }
.testi-card:hover { box-shadow: var(--shadow); transform: translateY(-3px); }
.testi-stars { color: var(--gold); font-size: 14px; margin-bottom: 14px; letter-spacing: 2px; }
.testi-card p { font-size: 14px; color: var(--text-mid); line-height: 1.7; font-style: italic; margin-bottom: 20px; }
.testi-author { display: flex; align-items: center; gap: 12px; }
.testi-avatar { width: 44px; height: 44px; border-radius: 50%; background: var(--forest); color: var(--gold-light); display: flex; align-items: center; justify-content: center; font-size: 14px; font-weight: 700; flex-shrink: 0; }
.testi-author strong { display: block; font-size: 14px; color: var(--text); font-weight: 600; }
.testi-author span { font-size: 12px; color: var(--text-light); }

/* ---- Packages ---- */
.packages-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.pkg-card { border-radius: var(--radius); overflow: hidden; background: var(--white); box-shadow: var(--shadow); transition: var(--transition); }
.pkg-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-hover); }
.pkg-card img { width: 100%; height: 220px; object-fit: cover; transition: transform 0.5s; }
.pkg-card:hover img { transform: scale(1.05); }
.pkg-info { padding: 20px; }
.pkg-tag { font-size: 11px; font-weight: 700; letter-spacing: 1px; color: var(--gold); text-transform: uppercase; background: rgba(200,146,42,0.12); padding: 4px 10px; border-radius: 20px; }
.pkg-info h3 { font-family: var(--font-head); font-size: 20px; color: var(--forest); margin: 12px 0 8px; }
.pkg-info p { font-size: 13px; color: var(--text-mid); line-height: 1.6; }
.pkg-price { font-size: 18px; font-weight: 700; color: var(--gold); margin-top: 14px; font-family: var(--font-head); }
.pkg-price span { font-size: 12px; font-weight: 400; color: var(--text-light); }

/* ---- CTA Banner ---- */
.cta-banner { position: relative; padding: 100px 0; overflow: hidden; }
.cta-banner-bg { position: absolute; inset: 0; }
.cta-banner-bg img { width: 100%; height: 100%; object-fit: cover; }
.cta-overlay { position: absolute; inset: 0; background: rgba(10,30,15,0.72); }
.cta-content { position: relative; z-index: 2; text-align: center; color: var(--white); }
.cta-content h2 { font-family: var(--font-head); font-size: clamp(28px, 4vw, 48px); margin-bottom: 14px; }
.cta-content p { font-size: 17px; opacity: 0.85; margin-bottom: 36px; }
.cta-buttons { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
.btn-cta-call { background: var(--white); color: var(--forest); font-weight: 700; padding: 16px 32px; border-radius: 8px; font-size: 16px; transition: var(--transition); display: flex; align-items: center; gap: 10px; }
.btn-cta-call:hover { background: var(--cream); transform: translateY(-2px); }
.btn-cta-whatsapp { background: #25d366; color: var(--white); font-weight: 700; padding: 16px 32px; border-radius: 8px; font-size: 16px; transition: var(--transition); display: flex; align-items: center; gap: 10px; }
.btn-cta-whatsapp:hover { background: #1ebe59; transform: translateY(-2px); }

/* ---- Instagram Grid ---- */
.insta-grid { display: grid; grid-template-columns: repeat(6, 1fr); gap: 8px; }
.insta-item { aspect-ratio: 1; overflow: hidden; border-radius: 8px; }
.insta-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.insta-item:hover img { transform: scale(1.1); }

/* ---- Footer ---- */
.footer { background: var(--text); color: rgba(255,255,255,0.7); padding: 64px 0 0; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 40px; margin-bottom: 48px; }
.footer-logo { font-family: var(--font-head); font-size: 28px; margin-bottom: 14px; }
.footer-logo span { color: #a8d5b5; }
.footer-brand p { font-size: 14px; line-height: 1.7; margin-bottom: 20px; }
.footer-contact { display: flex; flex-direction: column; gap: 8px; margin-bottom: 20px; }
.footer-contact a { font-size: 14px; color: var(--gold-light); display: flex; align-items: center; gap: 8px; transition: var(--transition); }
.footer-contact a:hover { color: var(--white); }
.footer-social { display: flex; gap: 12px; }
.footer-social a { width: 38px; height: 38px; border-radius: 50%; border: 1px solid rgba(255,255,255,0.2); display: flex; align-items: center; justify-content: center; font-size: 15px; color: rgba(255,255,255,0.6); transition: var(--transition); }
.footer-social a:hover { background: var(--gold); border-color: var(--gold); color: var(--white); }
.footer-col h4 { font-family: var(--font-head); font-size: 16px; color: var(--white); margin-bottom: 18px; }
.footer-col a { display: block; font-size: 14px; color: rgba(255,255,255,0.6); margin-bottom: 10px; transition: var(--transition); }
.footer-col a:hover { color: var(--gold-light); padding-left: 4px; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.1); padding: 20px 0; display: flex; }
.footer-bottom .container { display: flex; justify-content: space-between; font-size: 13px; flex-wrap: wrap; gap: 8px; }
.footer-bottom p { color: rgba(255,255,255,0.4); }

/* ---- Floating WhatsApp ---- */
.float-whatsapp { position: fixed; bottom: 28px; right: 28px; background: #25d366; color: var(--white); border-radius: 50px; padding: 14px 22px; display: flex; align-items: center; gap: 10px; font-size: 15px; font-weight: 600; z-index: 999; box-shadow: 0 6px 24px rgba(37,211,102,0.45); transition: var(--transition); text-decoration: none; }
.float-whatsapp .fab { font-size: 24px; }
.float-whatsapp:hover { background: #1ebe59; transform: translateY(-3px); box-shadow: 0 10px 32px rgba(37,211,102,0.5); }

/* ================================================
   PAGE-LEVEL HERO (for inner pages)
   ================================================ */
.page-hero { position: relative; height: 380px; display: flex; align-items: center; }
.page-hero-bg { position: absolute; inset: 0; }
.page-hero-bg img { width: 100%; height: 100%; object-fit: cover; }
.page-hero-overlay { position: absolute; inset: 0; background: rgba(10,30,15,0.65); }
.page-hero-content { position: relative; z-index: 2; color: var(--white); }
.page-hero-content .breadcrumb { font-size: 13px; opacity: 0.7; margin-bottom: 12px; }
.page-hero-content .breadcrumb a { color: var(--gold-light); }
.page-hero-content h1 { font-family: var(--font-head); font-size: clamp(32px, 5vw, 56px); margin-bottom: 10px; }
.page-hero-content p { font-size: 17px; opacity: 0.85; }

/* ---- Filter Bar ---- */
.filter-bar { background: var(--white); border-bottom: 1px solid var(--border); padding: 20px 0; position: sticky; top: 70px; z-index: 50; }
.filter-inner { display: flex; gap: 10px; flex-wrap: wrap; align-items: center; }
.filter-btn { border: 1.5px solid var(--border); background: var(--white); color: var(--text-mid); font-family: var(--font-body); font-size: 13px; font-weight: 500; padding: 8px 18px; border-radius: 50px; cursor: pointer; transition: var(--transition); }
.filter-btn:hover, .filter-btn.active { background: var(--forest); color: var(--white); border-color: var(--forest); }
.filter-btn.active { background: var(--forest); color: var(--white); border-color: var(--forest); }

/* ---- All Properties (stays page) ---- */
.stays-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }

/* ---- Destination Detail Cards ---- */
.dest-detail-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.dest-detail-card { border-radius: var(--radius); overflow: hidden; background: var(--white); box-shadow: var(--shadow); transition: var(--transition); cursor: pointer; }
.dest-detail-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-hover); }
.dest-detail-card img { width: 100%; height: 200px; object-fit: cover; }
.dest-detail-info { padding: 20px; }
.dest-detail-info h3 { font-family: var(--font-head); font-size: 22px; color: var(--forest); margin-bottom: 6px; }
.dest-detail-info p { font-size: 13px; color: var(--text-mid); line-height: 1.6; margin-bottom: 12px; }
.dest-meta { display: flex; gap: 14px; font-size: 12px; color: var(--text-light); }
.dest-meta span { display: flex; align-items: center; gap: 5px; }
.dest-meta .fa { color: var(--gold); }

/* ---- About Page ---- */
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.about-img-wrap { position: relative; border-radius: var(--radius); overflow: hidden; }
.about-img-wrap img { width: 100%; height: 480px; object-fit: cover; }
.about-tag { font-size: 11px; font-weight: 700; letter-spacing: 3px; color: var(--gold); text-transform: uppercase; margin-bottom: 14px; display: block; }
.about-title { font-family: var(--font-head); font-size: clamp(28px, 3.5vw, 40px); color: var(--forest); margin-bottom: 18px; line-height: 1.25; }
.about-text { font-size: 15px; color: var(--text-mid); line-height: 1.8; margin-bottom: 16px; }
.team-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.team-card { text-align: center; }
.team-card img { width: 100%; height: 260px; object-fit: cover; border-radius: var(--radius); margin-bottom: 16px; }
.team-card h3 { font-family: var(--font-head); font-size: 18px; color: var(--forest); }
.team-card p { font-size: 13px; color: var(--gold); font-weight: 500; }

/* ---- Contact Page ---- */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; }
.contact-info h2 { font-family: var(--font-head); font-size: 32px; color: var(--forest); margin-bottom: 16px; }
.contact-info p { font-size: 15px; color: var(--text-mid); line-height: 1.7; margin-bottom: 28px; }
.contact-item { display: flex; align-items: flex-start; gap: 16px; margin-bottom: 24px; }
.contact-icon { width: 48px; height: 48px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 18px; flex-shrink: 0; }
.contact-icon.call { background: rgba(200,146,42,0.12); color: var(--gold); }
.contact-icon.wa { background: rgba(37,211,102,0.12); color: #25d366; }
.contact-icon.loc { background: rgba(26,58,42,0.12); color: var(--forest); }
.contact-item h4 { font-size: 13px; font-weight: 700; color: var(--text-light); letter-spacing: 1px; text-transform: uppercase; margin-bottom: 4px; }
.contact-item a, .contact-item p { font-size: 16px; color: var(--text); font-weight: 500; }
.contact-item a:hover { color: var(--gold); }
.contact-form { background: var(--cream); border-radius: var(--radius); padding: 36px; }
.contact-form h3 { font-family: var(--font-head); font-size: 24px; color: var(--forest); margin-bottom: 24px; }
.form-group { margin-bottom: 18px; }
.form-group label { display: block; font-size: 13px; font-weight: 600; color: var(--text-mid); margin-bottom: 6px; }
.form-group input, .form-group select, .form-group textarea { width: 100%; border: 1.5px solid var(--border); border-radius: 8px; padding: 12px 14px; font-family: var(--font-body); font-size: 14px; color: var(--text); background: var(--white); transition: var(--transition); outline: none; }
.form-group input:focus, .form-group select:focus, .form-group textarea:focus { border-color: var(--gold); box-shadow: 0 0 0 3px rgba(200,146,42,0.1); }
.form-group textarea { height: 120px; resize: vertical; }
.btn-submit { width: 100%; background: var(--forest); color: var(--white); font-size: 15px; font-weight: 700; padding: 14px; border: none; border-radius: 8px; cursor: pointer; transition: var(--transition); font-family: var(--font-body); }
.btn-submit:hover { background: var(--gold); }

/* ---- Gallery ---- */
.gallery-grid { columns: 3; gap: 14px; }
.gallery-item { break-inside: avoid; margin-bottom: 14px; border-radius: 10px; overflow: hidden; cursor: pointer; }
.gallery-item img { width: 100%; display: block; transition: transform 0.5s ease; }
.gallery-item:hover img { transform: scale(1.04); }

/* ---- Packages Detail ---- */
.packages-detail-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 28px; }
.pkg-detail-card { background: var(--white); border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); display: grid; grid-template-columns: 280px 1fr; }
.pkg-detail-card img { width: 100%; height: 100%; object-fit: cover; }
.pkg-detail-body { padding: 24px; }
.pkg-detail-body .pkg-tag { display: inline-block; margin-bottom: 10px; }
.pkg-detail-body h3 { font-family: var(--font-head); font-size: 22px; color: var(--forest); margin-bottom: 8px; }
.pkg-detail-body p { font-size: 14px; color: var(--text-mid); line-height: 1.6; margin-bottom: 14px; }
.pkg-includes { list-style: none; margin-bottom: 16px; }
.pkg-includes li { font-size: 13px; color: var(--text-mid); display: flex; align-items: center; gap: 8px; margin-bottom: 6px; }
.pkg-includes li .fa { color: var(--gold); font-size: 11px; }
.pkg-footer { display: flex; align-items: center; justify-content: space-between; padding-top: 14px; border-top: 1px solid var(--border); }
.pkg-footer .price { font-family: var(--font-head); font-size: 22px; color: var(--gold); }
.pkg-footer .price span { font-size: 13px; font-weight: 400; color: var(--text-light); }

/* ---- FAQ ---- */
.faq-list { max-width: 760px; margin: 0 auto; }
.faq-item { border: 1px solid var(--border); border-radius: 10px; margin-bottom: 12px; overflow: hidden; }
.faq-question { padding: 18px 22px; font-size: 15px; font-weight: 600; color: var(--forest); cursor: pointer; display: flex; justify-content: space-between; align-items: center; background: var(--white); transition: var(--transition); }
.faq-question:hover { background: var(--cream); }
.faq-question .fa { color: var(--gold); font-size: 13px; transition: transform 0.3s; }
.faq-question.open .fa { transform: rotate(180deg); }
.faq-answer { padding: 0 22px 18px; font-size: 14px; color: var(--text-mid); line-height: 1.7; display: none; }
.faq-answer.open { display: block; }

/* ================================================
   RESPONSIVE
   ================================================ */
@media (max-width: 1024px) {
  .categories-grid { grid-template-columns: repeat(3, 1fr); }
  .properties-grid, .stays-grid { grid-template-columns: repeat(2, 1fr); }
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .testimonials-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .packages-detail-grid { grid-template-columns: 1fr; }
  .pkg-detail-card { grid-template-columns: 220px 1fr; }
}

@media (max-width: 768px) {
  .nav { display: none; position: absolute; top: 100%; left: 0; right: 0; background: var(--white); flex-direction: column; padding: 16px 24px; border-bottom: 1px solid var(--border); box-shadow: var(--shadow); }
  .nav.open { display: flex; }
  .hamburger { display: block; }
  .header-inner { position: relative; }
  .search-bar { flex-direction: column; border-radius: 12px; }
  .search-field { border-right: none; border-bottom: 1px solid var(--border); }
  .search-field:last-of-type { border-bottom: none; }
  .btn-search { padding: 16px; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .categories-grid { grid-template-columns: repeat(2, 1fr); }
  .destinations-grid { grid-template-columns: 1fr; }
  .dest-large { grid-row: auto; }
  .properties-grid, .stays-grid { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .packages-grid { grid-template-columns: 1fr; }
  .insta-grid { grid-template-columns: repeat(3, 1fr); }
  .footer-grid { grid-template-columns: 1fr; }
  .about-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .gallery-grid { columns: 2; }
  .team-grid { grid-template-columns: 1fr; }
  .pkg-detail-card { grid-template-columns: 1fr; }
  .float-whatsapp span { display: none; }
  .float-whatsapp { border-radius: 50%; padding: 16px; }
  .dest-detail-grid { grid-template-columns: 1fr; }
  .topbar-inner { justify-content: center; }
}

@media (max-width: 480px) {
  .categories-grid { grid-template-columns: 1fr 1fr; }
  .gallery-grid { columns: 1; }
  .hero-ctas { flex-direction: column; }
  .cta-buttons { flex-direction: column; align-items: center; }
  .stat-num { font-size: 32px; }
}
