/* ===== VELVÉE JOURNEY — GLOBAL STYLES ===== */

@import url("https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,600;0,700;1,300;1,400&family=Jost:wght@200;300;400;500;600&family=Playfair+Display:ital,wght@0,700;1,700&display=swap");

/* ===== CSS VARIABLES ===== */
:root {
  --forest: #1a3c1f;
  /* --forest: rgb(43, 100, 52); */
  --forest-dark: #112813;
  --forest-mid: #234d29;
  --gold: #c9a96e;
  --gold-light: #dfc08a;
  --gold-pale: #f5e9d4;
  --cream: #faf7f2;
  --charcoal: #1c1c1c;
  --text-muted: #6b7280;
  --white: #ffffff;
  --border: rgba(201, 169, 110, 0.2);

  --font-display: "Cormorant Garamond", serif;
  --font-accent: "Playfair Display", serif;
  --font-body: "Jost", sans-serif;

  --radius: 4px;
  --radius-lg: 12px;
  --shadow: 0 4px 24px rgba(0, 0, 0, 0.08);
  --shadow-lg: 0 16px 48px rgba(0, 0, 0, 0.14);
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

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

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

img {
  max-width: 100%;
  display: block;
}
a {
  text-decoration: none;
  color: inherit;
}
ul {
  list-style: none;
}
button,
input,
textarea,
select {
  font-family: inherit;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}
.section-pad {
  padding: 96px 0;
}
.section-pad-sm {
  padding: 64px 0;
}

/* ===== TYPOGRAPHY ===== */
.display-title {
  font-family: var(--font-display);
  font-weight: 300;
  letter-spacing: 0.04em;
}

.section-label {
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  display: block;
  margin-bottom: 12px;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 300;
  line-height: 1.15;
  color: var(--forest);
}

.section-title.light {
  color: var(--white);
}

.section-subtitle {
  font-size: 1.05rem;
  color: var(--text-muted);
  font-weight: 300;
  max-width: 560px;
  margin-top: 16px;
}

/* ── 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(--forest);
  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(--forest-dark);
  color: var(--forest-dark);
}
.btn-outline-green:hover {
  background: var(--forest-dark);
  color: var(--white);
  transform: translateY(-2px);
}

.btn-green {
  background: var(--forest-dark);
  color: var(--white);
  box-shadow: var(--shadow-soft);
}
.btn-green:hover {
  background: var(--green-mid);
  transform: translateY(-2px);
  box-shadow: var(--shadow-deep);
}

/* ===== HEADER / NAV ===== */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  transition: var(--transition);
}

.site-header.scrolled {
  box-shadow: 0 2px 24px rgba(0, 0, 0, 0.08);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 85px;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
}
.footer-logo {
  width: 200px;
  gap: 10px;
}
.footer-logo div {
  height: 100px;
  width: 200px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
}

.nav-links a {
  font-size: 0.82rem;
  font-weight: 400;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--forest);
  transition: color var(--transition);
  position: relative;
}

.nav-links a::after {
  content: "";
  position: absolute;
  bottom: -3px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--gold);
  transition: width var(--transition);
}

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

/* ===== CTA SECTION ===== */
.cta-section {
  background: var(--forest);
  position: relative;
  overflow: hidden;
  text-align: center;
}

.cta-section::before {
  content: "";
  position: absolute;
  top: -60px;
  left: 50%;
  transform: translateX(-50%);
  width: 600px;
  height: 600px;
  background: radial-gradient(
    circle,
    rgba(201, 169, 110, 0.08) 0%,
    transparent 70%
  );
  pointer-events: none;
}

.cta-section .section-title {
  color: var(--white);
}
.cta-section .section-subtitle {
  color: rgba(255, 255, 255, 0.65);
  margin: 0 auto;
}


.nav-cta {
  background: var(--forest);
  color: var(--white) !important;
  padding: 10px 22px;
  border-radius: var(--radius);
  font-size: 0.78rem !important;
  letter-spacing: 0.14em !important;
  transition: background var(--transition) !important;
}

.nav-cta::after {
  display: none !important;
}
.nav-cta:hover {
  background: var(--gold) !important;
  color: var(--forest) !important;
}

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

.nav-toggle span {
  display: block;
  width: 24px;
  height: 1.5px;
  background: var(--forest);
  transition: var(--transition);
}

