/* ============================================================
   VELVÉE JOURNEY — Global Stylesheet
   Brand: Deep Forest Green + Warm Gold + Cream Sand
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,500;0,600;0,700;1,400;1,500&family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;1,300;1,400&family=Jost:wght@300;400;500;600&display=swap');

:root {
  --green-deep:   #1A3C28;
  --green-mid:    #2A5C40;
  --green-light:  #3D7A58;
  --gold:         #C9A84C;
  --gold-light:   #E2C77A;
  --gold-pale:    #F5EDD4;
  --cream:        #FAF6EE;
  --sand:         #EDE3CE;
  --white:        #FFFFFF;
  --charcoal:     #1C1C1C;
  --text-dark:    #2C2C2C;
  --text-mid:     #555555;
  --text-light:   #888888;

  --font-display: 'Playfair Display', Georgia, serif;
  --font-elegant: 'Cormorant Garamond', Georgia, serif;
  --font-body:    'Jost', sans-serif;

  --radius-sm:    6px;
  --radius-md:    12px;
  --radius-lg:    24px;
  --radius-xl:    40px;

  --shadow-soft:  0 4px 24px rgba(26,60,40,0.10);
  --shadow-gold:  0 4px 24px rgba(201,168,76,0.20);
  --shadow-deep:  0 12px 48px rgba(26,60,40,0.18);

  --transition:   all 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --transition-fast: all 0.18s ease;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: var(--font-body);
  background: var(--cream);
  color: var(--text-dark);
  line-height: 1.7;
  overflow-x: hidden;
}

img { display: block; max-width: 100%; }
a  { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

/* ── Typography ── */
h1,h2,h3,h4,h5 { font-family: var(--font-display); line-height: 1.2; font-weight: 600; }
.elegant { font-family: var(--font-elegant); }

.section-label {
  font-family: var(--font-body);
  font-size: 0.7rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 500;
  display: block;
  margin-bottom: 0.75rem;
}

/* ── Layout ── */
.container { max-width: 1200px; margin: 0 auto; padding: 0 32px; }
.container-wide { max-width: 1400px; margin: 0 auto; padding: 0 32px; }
section { padding: 100px 0; }

/* ── Buttons ── */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 14px 34px;
  font-family: var(--font-body); font-size: 0.82rem;
  font-weight: 500; letter-spacing: 0.1em; text-transform: uppercase;
  border-radius: 60px;
  transition: var(--transition);
  white-space: nowrap;
  position: relative; overflow: hidden;
}
.btn::before {
  content: ''; position: absolute; inset: 0;
  background: rgba(255,255,255,0.12); opacity: 0;
  transition: var(--transition-fast);
}
.btn:hover::before { opacity: 1; }
.btn:active { transform: scale(0.97); }

.btn-gold {
  background: var(--gold); color: var(--green-deep);
  box-shadow: 0 4px 20px rgba(201,168,76,0.35);
}
.btn-gold:hover { background: var(--gold-light); box-shadow: 0 8px 32px rgba(201,168,76,0.45); transform: translateY(-2px); }

.btn-outline-white {
  border: 1.5px solid rgba(255,255,255,0.65); color: var(--white);
  backdrop-filter: blur(8px);
}
.btn-outline-white:hover { background: rgba(255,255,255,0.12); border-color: var(--white); transform: translateY(-2px); }

.btn-outline-green {
  border: 1.5px solid var(--green-deep); color: var(--green-deep);
}
.btn-outline-green:hover { background: var(--green-deep); color: var(--white); transform: translateY(-2px); }

.btn-green {
  background: var(--green-deep); color: var(--white);
  box-shadow: var(--shadow-soft);
}
.btn-green:hover { background: var(--green-mid); transform: translateY(-2px); box-shadow: var(--shadow-deep); }

/* ── Navigation ── */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  padding: 0 40px;
  transition: var(--transition);
}
.nav.scrolled {
  background: rgba(26,60,40,0.97);
  backdrop-filter: blur(16px);
  box-shadow: 0 2px 32px rgba(0,0,0,0.18);
  padding: 0 40px;
}
.nav-inner {
  display: flex; align-items: center; justify-content: space-between;
  height: 80px;
}
.nav-logo {
  display: flex; align-items: center; gap: 12px;
}
.nav-logo-mark {
  width: 42px; height: 42px;
  background: var(--gold);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display); font-size: 1.1rem; font-weight: 700;
  color: var(--green-deep);
  flex-shrink: 0;
}
.nav-logo-text {
  font-family: var(--font-display); font-size: 1.2rem; font-weight: 600;
  color: var(--white); line-height: 1;
}
.nav-logo-text span {
  display: block; font-size: 0.62rem; letter-spacing: 0.18em;
  text-transform: uppercase; font-family: var(--font-body); font-weight: 300;
  color: var(--gold-light); margin-top: 2px;
}

.nav-links {
  display: flex; align-items: center; gap: 36px;
}
.nav-links a {
  font-size: 0.78rem; letter-spacing: 0.12em; text-transform: uppercase;
  color: rgba(255,255,255,0.82); font-weight: 500;
  transition: var(--transition-fast); position: relative;
}
.nav-links a::after {
  content: ''; position: absolute; bottom: -4px; left: 0; right: 0;
  height: 1px; background: var(--gold); transform: scaleX(0);
  transition: var(--transition-fast); transform-origin: left;
}
.nav-links a:hover, .nav-links a.active { color: var(--white); }
.nav-links a:hover::after, .nav-links a.active::after { transform: scaleX(1); }

.nav-cta { margin-left: 8px; padding: 10px 24px; font-size: 0.75rem; }

