/* ============================================================
   CABANA VULPEA SOVATA — Main Stylesheet
   ============================================================ */

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

:root {
  --green-dark:  #1a3c2a;
  --green-main:  #2d6a4f;
  --green-mid:   #40916c;
  --green-light: #74c69d;
  --green-pale:  #e8f5ee;
  --gold:        #c9a84c;
  --cream:       #faf8f5;
  --white:       #ffffff;
  --dark:        #1a1a1a;
  --text:        #2c2c2c;
  --text-muted:  #6c757d;
  --border:      #e0e0e0;
  --shadow-sm:   0 2px 8px rgba(0,0,0,0.08);
  --shadow-md:   0 4px 20px rgba(0,0,0,0.12);
  --shadow-lg:   0 8px 40px rgba(0,0,0,0.18);
  --radius:      12px;
  --radius-lg:   20px;
  --transition:  0.3s ease;
  --font-head:   'Playfair Display', Georgia, serif;
  --font-body:   'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --container:   1200px;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  color: var(--text);
  background: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
}

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

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* === TYPOGRAPHY === */
h1, h2, h3, h4 {
  font-family: var(--font-head);
  line-height: 1.2;
  color: var(--green-dark);
}

.section-tag {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--green-mid);
  display: block;
  margin-bottom: 0.6rem;
}

.section-title {
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  margin-bottom: 1rem;
}

.section-subtitle {
  font-size: 1.05rem;
  color: var(--text-muted);
  max-width: 580px;
  line-height: 1.75;
}

/* === BUTTONS === */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.8rem 1.8rem;
  border-radius: 50px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.93rem;
  cursor: pointer;
  transition: all var(--transition);
  border: 2px solid transparent;
  white-space: nowrap;
}

.btn-primary {
  background: var(--green-main);
  color: var(--white);
  border-color: var(--green-main);
}
.btn-primary:hover {
  background: var(--green-dark);
  border-color: var(--green-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.7);
}
.btn-outline:hover {
  background: var(--white);
  color: var(--green-main);
  border-color: var(--white);
}

.btn-gold {
  background: var(--gold);
  color: var(--white);
  border-color: var(--gold);
}
.btn-gold:hover {
  background: #b5913e;
  border-color: #b5913e;
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn-dark {
  background: var(--green-dark);
  color: var(--white);
  border-color: var(--green-dark);
}
.btn-dark:hover {
  background: #0e2117;
  transform: translateY(-2px);
}

/* === NAVBAR === */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 1.2rem 0;
  transition: all var(--transition);
  background: transparent;
}

.navbar.scrolled {
  background: rgba(26, 60, 42, 0.97);
  backdrop-filter: blur(12px);
  padding: 0.75rem 0;
  box-shadow: var(--shadow-md);
}

.navbar.solid {
  background: var(--green-dark);
  padding: 0.75rem 0;
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.nav-logo {
  display: flex;
  flex-direction: column;
  color: var(--white);
  flex-shrink: 0;
}

.nav-logo .logo-name {
  font-family: var(--font-head);
  font-size: 1.4rem;
  font-weight: 700;
  line-height: 1;
}

.nav-logo .logo-sub {
  font-size: 0.65rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  opacity: 0.7;
  margin-top: 2px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.nav-links a {
  color: rgba(255,255,255,0.88);
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  transition: color var(--transition);
  position: relative;
  padding-bottom: 2px;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -3px; left: 0;
  width: 0; height: 2px;
  background: var(--green-light);
  transition: width var(--transition);
}

.nav-links a:hover,
.nav-links a.active { color: var(--white); }
.nav-links a:hover::after,
.nav-links a.active::after { width: 100%; }

.nav-right {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-shrink: 0;
}

.lang-toggle {
  display: flex;
  align-items: center;
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.25);
  border-radius: 20px;
  overflow: hidden;
}

.lang-btn {
  padding: 0.3rem 0.75rem;
  font-size: 0.78rem;
  font-weight: 600;
  color: rgba(255,255,255,0.6);
  cursor: pointer;
  transition: all var(--transition);
  border: none;
  background: none;
  font-family: var(--font-body);
  letter-spacing: 0.05em;
}

.lang-btn.active {
  background: rgba(255,255,255,0.22);
  color: var(--white);
}

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

.hamburger span {
  display: block;
  width: 24px; height: 2px;
  background: var(--white);
  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; }
.hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* === HERO === */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('../vulpea1/WhatsApp_Image_2026-07-03_at_18.52.17__1_.webp');
  background-size: cover;
  background-position: center 30%;
  transform: scale(1.06);
  transition: transform 7s ease-out;
}

