/* =====================================================
   GLORIOUS MASSAGE SPA - Complete Redesign
   ===================================================== */

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

/* ── Reset & Base ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --green-dark:   #1b3a2d;
  --green-mid:    #2d6a4f;
  --green-light:  #40916c;
  --gold:         #c9a55a;
  --gold-light:   #e2c07e;
  --black:        #0d0d0d;
  --charcoal:     #1a1a1a;
  --cream:        #f8f4ee;
  --cream-dark:   #ede8df;
  --white:        #ffffff;
  --text-muted:   #6b6b6b;
  --ff-heading:   'Cormorant Garamond', Georgia, serif;
  --ff-body:      'Jost', sans-serif;
  --shadow-sm:    0 2px 12px rgba(0,0,0,.08);
  --shadow-md:    0 8px 32px rgba(0,0,0,.12);
  --shadow-lg:    0 20px 60px rgba(0,0,0,.18);
  --transition:   .35s cubic-bezier(.4,0,.2,1);
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--ff-body);
  font-size: 16px;
  line-height: 1.7;
  color: var(--charcoal);
  background: var(--white);
  overflow-x: hidden;
}

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

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.section-label {
  display: inline-block;
  font-family: var(--ff-body);
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 14px;
}

.section-title {
  font-family: var(--ff-heading);
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 600;
  line-height: 1.15;
  color: var(--green-dark);
}

.section-title span { color: var(--gold); font-style: italic; }

.section-desc {
  color: var(--text-muted);
  font-size: 1rem;
  max-width: 560px;
  margin-top: 14px;
  line-height: 1.8;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 34px;
  border-radius: 50px;
  font-family: var(--ff-body);
  font-size: .9rem;
  font-weight: 500;
  letter-spacing: .06em;
  cursor: pointer;
  border: none;
  transition: var(--transition);
}

.btn-primary {
  background: var(--gold);
  color: var(--white);
  box-shadow: 0 4px 20px rgba(201,165,90,.4);
}
.btn-primary:hover {
  background: #b8923e;
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(201,165,90,.5);
}

.btn-outline {
  background: transparent;
  color: var(--green-dark);
  border: 2px solid var(--green-mid);
}
.btn-outline:hover {
  background: var(--green-mid);
  color: var(--white);
  border-color: var(--green-mid);
  transform: translateY(-2px);
}

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

.divider {
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  border-radius: 2px;
  margin: 16px 0 24px;
}

/* ── Preloader ── */
#preloader {
  position: fixed; inset: 0;
  background: var(--green-dark);
  z-index: 9999;
  display: flex; align-items: center; justify-content: center;
  transition: opacity .6s, visibility .6s;
}
#preloader.hidden { opacity: 0; visibility: hidden; }
.preloader-inner {
  text-align: center;
  color: var(--cream);
}
.preloader-inner svg { width: 60px; height: 60px; animation: spin 1.2s linear infinite; }
@keyframes spin { to { transform: rotate(360deg); } }

/* ── Top Bar ── */
.top-bar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1001;
  background: #c9a55a;
  height: 38px;
  display: flex;
  align-items: center;
}
.top-bar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  width: 100%;
}
.top-bar-left {
  display: flex;
  align-items: center;
  gap: 24px;
}
.top-bar-link {
  display: flex;
  align-items: center;
  gap: 6px;
  color: rgba(27,58,45,.9);
  font-size: 12.5px;
  font-family: var(--ff-body);
  letter-spacing: .02em;
  transition: color var(--transition);
}
.top-bar-link:hover { color: var(--green-dark); }
.top-bar-link svg { width: 13px; height: 13px; flex-shrink: 0; }
.top-bar-right {
  display: flex;
  align-items: center;
  gap: 14px;
}
.top-bar-social {
  display: flex;
  align-items: center;
  color: rgba(27,58,45,.8);
  transition: color var(--transition);
}
.top-bar-social:hover { color: var(--green-dark); }
.top-bar-social svg { width: 15px; height: 15px; }
@media (max-width: 900px) {
  .top-bar-timing { display: none; }
}
@media (max-width: 640px) {
  .top-bar-email { display: none; }
}
@media (max-width: 400px) {
  .top-bar-link span { display: none; }
  .top-bar-link svg { width: 15px; height: 15px; }
}