.nav-hamburger {
  display: none; flex-direction: column; gap: 5px;
  padding: 4px; cursor: pointer;
}
.nav-hamburger span {
  display: block; width: 24px; height: 2px; background: var(--white);
  transition: var(--transition-fast);
}

/* ── Mobile nav ── */
.nav-mobile {
  display: none; position: fixed; inset: 0; z-index: 999;
  background: var(--green-deep);
  flex-direction: column; align-items: center; justify-content: center;
  gap: 36px;
}
.nav-mobile.open { display: flex; }
.nav-mobile a {
  font-family: var(--font-display); font-size: 2rem; font-weight: 600;
  color: var(--white); transition: var(--transition-fast);
}
.nav-mobile a:hover { color: var(--gold); }
.nav-mobile-close {
  position: absolute; top: 24px; right: 32px;
  color: var(--white); font-size: 2rem; font-weight: 300; cursor: pointer;
}

/* ── Hero ── */
.hero {
  position: relative; height: 100vh; min-height: 680px;
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, var(--green-deep) 0%, #0D2618 40%, #1A3528 70%, #2A4C38 100%);
}
.hero-bg::after {
  content: ''; position: absolute; inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23C9A84C' fill-opacity='0.04'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.hero-video-placeholder {
  position: absolute; inset: 0; overflow: hidden;
}
.hero-video-placeholder video {
  width: 100%; height: 100%; object-fit: cover; opacity: 0.35;
}
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to bottom, rgba(15,30,20,0.3) 0%, rgba(15,30,20,0.6) 60%, rgba(15,30,20,0.85) 100%);
}
.hero-content {
  position: relative; z-index: 2; text-align: center;
  padding: 0 24px; max-width: 860px;
  animation: heroFadeIn 1.2s ease forwards;
}
@keyframes heroFadeIn {
  from { opacity:0; transform: translateY(30px); }
  to   { opacity:1; transform: translateY(0); }
}
.hero-eyebrow {
  font-size: 0.7rem; letter-spacing: 0.3em; text-transform: uppercase;
  color: var(--gold); font-family: var(--font-body); font-weight: 500;
  margin-bottom: 20px; display: block;
  animation: heroFadeIn 1.2s ease 0.2s both;
}
.hero h1 {
  font-size: clamp(2.6rem, 6vw, 5.2rem);
  color: var(--white); font-weight: 600;
  line-height: 1.1; margin-bottom: 28px;
  animation: heroFadeIn 1.2s ease 0.35s both;
}
.hero h1 em {
  font-style: italic; color: var(--gold-light);
  font-family: var(--font-display);
}
.hero-intro {
  font-size: 1.05rem; color: rgba(255,255,255,0.78);
  max-width: 580px; margin: 0 auto 44px;
  font-weight: 300; line-height: 1.8;
  animation: heroFadeIn 1.2s ease 0.5s both;
}
.hero-buttons {
  display: flex; flex-wrap: wrap; gap: 16px;
  justify-content: center;
  animation: heroFadeIn 1.2s ease 0.65s both;
}
.hero-scroll {
  position: absolute; bottom: 36px; left: 50%; transform: translateX(-50%);
  z-index: 2; display: flex; flex-direction: column; align-items: center; gap: 8px;
  color: rgba(255,255,255,0.5); font-size: 0.65rem; letter-spacing: 0.2em;
  text-transform: uppercase;
  animation: heroFadeIn 1.2s ease 1s both;
}
.hero-scroll-line {
  width: 1px; height: 48px; background: rgba(255,255,255,0.3);
  animation: scrollPulse 2s ease-in-out infinite;
}
@keyframes scrollPulse {
  0%,100% { opacity:0.3; transform: scaleY(1); }
  50%      { opacity:1;   transform: scaleY(0.5); }
}

/* ── Section Heading Style ── */
.section-heading { margin-bottom: 64px; }
.section-heading h2 {
  font-size: clamp(2rem, 4vw, 3.2rem);
  color: var(--green-deep); margin-top: 8px;
}
.section-heading p {
  margin-top: 16px; font-size: 1.05rem; color: var(--text-mid);
  max-width: 520px; font-weight: 300; line-height: 1.8;
}
.section-heading.centered { text-align: center; }
.section-heading.centered p { margin: 16px auto 0; }

.gold-divider {
  width: 52px; height: 2px;
  background: linear-gradient(to right, var(--gold), var(--gold-light));
  margin: 20px 0 0;
  border-radius: 2px;
}
.section-heading.centered .gold-divider { margin: 20px auto 0; }

/* ── Service Cards ── */
.services-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 24px;
}
.service-card {
  background: var(--white); border-radius: var(--radius-md);
  padding: 32px; cursor: pointer;
  transition: var(--transition); border: 2px solid transparent;
  box-shadow: var(--shadow-soft);
  position: relative; overflow: hidden;
}
.service-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(to right, var(--gold), var(--green-light));
  transform: scaleX(0); transform-origin: left; transition: var(--transition);
}
.service-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-deep); }
.service-card:hover::before { transform: scaleX(1); }
.service-card.selected {
  border-color: var(--gold); background: var(--gold-pale);
  box-shadow: var(--shadow-gold);
}
.service-card.selected::before { transform: scaleX(1); }
.service-icon {
  width: 52px; height: 52px; background: var(--gold-pale);
  border-radius: var(--radius-sm); display: flex; align-items: center;
  justify-content: center; font-size: 1.5rem; margin-bottom: 20px;
  transition: var(--transition);
}
.service-card:hover .service-icon,
.service-card.selected .service-icon { background: var(--gold); }
.service-category-badge {
  font-size: 0.65rem; letter-spacing: 0.15em; text-transform: uppercase;
  color: var(--gold); font-weight: 600; margin-bottom: 10px; display: block;
}
.service-card h3 { font-size: 1.1rem; color: var(--green-deep); margin-bottom: 10px; }
.service-card p  { font-size: 0.88rem; color: var(--text-mid); line-height: 1.65; }

