/* ===== 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: 46px 0;
}
.section-pad-sm {
  padding: 30px 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;
}

/* ===== 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%;
}

.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;
}

/* ===== 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;
  }
}

/* ===== ABOUT INTRO ===== */
.about-intro {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.about-intro-img {
  position: relative;
  background: #000;
}
.about-intro-img img {
  width: 100%;
  aspect-ratio: 4/4;
  object-fit: cover;
  border-radius: var(--radius-lg);
}
.about-intro-img .img-badge {
  position: absolute;
  bottom: -24px;
  right: -24px;
  background: var(--gold);
  color: var(--forest-dark);
  padding: 18px 22px;
  border-radius: var(--radius-lg);
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 600;
  line-height: 1.3;
  max-width: 180px;
}

@media (max-width: 900px) {
  .about-intro {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  .about-intro-img .img-badge {
    bottom: 16px;
    right: 16px;
  }
}

/* ===== SERVICE HIGHLIGHTS ===== */
.services-highlight {
  background: var(--white);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
  margin-top: 56px;
}

.service-card {
  background: var(--cream);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid rgba(201, 169, 110, 0.15);
  transition: var(--transition);
  cursor: pointer;
}

.service-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: var(--gold);
}

.service-card-img {
  width: 100%;
  aspect-ratio: 16/9;
  object-fit: cover;
  background: linear-gradient(135deg, var(--forest) 0%, var(--forest-mid) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
  color: var(--gold);
}

.service-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.service-card-body {
  padding: 24px;
}

.service-cat {
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 8px;
}

.service-card-title {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 400;
  color: var(--forest);
  margin-bottom: 10px;
}

.service-card-desc {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* ===== 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;
}

/* ===== GALLERY ===== */
.gallery-grid {
  columns: 3;
  column-gap: 16px;
  margin-top: 56px;
}

.gallery-item {
  break-inside: avoid;
  margin-bottom: 16px;
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  cursor: pointer;
}

.gallery-item img {
  width: 100%;
  display: block;
  transition: transform 0.5s ease;
}

.gallery-item::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(17, 40, 19, 0.6), transparent);
  opacity: 0;
  transition: opacity var(--transition);
}

.gallery-item:hover img {
  transform: scale(1.04);
}
.gallery-item:hover::after {
  opacity: 1;
}

@media (max-width: 768px) {
  .gallery-grid {
    columns: 2;
  }
}
@media (max-width: 480px) {
  .gallery-grid {
    columns: 1;
  }
}

/* ===== BLOG ===== */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 32px;
  margin-top: 56px;
}

.blog-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid rgba(201, 169, 110, 0.12);
  transition: var(--transition);
}

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

.blog-card-img {
  width: 100%;
  aspect-ratio: 16/9;
  object-fit: cover;
}

.blog-card-body {
  padding: 28px;
}

.blog-date {
  font-size: 0.72rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 10px;
}

.blog-card-title {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 400;
  color: var(--forest);
  margin-bottom: 12px;
  line-height: 1.3;
}

.blog-card-excerpt {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.65;
  margin-bottom: 20px;
}

.blog-read-more {
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--forest);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition:
    gap var(--transition),
    color var(--transition);
}

.blog-read-more:hover {
  color: var(--gold);
  gap: 10px;
}

/* ===== BOOKING ===== */
.booking-section {
  padding: 7rem 5%;
}
.booking-hero {
  background: var(--forest);
  padding: 120px 0 64px;
  text-align: center;
}

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

.booking-steps {
  display: flex;
  justify-content: center;
  gap: 0;
  margin: 48px 0 0;
  position: relative;
}

.booking-steps::before {
  content: "";
  position: absolute;
  top: 18px;
  left: 50%;
  transform: translateX(-50%);
  width: 60%;
  height: 1px;
  background: rgba(255, 255, 255, 0.2);
}

.step-indicator {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  flex: 1;
  max-width: 120px;
  position: relative;
  z-index: 1;
}

.step-num {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  font-weight: 500;
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: var(--transition);
}

.step-indicator.active .step-num {
  background: var(--gold);
  color: var(--forest-dark);
  border-color: var(--gold);
}