/* ── Header ── */
#header {
  position: fixed;
  top: 38px; left: 0; right: 0;
  z-index: 1000;
  padding: 0 0;
  transition: background var(--transition), box-shadow var(--transition), padding var(--transition);
}
#header.scrolled {
  background: rgba(27,58,45,.97);
  backdrop-filter: blur(12px);
  box-shadow: 0 4px 30px rgba(0,0,0,.3);
}
#header .header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
  padding: 18px 24px;
}
#header .logo img {
  height: 64px;
  width: auto;
}
#header nav ul {
  display: flex;
  align-items: center;
  gap: 36px;
}
#header nav a {
  font-size: .88rem;
  font-weight: 500;
  letter-spacing: .08em;
  color: rgba(255,255,255,.88);
  position: relative;
  padding: 4px 0;
  transition: color var(--transition);
}
#header nav a::after {
  content: '';
  position: absolute;
  bottom: -2px; left: 0;
  width: 0; height: 2px;
  background: var(--gold);
  transition: width var(--transition);
}
#header nav a:hover,
#header nav a.active { color: var(--gold); }
#header nav a:hover::after,
#header nav a.active::after { width: 100%; }

.header-cta {
  padding: 8px 20px !important;
  background: #25d366;
  color: var(--white) !important;
  border-radius: 50px;
  font-size: .82rem !important;
  font-weight: 600 !important;
  letter-spacing: .04em !important;
  box-shadow: 0 2px 10px rgba(37,211,102,.3);
  transition: var(--transition) !important;
  line-height: 1.3 !important;
}
.header-cta:hover {
  background: #1ebe5a !important;
  color: var(--white) !important;
  box-shadow: 0 4px 16px rgba(37,211,102,.4);
  transform: translateY(-1px) !important;
}
.header-cta::after { display: none !important; }

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
}
.hamburger span {
  width: 26px; height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: var(--transition);
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile Nav */
.mobile-nav {
  display: none;
  position: fixed;
  inset: 38px 0 0 0;
  background: var(--green-dark);
  z-index: 999;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 32px;
  opacity: 0;
  visibility: hidden;
  transition: opacity var(--transition), visibility var(--transition);
}
.mobile-nav.open { display: flex; opacity: 1; visibility: visible; }
.mobile-nav a {
  font-family: var(--ff-heading);
  font-size: 2rem;
  color: var(--cream);
  letter-spacing: .06em;
  transition: color var(--transition);
}
.mobile-nav a:hover,
.mobile-nav a.active { color: var(--gold); }

/* ── Hero ── */
#hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('https://gloriousmassagespa.in/wp-content/uploads/2024/12/taking-pleasure-PY74FWE-1.jpg');
  background-size: cover;
  background-position: center;
  transform: scale(1.06);
  transition: transform 8s ease;
}
#hero.loaded .hero-bg { transform: scale(1); }

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(13,13,13,.88) 0%,
    rgba(27,58,45,.72) 60%,
    rgba(13,13,13,.55) 100%
  );
}