/* ── Filter Tabs ── */
.filter-tabs {
  display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 48px;
}
.filter-tab {
  padding: 9px 22px; border-radius: 60px;
  font-size: 0.76rem; font-weight: 500; letter-spacing: 0.08em;
  text-transform: uppercase; border: 1.5px solid var(--sand);
  background: var(--white); color: var(--text-mid);
  transition: var(--transition-fast); cursor: pointer;
}
.filter-tab:hover { border-color: var(--gold); color: var(--green-deep); }
.filter-tab.active {
  background: var(--green-deep); color: var(--white); border-color: var(--green-deep);
}

/* ── Booking System ── */
.booking-wrapper {
  background: var(--white); border-radius: var(--radius-lg);
  box-shadow: var(--shadow-deep); overflow: hidden;
}
.booking-steps-bar {
  background: var(--green-deep); padding: 32px 48px;
  display: flex; align-items: center; gap: 0;
}
.booking-step-item {
  display: flex; align-items: center; gap: 14px; flex: 1;
}
.booking-step-item:last-child { flex: 0; }
.step-number {
  width: 36px; height: 36px; border-radius: 50%;
  border: 2px solid rgba(255,255,255,0.3);
  color: rgba(255,255,255,0.5);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.8rem; font-weight: 600; flex-shrink: 0;
  transition: var(--transition);
}
.booking-step-item.active .step-number,
.booking-step-item.done .step-number {
  background: var(--gold); border-color: var(--gold); color: var(--green-deep);
}
.step-label {
  font-size: 0.72rem; letter-spacing: 0.08em; text-transform: uppercase;
  color: rgba(255,255,255,0.45); font-weight: 500;
  transition: var(--transition);
}
.booking-step-item.active .step-label { color: var(--white); }
.booking-step-item.done .step-label   { color: var(--gold-light); }
.step-connector {
  flex: 1; height: 1px; background: rgba(255,255,255,0.15); margin: 0 12px;
}
.booking-step-item.done + .step-connector { background: var(--gold); }

.booking-body { padding: 56px 48px; }

.booking-step-panel { display: none; }
.booking-step-panel.active { display: block; animation: fadeSlide 0.4s ease; }
@keyframes fadeSlide {
  from { opacity:0; transform: translateX(20px); }
  to   { opacity:1; transform: translateX(0); }
}

/* ── Forms ── */
.form-group { margin-bottom: 24px; }
.form-label {
  display: block; font-size: 0.76rem; font-weight: 600;
  letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--green-deep); margin-bottom: 8px;
}
.form-control {
  width: 100%; padding: 14px 18px;
  border: 1.5px solid var(--sand); border-radius: var(--radius-sm);
  font-family: var(--font-body); font-size: 0.92rem; color: var(--text-dark);
  background: var(--cream); transition: var(--transition-fast);
  outline: none;
}
.form-control:focus { border-color: var(--gold); background: var(--white); box-shadow: 0 0 0 3px rgba(201,168,76,0.12); }
.form-control.error { border-color: #e05252; }
.form-error { font-size: 0.76rem; color: #e05252; margin-top: 4px; display: none; }
.form-error.show { display: block; }
.form-grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }

textarea.form-control { resize: vertical; min-height: 120px; }
select.form-control { appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23888' stroke-width='1.5' fill='none'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 16px center; background-size: 12px; }

/* ── Booking Review ── */
.review-card {
  background: var(--gold-pale); border-radius: var(--radius-md);
  padding: 32px; margin-bottom: 24px;
}
.review-row {
  display: flex; justify-content: space-between; align-items: flex-start;
  padding: 10px 0; border-bottom: 1px solid rgba(201,168,76,0.25);
}
.review-row:last-child { border-bottom: none; }
.review-label { font-size: 0.75rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--text-mid); font-weight: 600; }
.review-value { font-size: 0.9rem; color: var(--text-dark); font-weight: 500; text-align: right; max-width: 60%; }

/* ── Step Nav ── */
.booking-nav {
  display: flex; justify-content: space-between; align-items: center;
  margin-top: 40px; padding-top: 32px; border-top: 1px solid var(--sand);
}

/* ── About Page ── */
.about-hero {
  background: var(--green-deep); padding: 160px 0 100px;
  position: relative; overflow: hidden;
}
.about-hero::before {
  content: ''; position: absolute; inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='80' height='80' viewBox='0 0 80 80' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none'%3E%3Ccircle cx='40' cy='40' r='1' fill='%23C9A84C' fill-opacity='0.08'/%3E%3C/g%3E%3C/svg%3E");
}
.about-hero-content { position: relative; z-index: 1; }
.about-hero h1 { font-size: clamp(2.5rem, 5vw, 4rem); color: var(--white); }
.about-hero p { font-size: 1.1rem; color: rgba(255,255,255,0.7); max-width: 540px; margin-top: 18px; font-weight: 300; }

.story-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 80px;
  align-items: center;
}
.story-image-block {
  position: relative;
}
.story-img-placeholder {
  width: 100%; aspect-ratio: 4/5;
  background: linear-gradient(135deg, var(--green-deep), var(--green-light));
  border-radius: var(--radius-lg);
  display: flex; align-items: center; justify-content: center;
  overflow: hidden; position: relative;
}
.story-img-placeholder::after {
  content: '🌿'; font-size: 5rem; opacity: 0.25;
}
.story-accent-card {
  position: absolute; bottom: -24px; right: -24px;
  background: var(--gold); color: var(--green-deep);
  padding: 20px 28px; border-radius: var(--radius-md);
  box-shadow: var(--shadow-gold);
}
.story-accent-card .number { font-family: var(--font-display); font-size: 2.2rem; font-weight: 700; line-height: 1; }
.story-accent-card .label  { font-size: 0.72rem; text-transform: uppercase; letter-spacing: 0.12em; font-weight: 600; margin-top: 4px; }