.hero.loaded .hero-bg { transform: scale(1); }

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(20,50,30,0.78) 0%, rgba(45,106,79,0.45) 60%, rgba(0,0,0,0.2) 100%);
}

.hero-content {
  position: relative;
  z-index: 1;
  color: var(--white);
  max-width: 700px;
  padding-top: 6rem;
}

.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: rgba(255,255,255,0.14);
  border: 1px solid rgba(255,255,255,0.3);
  padding: 0.4rem 1rem;
  border-radius: 50px;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
  backdrop-filter: blur(8px);
}

.hero h1 {
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  color: var(--white);
  margin-bottom: 1.2rem;
  line-height: 1.15;
  text-shadow: 0 2px 20px rgba(0,0,0,0.3);
}

.hero-subtitle {
  font-size: 1.12rem;
  opacity: 0.9;
  margin-bottom: 2.2rem;
  line-height: 1.75;
  max-width: 560px;
}

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.hero-scroll {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.4rem;
  color: rgba(255,255,255,0.6);
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hero-scroll-arrow {
  width: 20px;
  height: 20px;
  border-right: 2px solid rgba(255,255,255,0.6);
  border-bottom: 2px solid rgba(255,255,255,0.6);
  transform: rotate(45deg);
  animation: scrollBounce 1.5s ease-in-out infinite;
}

@keyframes scrollBounce {
  0%, 100% { transform: rotate(45deg) translateY(0); }
  50% { transform: rotate(45deg) translateY(5px); }
}

/* === PAGE HEADER (inner pages) === */
.page-header {
  padding: 9rem 0 5rem;
  background: linear-gradient(135deg, var(--green-dark) 0%, var(--green-main) 100%);
  color: var(--white);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-header::after {
  content: '';
  position: absolute;
  bottom: -1px; left: 0; right: 0;
  height: 60px;
  background: var(--white);
  clip-path: ellipse(55% 100% at 50% 100%);
}

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

.page-header h1 {
  color: var(--white);
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 0.75rem;
}

.page-header p {
  font-size: 1.05rem;
  opacity: 0.82;
  max-width: 480px;
  margin: 0 auto;
}

/* === GENERAL SECTIONS === */
section { padding: 5rem 0; }

.section-header { margin-bottom: 3rem; }
.section-header.center { text-align: center; }
.section-header.center .section-subtitle { margin: 0 auto; }

/* === ABOUT === */
.about-section { background: var(--cream); }

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.about-images {
  position: relative;
  height: 480px;
}

.about-img-main {
  position: absolute;
  top: 0; left: 0;
  width: 72%; height: 78%;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}

.about-img-sec {
  position: absolute;
  bottom: 0; right: 0;
  width: 54%; height: 52%;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  border: 4px solid var(--white);
}

.about-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
  margin-top: 1.8rem;
}

.about-feat {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.93rem;
  color: var(--text);
}

.about-feat-icon {
  width: 28px; height: 28px;
  background: var(--green-pale);
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  color: var(--green-main);
  flex-shrink: 0;
  font-size: 0.9rem;
}

/* === HIGHLIGHTS === */
.highlights-section { background: var(--white); }

.highlights-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.hl-card {
  background: var(--cream);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: transform var(--transition), box-shadow var(--transition);
}

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

.hl-img {
  width: 100%; height: 230px;
  object-fit: cover;
}

.hl-body { padding: 1.5rem; }

.hl-icon {
  width: 44px; height: 44px;
  background: var(--green-pale);
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 1rem;
  font-size: 1.4rem;
}

.hl-body h3 {
  font-size: 1.2rem;
  margin-bottom: 0.4rem;
}

.hl-body p {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.7;
}

/* === CABINS PREVIEW === */
.cabins-section { background: var(--green-pale); }

.cabins-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
}

.cabin-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: transform var(--transition), box-shadow var(--transition);
  display: flex;
  flex-direction: column;
}

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

.cabin-card-img-wrap {
  position: relative;
  overflow: hidden;
}