.hero-decor-leaf {
  position: absolute;
  opacity: .18;
  pointer-events: none;
}
.hero-decor-leaf.tl {
  top: -40px; left: -40px;
  width: 380px;
  transform: rotate(-20deg);
}
.hero-decor-leaf.br {
  bottom: -60px; right: -60px;
  width: 420px;
  transform: rotate(160deg);
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 700px;
  padding: 140px 24px 80px;
  margin: 0 auto;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(201,165,90,.18);
  border: 1px solid rgba(201,165,90,.4);
  color: var(--gold-light);
  padding: 8px 20px;
  border-radius: 50px;
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .2em;
  text-transform: uppercase;
  margin-bottom: 28px;
  backdrop-filter: blur(8px);
}
.hero-badge .dot {
  width: 6px; height: 6px;
  background: var(--gold);
  border-radius: 50%;
  animation: pulse-dot 2s ease-in-out infinite;
}
@keyframes pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%       { opacity: .5; transform: scale(1.4); }
}

.hero-title {
  font-family: var(--ff-heading);
  font-size: clamp(2.8rem, 7vw, 5.6rem);
  font-weight: 600;
  color: var(--white);
  line-height: 1.05;
  margin-bottom: 24px;
}
.hero-title em { color: var(--gold); font-style: italic; }

.hero-subtitle {
  font-size: 1.05rem;
  color: rgba(255,255,255,.8);
  max-width: 520px;
  line-height: 1.85;
  margin-bottom: 40px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
}

.hero-scroll {
  position: absolute;
  bottom: 40px; left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,.6);
  font-size: .72rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  cursor: pointer;
  animation: float 2.5s ease-in-out infinite;
}
.hero-scroll .scroll-line {
  width: 1px; height: 50px;
  background: linear-gradient(to bottom, rgba(255,255,255,.6), transparent);
}
@keyframes float {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50%       { transform: translateX(-50%) translateY(8px); }
}

/* ── Feature Strip ── */
#features {
  background: var(--green-dark);
  padding: 0;
}
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}
.feature-card {
  padding: 48px 40px;
  display: flex;
  align-items: flex-start;
  gap: 20px;
  border-right: 1px solid rgba(255,255,255,.08);
  transition: background var(--transition);
}
.feature-card:last-child { border-right: none; }
.feature-card:hover { background: rgba(255,255,255,.04); }

.feature-icon {
  width: 56px; height: 56px;
  min-width: 56px;
  border-radius: 14px;
  background: rgba(201,165,90,.15);
  border: 1px solid rgba(201,165,90,.3);
  display: flex; align-items: center; justify-content: center;
}
.feature-icon img { width: 30px; height: 30px; filter: brightness(0) saturate(100%) invert(80%) sepia(30%) saturate(600%) hue-rotate(10deg) brightness(95%); }
.feature-text h3 {
  font-family: var(--ff-heading);
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 6px;
}
.feature-text p {
  font-size: .88rem;
  color: rgba(255,255,255,.58);
  line-height: 1.7;
}

/* ── About ── */
#about {
  padding: 120px 0;
  background: var(--white);
  overflow: hidden;
}
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.about-images {
  position: relative;
}
.about-img-main {
  border-radius: 24px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  aspect-ratio: 4/5;
}
.about-img-main img { width: 100%; height: 100%; object-fit: cover; }

.about-img-accent {
  position: absolute;
  bottom: -30px; right: -30px;
  width: 200px;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 6px solid var(--white);
  aspect-ratio: 1;
}
.about-img-accent img { width: 100%; height: 100%; object-fit: cover; }

.about-badge {
  position: absolute;
  top: 30px; right: -20px;
  background: var(--gold);
  color: var(--white);
  padding: 18px 24px;
  border-radius: 16px;
  text-align: center;
  box-shadow: 0 8px 30px rgba(201,165,90,.4);
  z-index: 2;
}
.about-badge .badge-num {
  font-family: var(--ff-heading);
  font-size: 2.8rem;
  font-weight: 700;
  line-height: 1;
  display: block;
}
.about-badge .badge-text {
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  opacity: .9;
}

.about-content { padding-right: 20px; }
.about-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin: 24px 0 36px;
}
.about-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: .95rem;
  color: var(--text-muted);
}
.about-list li::before {
  content: '';
  width: 20px; height: 20px;
  min-width: 20px;
  border-radius: 50%;
  background: rgba(45,106,79,.12);
  border: 2px solid var(--green-mid);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12'%3E%3Cpath d='M2 6l3 3 5-5' stroke='%232d6a4f' stroke-width='1.5' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 12px;
  margin-top: 2px;
}