.story-text h2 { font-size: clamp(1.8rem, 3vw, 2.6rem); color: var(--green-deep); margin-bottom: 24px; }
.story-text p  { color: var(--text-mid); margin-bottom: 18px; font-size: 0.97rem; line-height: 1.85; }

.values-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 24px; margin-top: 48px;
}
.value-card {
  background: var(--white); border-radius: var(--radius-md);
  padding: 32px 24px; text-align: center;
  box-shadow: var(--shadow-soft); transition: var(--transition);
}
.value-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-deep); }
.value-icon { font-size: 2.2rem; margin-bottom: 16px; }
.value-card h4 { font-size: 1rem; color: var(--green-deep); margin-bottom: 8px; }
.value-card p  { font-size: 0.82rem; color: var(--text-mid); line-height: 1.6; }

.mvv-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 32px;
}
.mvv-card {
  padding: 40px; border-radius: var(--radius-md);
}
.mvv-card.mission { background: var(--green-deep); color: var(--white); }
.mvv-card.vision  { background: var(--gold); color: var(--green-deep); }
.mvv-card h3 { font-size: 1.5rem; margin-bottom: 16px; }
.mvv-card p  { font-size: 0.92rem; line-height: 1.8; opacity: 0.88; }

/* ── Gallery ── */
.gallery-masonry {
  columns: 3; column-gap: 20px;
}
.gallery-item {
  break-inside: avoid; margin-bottom: 20px;
  border-radius: var(--radius-md); overflow: hidden;
  position: relative; cursor: pointer;
}
.gallery-img-placeholder {
  width: 100%; display: block;
  transition: var(--transition);
}
.gallery-item:hover .gallery-img-placeholder { transform: scale(1.05); }
.gallery-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(26,60,40,0.7) 0%, transparent 50%);
  opacity: 0; transition: var(--transition); display: flex;
  align-items: flex-end; padding: 20px;
}
.gallery-item:hover .gallery-overlay { opacity: 1; }
.gallery-overlay span { color: var(--white); font-size: 0.85rem; font-weight: 500; }

/* ── Blog ── */
.blog-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 32px;
}
.blog-card {
  background: var(--white); border-radius: var(--radius-md);
  overflow: hidden; box-shadow: var(--shadow-soft);
  transition: var(--transition); cursor: pointer;
}
.blog-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-deep); }
.blog-img {
  aspect-ratio: 16/10;
  background: linear-gradient(135deg, var(--green-deep), var(--green-light));
  position: relative; overflow: hidden; display: flex;
  align-items: center; justify-content: center; font-size: 3rem;
}
.blog-cat {
  position: absolute; top: 16px; left: 16px;
  background: var(--gold); color: var(--green-deep);
  font-size: 0.65rem; letter-spacing: 0.15em; text-transform: uppercase;
  font-weight: 700; padding: 5px 12px; border-radius: 60px;
}
.blog-body { padding: 28px; }
.blog-meta { font-size: 0.74rem; color: var(--text-light); margin-bottom: 12px; }
.blog-card h3 { font-size: 1.1rem; color: var(--green-deep); margin-bottom: 10px; line-height: 1.35; }
.blog-card p  { font-size: 0.86rem; color: var(--text-mid); line-height: 1.65; }
.blog-read-more {
  display: inline-flex; align-items: center; gap: 6px;
  margin-top: 20px; font-size: 0.78rem; font-weight: 600;
  letter-spacing: 0.08em; text-transform: uppercase; color: var(--gold);
  transition: var(--transition-fast);
}
.blog-card:hover .blog-read-more { color: var(--green-deep); gap: 10px; }

/* ── Blog Single ── */
.blog-single-hero {
  background: var(--green-deep); padding: 160px 0 80px;
}
.blog-single-hero h1 { font-size: clamp(2rem,4vw,3.2rem); color: var(--white); max-width: 720px; }
.blog-single-hero .meta { color: var(--gold-light); font-size: 0.85rem; margin-top: 16px; }
.blog-single-content { max-width: 760px; margin: 0 auto; padding: 80px 0; }
.blog-single-content h2 { font-size: 1.7rem; color: var(--green-deep); margin: 40px 0 16px; }
.blog-single-content p  { color: var(--text-mid); margin-bottom: 20px; line-height: 1.9; font-size: 0.97rem; }
.blog-single-content blockquote {
  border-left: 3px solid var(--gold); padding-left: 24px;
  margin: 32px 0; font-family: var(--font-elegant); font-size: 1.3rem;
  color: var(--green-deep); font-style: italic; line-height: 1.6;
}

/* ── Contact ── */
.contact-grid { display: grid; grid-template-columns: 1fr 1.4fr; gap: 80px; align-items: start; }
.contact-info h2 { font-size: clamp(1.8rem,3vw,2.6rem); color: var(--green-deep); margin-bottom: 20px; }
.contact-info p  { font-size: 0.95rem; color: var(--text-mid); line-height: 1.8; margin-bottom: 32px; }
.contact-detail {
  display: flex; gap: 14px; align-items: flex-start; margin-bottom: 20px;
}
.contact-detail-icon {
  width: 44px; height: 44px; background: var(--gold-pale);
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem; flex-shrink: 0;
}
.contact-detail-text strong { display: block; font-size: 0.76rem; text-transform: uppercase; letter-spacing: 0.1em; color: var(--green-deep); margin-bottom: 2px; }
.contact-detail-text span  { font-size: 0.9rem; color: var(--text-mid); }
.social-links { display: flex; gap: 12px; margin-top: 32px; }
.social-link {
  width: 44px; height: 44px; background: var(--green-deep);
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  font-size: 1rem; color: var(--white); transition: var(--transition-fast);
}
.social-link:hover { background: var(--gold); color: var(--green-deep); transform: translateY(-2px); }