.step-indicator.done .step-num {
  background: rgba(201, 169, 110, 0.3);
  color: var(--gold);
  border-color: var(--gold);
}

.step-label {
  font-size: 0.65rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.45);
  text-align: center;
}

.step-indicator.active .step-label {
  color: var(--gold-light);
}

.booking-body {
  background: var(--cream);
  min-height: 60vh;
  padding: 64px 0 96px;
}

.booking-panel {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 48px;
  max-width: 860px;
  margin: 0 auto;
  box-shadow: var(--shadow);
  border: 1px solid rgba(201, 169, 110, 0.12);
}

.booking-panel-title {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 300;
  color: var(--forest);
  margin-bottom: 8px;
}

.booking-panel-sub {
  color: var(--text-muted);
  font-size: 0.9rem;
  margin-bottom: 36px;
}

/* Service selection cards */
.service-select-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 16px;
}

.service-select-card {
  border: 2px solid rgba(201, 169, 110, 0.2);
  border-radius: var(--radius-lg);
  padding: 20px 16px;
  cursor: pointer;
  text-align: center;
  transition: var(--transition);
  background: var(--cream);
}

.service-select-card:hover {
  border-color: var(--gold);
  background: var(--white);
  transform: translateY(-2px);
}

.service-select-card.selected {
  border-color: var(--forest);
  background: var(--forest);
  color: var(--white);
}

.service-select-card .card-icon {
  font-size: 2rem;
  margin-bottom: 10px;
}

.service-select-card .card-name {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 400;
}

.service-select-card.selected .card-name {
  color: var(--gold);
}
.service-select-card .card-cat {
  font-size: 0.68rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-top: 4px;
}
.service-select-card.selected .card-cat {
  color: rgba(255, 255, 255, 0.6);
}
.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);
}

/* Form styles */
.form-group {
  margin-bottom: 24px;
}

.form-group label {
  display: block;
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--forest);
  margin-bottom: 8px;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid rgba(201, 169, 110, 0.3);
  border-radius: var(--radius);
  background: var(--cream);
  color: var(--charcoal);
  font-size: 0.95rem;
  transition: border-color var(--transition);
  outline: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--forest);
  background: var(--white);
}

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

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
@media (max-width: 600px) {
  .form-grid {
    grid-template-columns: 1fr;
  }
}

.form-error {
  color: #c0392b;
  font-size: 0.8rem;
  margin-top: 6px;
  display: none;
}

.form-error.show {
  display: block;
}

.honeypot {
  display: none !important;
}

/* Review box */
.review-box {
  background: var(--cream);
  border-radius: var(--radius-lg);
  padding: 32px;
  border: 1px solid rgba(201, 169, 110, 0.2);
}

.review-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding: 12px 0;
  border-bottom: 1px solid var(--border);
}

.review-row:last-child {
  border-bottom: none;
}

.review-key {
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
  flex: 1;
}

.review-val {
  flex: 2;
  text-align: right;
  font-family: var(--font-display);
  font-size: 1.05rem;
  color: var(--forest);
}

/* Booking navigation */
.booking-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 40px;
  padding-top: 32px;
  border-top: 1px solid var(--border);
}

.booking-nav .step-count {
  font-size: 0.78rem;
  color: var(--text-muted);
  letter-spacing: 0.1em;
}

/* Submit states */
.btn-loading {
  opacity: 0.7;
  pointer-events: none;
}
.btn-loading::after {
  content: "...";
}

.success-box {
  text-align: center;
  padding: 48px 24px;
}

.success-icon {
  width: 72px;
  height: 72px;
  background: var(--forest);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
  font-size: 2rem;
}

.success-title {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 300;
  color: var(--forest);
  margin-bottom: 12px;
}

.error-msg {
  background: #fef2f2;
  border: 1px solid #fecaca;
  border-radius: var(--radius);
  padding: 12px 16px;
  color: #c0392b;
  font-size: 0.9rem;
  margin-top: 16px;
  display: none;
}

.error-msg.show {
  display: block;
}

/* ===== CONTACT ===== */
.contact-wrap {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 80px;
  align-items: start;
}

