﻿/* ========== RESET & BASE ========== */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --green-dark: #1b3a2f;
  --green-mid: #2d6a4f;
  --green-light: #52b788;
  --gold: #c9a84c;
  --gold-light: #e8c97e;
  --cream: #faf7f2;
  --cream-dark: #f0ebe0;
  --text-dark: #1e1e1e;
  --text-mid: #4a4a4a;
  --text-light: #7a7a7a;
  --white: #ffffff;
  --transition: 0.4s ease;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Raleway", sans-serif;
  background: var(--cream);
  color: var(--text-dark);
  overflow-x: hidden;
}

h1,
h2,
h3,
h4 {
  font-family: "Cormorant Garamond", serif;
}

img {
  display: block;
  max-width: 100%;
}

a {
  text-decoration: none;
  color: inherit;
}

/* ========== SCROLLBAR ========== */
::-webkit-scrollbar {
  width: 6px;
}
::-webkit-scrollbar-track {
  background: var(--cream-dark);
}
::-webkit-scrollbar-thumb {
  background: var(--green-mid);
  border-radius: 3px;
}

/* ========== NAVBAR ========== */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.2rem 5%;
  background: transparent;
  transition:
    background var(--transition),
    box-shadow var(--transition),
    padding var(--transition);
}

.navbar.scrolled {
  background: rgba(27, 58, 47, 0.97);
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.25);
  padding: 0.8rem 5%;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.nav-logo .logo-leaf {
  width: 38px;
  height: 38px;
  background: var(--gold);
  border-radius: 50% 0 50% 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  color: var(--white);
  flex-shrink: 0;
}

.nav-logo-text {
  color: var(--white);
  line-height: 1;
}

.nav-logo-text .brand {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.5rem;
  font-weight: 600;
  letter-spacing: 1px;
}

.nav-logo-text .tagline {
  font-size: 0.65rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold-light);
  font-weight: 300;
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 2rem;
}

.nav-links a {
  color: var(--white);
  font-size: 0.82rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-weight: 500;
  padding-bottom: 3px;
  border-bottom: 1px solid transparent;
  transition:
    border-color var(--transition),
    color var(--transition);
}

.nav-links a:hover {
  color: var(--gold-light);
  border-bottom-color: var(--gold-light);
}

.nav-cta {
  background: var(--gold);
  color: var(--white) !important;
  padding: 0.55rem 1.4rem !important;
  border-radius: 30px;
  border-bottom: none !important;
  transition:
    background var(--transition),
    transform var(--transition) !important;
}

.nav-cta:hover {
  background: var(--gold-light) !important;
  transform: translateY(-1px);
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
}

.hamburger span {
  display: block;
  width: 25px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: var(--transition);
}

/* ========== HERO ========== */
.hero {
  position: relative;
  height: 100vh;
  min-height: 650px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(27, 58, 47, 0.75) 0%,
    rgba(27, 58, 47, 0.45) 50%,
    rgba(0, 0, 0, 0.55) 100%
  );
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: var(--white);
  max-width: 780px;
  padding: 0 1.5rem;
  animation: fadeUp 1.2s ease both;
}

.hero-eyebrow {
  font-size: 0.75rem;
  letter-spacing: 5px;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 1.2rem;
  font-weight: 400;
}

.hero-title {
  font-size: clamp(3rem, 7vw, 5.5rem);
  font-weight: 300;
  line-height: 1.05;
  margin-bottom: 1.5rem;
}

.hero-title em {
  font-style: italic;
  color: var(--gold-light);
}

.hero-subtitle {
  font-size: clamp(1rem, 2vw, 1.15rem);
  font-weight: 300;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.88);
  margin-bottom: 2.5rem;
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
}