/* ── Stats ── */
#stats {
  padding: 80px 0;
  background: linear-gradient(135deg, var(--green-dark) 0%, #0d2818 100%);
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
}
.stat-item {
  text-align: center;
  padding: 48px 24px;
  position: relative;
}
.stat-item::after {
  content: '';
  position: absolute;
  right: 0; top: 25%; bottom: 25%;
  width: 1px;
  background: rgba(255,255,255,.1);
}
.stat-item:last-child::after { display: none; }
.stat-num {
  font-family: var(--ff-heading);
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
  display: block;
}
.stat-label {
  display: block;
  font-size: .82rem;
  font-weight: 500;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: rgba(255,255,255,.6);
  margin-top: 10px;
}

/* ── Services ── */
#services {
  padding: 120px 0;
  background: var(--cream);
}
.services-header {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 64px;
}
.services-header .divider { margin: 16px auto 24px; }
.services-header .section-desc { margin: 0 auto; text-align: center; }

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.service-card {
  background: var(--white);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition), box-shadow var(--transition);
  cursor: default;
}
.service-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}
.service-card-img {
  aspect-ratio: 4/3;
  overflow: hidden;
}
.service-card-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .6s ease;
}
.service-card:hover .service-card-img img { transform: scale(1.07); }

.service-card-body {
  padding: 28px 28px 32px;
}
.service-card-body h3 {
  font-family: var(--ff-heading);
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--green-dark);
  margin-bottom: 10px;
}
.service-card-body p {
  font-size: .9rem;
  color: var(--text-muted);
  line-height: 1.75;
  margin-bottom: 20px;
}
.svc-duration {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: .8rem;
  color: var(--gold);
  font-weight: 600;
  margin-bottom: 10px;
}
.service-tag {
  display: inline-block;
  padding: 5px 14px;
  background: rgba(45,106,79,.08);
  color: var(--green-mid);
  border-radius: 50px;
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.service-card-actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 4px;
}
.service-btns {
  display: flex;
  gap: 8px;
}
.svc-btn-detail, .svc-btn-book {
  display: inline-block;
  padding: 8px 16px;
  border-radius: 50px;
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .06em;
  transition: var(--transition);
  white-space: nowrap;
}
.svc-btn-detail {
  background: transparent;
  border: 1.5px solid var(--green-mid);
  color: var(--green-mid);
}
.svc-btn-detail:hover {
  background: var(--green-mid);
  color: var(--white);
}
.svc-btn-book {
  background: var(--gold);
  color: var(--white);
  border: 1.5px solid var(--gold);
  box-shadow: 0 3px 12px rgba(201,165,90,.35);
}
.svc-btn-book:hover {
  background: #b8923e;
  border-color: #b8923e;
  transform: translateY(-1px);
  box-shadow: 0 6px 18px rgba(201,165,90,.45);
}

/* ── Specialties ── */
#specialties {
  padding: 120px 0;
  background: var(--white);
  overflow: hidden;
}
.specialties-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.specialties-image {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  aspect-ratio: 4/5;
  box-shadow: var(--shadow-lg);
}
.specialties-image img { width: 100%; height: 100%; object-fit: cover; }
.specialties-image-badge {
  position: absolute;
  bottom: 30px; left: 30px;
  background: rgba(27,58,45,.92);
  backdrop-filter: blur(12px);
  color: var(--cream);
  padding: 20px 28px;
  border-radius: 16px;
  border: 1px solid rgba(201,165,90,.3);
}
.specialties-image-badge .badge-icon { font-size: 2rem; margin-bottom: 6px; }
.specialties-image-badge p { font-size: .82rem; opacity: .8; }