/* ── Home sections ── */
.intro-section {
  background: var(--cream); padding: 120px 0;
}
.intro-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.intro-img {
  aspect-ratio: 1/1;
  background: linear-gradient(135deg, var(--green-deep) 0%, var(--green-light) 100%);
  border-radius: var(--radius-xl); position: relative; overflow: hidden;
  display: flex; align-items: center; justify-content: center;
  font-size: 6rem;
}
.intro-img::after { content: '🦍'; }
.intro-badge {
  position: absolute; top: 24px; left: 24px;
  background: var(--gold); color: var(--green-deep);
  padding: 12px 20px; border-radius: var(--radius-md);
  font-size: 0.72rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em;
}
.intro-text h2 { font-size: clamp(2rem,3.5vw,3rem); color: var(--green-deep); margin-bottom: 20px; }
.intro-text p  { color: var(--text-mid); font-size: 0.97rem; line-height: 1.85; margin-bottom: 18px; }
.stat-row { display: flex; gap: 40px; margin-top: 36px; }
.stat-item .number { font-family: var(--font-display); font-size: 2.4rem; font-weight: 700; color: var(--gold); line-height: 1; }
.stat-item .label  { font-size: 0.72rem; text-transform: uppercase; letter-spacing: 0.12em; color: var(--text-mid); margin-top: 4px; }

.services-preview { background: var(--white); }
.testimonial-section {
  background: var(--green-deep); padding: 100px 0;
  position: relative; overflow: hidden;
}
.testimonial-section::before {
  content: '"'; position: absolute; top: -20px; left: 40px;
  font-family: var(--font-display); font-size: 20rem; color: rgba(201,168,76,0.06);
  line-height: 1;
}
.testimonial-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 28px; }
.testimonial-card {
  background: rgba(255,255,255,0.07); border-radius: var(--radius-md);
  padding: 36px; border: 1px solid rgba(255,255,255,0.1);
  transition: var(--transition);
}
.testimonial-card:hover { background: rgba(255,255,255,0.12); transform: translateY(-4px); }
.testimonial-stars { color: var(--gold); font-size: 0.9rem; margin-bottom: 16px; }
.testimonial-text { font-size: 0.94rem; color: rgba(255,255,255,0.82); line-height: 1.8; font-style: italic; font-family: var(--font-elegant); font-size: 1.05rem; margin-bottom: 24px; }
.testimonial-author { display: flex; align-items: center; gap: 14px; }
.author-avatar { width: 44px; height: 44px; border-radius: 50%; background: var(--gold); display: flex; align-items: center; justify-content: center; font-size: 1.1rem; color: var(--green-deep); font-weight: 700; font-family: var(--font-display); }
.author-name  { font-size: 0.88rem; color: var(--white); font-weight: 600; }
.author-title { font-size: 0.74rem; color: rgba(255,255,255,0.5); margin-top: 2px; }

.cta-section {
  background: var(--gold-pale); padding: 100px 0; text-align: center;
}
.cta-section h2 { font-size: clamp(2rem,4vw,3rem); color: var(--green-deep); margin-bottom: 16px; }
.cta-section p  { color: var(--text-mid); font-size: 1rem; max-width: 500px; margin: 0 auto 40px; }

/* ── Footer ── */
footer {
  background: var(--charcoal); color: rgba(255,255,255,0.75); padding: 80px 0 40px;
}
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 60px; margin-bottom: 60px; }
.footer-brand { }
.footer-logo { display: flex; align-items: center; gap: 12px; margin-bottom: 20px; }
.footer-logo-mark { width: 38px; height: 38px; background: var(--gold); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-family: var(--font-display); font-size: 1rem; font-weight: 700; color: var(--green-deep); }
.footer-logo-text { font-family: var(--font-display); font-size: 1.1rem; color: var(--white); }
.footer-brand p { font-size: 0.85rem; line-height: 1.75; max-width: 280px; }
.footer-social { display: flex; gap: 10px; margin-top: 24px; }
.footer-social a { width: 38px; height: 38px; background: rgba(255,255,255,0.08); border-radius: 50%; display: flex; align-items: center; justify-content: center; color: rgba(255,255,255,0.6); font-size: 0.9rem; transition: var(--transition-fast); }
.footer-social a:hover { background: var(--gold); color: var(--green-deep); }
.footer-col h4 { font-family: var(--font-body); font-size: 0.72rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--gold); margin-bottom: 20px; font-weight: 600; }
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul li a { font-size: 0.85rem; color: rgba(255,255,255,0.6); transition: var(--transition-fast); }
.footer-col ul li a:hover { color: var(--white); padding-left: 4px; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.08); padding-top: 28px; display: flex; justify-content: space-between; align-items: center; }
.footer-bottom p { font-size: 0.78rem; color: rgba(255,255,255,0.35); }
.footer-bottom-right { font-size: 0.78rem; color: rgba(255,255,255,0.35); }

/* ── Page Header ── */
.page-header {
  background: var(--green-deep); padding: 140px 0 80px;
  position: relative; overflow: hidden;
}
.page-header::after {
  content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 60px;
  background: var(--cream);
  clip-path: ellipse(55% 100% at 50% 100%);
}
.page-header h1 { font-size: clamp(2.4rem,5vw,3.8rem); color: var(--white); }
.page-header p   { color: rgba(255,255,255,0.7); font-size: 1.05rem; margin-top: 14px; max-width: 500px; font-weight: 300; }