.hero-buttons {
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.btn-primary {
  background: var(--gold);
  color: var(--white);
  padding: 0.9rem 2.4rem;
  border-radius: 40px;
  font-size: 0.82rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-weight: 600;
  transition: all var(--transition);
  border: 2px solid var(--gold);
}

.btn-primary:hover {
  background: transparent;
  color: var(--gold-light);
  border-color: var(--gold-light);
  transform: translateY(-2px);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  padding: 0.9rem 2.4rem;
  border-radius: 40px;
  font-size: 0.82rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-weight: 600;
  border: 2px solid rgba(255, 255, 255, 0.6);
  transition: all var(--transition);
}

.btn-outline:hover {
  border-color: var(--white);
  background: rgba(255, 255, 255, 0.12);
  transform: translateY(-2px);
}

.hero-scroll {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.4rem;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.65rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  animation: bounce 2.5s infinite;
}

.hero-scroll i {
  font-size: 1rem;
}

/* ========== SECTION UTILITIES ========== */
section {
  padding: 6rem 5%;
}

.section-header {
  text-align: center;
  margin-bottom: 4rem;
}

.section-eyebrow {
  font-size: 0.72rem;
  letter-spacing: 5px;
  text-transform: uppercase;
  color: var(--green-light);
  font-weight: 600;
  margin-bottom: 0.8rem;
}

.section-title {
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  font-weight: 300;
  color: var(--green-dark);
  line-height: 1.2;
  margin-bottom: 1rem;
}

.section-title em {
  font-style: italic;
  color: var(--gold);
}

.section-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.8rem;
  margin: 1rem auto 1.5rem;
}

.section-divider span {
  display: block;
  height: 1px;
  width: 60px;
  background: var(--gold);
  opacity: 0.5;
}

.section-divider i {
  color: var(--gold);
  font-size: 0.7rem;
}

.section-desc {
  max-width: 580px;
  margin: 0 auto;
  color: var(--text-mid);
  line-height: 1.9;
  font-size: 0.97rem;
}

/* ========== MARQUEE STRIP ========== */
.marquee-strip {
  background: var(--green-dark);
  overflow: hidden;
  padding: 0.9rem 0;
  white-space: nowrap;
}

.marquee-track {
  display: inline-flex;
  animation: marquee 30s linear infinite;
}

.marquee-item {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  margin-right: 3rem;
  color: var(--gold-light);
  font-size: 0.75rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  font-weight: 500;
}

.marquee-item i {
  color: var(--gold);
}

/* ========== ABOUT ========== */
.about {
  background: var(--white);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
}

.about-images {
  position: relative;
  height: 520px;
}

.about-img-main {
  position: absolute;
  top: 0;
  left: 0;
  width: 70%;
  height: 80%;
  object-fit: cover;
  border-radius: 4px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.about-img-secondary {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 52%;
  height: 55%;
  object-fit: cover;
  border-radius: 4px;
  border: 6px solid var(--cream);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.12);
}

.about-badge {
  position: absolute;
  top: 50%;
  left: 55%;
  transform: translate(-50%, -50%);
  background: var(--green-dark);
  color: var(--white);
  width: 110px;
  height: 110px;
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  border: 4px solid var(--gold);
  z-index: 3;
}

.about-badge .years {
  font-family: "Cormorant Garamond", serif;
  font-size: 2.2rem;
  font-weight: 600;
  line-height: 1;
  color: var(--gold-light);
}

.about-badge small {
  font-size: 0.58rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-top: 2px;
}

.about-text .section-header {
  text-align: left;
  margin-bottom: 2rem;
}

.about-text .section-divider {
  justify-content: flex-start;
}

.about-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.2rem;
  margin-top: 2.5rem;
}

.about-feature {
  display: flex;
  align-items: flex-start;
  gap: 0.7rem;
}

.about-feature i {
  color: var(--gold);
  font-size: 1rem;
  margin-top: 3px;
  flex-shrink: 0;
}

.about-feature p {
  font-size: 0.88rem;
  color: var(--text-mid);
  line-height: 1.6;
}