.specialty-items { display: flex; flex-direction: column; gap: 24px; }
.specialty-item {
  display: flex;
  gap: 20px;
  padding: 24px;
  border-radius: 16px;
  border: 1px solid var(--cream-dark);
  transition: var(--transition);
}
.specialty-item:hover {
  border-color: var(--gold);
  box-shadow: var(--shadow-sm);
  transform: translateX(6px);
}
.specialty-num {
  font-family: var(--ff-heading);
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--cream-dark);
  line-height: 1;
  min-width: 50px;
  transition: color var(--transition);
}
.specialty-item:hover .specialty-num { color: var(--gold); }
.specialty-item h4 {
  font-family: var(--ff-heading);
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--green-dark);
  margin-bottom: 6px;
}
.specialty-item p { font-size: .88rem; color: var(--text-muted); line-height: 1.7; }

/* ── Gallery ── */
#gallery {
  padding: 120px 0;
  background: var(--cream);
}
.gallery-header {
  text-align: center;
  max-width: 500px;
  margin: 0 auto 56px;
}
.gallery-header .divider { margin: 16px auto 24px; }

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-template-rows: auto;
  gap: 16px;
}
.gallery-item {
  border-radius: 16px;
  overflow: hidden;
  cursor: pointer;
  position: relative;
}
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s ease; }
.gallery-item:hover img { transform: scale(1.06); }
.gallery-item::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(27,58,45,.3);
  opacity: 0;
  transition: opacity var(--transition);
}
.gallery-item:hover::after { opacity: 1; }

.gallery-item:nth-child(1) { grid-column: span 6; aspect-ratio: 4/3; }
.gallery-item:nth-child(2) { grid-column: span 3; aspect-ratio: 3/4; }
.gallery-item:nth-child(3) { grid-column: span 3; aspect-ratio: 3/4; }
.gallery-item:nth-child(4) { grid-column: span 4; aspect-ratio: 4/3; }
.gallery-item:nth-child(5) { grid-column: span 4; aspect-ratio: 4/3; }
.gallery-item:nth-child(6) { grid-column: span 4; aspect-ratio: 4/3; }

/* ── Testimonials ── */
#testimonials {
  padding: 100px 0;
  position: relative;
  overflow: hidden;
  background: var(--cream);
}
.testimonials-bg {
  position: absolute;
  inset: 0;
  background-image: url('../images/hero-bg.jpg');
  background-size: cover;
  background-position: center;
  opacity: .07;
}
.testimonials-flower {
  position: absolute;
  pointer-events: none;
  opacity: .25;
}
.testimonials-flower.tr {
  top: -30px; right: -30px;
  width: 320px;
  transform: rotate(20deg);
}
.testimonials-flower.bl {
  bottom: -30px; left: -30px;
  width: 280px;
  transform: rotate(-160deg);
}

.testimonials-header {
  text-align: center;
  position: relative;
  z-index: 2;
  margin-bottom: 14px;
}
.testimonials-logo {
  height: 72px;
  width: auto;
  margin: 0 auto 24px;
  display: block;
}
.testimonials-header h2 {
  font-family: var(--ff-heading);
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 600;
  color: var(--charcoal);
}

/* Slider wrapper */
.testimonials-slider-wrap {
  position: relative;
  z-index: 2;
  overflow: hidden;
  margin-top: 48px;
  padding: 16px 0 32px;
}
.testimonials-track {
  display: flex;
  gap: 24px;
  transition: transform .55s cubic-bezier(.4,0,.2,1);
  will-change: transform;
}

/* Review card */
.review-card {
  background: var(--white);
  border-radius: 18px;
  padding: 28px;
  box-shadow: 0 4px 24px rgba(0,0,0,.08);
  min-width: calc(50% - 12px);
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
  border: 1px solid rgba(0,0,0,.05);
  transition: transform var(--transition), box-shadow var(--transition);
}
.review-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0,0,0,.13);
}