.cabin-card-img {
  width: 100%; height: 280px;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.cabin-card:hover .cabin-card-img { transform: scale(1.04); }

.cabin-badge {
  position: absolute;
  top: 1rem; left: 1rem;
  background: var(--green-main);
  color: var(--white);
  padding: 0.3rem 0.85rem;
  border-radius: 50px;
  font-size: 0.78rem;
  font-weight: 600;
}

.cabin-card-body {
  padding: 1.8rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.cabin-card-body h3 {
  font-size: 1.5rem;
  margin-bottom: 0.75rem;
}

.cabin-card-body p {
  color: var(--text-muted);
  margin-bottom: 1.4rem;
  line-height: 1.75;
  flex: 1;
}

.cabin-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
}

.cabin-tag {
  background: var(--green-pale);
  color: var(--green-main);
  padding: 0.3rem 0.75rem;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 500;
}

/* === GALLERY TEASER === */
.gallery-section { background: var(--white); }

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.8rem;
  margin-bottom: 2rem;
}

.gallery-item {
  overflow: hidden;
  border-radius: var(--radius);
  cursor: pointer;
  position: relative;
}

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

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

.gallery-item.tall { grid-row: span 2; }
.gallery-item.tall img { height: 408px; }

.gallery-item.wide { grid-column: span 2; }
.gallery-item.wide img { height: 200px; }

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: transparent;
  display: flex; align-items: center; justify-content: center;
  transition: background var(--transition);
  color: var(--white);
}

.gallery-overlay span {
  opacity: 0;
  transition: opacity var(--transition);
  font-size: 2rem;
}

.gallery-item:hover .gallery-overlay { background: rgba(0,0,0,0.35); }
.gallery-item:hover .gallery-overlay span { opacity: 1; }

.gallery-center { text-align: center; }

/* === LOCAL SEO / FAQ === */
.seo-section {
  background: var(--cream);
  padding: 4.5rem 0;
}

.seo-grid {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 3rem;
  align-items: start;
}

.seo-list {
  display: grid;
  gap: 0.8rem;
}

.seo-list details {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1rem 1.1rem;
  box-shadow: var(--shadow-sm);
}

.seo-list summary {
  cursor: pointer;
  color: var(--green-dark);
  font-weight: 700;
}

.seo-list p {
  color: var(--text-muted);
  font-size: 0.92rem;
  line-height: 1.75;
  margin-top: 0.75rem;
}

/* === CTA BANNER === */
.cta-banner {
  background: var(--green-dark);
  color: var(--white);
  padding: 5.5rem 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-banner-bg {
  position: absolute;
  inset: 0;
  background-image: url('../vulpea1/WhatsApp_Image_2026-07-03_at_18.52.17__8_.webp');
  background-size: cover;
  background-position: center;
  opacity: 0.18;
}

.cta-content { position: relative; z-index: 1; }

.cta-banner h2 {
  color: var(--white);
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  margin-bottom: 1rem;
}

.cta-banner p {
  font-size: 1.1rem;
  opacity: 0.88;
  margin-bottom: 2.2rem;
  max-width: 480px;
  margin-left: auto;
  margin-right: auto;
}

.cta-btns {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* === FOOTER === */
.footer {
  background: var(--green-dark);
  color: rgba(255,255,255,0.78);
  padding: 4rem 0 2rem;
  border-top: 1px solid rgba(255,255,255,0.06);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}

.footer-brand .f-logo-name {
  font-family: var(--font-head);
  font-size: 1.5rem;
  color: var(--white);
  font-weight: 700;
  display: block;
}

.footer-brand .f-logo-sub {
  font-size: 0.65rem;
  letter-spacing: 0.14em;
  opacity: 0.55;
  text-transform: uppercase;
  margin-bottom: 1rem;
  display: block;
}

.footer-brand p {
  font-size: 0.9rem;
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

.footer-col h4 {
  color: var(--white);
  font-size: 0.95rem;
  margin-bottom: 1.2rem;
  font-family: var(--font-head);
}

.footer-col a {
  display: block;
  font-size: 0.88rem;
  margin-bottom: 0.55rem;
  color: rgba(255,255,255,0.66);
  transition: color var(--transition);
}

.footer-col a:hover { color: var(--green-light); }

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
  font-size: 0.88rem;
  margin-bottom: 0.75rem;
  color: rgba(255,255,255,0.7);
}

.footer-contact-item .f-icon {
  flex-shrink: 0;
  margin-top: 2px;
  color: var(--green-light);
  font-size: 1rem;
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.45);
  flex-wrap: wrap;
  gap: 0.5rem;
}

.footer-bottom a {
  color: rgba(255,255,255,0.55);
  transition: color var(--transition);
}
.footer-bottom a:hover { color: var(--green-light); }

/* ============================================================
   CABINS PAGE
   ============================================================ */
.cabin-detail { padding: 5rem 0; }
.cabin-detail.bg-cream { background: var(--cream); }

.cabin-detail-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
  margin-bottom: 3rem;
}