.about-feature strong {
  display: block;
  color: var(--green-dark);
  font-weight: 600;
  margin-bottom: 2px;
}

.about-cta {
  margin-top: 2.5rem;
}

.btn-green {
  background: var(--green-dark);
  color: var(--white);
  padding: 0.9rem 2.4rem;
  border-radius: 40px;
  font-size: 0.82rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-weight: 600;
  border: 2px solid var(--green-dark);
  display: inline-block;
  transition: all var(--transition);
}

.btn-green:hover {
  background: transparent;
  color: var(--green-dark);
  transform: translateY(-2px);
}

/* ========== STATS BAR ========== */
.stats-bar {
  background: linear-gradient(
    135deg,
    var(--green-mid) 0%,
    var(--green-dark) 100%
  );
  padding: 3.5rem 5%;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  max-width: 1000px;
  margin: 0 auto;
  text-align: center;
}

.stat-item {
  color: var(--white);
  border-right: 1px solid rgba(255, 255, 255, 0.15);
  padding: 0 1rem;
}

.stat-item:last-child {
  border-right: none;
}

.stat-number {
  font-family: "Cormorant Garamond", serif;
  font-size: 3rem;
  font-weight: 600;
  color: var(--gold-light);
  line-height: 1;
}

.stat-label {
  font-size: 0.75rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.75);
  margin-top: 0.5rem;
}

/* ========== SERVICES ========== */
.services {
  background: var(--cream);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.service-card {
  background: var(--white);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 25px rgba(0, 0, 0, 0.07);
  transition:
    transform var(--transition),
    box-shadow var(--transition);
  cursor: default;
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.14);
}

.service-img-wrap {
  position: relative;
  overflow: hidden;
  height: 220px;
}

.service-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.service-card:hover .service-img-wrap img {
  transform: scale(1.07);
}

.service-badge {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: var(--gold);
  color: var(--white);
  font-size: 0.65rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 0.3rem 0.7rem;
  border-radius: 20px;
  font-weight: 600;
}

.service-body {
  padding: 1.6rem;
}

.service-icon {
  width: 46px;
  height: 46px;
  background: var(--cream-dark);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
}

.service-icon i {
  color: var(--green-mid);
  font-size: 1.1rem;
}

.service-body h3 {
  font-size: 1.45rem;
  font-weight: 400;
  color: var(--green-dark);
  margin-bottom: 0.6rem;
}

.service-body p {
  font-size: 0.87rem;
  color: var(--text-mid);
  line-height: 1.75;
  margin-bottom: 1.2rem;
}

.service-footer {
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
  border-top: 1px solid var(--cream-dark);
  padding-top: 1rem;
}

.service-footer-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.service-price {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.5rem;
  color: var(--gold);
  font-weight: 600;
}

.service-duration {
  font-size: 0.75rem;
  color: var(--text-light);
  letter-spacing: 1px;
}

.service-actions {
  display: flex;
  gap: 0.6rem;
}

.btn-call {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  padding: 0.6rem 0.8rem;
  background: var(--green-dark);
  color: var(--white);
  border-radius: 30px;
  font-size: 0.72rem;
  font-family: "Raleway", sans-serif;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  border: 2px solid var(--green-dark);
  cursor: pointer;
  transition: all var(--transition);
  text-decoration: none;
}

.btn-call:hover {
  background: transparent;
  color: var(--green-dark);
}

.btn-enquire {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  padding: 0.6rem 0.8rem;
  background: transparent;
  color: var(--gold);
  border-radius: 30px;
  font-size: 0.72rem;
  font-family: "Raleway", sans-serif;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  border: 2px solid var(--gold);
  cursor: pointer;
  transition: all var(--transition);
  text-decoration: none;
}

.btn-enquire:hover {
  background: var(--gold);
  color: var(--white);
}

.service-link {
  font-size: 0.75rem;
  color: var(--green-mid);
  letter-spacing: 1.5px;
  text-transform: uppercase;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 0.4rem;
  transition:
    gap var(--transition),
    color var(--transition);
}