.review-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.review-stars {
  display: flex;
  align-items: center;
  gap: 3px;
}
.review-stars svg { width: 18px; height: 18px; }
.star-filled { fill: #fbbc04; }

.review-verified {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: .72rem;
  font-weight: 600;
  color: #5f6368;
}
.review-verified svg { width: 16px; height: 16px; }

.google-logo svg { width: 22px; height: 22px; }

.review-text {
  font-size: .93rem;
  color: #3c4043;
  line-height: 1.75;
  flex: 1;
}
.review-read-more {
  color: var(--green-mid);
  font-size: .85rem;
  font-weight: 500;
  cursor: pointer;
  display: inline-block;
  margin-top: 4px;
  transition: color var(--transition);
}
.review-read-more:hover { color: var(--gold); }

.review-card-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid var(--cream-dark);
  padding-top: 14px;
}
.review-author {
  display: flex;
  align-items: center;
  gap: 12px;
}
.review-avatar {
  width: 42px; height: 42px;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem;
  font-weight: 700;
  color: var(--white);
}
.review-avatar img { width: 100%; height: 100%; object-fit: cover; }
.review-author-name {
  font-weight: 600;
  font-size: .9rem;
  color: var(--charcoal);
  display: block;
}
.review-date {
  font-size: .75rem;
  color: var(--text-muted);
}

/* Slider controls */
.testimonials-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-top: 32px;
  position: relative;
  z-index: 2;
}
.slider-arrow {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--white);
  border: 1.5px solid var(--cream-dark);
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  transition: var(--transition);
  box-shadow: var(--shadow-sm);
  color: var(--charcoal);
}
.slider-arrow:hover {
  background: var(--green-dark);
  border-color: var(--green-dark);
  color: var(--white);
  box-shadow: var(--shadow-md);
}
.slider-arrow svg { width: 18px; height: 18px; pointer-events: none; }

.slider-dots {
  display: flex;
  gap: 8px;
}
.slider-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--cream-dark);
  cursor: pointer;
  transition: var(--transition);
  border: none;
  padding: 0;
}
.slider-dot.active {
  background: var(--gold);
  width: 24px;
  border-radius: 4px;
}

.trustindex-badge {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 28px;
  font-size: .78rem;
  color: var(--text-muted);
  position: relative;
  z-index: 2;
}
.trustindex-badge a {
  color: var(--green-mid);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: color var(--transition);
}
.trustindex-badge a:hover { color: var(--gold); }
.trustindex-badge .ti-shield { font-size: 1rem; }

/* AggregateRating bar */
.rating-summary {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-bottom: 8px;
  flex-wrap: wrap;
}
.rating-number {
  font-family: var(--ff-heading);
  font-size: 3rem;
  font-weight: 700;
  color: var(--green-dark);
  line-height: 1;
}
.rating-right { text-align: left; }
.rating-stars-row {
  display: flex;
  gap: 3px;
  margin-bottom: 4px;
}
.rating-stars-row svg { width: 20px; height: 20px; }
.rating-count {
  font-size: .8rem;
  color: var(--text-muted);
}

/* Mobile */
@media (max-width: 768px) {
  .review-card { min-width: calc(100% - 0px); }
  .testimonials-flower { width: 180px; }
}