@media (max-width: 900px) {
  .contact-wrap {
    grid-template-columns: 1fr;
    gap: 48px;
  }
}

.contact-info-title {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 300;
  color: var(--forest);
  margin-bottom: 24px;
}

.contact-item {
  display: flex;
  gap: 16px;
  margin-bottom: 24px;
  align-items: flex-start;
}

.contact-icon {
  width: 40px;
  height: 40px;
  background: var(--forest-mid);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
  transition: 0.5s linear;
}
.contact-icon:hover {
  background: rgb(64, 146, 76);
}

.contact-item-label {
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 3px;
}

.contact-item-val {
  font-size: 0.95rem;
  color: var(--charcoal);
}

.contact-form-wrap {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 48px;
  box-shadow: var(--shadow);
  border: 1px solid rgba(201, 169, 110, 0.12);
}

/* ===== ABOUT PAGE ===== */
.about-hero {
  background: linear-gradient(
    135deg,
    var(--forest-dark) 0%,
    var(--forest) 100%
  );
  padding: 140px 0 80px;
  text-align: center;
  color: var(--white);
}

/* Mission and vision section  */

/* ── Section Heading Style ── */
.section-heading h2 {
  font-size: clamp(2rem, 4vw, 3.2rem);
  margin-top: 8px;
  font-family: var(--font-display);
  font-weight: 300;
  line-height: 1.15;
  color: var(--forest);
}
.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;
}

.mvv-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}
.mvv-card {
  padding: 40px;
  border-radius: var(--radius-lg);
}
.mvv-card.mission {
  background: var(--forest-dark);
  color: var(--white);
}
.mvv-card.vision {
  background: var(--gold);
  color: var(--forest-dark);
}
.mvv-card h3 {
  font-size: 1.5rem;
  margin-bottom: 16px;
  font-family: var(--font-display);
}
.mvv-card p {
  font-size: 0.92rem;
  line-height: 1.8;
  opacity: 0.88;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 24px;
  margin-top: 56px;
}

.value-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  transition: var(--transition);
  text-align: center;
}

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

.value-card .value-icon {
  /* background: #25d366; */
  margin-bottom: 16px;
  width: 100%;
  height: 100px;
  overflow: hidden;
  object-fit: cover;
}
.value-card .value-icon img {
  /* display: none; */
  width: 100%;
  height: 100%;
  object-fit: contain;
  margin-bottom: 16px;
}
.value-card h4 {
  font-family: var(--font-display);
  font-size: 1.25rem;
  color: var(--forest);
  margin-bottom: 10px;
}

.value-card p {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.65;
}

.founder-section {
  background: var(--fores);
  position: relative;
  overflow: hidden;
}

.founder-section::before {
  content: '"';
  position: absolute;
  top: -40px;
  left: 40px;
  font-family: var(--font-display);
  font-size: 30rem;
  color: rgba(201, 169, 110, 0.08);
  line-height: 1;
}

.founder-inner {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 64px;
  align-items: center;
}

@media (max-width: 768px) {
  .founder-inner {
    grid-template-columns: 1fr;
  }
  .mvv-grid {
    grid-template-columns: 1fr;
  }
}

.founder-img img {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
  border-radius: var(--radius-lg);
  border: 2px solid var(--gold);
}

.founder-quote {
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 2.5vw, 2rem);
  font-weight: 300;
  font-style: italic;
  color: var(--white);
  line-height: 1.5;
  margin-bottom: 24px;
}

.founder-name {
  font-size: 0.8rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
}

/* ===== SINGLE BLOG ===== */
.blog-hero {
  background: var(--forest);
  padding: 140px 0 64px;
}

.blog-article {
  max-width: 760px;
  margin: 0 auto;
}

.blog-article-img {
  width: 100%;
  aspect-ratio: 16/7;
  object-fit: cover;
  border-radius: var(--radius-lg);
  margin-bottom: 48px;
}

.blog-article-content {
  font-size: 1.05rem;
  line-height: 1.85;
  color: var(--charcoal);
}

.blog-article-content h2 {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 300;
  color: var(--forest);
  margin: 40px 0 16px;
}