.service-link:hover {
  gap: 0.8rem;
  color: var(--gold);
}

/* ========== GALLERY ========== */
.gallery {
  background: var(--white);
  padding-bottom: 4rem;
}

.gallery-filter {
  display: flex;
  justify-content: center;
  gap: 0.8rem;
  flex-wrap: wrap;
  margin-bottom: 2.5rem;
}

.filter-btn {
  background: transparent;
  border: 1px solid var(--green-mid);
  color: var(--green-mid);
  padding: 0.45rem 1.3rem;
  border-radius: 30px;
  font-size: 0.78rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  cursor: pointer;
  font-family: "Raleway", sans-serif;
  transition: all var(--transition);
}

.filter-btn.active,
.filter-btn:hover {
  background: var(--green-mid);
  color: var(--white);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 220px;
  gap: 12px;
  max-width: 1300px;
  margin: 0 auto;
}

.gallery-item {
  overflow: hidden;
  border-radius: 4px;
  cursor: pointer;
  position: relative;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.gallery-item:hover img {
  transform: scale(1.08);
}

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(27, 58, 47, 0.7) 0%,
    transparent 60%
  );
  opacity: 0;
  transition: opacity var(--transition);
  display: flex;
  align-items: flex-end;
  padding: 1.2rem;
}

.gallery-item:hover .gallery-overlay {
  opacity: 1;
}

.gallery-overlay span {
  color: var(--white);
  font-size: 0.75rem;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.gallery-zoom {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0.8);
  background: rgba(255, 255, 255, 0.2);
  color: var(--white);
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  opacity: 0;
  transition: all var(--transition);
  backdrop-filter: blur(4px);
}

.gallery-item:hover .gallery-zoom {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
}

/* ========== LIGHTBOX ========== */
.lightbox {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 2000;
  background: rgba(0, 0, 0, 0.92);
  align-items: center;
  justify-content: center;
}

.lightbox.open {
  display: flex;
}

.lightbox-img {
  max-width: 90vw;
  max-height: 85vh;
  border-radius: 4px;
  box-shadow: 0 20px 80px rgba(0, 0, 0, 0.5);
}

.lightbox-close {
  position: absolute;
  top: 1.5rem;
  right: 2rem;
  color: var(--white);
  font-size: 2rem;
  cursor: pointer;
  transition: color var(--transition);
}

.lightbox-close:hover {
  color: var(--gold);
}

.lightbox-prev,
.lightbox-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.1);
  color: var(--white);
  border: none;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  font-size: 1.2rem;
  cursor: pointer;
  transition: background var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
}

.lightbox-prev {
  left: 1.5rem;
}
.lightbox-next {
  right: 1.5rem;
}
.lightbox-prev:hover,
.lightbox-next:hover {
  background: var(--gold);
}

/* ========== EXPERIENCE SECTION ========== */
.experience {
  background: var(--cream);
}

.experience-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
}

.experience-text .section-header {
  text-align: left;
  margin-bottom: 2rem;
}
.experience-text .section-divider {
  justify-content: flex-start;
}

.experience-list {
  list-style: none;
  margin-top: 1.5rem;
}

.experience-list li {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.1rem 0;
  border-bottom: 1px solid var(--cream-dark);
}

.experience-list li:last-child {
  border-bottom: none;
}

.exp-num {
  font-family: "Cormorant Garamond", serif;
  font-size: 2rem;
  color: var(--gold);
  font-weight: 300;
  line-height: 1;
  min-width: 40px;
}

.exp-info h4 {
  font-size: 1.1rem;
  color: var(--green-dark);
  margin-bottom: 0.3rem;
}

.exp-info p {
  font-size: 0.85rem;
  color: var(--text-mid);
  line-height: 1.6;
}

.experience-visual {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: auto auto;
  gap: 12px;
}