/* ── Toast / Success ── */
.toast {
  position: fixed; bottom: 32px; right: 32px; z-index: 9999;
  background: var(--green-deep); color: var(--white);
  padding: 18px 28px; border-radius: var(--radius-md);
  box-shadow: var(--shadow-deep); font-size: 0.9rem;
  transform: translateY(100px); opacity: 0;
  transition: var(--transition); display: flex; align-items: center; gap: 12px;
}
.toast.show { transform: translateY(0); opacity: 1; }
.toast-icon { font-size: 1.2rem; }

/* ── Utility ── */
.text-gold   { color: var(--gold); }
.text-green  { color: var(--green-deep); }
.text-center { text-align: center; }
.mt-8  { margin-top: 8px; }
.mt-16 { margin-top: 16px; }
.mt-32 { margin-top: 32px; }
.mb-0  { margin-bottom: 0; }
.hidden { display: none !important; }
.success-screen {
  text-align: center; padding: 60px 40px;
  animation: fadeSlide 0.5s ease;
}
.success-screen .check { font-size: 4rem; margin-bottom: 20px; }
.success-screen h3 { font-size: 1.8rem; color: var(--green-deep); margin-bottom: 12px; }
.success-screen p  { color: var(--text-mid); max-width: 440px; margin: 0 auto 32px; }

/* ── Responsive ── */
@media (max-width: 1024px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .story-grid  { grid-template-columns: 1fr; gap: 48px; }
  .story-image-block { max-width: 480px; }
  .intro-grid  { grid-template-columns: 1fr; gap: 48px; }
  .testimonial-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; gap: 48px; }
  .mvv-grid  { grid-template-columns: 1fr; }
  .gallery-masonry { columns: 2; }
}
@media (max-width: 768px) {
  section { padding: 64px 0; }
  .nav-links, .nav-cta { display: none; }
  .nav-hamburger { display: flex; }
  .footer-grid { grid-template-columns: 1fr; }
  .booking-steps-bar { padding: 20px 24px; gap: 0; }
  .step-label { display: none; }
  .booking-body { padding: 32px 24px; }
  .form-grid-2 { grid-template-columns: 1fr; }
  .hero-buttons { flex-direction: column; align-items: center; }
  .gallery-masonry { columns: 1; }
  .services-grid { grid-template-columns: 1fr; }
  .blog-grid { grid-template-columns: 1fr; }
  .stat-row { gap: 24px; }
  .container { padding: 0 20px; }
}

/* ── WhatsApp Floating Button ── */
.wa-float {
  position: fixed;
  bottom: 32px;
  right: 32px;
  z-index: 1500;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 10px;
}

.wa-btn {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: #25D366;
  box-shadow: 0 6px 24px rgba(37, 211, 102, 0.45);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  border: none;
  transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  text-decoration: none;
  flex-shrink: 0;
  position: relative;
}

.wa-btn:hover {
  transform: scale(1.12) translateY(-3px);
  box-shadow: 0 12px 36px rgba(37, 211, 102, 0.55);
}

.wa-btn svg {
  width: 28px;
  height: 28px;
  fill: #ffffff;
  flex-shrink: 0;
}

/* Pulse ring animation */
.wa-btn::before {
  content: '';
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  border: 2px solid rgba(37, 211, 102, 0.5);
  animation: waPulse 2.2s ease-out infinite;
  pointer-events: none;
}

.wa-btn::after {
  content: '';
  position: absolute;
  inset: -10px;
  border-radius: 50%;
  border: 2px solid rgba(37, 211, 102, 0.25);
  animation: waPulse 2.2s ease-out 0.6s infinite;
  pointer-events: none;
}

@keyframes waPulse {
  0%   { transform: scale(1);    opacity: 1; }
  100% { transform: scale(1.55); opacity: 0; }
}

/* Tooltip label */
.wa-tooltip {
  background: var(--charcoal);
  color: var(--white);
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 500;
  padding: 8px 16px;
  border-radius: 60px;
  white-space: nowrap;
  box-shadow: 0 4px 16px rgba(0,0,0,0.2);
  opacity: 0;
  transform: translateX(10px);
  transition: all 0.25s ease;
  pointer-events: none;
  position: absolute;
  right: 70px;
  bottom: 12px;
}

.wa-float:hover .wa-tooltip,
.wa-float.show-tip .wa-tooltip {
  opacity: 1;
  transform: translateX(0);
}

/* Notification dot */
.wa-dot {
  position: absolute;
  top: 2px;
  right: 2px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--gold);
  border: 2px solid #fff;
  animation: waDotPop 0.4s ease 1.5s both;
}

@keyframes waDotPop {
  from { transform: scale(0); }
  to   { transform: scale(1); }
}

/* Entry animation */
.wa-float {
  animation: waEntry 0.5s cubic-bezier(0.34, 1.56, 0.64, 1) 1.2s both;
}

@keyframes waEntry {
  from { transform: translateY(80px); opacity: 0; }
  to   { transform: translateY(0);    opacity: 1; }
}

@media (max-width: 768px) {
  .wa-float {
    bottom: 24px;
    right: 20px;
  }
  .wa-btn {
    width: 52px;
    height: 52px;
  }
  .wa-btn svg {
    width: 24px;
    height: 24px;
  }
  .wa-tooltip {
    display: none;
  }
}