/* ── FAQ ── */
#faq {
  padding: 120px 0;
  background: var(--white);
}
.faq-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}
.faq-list { display: flex; flex-direction: column; gap: 12px; }
.faq-item {
  border: 1px solid var(--cream-dark);
  border-radius: 14px;
  overflow: hidden;
  transition: border-color var(--transition), box-shadow var(--transition);
}
.faq-item.open {
  border-color: var(--green-mid);
  box-shadow: var(--shadow-sm);
}
.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 24px;
  cursor: pointer;
  font-weight: 500;
  font-size: .95rem;
  color: var(--charcoal);
  transition: color var(--transition);
}
.faq-item.open .faq-question { color: var(--green-dark); }
.faq-icon {
  width: 28px; height: 28px;
  min-width: 28px;
  border-radius: 50%;
  background: var(--cream);
  display: flex; align-items: center; justify-content: center;
  transition: var(--transition);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--green-mid);
}
.faq-item.open .faq-icon {
  background: var(--green-mid);
  color: var(--white);
  transform: rotate(45deg);
}
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height .4s ease, padding .4s ease;
  padding: 0 24px;
  font-size: .9rem;
  color: var(--text-muted);
  line-height: 1.8;
}
.faq-item.open .faq-answer {
  max-height: 300px;
  padding: 0 24px 22px;
}

/* ── Contact ── */
#contact {
  padding: 120px 0;
  background: linear-gradient(135deg, var(--green-dark), #0a1e14);
  position: relative;
  overflow: hidden;
}
#contact::before {
  content: '';
  position: absolute;
  top: -100px; right: -100px;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(201,165,90,.08) 0%, transparent 70%);
}
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}
.contact-info .section-title { color: var(--white); }
.contact-info .section-desc { color: rgba(255,255,255,.65); }
.contact-info .divider { background: linear-gradient(90deg, var(--gold), var(--gold-light)); }

.contact-items { display: flex; flex-direction: column; gap: 28px; margin-top: 36px; }
.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 18px;
}
.contact-item-icon {
  width: 48px; height: 48px;
  min-width: 48px;
  border-radius: 12px;
  background: rgba(201,165,90,.15);
  border: 1px solid rgba(201,165,90,.3);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem;
}
.contact-item-text h4 {
  font-weight: 600;
  font-size: .85rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 4px;
}
.contact-item-text p,
.contact-item-text a {
  font-size: .95rem;
  color: rgba(255,255,255,.8);
  transition: color var(--transition);
}
.contact-item-text a:hover { color: var(--gold-light); }

.contact-form-wrap {
  background: rgba(255,255,255,.05);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 24px;
  padding: 44px;
}
.contact-form-wrap h3 {
  font-family: var(--ff-heading);
  font-size: 1.6rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 8px;
}
.contact-form-wrap p {
  font-size: .9rem;
  color: rgba(255,255,255,.55);
  margin-bottom: 32px;
}
.form-group { margin-bottom: 18px; }
.form-group label {
  display: block;
  font-size: .8rem;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: rgba(255,255,255,.55);
  margin-bottom: 8px;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 14px 18px;
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 10px;
  color: var(--white);
  font-family: var(--ff-body);
  font-size: .92rem;
  transition: border-color var(--transition), background var(--transition);
  outline: none;
  resize: none;
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: rgba(255,255,255,.3); }
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--gold);
  background: rgba(255,255,255,.1);
}
.form-group select option { background: var(--green-dark); color: var(--white); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }

/* ── Footer ── */
#footer {
  background: var(--black);
  padding: 80px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 64px;
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.footer-brand img {
  height: 56px;
  width: auto;
  margin-bottom: 18px;
}
.footer-brand p {
  font-size: .88rem;
  color: rgba(255,255,255,.5);
  line-height: 1.8;
  max-width: 280px;
}
.footer-social {
  display: flex;
  gap: 12px;
  margin-top: 24px;
}
.social-btn {
  width: 38px; height: 38px;
  border-radius: 10px;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.1);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,.6);
  font-size: 1rem;
  transition: var(--transition);
  cursor: pointer;
}
.social-btn:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--white);
  transform: translateY(-3px);
}