.experience-visual .exp-img {
  overflow: hidden;
  border-radius: 4px;
}

.experience-visual .exp-img img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.experience-visual .exp-img:hover img {
  transform: scale(1.05);
}

.experience-visual .exp-img.feature {
  grid-column: span 2;
}

.experience-visual .exp-img.feature img {
  height: 260px;
}

/* ========== TEAM / THERAPISTS ========== */
.team {
  background: var(--white);
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.8rem;
  max-width: 1200px;
  margin: 0 auto;
}

.team-card {
  text-align: center;
}

.team-img-frame {
  width: 100%;
  aspect-ratio: 3/4;
  overflow: hidden;
  border-radius: 8px;
  margin-bottom: 1.2rem;
  position: relative;
}

.team-img-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.team-card:hover .team-img-frame img {
  transform: scale(1.05);
}

.team-social {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(to top, rgba(27, 58, 47, 0.85), transparent);
  padding: 1.5rem 0.5rem 0.8rem;
  display: flex;
  justify-content: center;
  gap: 0.7rem;
  transform: translateY(100%);
  transition: transform var(--transition);
}

.team-card:hover .team-social {
  transform: translateY(0);
}

.team-social a {
  color: var(--white);
  font-size: 0.85rem;
  background: rgba(255, 255, 255, 0.2);
  width: 30px;
  height: 30px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background var(--transition);
}

.team-social a:hover {
  background: var(--gold);
}

.team-card h4 {
  font-size: 1.25rem;
  color: var(--green-dark);
  margin-bottom: 0.3rem;
}

.team-card .role {
  font-size: 0.75rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 600;
}

/* ========== TESTIMONIALS ========== */
.testimonials {
  background: linear-gradient(135deg, var(--green-dark) 0%, #0f2a21 100%);
  color: var(--white);
  padding: 6rem 5%;
  position: relative;
  overflow: hidden;
}

.testimonials::before {
  content: "\201C";
  position: absolute;
  top: -2rem;
  left: 3%;
  font-family: "Cormorant Garamond", serif;
  font-size: 20rem;
  color: rgba(255, 255, 255, 0.04);
  line-height: 1;
  pointer-events: none;
}

.testimonials .section-title {
  color: var(--white);
}

.testimonials .section-eyebrow {
  color: var(--gold-light);
}

.testimonial-slider {
  max-width: 800px;
  margin: 0 auto;
  position: relative;
}

.testimonial-track {
  overflow: hidden;
}

.testimonial-slides {
  display: flex;
  transition: transform 0.5s ease;
}

.testimonial-slide {
  min-width: 100%;
  text-align: center;
  padding: 0 2rem;
}

.testimonial-stars {
  color: var(--gold);
  font-size: 1.1rem;
  letter-spacing: 3px;
  margin-bottom: 1.5rem;
}

.testimonial-text {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(1.2rem, 2.5vw, 1.6rem);
  font-weight: 300;
  font-style: italic;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 2rem;
}

.testimonial-author {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
}

.testimonial-avatar {
  width: 55px;
  height: 55px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--gold);
}

.author-info h5 {
  font-size: 1rem;
  color: var(--gold-light);
  text-align: left;
}

.author-info small {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.6);
  letter-spacing: 1px;
}

.testimonial-dots {
  display: flex;
  justify-content: center;
  gap: 0.6rem;
  margin-top: 2.5rem;
}

.dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.3);
  cursor: pointer;
  transition:
    background var(--transition),
    transform var(--transition);
}

.dot.active {
  background: var(--gold);
  transform: scale(1.3);
}

/* ========== BOOKING SECTION ========== */
.booking {
  background: var(--cream-dark);
  padding: 6rem 5%;
}

.booking-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: start;
  max-width: 1100px;
  margin: 0 auto;
}

.booking-info .section-header {
  text-align: left;
  margin-bottom: 2.5rem;
}
.booking-info .section-divider {
  justify-content: flex-start;
}