/* ===== MOBILE NAV ===== */
@media (max-width: 900px) {
  .nav-toggle {
    display: flex;
  }

  .nav-links {
    position: fixed;
    top: 72px;
    left: 0;
    right: 0;
    background: var(--white);
    flex-direction: column;
    gap: 12px;
    padding: 24px 0 32px;
    border-bottom: 1px solid var(--border);
    transform: translateY(-120%);
    opacity: 0;
    transition: var(--transition);
    pointer-events: none;
  }

  .nav-links.open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: all;
  }

  .nav-links a {
    padding: 14px 32px;
    width: 100%;
  }

  .nav-cta {
    margin: 8px 32px 0;
    width: calc(100% - 64px);
    text-align: center;
  }
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  border-radius: var(--radius);
  transition: var(--transition);
}

.btn-primary {
  background: var(--gold);
  color: var(--forest-dark);
}

.btn-primary:hover {
  background: var(--gold-light);
  transform: translateY(-1px);
  box-shadow: 0 8px 24px rgba(201, 169, 110, 0.35);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.5);
}

.btn-outline:hover {
  background: var(--white);
  color: var(--forest);
  border-color: var(--white);
}

.btn-forest {
  background: var(--forest);
  color: var(--white);
}

.btn-forest:hover {
  background: var(--forest-mid);
  transform: translateY(-1px);
  box-shadow: 0 8px 24px rgba(26, 60, 31, 0.3);
}

.btn-sm {
  padding: 10px 22px;
  font-size: 0.75rem;
}

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

.hero-video-wrap {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-video-wrap video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-video-wrap::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(17, 40, 19, 0.72) 0%,
    rgba(26, 60, 31, 0.55) 50%,
    rgba(0, 0, 0, 0.4) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 1;
  color: var(--white);
  /* max-width: 720px; */
  /* text-align: center; */
}

.hero-title {
  /* font-family: var(--font-display);
  font-size: clamp(2.8rem, 6vw, 5.5rem);
  font-weight: 300;
  line-height: 1.05;
  letter-spacing: 0.02em;
  margin-bottom: 24px;
  animation: fadeUp 1s 0.15s ease both; */

  font-family: "Jost", sans-serif;
  font-size: clamp(2rem, 6vw, 5rem);
  font-weight: 700;
  line-height: 0.95;
  letter-spacing: -2px;
  text-transform: uppercase;
  color: var(--white);
  opacity: 0;
  animation: fadeUp 0.9s 0.5s forwards;
}

.hero-title em {
  font-style: italic;
  color: var(--gold-light);
}

.hero-sub {
  font-size: 1.4rem;
  font-weight: 300;
  opacity: 0.88;
  margin-top: 20px;
  margin-bottom: 40px;
  animation: fadeUp 1s 0.3s ease both;
  color: var(--gold-pale);
  line-height: normal;
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  animation: fadeUp 1s 0.45s ease both;
}

.page-hero {
  background: linear-gradient(
    135deg,
    var(--forest-dark) 0%,
    var(--forest) 60%,
    var(--forest-mid) 100%
  );
  padding: 140px 0 80px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-hero .section-label {
  color: var(--gold-light);
}
.page-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 300;
  color: var(--white);
  letter-spacing: 0.04em;
}

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

.hero-services-page {
  background:
    linear-gradient(rgba(26, 60, 31, 0.72), rgba(26, 60, 31, 0.72)),
    url("Assets/images/sunset.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

/* ===== INTRO STRIP ===== */
.intro-strip {
  background: var(--forest);
  padding: 56px 0;
}

.intro-strip-inner {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 48px;
  text-align: center;
}

.intro-stat {
  color: var(--white);
}

.intro-stat .number {
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 300;
  color: var(--gold);
  line-height: 1;
}

.intro-stat .label {
  font-size: 0.75rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  opacity: 0.7;
  margin-top: 8px;
}

@media (max-width: 600px) {
  .intro-strip-inner {
    grid-template-columns: 1fr;
    gap: 32px;
  }
}

/* ── Hero ── */

@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(--forest-dark);
  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(--forest-mid));
  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(--gold-light);
}
.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(--forest-dark);
  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(--forest-dark);
}
.filter-tab.active {
  background: var(--forest-dark);
  color: var(--white);
  border-color: var(--forest-dark);
}