.blog-article-content p {
  margin-bottom: 20px;
}

.blog-article-content blockquote {
  border-left: 3px solid var(--gold);
  padding: 16px 24px;
  background: var(--gold-pale);
  border-radius: 0 var(--radius) var(--radius) 0;
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-style: italic;
  color: var(--forest);
  margin: 28px 0;
}

/* ===== PAGE HERO (generic) ===== */
.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;
}

.hero-about-page,
.hero-services-page,
.hero-gallery-page,
.hero-blog-page,
.hero-booking-page,
.hero-contacts-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;
}

.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;
}

/* ===== FOOTER ===== */
.site-footer {
  background: var(--forest-dark);
  padding: 64px 0 32px;
  color: rgba(255, 255, 255, 0.7);
}

.footer-inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}

@media (max-width: 768px) {
  .footer-inner {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 480px) {
  .footer-inner {
    grid-template-columns: 1fr;
  }
}

.footer-col-title {
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
}

.footer-links li {
  margin-bottom: 10px;
}
.footer-links a {
  font-size: 0.88rem;
  opacity: 0.7;
  transition:
    opacity var(--transition),
    color var(--transition);
}
.footer-links a:hover {
  opacity: 1;
  color: var(--gold);
}

.footer-social {
  display: flex;
  gap: 12px;
  margin-top: 8px;
}

.social-btn {
  width: 38px;
  height: 38px;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.07);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: var(--transition);
}

.social-btn:hover {
  background: var(--forest-mid);
  color: var(--forest-dark);
  border-color: var(--gold);
}

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

/* ===== ANIMATIONS ===== */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(24px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes scrollPulse {
  0%,
  100% {
    opacity: 0.6;
    transform: scaleY(1);
  }
  50% {
    opacity: 1;
    transform: scaleY(0.7);
  }
}

.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition:
    opacity 0.7s ease,
    transform 0.7s ease;
}

.reveal.visible {
  opacity: 1;
  transform: none;
}

/* ===== PLACEHOLDERS ===== */
.img-placeholder {
  background: linear-gradient(135deg, var(--forest) 0%, var(--forest-mid) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-size: 3rem;
}

/* ===== LIGHTBOX ===== */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.9);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition);
}

.lightbox.open {
  opacity: 1;
  pointer-events: all;
}

.lightbox img {
  max-width: 90vw;
  max-height: 85vh;
  border-radius: var(--radius);
  object-fit: contain;
}

.lightbox-close {
  position: absolute;
  top: 24px;
  right: 24px;
  color: var(--white);
  font-size: 2rem;
  cursor: pointer;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  transition: var(--transition);
}

.lightbox-close:hover {
  background: var(--gold);
  color: var(--forest-dark);
}

/* ===== UTILITIES ===== */
.text-center {
  text-align: center;
}
.text-gold {
  color: var(--gold);
}
.mb-0 {
  margin-bottom: 0;
}
.mt-auto {
  margin-top: auto;
}
.hidden {
  display: none !important;
}

.divider {
  width: 48px;
  height: 2px;
  background: var(--gold);
  margin: 24px 0;
}

.divider.center {
  margin: 24px auto;
}

@media (max-width: 768px) {
  .booking-panel {
    padding: 28px 20px;
  }
  .contact-form-wrap {
    padding: 28px 20px;
  }
}

/* Page transition */
.page-wrap {
  animation: fadeUp 0.5s ease both;
}

.book-form-header {
  background: var(--forest);
  padding: 2rem 2.5rem;
}

.book-form-header h3 {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.6rem;
  font-weight: 300;
  color: var(--white);
}

.form-submit {
  width: 100%;
  padding: 1.1rem;
  background: var(--forest);
  color: var(--white);
  border: none;
  font-family: "Jost", sans-serif;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  cursor: pointer;
  border-radius: var(--radius);
  transition: all 0.3s;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  margin-top: 1rem;
}

.form-submit:hover {
  background: var(--forest-mid);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(27, 58, 45, 0.3);
}

.form-divider {
  text-align: center;
  margin: 1.5rem 0;
  color: var(--text-dim);
  font-size: 0.78rem;
  position: relative;
}

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