.booking-details {
  list-style: none;
  margin-top: 1.5rem;
}

.booking-details li {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 0.8rem 0;
  font-size: 0.9rem;
  color: var(--text-mid);
  border-bottom: 1px dashed rgba(0, 0, 0, 0.1);
}

.booking-details li:last-child {
  border-bottom: none;
}

.booking-details i {
  color: var(--green-mid);
  font-size: 1rem;
  width: 22px;
  text-align: center;
}

.booking-form-card {
  background: var(--white);
  border-radius: 12px;
  padding: 2.5rem;
  box-shadow: 0 8px 40px rgba(0, 0, 0, 0.09);
}

.booking-form-card h3 {
  font-size: 1.8rem;
  color: var(--green-dark);
  margin-bottom: 0.4rem;
}

.booking-form-card p {
  font-size: 0.87rem;
  color: var(--text-light);
  margin-bottom: 2rem;
}

.form-group {
  margin-bottom: 1.2rem;
}

.form-group label {
  display: block;
  font-size: 0.78rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--text-mid);
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.85rem 1rem;
  border: 1px solid #e0dbd0;
  border-radius: 6px;
  font-family: "Raleway", sans-serif;
  font-size: 0.9rem;
  color: var(--text-dark);
  background: var(--cream);
  transition:
    border-color var(--transition),
    box-shadow var(--transition);
  outline: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--green-mid);
  box-shadow: 0 0 0 3px rgba(45, 106, 79, 0.12);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.booking-form-card .btn-primary {
  width: 100%;
  padding: 1rem;
  font-size: 0.85rem;
  margin-top: 0.5rem;
}

/* ========== FOOTER ========== */
footer {
  background: #0f1e18;
  color: rgba(255, 255, 255, 0.75);
  padding: 5rem 5% 2rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.8fr 1fr 1fr 1.4fr;
  gap: 3rem;
  max-width: 1200px;
  margin: 0 auto 3rem;
}

.footer-brand .nav-logo {
  margin-bottom: 1.5rem;
}

.footer-brand p {
  font-size: 0.87rem;
  line-height: 1.9;
  max-width: 280px;
  color: rgba(255, 255, 255, 0.6);
}

.footer-social {
  display: flex;
  gap: 0.7rem;
  margin-top: 1.5rem;
}

.footer-social a {
  color: rgba(255, 255, 255, 0.6);
  background: rgba(255, 255, 255, 0.08);
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  transition: all var(--transition);
}

.footer-social a:hover {
  background: var(--gold);
  color: var(--white);
  transform: translateY(-3px);
}

.footer-col h4 {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.3rem;
  color: var(--white);
  margin-bottom: 1.4rem;
}

.footer-col ul {
  list-style: none;
}

.footer-col ul li {
  padding: 0.45rem 0;
  font-size: 0.87rem;
}

.footer-col ul li a {
  color: rgba(255, 255, 255, 0.6);
  transition:
    color var(--transition),
    padding-left var(--transition);
  display: inline-block;
}

.footer-col ul li a:hover {
  color: var(--gold-light);
  padding-left: 4px;
}

.footer-contact li {
  display: flex;
  align-items: flex-start;
  gap: 0.8rem;
  padding: 0.55rem 0;
}

.footer-contact i {
  color: var(--gold);
  font-size: 0.9rem;
  margin-top: 2px;
  flex-shrink: 0;
}

.footer-bottom {
  max-width: 1200px;
  margin: 0 auto;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.4);
}

.footer-bottom a {
  color: rgba(255, 255, 255, 0.4);
  transition: color var(--transition);
}

.footer-bottom a:hover {
  color: var(--gold-light);
}

/* ========== FLOATING CALL / WHATSAPP ========== */
.float-actions {
  position: fixed;
  left: 1.5rem;
  bottom: 2rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  z-index: 900;
}