.cabin-detail-gallery {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.7rem;
}

.cabin-detail-gallery .gallery-item:first-child {
  grid-column: span 2;
}

.cabin-detail-gallery .gallery-item:first-child img { height: 280px; }
.cabin-detail-gallery .gallery-item img { height: 170px; }

.cabin-detail-content h2 {
  font-size: clamp(1.6rem, 2.5vw, 2.2rem);
  margin-bottom: 0.5rem;
}

.cabin-style-label {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  color: var(--green-mid);
  font-size: 0.88rem;
  font-weight: 600;
  margin-bottom: 1.2rem;
}

.cabin-detail-content > p {
  color: var(--text-muted);
  line-height: 1.82;
  margin-bottom: 1.8rem;
}

.amenities-block h4 {
  font-size: 0.95rem;
  font-family: var(--font-head);
  color: var(--green-dark);
  margin-bottom: 1rem;
}

.amenities-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.55rem;
  margin-bottom: 2rem;
}

.amenity {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  font-size: 0.9rem;
}

.amenity-check {
  width: 22px; height: 22px;
  background: var(--green-pale);
  border-radius: 6px;
  display: flex; align-items: center; justify-content: center;
  color: var(--green-main);
  font-size: 0.7rem;
  flex-shrink: 0;
}

/* Full gallery on cabins page */
.cabin-full-gallery { margin-top: 1.5rem; }

.cabin-full-gallery h3 {
  font-size: 1.3rem;
  margin-bottom: 1.2rem;
  color: var(--green-dark);
}

.full-gallery-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0.6rem;
}

.full-gallery-grid .gallery-item img {
  height: 160px;
}

/* ============================================================
   CONTACT PAGE
   ============================================================ */
.contact-section { background: var(--cream); }

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 4rem;
  align-items: start;
}

.contact-info-block h2 {
  font-size: 1.85rem;
  margin-bottom: 0.75rem;
}

.contact-info-block > p {
  color: var(--text-muted);
  line-height: 1.82;
  margin-bottom: 2.5rem;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1.6rem;
}

.c-icon {
  width: 44px; height: 44px;
  background: var(--green-pale);
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
}

.contact-item-text h4 {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 0.2rem;
}

.contact-item-text a,
.contact-item-text p {
  font-size: 1rem;
  color: var(--text);
  font-weight: 500;
  margin: 0;
}

.contact-item-text a:hover { color: var(--green-main); }

/* === FORM === */
.contact-form-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  box-shadow: var(--shadow-md);
}

.contact-form-card h3 {
  font-size: 1.4rem;
  margin-bottom: 0.4rem;
}

.form-sub {
  color: var(--text-muted);
  font-size: 0.9rem;
  margin-bottom: 1.8rem;
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.form-group.full { grid-column: span 2; }

.form-group label {
  font-size: 0.83rem;
  font-weight: 600;
  color: var(--text);
}

.form-group input,
.form-group select,
.form-group textarea {
  padding: 0.75rem 1rem;
  border: 1.5px solid var(--border);
  border-radius: 8px;
  font-family: var(--font-body);
  font-size: 0.93rem;
  color: var(--text);
  transition: border-color var(--transition);
  outline: none;
  background: var(--white);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--green-mid);
  box-shadow: 0 0 0 3px rgba(64,145,108,0.12);
}

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

.form-submit {
  margin-top: 1.2rem;
  width: 100%;
  justify-content: center;
  font-size: 1rem;
}

.recaptcha-wrap {
  margin-top: 1.2rem;
  min-height: 78px;
  overflow-x: auto;
}

.recaptcha-wrap > div {
  max-width: 100%;
}

.form-submit:disabled {
  opacity: 0.72;
  cursor: progress;
  transform: none;
}