/* ── Spinner keyframe (used by form submit buttons) ── */
@keyframes spin { to { transform: rotate(360deg); } }



    /* ── Layout ── */
    .booking-section { background: var(--cream); padding: 60px 0 100px; }
    .booking-inner {
      max-width: 1140px;
      margin: 0 auto;
      padding: 0 32px;
      display: grid;
      grid-template-columns: 1fr 300px;
      gap: 40px;
      align-items: start;
    }

    /* ── Form card ── */
    .book-form-card {
      background: var(--white);
      border-radius: var(--radius-lg);
      box-shadow: var(--shadow-deep);
      overflow: hidden;
    }
    .book-form-header {
      background: var(--green-deep);
      padding: 32px 40px;
    }
    .book-form-header h3 {
      font-size: 1.5rem; color: var(--white); margin-bottom: 6px;
    }
    .book-form-header p {
      font-size: 0.88rem; color: rgba(255,255,255,0.6); margin: 0;
    }
    .book-form-body { padding: 40px; }

    /* ── Form elements ── */
    .form-row {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 20px;
      margin-bottom: 24px;
    }
    .form-group { margin-bottom: 24px; }
    .form-group:last-child { margin-bottom: 0; }

    .form-label {
      display: block;
      font-size: 0.74rem;
      font-weight: 700;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      color: var(--green-deep);
      margin-bottom: 8px;
    }
    .form-label .req { color: #e05252; margin-left: 2px; }
    .form-label .opt {
      font-weight: 400; color: var(--text-light);
      font-size: 0.68rem; text-transform: none;
      letter-spacing: 0; margin-left: 4px;
    }

    .form-input,
    .form-select,
    .form-textarea {
      width: 100%;
      padding: 13px 16px;
      border: 1.5px solid var(--sand);
      border-radius: var(--radius-sm);
      font-family: var(--font-body);
      font-size: 0.92rem;
      color: var(--text-dark);
      background: var(--cream);
      transition: var(--transition-fast);
      outline: none;
    }
    .form-input:focus,
    .form-select:focus,
    .form-textarea:focus {
      border-color: var(--gold);
      background: var(--white);
      box-shadow: 0 0 0 3px rgba(201,168,76,0.13);
    }
    .form-input.is-error,
    .form-select.is-error,
    .form-textarea.is-error {
      border-color: #e05252;
      background: #fff9f9;
    }
    .form-textarea { resize: vertical; min-height: 130px; }
    .form-select {
      appearance: none;
      background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23888' stroke-width='1.5' fill='none'/%3E%3C/svg%3E");
      background-repeat: no-repeat;
      background-position: right 14px center;
      background-size: 11px;
      padding-right: 38px;
      cursor: pointer;
    }

    .field-error {
      display: none;
      font-size: 0.74rem;
      color: #e05252;
      margin-top: 5px;
    }
    .field-error.show { display: block; }

    /* ── Phone row with country code ── */
    .phone-row {
      display: flex;
      gap: 10px;
    }
    .country-code-select {
      flex: 0 0 160px;
      padding: 13px 32px 13px 12px;
      border: 1.5px solid var(--sand);
      border-radius: var(--radius-sm);
      font-family: var(--font-body);
      font-size: 0.88rem;
      color: var(--text-dark);
      background: var(--cream);
      appearance: none;
      background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23888' stroke-width='1.5' fill='none'/%3E%3C/svg%3E");
      background-repeat: no-repeat;
      background-position: right 10px center;
      background-size: 10px;
      cursor: pointer;
      outline: none;
      transition: var(--transition-fast);
    }
    .country-code-select:focus {
      border-color: var(--gold);
      background-color: var(--white);
      box-shadow: 0 0 0 3px rgba(201,168,76,0.13);
    }
    .country-code-select.is-error { border-color: #e05252; }
    .phone-input { flex: 1; }

    /* ── Service chips (multi-select) ── */
    .service-chips {
      display: flex;
      flex-wrap: wrap;
      gap: 10px;
    }
    .chip {
      padding: 9px 18px;
      border-radius: 60px;
      font-size: 0.78rem;
      font-weight: 500;
      letter-spacing: 0.04em;
      border: 1.5px solid var(--sand);
      background: var(--cream);
      color: var(--text-mid);
      cursor: pointer;
      transition: var(--transition-fast);
      user-select: none;
    }
    .chip:hover { border-color: var(--gold); color: var(--white); }
    .chip.active {
      background: var(--green-deep);
      border-color: var(--green-deep);
      color: var(--white);
    }

    /* ── Radio groups ── */
    .radio-group {
      display: flex;
      flex-direction: column;
      gap: 10px;
    }
    .radio-option {
      display: flex;
      align-items: center;
      gap: 12px;
      padding: 12px 16px;
      border: 1.5px solid var(--sand);
      border-radius: var(--radius-sm);
      background: var(--cream);
      cursor: pointer;
      transition: var(--transition-fast);
      font-size: 0.9rem;
      color: var(--text-dark);
    }
    .radio-option:hover {
      border-color: var(--gold);
      background: var(--gold-pale);
    }
    .radio-option input[type="radio"] { display: none; }
    .radio-option .radio-dot {
      width: 18px; height: 18px;
      border-radius: 50%;
      border: 2px solid var(--sand);
      display: flex; align-items: center; justify-content: center;
      flex-shrink: 0;
      transition: var(--transition-fast);
    }
    .radio-option input[type="radio"]:checked ~ .radio-dot,
    .radio-option.selected .radio-dot {
      border-color: var(--gold);
      background: var(--gold);
    }
    .radio-option input[type="radio"]:checked ~ .radio-dot::after,
    .radio-option.selected .radio-dot::after {
      content: '';
      width: 6px; height: 6px;
      border-radius: 50%;
      background: var(--green-deep);
    }
    .radio-option.selected {
      border-color: var(--gold);
      background: var(--gold-pale);
      color: var(--green-deep);
      font-weight: 500;
    }

    /* ── Checkbox confirmation ── */
    .confirm-box {
      display: flex;
      align-items: flex-start;
      gap: 14px;
      padding: 18px 20px;
      border: 1.5px solid var(--sand);
      border-radius: var(--radius-sm);
      background: var(--cream);
      cursor: pointer;
      transition: var(--transition-fast);
    }
    .confirm-box:hover { border-color: var(--gold); background: var(--gold-pale); }
    .confirm-box.is-error { border-color: #e05252; background: #fff9f9; }
    .confirm-box input[type="checkbox"] { display: none; }
    .checkbox-visual {
      width: 20px; height: 20px; border-radius: 4px;
      border: 2px solid var(--sand);
      background: var(--white);
      flex-shrink: 0; margin-top: 1px;
      display: flex; align-items: center; justify-content: center;
      transition: var(--transition-fast);
      font-size: 0.75rem; color: var(--green-deep); font-weight: 700;
    }
    .confirm-box.checked .checkbox-visual {
      background: var(--green-deep);
      border-color: var(--green-deep);
      color: var(--white);
    }
    .confirm-box.checked { border-color: var(--green-deep); }
    .confirm-text {
      font-size: 0.87rem;
      color: var(--text-mid);
      line-height: 1.65;
    }

    /* ── Divider with label ── */
    .form-section-title {
      font-size: 0.68rem;
      font-weight: 700;
      letter-spacing: 0.2em;
      text-transform: uppercase;
      color: var(--gold);
      margin: 32px 0 20px;
      display: flex;
      align-items: center;
      gap: 12px;
    }
    .form-section-title::before,
    .form-section-title::after {
      content: '';
      flex: 1;
      height: 1px;
      background: var(--sand);
    }

    /* ── Error banner ── */
    .form-error-banner {
      display: none;
      background: #fff0f0;
      border: 1.5px solid #e05252;
      border-radius: var(--radius-sm);
      padding: 14px 18px;
      font-size: 0.85rem;
      color: #c0392b;
      margin-bottom: 24px;
      line-height: 1.6;
    }
    .form-error-banner.show { display: block; }

    /* ── Submit button ── */
    .form-submit {
      width: 100%;
      padding: 17px 24px;
      background: var(--gold);
      color: var(--green-deep);
      border: none;
      border-radius: 60px;
      font-family: var(--font-body);
      font-size: 0.88rem;
      font-weight: 700;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      cursor: pointer;
      transition: var(--transition);
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 10px;
      margin-top: 10px;
      box-shadow: 0 4px 20px rgba(201,168,76,0.35);
      position: relative;
    }
    .form-submit:hover:not(:disabled) {
      background: var(--gold-light);
      transform: translateY(-2px);
      box-shadow: 0 8px 28px rgba(201,168,76,0.45);
    }
    .form-submit:disabled {
      opacity: 0.6;
      cursor: not-allowed;
      transform: none;
    }
    .btn-spinner {
      display: none;
      width: 18px; height: 18px;
      border: 2px solid rgba(26,60,40,0.2);
      border-top-color: var(--green-deep);
      border-radius: 50%;
      animation: spin 0.7s linear infinite;
    }
    .form-submit.loading .btn-spinner { display: block; }
    .form-submit.loading .btn-label   { display: none; }

    /* ── Success screen ── */
    .success-screen {
      display: none;
      text-align: center;
      padding: 52px 32px;
      animation: fadeSlide 0.5s ease;
    }
    .success-screen.show { display: block; }
    .success-icon { font-size: 3.5rem; margin-bottom: 16px; display: block; }
    .success-screen h3 {
      font-size: 1.6rem;
      color: var(--green-deep);
      margin-bottom: 14px;
    }
    .success-screen p {
      font-size: 0.95rem;
      color: var(--text-mid);
      line-height: 1.8;
      max-width: 480px;
      margin: 0 auto 28px;
    }

    /* ── Sidebar ── */
    .book-sidebar {
      display: flex;
      flex-direction: column;
      gap: 20px;
      position: sticky;
      top: 100px;
    }
    .sidebar-card {
      background: var(--white);
      border-radius: var(--radius-md);
      padding: 28px;
      box-shadow: var(--shadow-soft);
    }
    .sidebar-card h4 {
      font-size: 0.7rem;
      letter-spacing: 0.2em;
      text-transform: uppercase;
      color: var(--gold);
      font-weight: 600;
      font-family: var(--font-body);
      margin-bottom: 18px;
    }
    .contact-list { list-style: none; padding: 0; }
    .contact-list li {
      font-size: 0.87rem;
      color: var(--text-mid);
      padding: 9px 0;
      border-bottom: 1px solid var(--sand);
      display: flex;
      align-items: flex-start;
      gap: 10px;
      line-height: 1.55;
    }
    .contact-list li:last-child { border-bottom: none; }
    .contact-list li .ci { font-size: 1rem; flex-shrink: 0; margin-top: 1px; }
    .hours-grid { display: flex; flex-direction: column; }
    .hours-row {
      display: flex; justify-content: space-between; align-items: center;
      font-size: 0.84rem; color: var(--text-mid);
      padding: 8px 0; border-bottom: 1px solid var(--sand);
    }
    .hours-row:last-child { border-bottom: none; }
    .hours-row span:first-child { color: var(--text-dark); font-weight: 500; }

    /* ── Honeypot ── */
    .hp-field { display: none !important; visibility: hidden; position: absolute; }

    /* ── Responsive ── */
    @media (max-width: 960px) {
      .booking-inner { grid-template-columns: 1fr; padding: 0 20px; }
      .book-sidebar { position: static; }
      .book-form-body { padding: 28px 24px; }
      .book-form-header { padding: 28px 24px; }
    }
    @media (max-width: 620px) {
      .form-row { grid-template-columns: 1fr; gap: 0; }
      .phone-row { flex-direction: column; }
      .country-code-select { flex: 0 0 auto; width: 100%; }
    }
  