.footer-col h4 {
  font-family: var(--ff-heading);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 12px;
}
.footer-col h4::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 30px; height: 2px;
  background: var(--gold);
  border-radius: 2px;
}
.footer-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-col ul li a {
  font-size: .88rem;
  color: rgba(255,255,255,.5);
  transition: color var(--transition), padding-left var(--transition);
}
.footer-col ul li a:hover { color: var(--gold-light); padding-left: 6px; }

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 14px;
}
.footer-contact-item .fci-icon {
  font-size: .9rem;
  color: var(--gold);
  margin-top: 2px;
}
.footer-contact-item p,
.footer-contact-item a {
  font-size: .86rem;
  color: rgba(255,255,255,.5);
  line-height: 1.6;
  transition: color var(--transition);
}
.footer-contact-item a:hover { color: var(--gold-light); }

.footer-bottom {
  padding: 24px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-bottom p { font-size: .82rem; color: rgba(255,255,255,.35); }
.footer-bottom a { color: var(--gold); transition: color var(--transition); }
.footer-bottom a:hover { color: var(--gold-light); }

/* ── WhatsApp Float ── */
.wa-float {
  position: fixed;
  bottom: 30px; right: 30px;
  z-index: 900;
  width: 58px; height: 58px;
  background: #25d366;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 6px 24px rgba(37,211,102,.4);
  cursor: pointer;
  transition: transform var(--transition), box-shadow var(--transition);
  animation: wa-pulse 3s ease-in-out infinite;
}
.wa-float:hover {
  transform: scale(1.1);
  box-shadow: 0 10px 36px rgba(37,211,102,.55);
  animation: none;
}
.wa-float svg { width: 28px; height: 28px; fill: var(--white); }
@keyframes wa-pulse {
  0%, 100% { box-shadow: 0 6px 24px rgba(37,211,102,.4); }
  50%       { box-shadow: 0 6px 40px rgba(37,211,102,.7); }
}

/* ── Scroll-reveal ── */
.reveal {
  opacity: 0;
  transform: translateY(36px);
  transition: opacity .75s ease, transform .75s ease;
}
.reveal.visible { opacity: 1; transform: none; }
.reveal-left  { opacity: 0; transform: translateX(-48px); transition: opacity .75s ease, transform .75s ease; }
.reveal-right { opacity: 0; transform: translateX(48px);  transition: opacity .75s ease, transform .75s ease; }
.reveal-left.visible,
.reveal-right.visible { opacity: 1; transform: none; }

/* ── Back to top ── */
.back-top {
  position: fixed;
  bottom: 100px; right: 30px;
  z-index: 800;
  width: 44px; height: 44px;
  background: var(--green-dark);
  border: 1px solid rgba(201,165,90,.35);
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  opacity: 0; visibility: hidden;
  transition: var(--transition);
  color: var(--gold);
  font-size: 1rem;
}
.back-top.visible { opacity: 1; visibility: visible; }
.back-top:hover { background: var(--gold); color: var(--white); transform: translateY(-3px); }

/* ── Responsive ── */
@media (max-width: 1024px) {
  .about-grid,
  .specialties-grid,
  .faq-grid,
  .contact-grid { grid-template-columns: 1fr; gap: 56px; }
  .about-images { max-width: 520px; }
  .specialties-image { max-height: 420px; aspect-ratio: unset; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  #header nav { display: none; }
  .hamburger { display: flex; }
  .features-grid { grid-template-columns: 1fr; }
  .feature-card { border-right: none; border-bottom: 1px solid rgba(255,255,255,.08); }
  .feature-card:last-child { border-bottom: none; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .stat-item::after { display: none; }
  .services-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: 1fr 1fr; }
  .gallery-item { grid-column: span 1 !important; aspect-ratio: 1 !important; }
  .footer-grid { grid-template-columns: 1fr; }
  .contact-form-wrap { padding: 28px; }
  .form-row { grid-template-columns: 1fr; }
  .about-img-accent { width: 140px; right: -10px; }
}

@media (max-width: 480px) {
  .stats-grid { grid-template-columns: 1fr; }
  .hero-actions { flex-direction: column; align-items: flex-start; }
  .hero-content { padding-top: 110px; }
}