.float-btn {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0 1.1rem 0 0.85rem;
  height: 48px;
  border-radius: 50px;
  color: var(--white);
  font-size: 1rem;
  font-family: var(--font-body);
  font-weight: 600;
  text-decoration: none;
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.22);
  cursor: pointer;
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease,
    padding 0.3s ease;
  overflow: hidden;
  white-space: nowrap;
}

.float-btn i {
  font-size: 1.15rem;
  flex-shrink: 0;
  width: 24px;
  text-align: center;
}

.float-label {
  font-size: 0.82rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  transition:
    max-width 0.35s ease,
    opacity 0.3s ease;
  max-width: 0;
  opacity: 0;
  overflow: hidden;
}

.float-btn:hover .float-label {
  max-width: 100px;
  opacity: 1;
}

.float-call {
  background: linear-gradient(135deg, #2d6a4f, #1b3a2f);
}

.float-whatsapp {
  background: linear-gradient(135deg, #25d366, #128c4d);
}

.float-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.28);
}

.float-call:hover {
  background: linear-gradient(135deg, #1b3a2f, #0e2318);
}

.float-whatsapp:hover {
  background: linear-gradient(135deg, #128c4d, #075e38);
}

/* pulse ring on call button */
.float-call::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 50px;
  border: 2px solid rgba(45, 106, 79, 0.6);
  animation: floatPulse 2s ease-out infinite;
  pointer-events: none;
}

@keyframes floatPulse {
  0% {
    transform: scale(1);
    opacity: 0.8;
  }
  70% {
    transform: scale(1.18);
    opacity: 0;
  }
  100% {
    transform: scale(1.18);
    opacity: 0;
  }
}

@media (max-width: 480px) {
  .float-btn {
    width: 48px;
    padding: 0;
    justify-content: center;
    border-radius: 50%;
  }
  .float-label {
    display: none;
  }
  .float-call::after {
    border-radius: 50%;
  }
}

/* ========== BACK TO TOP ========== */
.back-to-top {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  background: var(--gold);
  color: var(--white);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  cursor: pointer;
  opacity: 0;
  transform: translateY(20px);
  transition: all var(--transition);
  z-index: 900;
}

.back-to-top.visible {
  opacity: 1;
  transform: translateY(0);
}
.back-to-top:hover {
  background: var(--green-dark);
  transform: translateY(-3px);
}

/* ========== ENQUIRY MODAL ========== */
.enq-overlay {
  position: fixed;
  inset: 0;
  z-index: 3000;
  background: rgba(0, 0, 0, 0.65);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.enq-overlay.open {
  opacity: 1;
  pointer-events: all;
}

.enq-box {
  background: var(--white);
  border-radius: 14px;
  overflow: hidden;
  width: 100%;
  max-width: 420px;
  position: relative;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.35);
  transform: translateY(30px);
  transition: transform 0.3s ease;
}

.enq-overlay.open .enq-box {
  transform: translateY(0);
}

.enq-close {
  position: absolute;
  top: 0.85rem;
  right: 1rem;
  background: none;
  border: none;
  font-size: 1.6rem;
  color: rgba(255, 255, 255, 0.85);
  cursor: pointer;
  line-height: 1;
  transition: color var(--transition);
  z-index: 1;
}

.enq-close:hover {
  color: var(--gold-light);
}

.enq-inner {
  padding: 2rem 2rem 2.2rem;
}

.enq-header {
  background: linear-gradient(135deg, var(--green-dark), var(--green-mid));
  margin: -2rem -2rem 1.8rem;
  padding: 2rem 2rem 1.5rem;
  text-align: center;
  color: var(--white);
}

.enq-header h2 {
  font-size: 1.7rem;
  font-weight: 400;
  margin-bottom: 0.3rem;
}

.enq-header p {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.82);
  font-style: italic;
}