.hidden-field {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

/* === MAP === */
.map-section { padding: 0; }

.map-section iframe {
  width: 100%;
  height: 400px;
  display: block;
  border: none;
}

/* ============================================================
   LIGHTBOX
   ============================================================ */
.lightbox {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: rgba(0,0,0,0.94);
  align-items: center;
  justify-content: center;
}

.lightbox.open { display: flex; }

.lightbox-img {
  max-width: 88vw;
  max-height: 82vh;
  object-fit: contain;
  border-radius: 8px;
  display: block;
}

.lb-close {
  position: absolute;
  top: 1.2rem; right: 1.2rem;
  color: var(--white);
  background: rgba(255,255,255,0.15);
  border: none;
  border-radius: 50%;
  width: 46px; height: 46px;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  font-size: 1.4rem;
  transition: background var(--transition);
}

.lb-close:hover { background: rgba(255,255,255,0.28); }

.lb-prev, .lb-next {
  position: absolute;
  top: 50%; transform: translateY(-50%);
  background: rgba(255,255,255,0.15);
  border: none;
  color: var(--white);
  width: 50px; height: 50px;
  border-radius: 50%;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.3rem;
  transition: background var(--transition);
}

.lb-prev { left: 1.2rem; }
.lb-next { right: 1.2rem; }
.lb-prev:hover, .lb-next:hover { background: rgba(255,255,255,0.28); }

.lb-counter {
  position: absolute;
  bottom: 1.5rem;
  left: 50%;
  transform: translateX(-50%);
  color: rgba(255,255,255,0.6);
  font-size: 0.85rem;
}

/* === WHATSAPP FLOAT === */
.wa-float {
  position: fixed;
  bottom: 2rem; right: 2rem;
  z-index: 998;
  width: 58px; height: 58px;
  background: #25D366;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 22px rgba(37,211,102,0.45);
  transition: all var(--transition);
  color: var(--white);
  font-size: 1.6rem;
}

.wa-float:hover {
  transform: scale(1.12);
  box-shadow: 0 6px 30px rgba(37,211,102,0.55);
}

/* === THANK YOU PAGE === */
.thank-you-page {
  min-height: 100vh;
  background: var(--cream);
}

.thank-you-hero {
  min-height: 72vh;
  display: flex;
  align-items: center;
  padding-top: 8rem;
}

.thank-you-hero h1 {
  max-width: 720px;
  font-size: clamp(2rem, 4vw, 3.2rem);
  margin-bottom: 1rem;
}

.thank-you-hero p {
  max-width: 620px;
  color: var(--text-muted);
  font-size: 1.08rem;
  line-height: 1.75;
  margin-bottom: 2rem;
}

/* === SCROLL ANIMATIONS === */
.fade-up {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}

.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.2s; }
.delay-3 { transition-delay: 0.3s; }
.delay-4 { transition-delay: 0.4s; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .about-grid,
  .cabin-detail-inner,
  .seo-grid,
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .about-images { height: 360px; }

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

  .cabins-grid {
    grid-template-columns: 1fr;
    max-width: 560px;
    margin: 0 auto;
  }

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

  .full-gallery-grid { grid-template-columns: repeat(4, 1fr); }
}

@media (max-width: 768px) {
  .nav-links {
    display: none;
    position: absolute;
    top: 100%; left: 0; right: 0;
    background: var(--green-dark);
    padding: 1.5rem 1.5rem;
    flex-direction: column;
    align-items: flex-start;
    gap: 1.2rem;
    box-shadow: var(--shadow-md);
  }

  .nav-links.open { display: flex; }
  .hamburger { display: flex; }
  .nav-right .btn { display: none; }

  .hero h1 { font-size: 2.1rem; }
  .hero-content { padding-top: 5rem; }

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

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

  .gallery-item.tall { grid-row: auto; }
  .gallery-item.tall img { height: 200px; }
  .gallery-item.wide { grid-column: auto; }
  .gallery-item.wide img { height: 200px; }

  .about-images { height: 300px; }

  .form-grid { grid-template-columns: 1fr; }
  .form-group.full { grid-column: 1; }

  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .footer-bottom { justify-content: center; text-align: center; }

  .cabin-detail-gallery { grid-template-columns: 1fr 1fr; }
  .full-gallery-grid { grid-template-columns: repeat(3, 1fr); }

  .amenities-list { grid-template-columns: 1fr; }

  section { padding: 3.5rem 0; }

  .cta-btns { flex-direction: column; align-items: center; }
}

@media (max-width: 480px) {
  .highlights-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: 1fr 1fr; }
  .full-gallery-grid { grid-template-columns: repeat(2, 1fr); }

  .hero-cta { flex-direction: column; }
  .hero-cta .btn { justify-content: center; }

  .about-feat { font-size: 0.88rem; }

  .contact-form-card { padding: 1.5rem; }

  .wa-float { bottom: 1.2rem; right: 1.2rem; }
}