.booking-inner {
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 5rem;
  max-width: 1200px;
  margin: 0 auto;
  align-items: start;
}

/* FORM */
.book-form-card {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: 0 8px 40px rgba(0, 0, 0, 0.1);
  overflow: hidden;
}

.book-form-header {
  background: var(--forest-dark);
  padding: 2rem 2.5rem;
}

.book-form-header h3 {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.6rem;
  font-weight: 300;
  color: var(--white);
}

.book-form-header p {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.82rem;
  margin-top: 0.3rem;
}

.book-form-body {
  padding: 2.5rem;
}

.form-group {
  margin-bottom: 1.4rem;
}

.form-label {
  display: block;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--forest-dark);
  margin-bottom: 0.5rem;
}

.form-input,
.form-select,
.form-textarea {
  width: 100%;
  padding: 0.85rem 1rem;
  border: 1.5px solid rgba(27, 58, 45, 0.15);
  border-radius: var(--radius);
  font-family: "Jost", sans-serif;
  font-size: 0.88rem;
  color: var(--charcoal);
  background: var(--cream);
  outline: none;
  transition:
    border-color 0.3s,
    box-shadow 0.3s;
  display: block;
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  border-color: var(--forest-dark);
  box-shadow: 0 0 0 3px rgba(27, 58, 45, 0.08);
}

.form-select {
  appearance: none;
  cursor: pointer;
}

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

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

.form-divider::before,
.form-divider::after {
  content: "";
  position: absolute;
  top: 50%;
  width: 40%;
  height: 1px;
  background: rgba(0, 0, 0, 0.1);
}

.form-divider::before {
  left: 0;
}

.form-divider::after {
  right: 0;
}

.wa-book-btn {
  width: 100%;
  padding: 1.1rem;
  background: #25d366;
  color: var(--white);
  border: none;
  font-family: "Jost", sans-serif;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  cursor: pointer;
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  transition: all 0.3s;
}

.wa-book-btn:hover {
  background: #1ebe5d;
  transform: translateY(-2px);
}

/* SIDEBAR */
.book-sidebar {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.sidebar-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 2rem;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.07);
}

.sidebar-card h4 {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.2rem;
  color: var(--forest-dark);
  margin-bottom: 1rem;
}

.contact-list {
  list-style: none;
}

.contact-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.8rem;
  padding: 0.6rem 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
  font-size: 0.85rem;
}

.contact-list li:last-child {
  border-bottom: none;
}

.contact-list li i {
  color: var(--gold);
  font-size: 0.9rem;
  margin-top: 0.1rem;
  flex-shrink: 0;
}

.hours-grid {
  display: grid;
  gap: 0.4rem;
}

.hours-row {
  display: flex;
  justify-content: space-between;
  font-size: 0.82rem;
  padding: 0.35rem 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.hours-row:last-child {
  border-bottom: none;
}

.hours-row span:first-child {
  color: var(--text-dim);
}

.hours-row span:last-child {
  color: var(--forest-dark);
  font-weight: 500;
}

.service-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.chip {
  padding: 0.35rem 0.9rem;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  border: 1.5px solid rgba(27, 58, 45, 0.2);
  border-radius: 50px;
  color: var(--forest-dark);
  cursor: pointer;
  transition: all 0.3s;
}

.chip:hover,
.chip.selected {
  background: var(--forest-dark);
  color: var(--gold);
  border-color: var(--forest-dark);
}

/* SUCCESS MESSAGE */
.success-msg {
  display: none;
  text-align: center;
  padding: 2rem;
  background: var(--sand-light);
  border-radius: var(--radius);
  margin-top: 1rem;
}

.success-msg i {
  font-size: 2rem;
  color: var(--gold);
  margin-bottom: 0.5rem;
}

.success-msg p {
  font-size: 0.88rem;
  color: var(--forest-dark);
}

@media (max-width: 900px) {
  .booking-inner {
    grid-template-columns: 1fr;
  }

  .form-row {
    grid-template-columns: 1fr;
  }
}


/* ── 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;
  }
}