/* ========== ONLOAD POPUP ========== */
.popup-overlay {
  position: fixed;
  inset: 0;
  z-index: 3000;
  background: rgba(0, 0, 0, 0.65);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  opacity: 0;
  animation: popupFadeIn 0.5s 1.2s ease forwards;
}

.popup-overlay.hidden {
  display: none;
}

.popup-box {
  background: var(--white);
  border-radius: 14px;
  overflow: hidden;
  width: 100%;
  max-width: 420px;
  position: relative;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.35);
  transform: translateY(30px);
  animation: popupSlideUp 0.5s 1.2s ease forwards;
}

.popup-close {
  position: absolute;
  top: 0.85rem;
  right: 1rem;
  background: none;
  border: none;
  font-size: 1.6rem;
  color: rgba(255, 255, 255, 0.85);
  cursor: pointer;
  line-height: 1;
  transition: color var(--transition);
  z-index: 1;
}

.popup-close:hover {
  color: var(--gold-light);
}

.popup-inner {
  padding: 2rem 2rem 2.2rem;
}

.popup-brand {
  background: linear-gradient(135deg, var(--green-dark), var(--green-mid));
  margin: -2rem -2rem 1.8rem;
  padding: 2rem 2rem 1.5rem;
  text-align: center;
  color: var(--white);
}

.popup-brand h2 {
  font-size: 1.7rem;
  font-weight: 400;
  margin-bottom: 0.3rem;
}

.popup-brand p {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.75);
}

.popup-form {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.popup-input {
  width: 100%;
  padding: 0.8rem 1rem;
  border: 1px solid #e0dbd0;
  border-radius: 6px;
  font-family: "Raleway", sans-serif;
  font-size: 0.9rem;
  color: var(--text-dark);
  background: var(--cream);
  outline: none;
  transition:
    border-color var(--transition),
    box-shadow var(--transition);
}

.popup-input:focus {
  border-color: var(--green-mid);
  box-shadow: 0 0 0 3px rgba(45, 106, 79, 0.12);
}

.popup-submit {
  width: 100%;
  padding: 0.9rem;
  background: var(--green-dark);
  color: var(--white);
  border: none;
  border-radius: 30px;
  font-family: "Raleway", sans-serif;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  cursor: pointer;
  transition:
    background var(--transition),
    transform var(--transition);
  margin-top: 0.3rem;
}

.popup-submit:hover {
  background: var(--gold);
  transform: translateY(-2px);
}

@keyframes popupFadeIn {
  to {
    opacity: 1;
  }
}

@keyframes popupSlideUp {
  to {
    transform: translateY(0);
  }
}

/* ========== ANIMATIONS ========== */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes bounce {
  0%,
  100% {
    transform: translateX(-50%) translateY(0);
  }
  50% {
    transform: translateX(-50%) translateY(8px);
  }
}

@keyframes marquee {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

.reveal {
  opacity: 0;
  transform: translateY(35px);
  transition:
    opacity 0.7s ease,
    transform 0.7s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ========== MOBILE NAV ========== */
@media (max-width: 900px) {
  .hamburger {
    display: flex;
  }

  .nav-links {
    position: fixed;
    top: 0;
    right: 0;
    width: 280px;
    height: 100vh;
    background: var(--green-dark);
    flex-direction: column;
    justify-content: center;
    padding: 2rem;
    gap: 1.5rem;
    transform: translateX(100%);
    transition: transform var(--transition);
    z-index: 999;
  }

  .nav-links.open {
    transform: translateX(0);
  }

  .nav-links a {
    font-size: 1rem;
    letter-spacing: 2px;
  }
}

/* ========== RESPONSIVE ========== */
@media (max-width: 1100px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .team-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 850px) {
  .about-grid,
  .experience-inner,
  .booking-inner {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 180px;
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
  .about-images {
    display: none;
  }
  .form-row {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 600px) {
  section {
    padding: 4rem 5%;
  }
  .services-grid {
    grid-template-columns: 1fr;
  }
  .team-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 150px;
  }
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
}