/* ── Booking System ── */
.booking-wrapper {
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-deep);
  overflow: hidden;
}
.booking-steps-bar {
  background: var(--forest-dark);
  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(--forest-dark);
}
.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(--forest-dark);
  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);
}

/* ── Page Header ── */
.page-header {
  background: var(--forest-dark);
  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(--forest-dark);
  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(--forest-dark);
}
.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(--forest-dark);
  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;
  }
}

/* ******************************** */

.svc-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 28px;
}
.svc-card {
  background: var(--white);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-soft);
  border: 1.5px solid transparent;
  overflow: hidden;
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}
.svc-card:hover {
  box-shadow: var(--shadow-deep);
  border-color: rgba(201, 168, 76, 0.3);
  transform: translateY(-4px);
}
.svc-card-top {
  padding: 32px 28px 24px;
  flex: 1;
}
.svc-card-icon {
  width: 54px;
  height: 54px;
  background: var(--gold-pale);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  margin-bottom: 18px;
  transition: var(--transition);
}
.svc-card:hover .svc-card-icon {
  background: var(--gold);
}
.svc-card-cat {
  font-size: 0.63rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 600;
  margin-bottom: 8px;
  display: block;
}
.svc-card h3 {
  font-size: 1.1rem;
  color: var(--forest-dark);
  margin-bottom: 10px;
  line-height: 1.3;
}
.svc-card-desc {
  font-size: 0.87rem;
  color: var(--text-mid);
  line-height: 1.7;
}
.svc-card-footer {
  padding: 18px 28px;
  border-top: 1px solid var(--sand);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  background: var(--cream);
  flex-wrap: wrap;
}
.svc-price {
  font-size: 0.82rem;
  color: var(--forest-dark);
  font-weight: 700;
}
.svc-price span {
  display: block;
  font-size: 0.63rem;
  font-weight: 400;
  color: var(--text-light);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 2px;
}
.svc-btn-group {
  display: flex;
  gap: 8px;
  align-items: center;
  flex-wrap: wrap;
}
.btn-learn {
  padding: 9px 18px;
  font-size: 0.73rem;
  border-radius: 60px;
  font-weight: 500;
  letter-spacing: 0.06em;
  border: 1.5px solid var(--forest-dark);
  color: var(--forest-dark);
  background: none;
  cursor: pointer;
  transition: var(--transition-fast);
  font-family: var(--font-body);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.btn-learn:hover {
  background: var(--forest-dark);
  color: var(--white);
}
.btn-request {
  padding: 9px 18px;
  font-size: 0.73rem;
  border-radius: 60px;
  font-weight: 500;
  letter-spacing: 0.06em;
  background: var(--gold);
  color: var(--forest-dark);
  border: none;
  cursor: pointer;
  transition: var(--transition-fast);
  font-family: var(--font-body);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
}
.btn-request:hover {
  background: var(--gold-light);
}
@media (max-width: 768px) {
  .svc-grid {
    grid-template-columns: 1fr;
  }
  .svc-card-footer {
    flex-direction: column;
    align-items: flex-start;
  }
}




/* new form  */

    /* ── Hero ── */
    .hero-booking-page {
      background: var(--green-deep);
      padding: 140px 0 50px;
      position: relative;
      overflow: hidden;
      text-align: center;
    }
    .hero-booking-page::before {
      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%3Ccircle cx='30' cy='30' r='1' fill='%23C9A84C' fill-opacity='0.07'/%3E%3C/svg%3E");
    }
    .hero-booking-page .section-label { color: var(--gold-light); display: block; margin-bottom: 10px; }
    .hero-booking-page h1 {
      font-size: clamp(2.4rem, 5vw, 3.8rem);
      color: var(--white);
    }
    .hero-booking-page h1 em { color: var(--gold-light); font-style: italic; }
    .hero-booking-page p {
      color: rgba(255,255,255,0.65);
      font-size: 1rem;
      margin-top: 12px;
      font-weight: 300;
    }
    .wave-bottom {
      display: block; width: 100%; height: 56px;
      background: var(--cream);
      clip-path: ellipse(55% 100% at 50% 100%);
    }

    /* ── 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(--green-deep); }
    .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%; }
    }