/* ==========================================================
   URBANZONE SPACE — Shared Stylesheet
   Colors: Gold #F4A820 · Dark Green #1A3A12 · Green #2B5020
   ========================================================== */

/* ── VARIABLES ──────────────────────────────────────────── */
:root {
  --gold:        #F4A820;
  --gold-light:  #FBBF45;
  --gold-pale:   #FFF5E0;
  --green:       #2B5020;
  --green-dark:  #1A3A12;
  --green-mid:   #3A6B2C;
  --white:       #FFFFFF;
  --off-white:   #F8F8F5;
  --gray-100:    #F3F4F6;
  --gray-200:    #E5E7EB;
  --gray-400:    #9CA3AF;
  --gray-600:    #6B7280;
  --gray-800:    #1F2937;
  --dark:        #111827;
  --radius:      14px;
  --radius-sm:   9px;
  --shadow:      0 4px 24px rgba(0,0,0,.08);
  --shadow-lg:   0 16px 56px rgba(0,0,0,.12);
}

/* ── RESET & BASE ───────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: 'Inter', sans-serif;
  color: var(--dark); background: var(--white);
  overflow-x: hidden; line-height: 1;
}
img { max-width: 100%; height: auto; display: block; }
a   { text-decoration: none; color: inherit; }
ul  { list-style: none; }
button { font-family: inherit; }

/* ── TYPOGRAPHY ─────────────────────────────────────────── */
h1 { font-size: clamp(2.3rem, 5vw, 3.8rem); font-weight: 800; line-height: 1.13; }
h2 { font-size: clamp(1.85rem, 3.5vw, 2.7rem); font-weight: 700; line-height: 1.2; }
h3 { font-size: clamp(1.1rem, 2vw, 1.35rem); font-weight: 600; line-height: 1.35; }
h4 { font-size: 1.05rem; font-weight: 600; }
p  { line-height: 1.78; color: var(--gray-600); }

/* ── UTILITY ────────────────────────────────────────────── */
.container   { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.section-pad { padding: 96px 0; }
.text-center { text-align: center; }
.text-center .section-subtitle { margin: 0 auto; }

.section-tag {
  display: inline-block;
  background: var(--gold-pale); color: var(--gold);
  font-size: .73rem; font-weight: 700;
  letter-spacing: .14em; text-transform: uppercase;
  padding: 6px 18px; border-radius: 100px;
  margin-bottom: 16px;
  border: 1px solid rgba(244,168,32,.3);
}
.section-tag.light { background: rgba(244,168,32,.18); border-color: rgba(244,168,32,.35); }
.section-title    { color: var(--green-dark); margin-bottom: 14px; }
.section-title.white { color: var(--white); }
.section-subtitle { font-size: 1.03rem; color: var(--gray-600); max-width: 560px; line-height: 1.75; }
.section-subtitle.white { color: rgba(255,255,255,.62); }

/* ── BUTTONS ────────────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; gap: 9px;
  padding: 13px 26px; border-radius: var(--radius-sm);
  font-size: .9rem; font-weight: 600; cursor: pointer;
  transition: all .25s; border: 2px solid transparent;
}
.btn-primary  { background: var(--gold); color: var(--green-dark); border-color: var(--gold); }
.btn-primary:hover  { background: var(--gold-light); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(244,168,32,.35); }
.btn-green    { background: var(--green); color: var(--white); border-color: var(--green); }
.btn-green:hover    { background: var(--green-mid); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(43,80,32,.32); }
.btn-outline-white  { background: transparent; color: var(--white); border-color: rgba(255,255,255,.55); }
.btn-outline-white:hover { background: rgba(255,255,255,.1); border-color: var(--white); }
.btn-outline-green  { background: transparent; color: var(--green); border-color: var(--green); }
.btn-outline-green:hover { background: var(--green); color: var(--white); }

/* ── NAVBAR ─────────────────────────────────────────────── */
#navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  padding: 18px 0; transition: all .35s ease;
}
/* Wider container just for the navbar so 7 links + CTAs don't overlap */
#navbar > .container {
  max-width: 1440px;
  padding: 0 32px;
}
#navbar.scrolled {
  background: rgba(255,255,255,.98);
  backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px);
  padding: 10px 0;
  box-shadow: 0 4px 32px rgba(0,0,0,.08);
  border-bottom: 1px solid rgba(244,168,32,.18);
}
#navbar.solid {
  background: var(--white); padding: 12px 0;
  box-shadow: 0 4px 32px rgba(0,0,0,.06);
  border-bottom: 1px solid rgba(244,168,32,.18);
}
.nav-inner { display: flex; align-items: center; justify-content: space-between; gap: 20px; }
.nav-logo { display: flex; align-items: center; transition: transform .25s; }
.nav-logo:hover { transform: scale(1.02); }
.nav-logo img {
  height: 64px; width: auto;
  transition: height .25s, filter .3s ease;
  /* On dark hero (transparent navbar) make the whole logo white so the
     dark-green text is visible. Restored to natural colors on scroll/solid. */
  filter: brightness(0) invert(1);
}
#navbar.scrolled .nav-logo img,
#navbar.solid .nav-logo img {
  height: 54px;
  filter: none;
}

.nav-links { display: flex; align-items: center; gap: 2px; flex-wrap: nowrap; }
.nav-links a {
  font-size: .85rem; font-weight: 500;
  color: rgba(255,255,255,.92);
  transition: all .25s;
  white-space: nowrap;
  padding: 9px 13px;
  border-radius: 100px;
  position: relative;
}
.nav-links a::after {
  content: ''; position: absolute; bottom: 2px; left: 50%; transform: translateX(-50%);
  width: 0; height: 2px; background: var(--gold);
  transition: width .3s; border-radius: 2px;
}
.nav-links a:hover { color: var(--gold); }
.nav-links a:hover::after { width: 18px; }
.nav-links a.active {
  color: var(--gold); font-weight: 600;
}
.nav-links a.active::after { width: 18px; }
#navbar.scrolled .nav-links a,
#navbar.solid .nav-links a { color: var(--gray-800); font-weight: 500; }
#navbar.scrolled .nav-links a:hover,
#navbar.solid .nav-links a:hover,
#navbar.scrolled .nav-links a.active,
#navbar.solid .nav-links a.active { color: var(--gold); }

.nav-cta { display: flex; align-items: center; gap: 10px; }
.btn-tel {
  padding: 10px 18px; border-radius: 100px; font-size: .82rem; font-weight: 600;
  border: 1.5px solid rgba(255,255,255,.4); color: var(--white);
  transition: all .25s; display: inline-flex; align-items: center; gap: 8px;
}
.btn-tel i { color: var(--gold); font-size: .8rem; }
.btn-tel:hover { background: rgba(255,255,255,.12); border-color: var(--gold); transform: translateY(-1px); }
#navbar.scrolled .btn-tel,
#navbar.solid .btn-tel { border-color: var(--green); color: var(--green); }
#navbar.scrolled .btn-tel:hover,
#navbar.solid .btn-tel:hover { background: var(--green); color: var(--white); }
#navbar.scrolled .btn-tel i,
#navbar.solid .btn-tel i { color: var(--gold); }

.btn-book {
  padding: 11px 22px; border-radius: 100px;
  font-size: .82rem; font-weight: 700; letter-spacing: .01em;
  background: linear-gradient(135deg, var(--gold) 0%, #E8920A 100%);
  color: var(--green-dark);
  transition: all .25s; position: relative; overflow: hidden;
  box-shadow: 0 6px 22px rgba(244,168,32,.35);
  display: inline-flex; align-items: center; gap: 8px;
}
.btn-book::before {
  content: ''; position: absolute; top: 0; left: -100%; width: 100%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.45), transparent);
  transition: left .55s ease;
}
.btn-book:hover { transform: translateY(-2px); box-shadow: 0 10px 28px rgba(244,168,32,.5); }
.btn-book:hover::before { left: 100%; }

/* Hamburger */
.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 4px; }
.hamburger span { display: block; width: 24px; height: 2px; background: white; border-radius: 2px; transition: all .3s; }
#navbar.scrolled .hamburger span,
#navbar.solid .hamburger span { background: var(--dark); }
.hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(5px,5px); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px,-5px); }

/* Mobile Menu */
#mobileMenu {
  display: none; position: fixed; inset: 0; z-index: 999;
  background: var(--white); flex-direction: column;
  padding: 94px 32px 44px; overflow-y: auto; gap: 0;
}
#mobileMenu.open { display: flex; }
#mobileMenu a {
  padding: 15px 0; border-bottom: 1px solid var(--gray-200);
  font-size: 1.08rem; font-weight: 500; color: var(--dark);
  display: flex; align-items: center; justify-content: space-between;
}
#mobileMenu a i { color: var(--gold); font-size: .78rem; }
#mobileMenu a.active { color: var(--gold); }
#mobileMenu .mob-book {
  margin-top: 20px; background: var(--gold); color: var(--green-dark);
  border-radius: 10px; justify-content: center; font-weight: 700;
  padding: 14px; border-bottom: none;
}
#mobileMenu .mob-tel {
  background: var(--green); color: var(--white); border-radius: 10px;
  justify-content: center; padding: 13px; border-bottom: none; margin-top: 10px;
}

/* ── PAGE BANNER (inner pages) ──────────────────────────── */
.page-banner {
  background: var(--green-dark); padding: 140px 0 72px;
  position: relative; overflow: hidden;
}
.page-banner::before {
  content: ''; position: absolute; inset: 0;
  background-image: url('https://urbanzonespace.com/wp-content/uploads/2026/03/image-4.webp');
  background-size: cover; background-position: center; opacity: .12;
}
.page-banner::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(26,58,18,.92) 0%, rgba(43,80,32,.82) 100%);
}
.page-banner-inner { position: relative; z-index: 2; }
.page-banner h1 { color: var(--white); margin-bottom: 14px; }
.page-banner p  { color: rgba(255,255,255,.68); font-size: 1.05rem; max-width: 540px; }
.breadcrumb {
  display: flex; align-items: center; gap: 8px;
  font-size: .8rem; color: rgba(255,255,255,.5); margin-bottom: 20px;
}
.breadcrumb a { color: var(--gold); }
.breadcrumb i { font-size: .65rem; }

/* Banner decoration blob */
.banner-blob {
  position: absolute; border-radius: 50%;
  background: radial-gradient(circle, rgba(244,168,32,.14) 0%, transparent 70%);
  pointer-events: none; z-index: 1;
}
.banner-blob-1 { width: 500px; height: 500px; top: -150px; right: -100px; }
.banner-blob-2 { width: 300px; height: 300px; bottom: -100px; left: -50px; }

/* ── TRUST BAR ──────────────────────────────────────────── */
.trust-bar { background: var(--gold); padding: 15px 0; overflow: hidden; }
.trust-track {
  display: flex; gap: 52px; white-space: nowrap;
  animation: marqueeRoll 22s linear infinite;
}
.trust-item {
  display: flex; align-items: center; gap: 9px; flex-shrink: 0;
  font-size: .8rem; font-weight: 700; color: var(--green-dark);
  text-transform: uppercase; letter-spacing: .09em;
}
.trust-item i { font-size: .9rem; }
@keyframes marqueeRoll { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }

/* ── HERO (Home) ────────────────────────────────────────── */
#hero {
  position: relative; min-height: 100vh;
  padding: 130px 0 100px;
  display: flex; align-items: center;
  background: var(--green-dark); overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0;
  background-image: url('https://urbanzonespace.com/wp-content/uploads/2026/03/image-4.webp');
  background-size: cover; background-position: center;
  opacity: .15;
}
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(120deg, rgba(15,35,8,.96) 0%, rgba(43,80,32,.82) 55%, rgba(26,58,18,.95) 100%);
}
/* Subtle dot pattern */
.hero-pattern {
  position: absolute; inset: 0; pointer-events: none;
  background-image: radial-gradient(rgba(244,168,32,.08) 1px, transparent 1px);
  background-size: 32px 32px;
  mask-image: radial-gradient(ellipse at center, black 30%, transparent 75%);
  -webkit-mask-image: radial-gradient(ellipse at center, black 30%, transparent 75%);
}
.hero-blob {
  position: absolute; border-radius: 50%;
  background: radial-gradient(circle, rgba(244,168,32,.15) 0%, transparent 70%);
  pointer-events: none;
  animation: floatBlob 18s ease-in-out infinite;
}
.hero-blob-1 { width: 720px; height: 720px; top: -260px; right: -200px; }
.hero-blob-2 { width: 420px; height: 420px; bottom: -120px; left: -120px; animation-delay: -9s; }
@keyframes floatBlob {
  0%, 100% { transform: translate(0, 0); }
  50%      { transform: translate(30px, -20px); }
}

/* Hero split layout */
.hero-grid {
  display: grid; grid-template-columns: 1.15fr 1fr; gap: 56px; align-items: center;
}
.hero-content { position: relative; z-index: 2; }
.hero-visual  { position: relative; z-index: 2; }

.hero-badge {
  display: inline-flex; align-items: center; gap: 10px;
  background: linear-gradient(135deg, rgba(244,168,32,.18), rgba(244,168,32,.08));
  border: 1px solid rgba(244,168,32,.45);
  color: var(--gold); font-size: .76rem; font-weight: 700;
  letter-spacing: .12em; text-transform: uppercase;
  padding: 9px 22px; border-radius: 100px; margin-bottom: 28px;
  box-shadow: 0 4px 24px rgba(244,168,32,.12);
}
.badge-dot {
  width: 8px; height: 8px; border-radius: 50%; background: var(--gold);
  animation: pulseDot 2s infinite;
  box-shadow: 0 0 12px var(--gold);
}
@keyframes pulseDot {
  0%,100% { opacity: 1; transform: scale(1); }
  50%     { opacity: .5; transform: scale(.75); }
}

.hero-title {
  color: var(--white); margin-bottom: 24px;
  font-size: clamp(2.3rem, 4.8vw, 4rem); line-height: 1.08;
  letter-spacing: -.015em; font-weight: 800;
}
.hero-title .accent {
  background: linear-gradient(135deg, #FFD370 0%, var(--gold) 50%, #E8920A 100%);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
}
.hero-title .underline-accent {
  position: relative; display: inline-block;
}
.hero-title .underline-accent::after {
  content: ''; position: absolute; left: 0; bottom: 4px;
  width: 100%; height: 12px;
  background: rgba(244,168,32,.22); z-index: -1;
  border-radius: 4px;
}

.hero-desc {
  font-size: 1.08rem; color: rgba(255,255,255,.72);
  margin-bottom: 36px; max-width: 560px; line-height: 1.82;
}
.hero-btns { display: flex; flex-wrap: wrap; gap: 13px; margin-bottom: 44px; }

/* Premium primary button */
.hero-btns .btn-primary {
  padding: 16px 30px; font-size: .92rem;
  background: linear-gradient(135deg, var(--gold) 0%, #E8920A 100%);
  box-shadow: 0 10px 28px rgba(244,168,32,.4);
  position: relative; overflow: hidden;
}
.hero-btns .btn-primary::before {
  content: ''; position: absolute; top: 0; left: -100%; width: 100%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.4), transparent);
  transition: left .6s ease;
}
.hero-btns .btn-primary:hover::before { left: 100%; }
.hero-btns .btn-outline-white { padding: 14px 28px; font-size: .92rem; backdrop-filter: blur(8px); }

/* Stats inside hero */
.hero-stats {
  display: flex; flex-wrap: wrap; gap: 0;
  padding-top: 32px; border-top: 1px solid rgba(255,255,255,.1);
}
.h-stat {
  padding: 0 32px; border-right: 1px solid rgba(255,255,255,.1);
  transition: transform .25s;
}
.h-stat:hover { transform: translateY(-2px); }
.h-stat:first-child { padding-left: 0; }
.h-stat:last-child  { border-right: none; }
.hstat-num {
  display: block; font-size: 2.1rem; font-weight: 800;
  background: linear-gradient(135deg, #FFD370 0%, var(--gold) 100%);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent;
  line-height: 1;
}
.hstat-lbl {
  font-size: .72rem; color: rgba(255,255,255,.55);
  text-transform: uppercase; letter-spacing: .09em; margin-top: 6px;
}

/* Hero visual side: image card stack */
.hero-imgs {
  position: relative;
  height: 540px;
  perspective: 1200px;
}
.hero-img-card {
  position: absolute; border-radius: 22px; overflow: hidden;
  box-shadow: 0 30px 80px rgba(0,0,0,.4), 0 0 0 1px rgba(244,168,32,.15);
  transition: transform .5s cubic-bezier(.25,.46,.45,.94);
}
.hero-img-card img { width: 100%; height: 100%; object-fit: cover; display: block; }
.hero-img-1 {
  width: 70%; height: 78%; top: 0; right: 0;
  transform: rotate(2deg);
  animation: floatCard 8s ease-in-out infinite;
}
.hero-img-2 {
  width: 55%; height: 60%; bottom: 0; left: 0;
  transform: rotate(-3deg);
  animation: floatCard 8s ease-in-out infinite -4s;
  border: 4px solid var(--green-dark);
}
@keyframes floatCard {
  0%, 100% { transform: translateY(0) rotate(var(--rot, 2deg)); }
  50%      { transform: translateY(-12px) rotate(var(--rot, 2deg)); }
}
.hero-img-1 { --rot: 2deg; }
.hero-img-2 { --rot: -3deg; }

/* Floating badge cards on hero images */
.hero-float-tag {
  position: absolute; z-index: 3;
  background: rgba(255,255,255,.98);
  backdrop-filter: blur(14px);
  padding: 14px 18px; border-radius: 14px;
  display: flex; align-items: center; gap: 11px;
  box-shadow: 0 20px 50px rgba(0,0,0,.25);
  border: 1px solid rgba(244,168,32,.25);
  animation: floatTag 5s ease-in-out infinite;
}
.hero-float-tag .ft-icon {
  width: 38px; height: 38px; border-radius: 10px;
  background: linear-gradient(135deg, var(--gold), #E8920A);
  display: flex; align-items: center; justify-content: center;
  color: var(--green-dark); font-size: 1rem; flex-shrink: 0;
}
.hero-float-tag .ft-title {
  font-size: .82rem; font-weight: 700; color: var(--green-dark); line-height: 1.2;
}
.hero-float-tag .ft-sub {
  font-size: .68rem; color: var(--gray-400);
  text-transform: uppercase; letter-spacing: .08em; margin-top: 2px;
}
.hero-tag-tl { top: 18%; left: -28px; animation-delay: -2.5s; }
.hero-tag-br { bottom: 16%; right: -22px; }
@keyframes floatTag {
  0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(-10px); }
}

/* Decorative gold dots */
.hero-deco-dots {
  position: absolute; bottom: -20px; right: -20px;
  width: 110px; height: 110px;
  background-image: radial-gradient(var(--gold) 2px, transparent 2px);
  background-size: 16px 16px;
  opacity: .35; z-index: -1; border-radius: 12px;
}

.scroll-hint {
  position: absolute; bottom: 32px; left: 50%; transform: translateX(-50%);
  z-index: 2; display: flex; flex-direction: column; align-items: center; gap: 8px;
}
.scroll-hint span { font-size: .63rem; color: rgba(255,255,255,.42); letter-spacing: .18em; text-transform: uppercase; }
.scroll-line {
  width: 1.5px; height: 50px;
  background: linear-gradient(to bottom, rgba(244,168,32,.85), transparent);
  animation: scrollAnim 2.2s ease-in-out infinite;
}
@keyframes scrollAnim {
  0%   { transform:scaleY(0); transform-origin:top; }
  50%  { transform:scaleY(1); transform-origin:top; }
  51%  { transform:scaleY(1); transform-origin:bottom; }
  100% { transform:scaleY(0); transform-origin:bottom; }
}

/* ── ABOUT SECTION ──────────────────────────────────────── */
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 76px; align-items: center; }
.about-img-wrap { position: relative; }
.about-img-main {
  width: 100%; height: 520px; object-fit: cover;
  border-radius: 20px; box-shadow: 0 28px 72px rgba(0,0,0,.15);
}
.about-float {
  position: absolute; bottom: -26px; right: -26px;
  background: var(--gold); color: var(--green-dark);
  padding: 24px 30px; border-radius: 16px;
  box-shadow: 0 18px 52px rgba(244,168,32,.36); text-align: center;
}
.float-num { display: block; font-size: 2.3rem; font-weight: 800; line-height: 1; }
.float-txt { font-size: .7rem; font-weight: 700; text-transform: uppercase; letter-spacing: .09em; margin-top: 4px; }
.about-check-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 11px; margin: 26px 0 32px; }
.a-check { display: flex; align-items: center; gap: 9px; font-size: .87rem; font-weight: 500; color: var(--gray-800); }
.a-check i { color: var(--gold); flex-shrink: 0; font-size: .9rem; }

/* ── STATS STRIP ────────────────────────────────────────── */
.stats-strip { background: var(--green); padding: 76px 0; }
.stats-grid  { display: grid; grid-template-columns: repeat(4,1fr); gap: 36px; }
.stat-box    { text-align: center; }
.stat-num    { display: block; font-size: 2.9rem; font-weight: 800; color: var(--gold); line-height: 1; }
.stat-suf    { font-size: 1.9rem; font-weight: 800; color: var(--gold); }
.stat-bar    { width: 38px; height: 3px; background: rgba(244,168,32,.35); margin: 12px auto 9px; border-radius: 2px; }
.stat-lbl    { font-size: .78rem; color: rgba(255,255,255,.62); text-transform: uppercase; letter-spacing: .09em; }

/* ── SERVICE CARDS ──────────────────────────────────────── */
.services-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; }
.svc-card {
  background: var(--white); border-radius: var(--radius);
  padding: 34px 28px; border: 1px solid var(--gray-200);
  transition: all .3s; position: relative; overflow: hidden;
}
.svc-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--green));
  transform: scaleX(0); transform-origin: left; transition: transform .35s;
}
.svc-card:hover { transform: translateY(-7px); box-shadow: 0 22px 56px rgba(0,0,0,.1); border-color: transparent; }
.svc-card:hover::before { transform: scaleX(1); }
.svc-icon {
  width: 56px; height: 56px; border-radius: 13px;
  background: var(--gold-pale); display: flex; align-items: center; justify-content: center;
  margin-bottom: 22px;
}
.svc-icon i { font-size: 1.4rem; color: var(--gold); }
.svc-card h3 { color: var(--green-dark); margin-bottom: 11px; }
.svc-card p  { font-size: .875rem; }
.svc-link {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: .82rem; font-weight: 600; color: var(--gold);
  margin-top: 16px; transition: gap .2s;
}
.svc-link:hover { gap: 10px; }

/* Premium service card variant */
.svc-card.svc-card-premium {
  background: linear-gradient(135deg, #FFFCF5 0%, var(--white) 60%);
  border-color: rgba(244,168,32,.35);
}
.svc-card.svc-card-premium::before {
  background: linear-gradient(90deg, var(--gold), #E8920A);
  transform: scaleX(1);
}
.svc-card.svc-card-premium .svc-icon {
  background: linear-gradient(135deg, var(--gold) 0%, #E8920A 100%);
}
.svc-card.svc-card-premium .svc-icon i { color: var(--green-dark); }
.svc-premium-tag {
  position: absolute; top: 18px; right: 18px;
  background: linear-gradient(135deg, var(--gold), #E8920A);
  color: var(--green-dark);
  font-size: .65rem; font-weight: 800; letter-spacing: .12em;
  text-transform: uppercase;
  padding: 4px 12px; border-radius: 100px;
  box-shadow: 0 4px 14px rgba(244,168,32,.4);
}

/* ── AMENITIES ──────────────────────────────────────────── */
/* Premium section wrapper */
.amenities-section {
  position: relative;
  background: linear-gradient(180deg, var(--off-white) 0%, var(--white) 100%);
  overflow: hidden;
}
.amenities-section::before {
  content: ''; position: absolute; top: 60px; right: -120px;
  width: 360px; height: 360px; border-radius: 50%;
  background: radial-gradient(circle, rgba(244,168,32,.09) 0%, transparent 70%);
  pointer-events: none;
}
.amenities-section::after {
  content: ''; position: absolute; bottom: 40px; left: -100px;
  width: 320px; height: 320px; border-radius: 50%;
  background: radial-gradient(circle, rgba(43,80,32,.07) 0%, transparent 70%);
  pointer-events: none;
}
.amen-dot-pattern {
  position: absolute; top: 30%; left: 4%;
  width: 90px; height: 90px;
  background-image: radial-gradient(var(--gold) 1.5px, transparent 1.5px);
  background-size: 14px 14px;
  opacity: .35; pointer-events: none;
}
.amen-dot-pattern.right { left: auto; right: 4%; top: auto; bottom: 30%; opacity: .25; }

/* Legacy split layout (still used on services page) */
.amen-split { display: grid; grid-template-columns: 1fr 1fr; gap: 76px; align-items: center; position: relative; z-index: 1; }

/* New premium 3-col grid */
.amen-grid  { display: grid; grid-template-columns: repeat(3,1fr); gap: 22px; position: relative; z-index: 1; }
.amen-item {
  position: relative; overflow: hidden;
  padding: 32px 28px; border-radius: 18px;
  background: var(--white);
  border: 1px solid rgba(229,231,235,.7);
  transition: transform .35s cubic-bezier(.25,.46,.45,.94),
              box-shadow .35s, border-color .35s;
  box-shadow: 0 2px 12px rgba(17,24,39,.04);
}
/* Subtle gradient corner accent */
.amen-item::before {
  content: ''; position: absolute; top: 0; right: 0;
  width: 80px; height: 80px; border-radius: 0 18px 0 80px;
  background: linear-gradient(135deg, transparent 50%, rgba(244,168,32,.08) 100%);
  transition: opacity .35s; opacity: 0;
}
/* Bottom gold accent line */
.amen-item::after {
  content: ''; position: absolute; left: 28px; bottom: 0;
  width: 28px; height: 3px; border-radius: 2px;
  background: linear-gradient(90deg, var(--gold), #E8920A);
  transition: width .4s ease;
}
.amen-item:hover {
  transform: translateY(-8px);
  box-shadow: 0 24px 56px rgba(26,58,18,.12), 0 0 0 1px rgba(244,168,32,.25);
  border-color: transparent;
}
.amen-item:hover::before { opacity: 1; }
.amen-item:hover::after  { width: calc(100% - 56px); }

/* Premium icon container */
.amen-icon {
  width: 60px; height: 60px; border-radius: 16px;
  background: linear-gradient(135deg, var(--green) 0%, var(--green-dark) 100%);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; margin-bottom: 22px;
  position: relative;
  transition: transform .4s cubic-bezier(.25,.46,.45,.94),
              box-shadow .4s;
  box-shadow: 0 8px 22px rgba(26,58,18,.22);
}
.amen-icon::before {
  content: ''; position: absolute; inset: -2px; border-radius: 18px;
  background: linear-gradient(135deg, var(--gold), #E8920A);
  opacity: 0; transition: opacity .35s; z-index: -1;
}
.amen-icon i {
  font-size: 1.35rem; color: var(--gold);
  transition: color .35s, transform .4s;
}
.amen-item:hover .amen-icon {
  transform: rotate(-6deg) scale(1.05);
  box-shadow: 0 12px 28px rgba(244,168,32,.4);
  background: linear-gradient(135deg, var(--gold) 0%, #E8920A 100%);
}
.amen-item:hover .amen-icon i {
  color: var(--white);
  transform: rotate(6deg);
}

.amen-name {
  font-size: 1.02rem; font-weight: 700; color: var(--green-dark);
  margin-bottom: 7px; line-height: 1.3;
  transition: color .25s;
}
.amen-desc {
  font-size: .83rem; color: var(--gray-600);
  line-height: 1.6;
}

/* Small floating badge inside heading area */
.amen-stats-row {
  display: flex; flex-wrap: wrap; justify-content: center; gap: 16px;
  margin: 36px 0 50px;
}
.amen-mini-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--white); border: 1px solid var(--gray-200);
  padding: 8px 16px; border-radius: 100px;
  font-size: .78rem; font-weight: 600; color: var(--green-dark);
  box-shadow: 0 2px 10px rgba(0,0,0,.04);
  transition: all .25s;
}
.amen-mini-badge:hover {
  transform: translateY(-2px);
  border-color: var(--gold);
  box-shadow: 0 6px 18px rgba(244,168,32,.18);
}
.amen-mini-badge i { color: var(--gold); }


/* ── GALLERY ────────────────────────────────────────────── */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4,1fr);
  grid-template-rows: 230px 230px;
  gap: 13px;
}
.gal-item    { border-radius: 12px; overflow: hidden; position: relative; cursor: pointer; }
.gal-item:nth-child(1) { grid-column: span 2; grid-row: span 2; }
.gal-item:nth-child(6) { grid-column: span 2; }
.gal-item img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .55s ease;
}
.gal-item:hover img { transform: scale(1.07); }
.gal-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(26,58,18,.65) 0%, transparent 55%);
  opacity: 0; transition: opacity .3s;
  display: flex; align-items: flex-end; padding: 16px 18px;
}
.gal-item:hover .gal-overlay { opacity: 1; }
.gal-overlay span { color: white; font-size: .8rem; font-weight: 600; }

/* ── TESTIMONIALS — MARQUEE STYLE ───────────────────────── */
.testi-section {
  background: var(--green-dark);
  padding: 110px 0 100px;
  position: relative; overflow: hidden;
}
/* Decorative ambient gradients */
.testi-section::before {
  content: ''; position: absolute; inset: 0; pointer-events: none;
  background:
    radial-gradient(ellipse 60% 50% at 20% 20%, rgba(244,168,32,.13) 0%, transparent 60%),
    radial-gradient(ellipse 60% 50% at 80% 80%, rgba(58,107,44,.35)  0%, transparent 60%);
}
/* Subtle dot grid */
.testi-section::after {
  content: ''; position: absolute; inset: 0; pointer-events: none;
  background-image: radial-gradient(rgba(244,168,32,.06) 1.2px, transparent 1.2px);
  background-size: 28px 28px;
  mask-image: radial-gradient(ellipse at center, black 30%, transparent 75%);
  -webkit-mask-image: radial-gradient(ellipse at center, black 30%, transparent 75%);
  opacity: .8;
}
.testi-section > .container { position: relative; z-index: 2; }

/* Trust strip with stats */
.testi-trust {
  display: flex; justify-content: center; align-items: center;
  flex-wrap: wrap; gap: 0;
  margin-top: 36px; padding: 28px 32px;
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 100px;
  backdrop-filter: blur(10px);
  max-width: 760px; margin-left: auto; margin-right: auto;
}
.testi-trust-item {
  flex: 1; min-width: 180px; text-align: center;
  padding: 0 24px;
  border-right: 1px solid rgba(255,255,255,.08);
}
.testi-trust-item:last-child { border-right: none; }
.tt-num {
  display: block;
  font-size: 1.85rem; font-weight: 800; line-height: 1;
  background: linear-gradient(135deg, #FFD370, var(--gold));
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent;
}
.tt-stars { display: flex; justify-content: center; gap: 2px; margin-top: 5px; }
.tt-stars i { color: var(--gold); font-size: .68rem; }
.tt-lbl {
  display: block; font-size: .72rem; color: rgba(255,255,255,.55);
  text-transform: uppercase; letter-spacing: .1em; margin-top: 5px;
}

/* Marquee rows */
.testi-marquee-wrap {
  position: relative; overflow: hidden;
  margin-top: 56px; padding: 14px 0;
}
.testi-marquee-wrap + .testi-marquee-wrap { margin-top: 22px; }
/* Edge fade — hides hard card cutoffs */
.testi-marquee-wrap::before,
.testi-marquee-wrap::after {
  content: ''; position: absolute; top: 0; bottom: 0;
  width: 140px; z-index: 3; pointer-events: none;
}
.testi-marquee-wrap::before { left: 0;  background: linear-gradient(90deg,  var(--green-dark) 10%, transparent 100%); }
.testi-marquee-wrap::after  { right: 0; background: linear-gradient(-90deg, var(--green-dark) 10%, transparent 100%); }

.testi-marquee {
  display: flex; gap: 22px;
  width: max-content;
  animation: testi-scroll 48s linear infinite;
}
.testi-marquee.reverse {
  animation: testi-scroll-reverse 52s linear infinite;
}
.testi-marquee-wrap:hover .testi-marquee {
  animation-play-state: paused;
}
@keyframes testi-scroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
@keyframes testi-scroll-reverse {
  0%   { transform: translateX(-50%); }
  100% { transform: translateX(0); }
}

/* New testimonial cards */
.testi-card {
  flex-shrink: 0;
  width: 380px;
  background: linear-gradient(135deg, rgba(255,255,255,.06) 0%, rgba(255,255,255,.025) 100%);
  border: 1px solid rgba(255,255,255,.09);
  border-radius: 20px;
  padding: 28px 28px 26px;
  position: relative;
  transition: transform .35s ease, border-color .35s ease, box-shadow .35s ease;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}
/* Large decorative quote mark */
.testi-card::before {
  content: '\201C';   /* curly quote */
  position: absolute; top: 8px; right: 22px;
  font-family: Georgia, 'Times New Roman', serif;
  font-size: 5rem; line-height: 1; font-weight: 700;
  color: var(--gold);
  opacity: .18;
  pointer-events: none;
}
.testi-card:hover {
  transform: translateY(-6px);
  border-color: rgba(244,168,32,.35);
  box-shadow: 0 24px 48px rgba(0,0,0,.4),
              0 0 0 1px rgba(244,168,32,.15);
}
.testi-stars { display: flex; gap: 3px; margin-bottom: 16px; position: relative; z-index: 1; }
.testi-stars i { color: var(--gold); font-size: .82rem; filter: drop-shadow(0 1px 3px rgba(244,168,32,.4)); }
.testi-quote {
  font-size: .92rem; color: rgba(255,255,255,.86);
  line-height: 1.72; margin-bottom: 24px;
  position: relative; z-index: 1;
  font-style: normal;
}
.testi-author {
  display: flex; align-items: center; gap: 13px;
  padding-top: 18px;
  border-top: 1px solid rgba(255,255,255,.06);
  position: relative; z-index: 1;
}
/* Gradient avatar with monogram */
.testi-av {
  width: 46px; height: 46px; border-radius: 50%;
  background: linear-gradient(135deg, var(--gold) 0%, #E8920A 100%);
  display: flex; align-items: center; justify-content: center;
  font-weight: 800; color: var(--green-dark);
  font-size: .95rem; flex-shrink: 0;
  box-shadow: 0 6px 16px rgba(244,168,32,.35),
              inset 0 0 0 2px rgba(255,255,255,.18);
}
.testi-name { font-weight: 600; color: var(--white); font-size: .9rem; line-height: 1.25; }
.testi-role { font-size: .76rem; color: rgba(255,255,255,.5); margin-top: 2px; }
.testi-verified {
  margin-left: auto; display: flex; align-items: center; gap: 5px;
  font-size: .68rem; color: rgba(244,168,32,.85); font-weight: 600;
  text-transform: uppercase; letter-spacing: .06em;
}
.testi-verified i { font-size: .8rem; }

/* Mobile swipe hint — visible only on mobile */
.testi-swipe-hint {
  display: none;
  align-items: center; justify-content: center; gap: 12px;
  margin: 20px auto 0;
  font-size: .7rem; font-weight: 700;
  color: rgba(244,168,32,.9);
  text-transform: uppercase; letter-spacing: .15em;
}
.testi-swipe-hint::before,
.testi-swipe-hint::after {
  content: ''; height: 1px; width: 28px;
  background: linear-gradient(90deg, transparent, rgba(244,168,32,.4));
}
.testi-swipe-hint::after { background: linear-gradient(-90deg, transparent, rgba(244,168,32,.4)); }
.testi-swipe-hint i { animation: swipeBounce 1.6s ease-in-out infinite; }
@keyframes swipeBounce {
  0%, 100% { transform: translateX(0); }
  50%      { transform: translateX(8px); }
}

/* ===== Mobile testimonials — swipe-snap carousel ===== */
@media (max-width: 768px) {
  .testi-section { padding: 70px 0 76px; }

  /* Trust strip stacks vertically */
  .testi-trust {
    padding: 22px 18px;
    flex-direction: column; gap: 16px;
    border-radius: 22px;
    margin-top: 30px;
  }
  .testi-trust-item { border-right: none; padding: 0; min-width: auto; }
  .testi-trust-item + .testi-trust-item {
    padding-top: 16px;
    border-top: 1px solid rgba(255,255,255,.08);
  }
  .tt-num { font-size: 1.6rem; }

  /* Show the swipe hint */
  .testi-swipe-hint { display: flex; }

  /* Hide the second marquee row entirely on mobile */
  .testi-marquee-wrap + .testi-marquee-wrap { display: none; }

  /* Hide duplicate cards — only show the 5 originals */
  .testi-card[aria-hidden="true"] { display: none !important; }

  /* Hide edge fades */
  .testi-marquee-wrap::before,
  .testi-marquee-wrap::after { display: none; }

  /* Convert marquee into a native swipe-snap carousel */
  .testi-marquee-wrap {
    margin-top: 28px; padding: 0;
    overflow: visible;
  }
  .testi-marquee {
    animation: none !important;
    width: 100%; max-width: 100%;
    gap: 14px;
    padding: 8px 20px 22px;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-snap-type: x mandatory;
    scroll-padding: 20px;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    -ms-overflow-style: none;
  }
  .testi-marquee::-webkit-scrollbar { display: none; }

  /* Each card: ~84% of viewport, snap to center, touch-friendly */
  .testi-card {
    min-width: 84vw; max-width: 84vw; width: 84vw;
    scroll-snap-align: center;
    flex-shrink: 0;
    padding: 26px 22px 24px;
  }
  .testi-card::before { font-size: 3.6rem; top: 6px; right: 18px; }
  .testi-quote   { font-size: .89rem; line-height: 1.7; margin-bottom: 22px; }
  .testi-author  { gap: 11px; padding-top: 16px; }
  .testi-av      { width: 42px; height: 42px; font-size: .88rem; }
  .testi-name    { font-size: .85rem; }
  .testi-role    { font-size: .72rem; }
  .testi-verified { font-size: .62rem; }
}

@media (max-width: 480px) {
  .testi-card { min-width: 88vw; max-width: 88vw; width: 88vw; padding: 22px 20px; }
  .testi-trust { padding: 20px 16px; }
}

/* ── CTA BANNER ─────────────────────────────────────────── */
.cta-banner { background: linear-gradient(135deg, var(--gold) 0%, #E8920A 100%); padding: 72px 0; }
.cta-inner  { display: flex; align-items: center; justify-content: space-between; gap: 36px; flex-wrap: wrap; }
.cta-text h2 { color: var(--green-dark); margin-bottom: 10px; }
.cta-text p  { color: rgba(26,58,18,.78); font-size: 1.03rem; }
.cta-btns   { display: flex; gap: 13px; flex-wrap: wrap; flex-shrink: 0; }
.btn-dark   {
  background: var(--green-dark); color: var(--white);
  padding: 15px 30px; border-radius: 10px; font-weight: 700; font-size: .9rem;
  transition: all .25s; display: flex; align-items: center; gap: 9px;
}
.btn-dark:hover { background: var(--green); transform: translateY(-2px); box-shadow: 0 10px 28px rgba(26,58,18,.28); }
.btn-ghost-dark {
  background: transparent; color: var(--green-dark);
  padding: 13px 26px; border-radius: 10px; font-weight: 600; font-size: .9rem;
  border: 2px solid rgba(26,58,18,.28); transition: all .25s;
  display: flex; align-items: center; gap: 9px;
}
.btn-ghost-dark:hover { background: rgba(26,58,18,.08); }

/* ── CONTACT SECTION ────────────────────────────────────── */
.contact-grid { display: grid; grid-template-columns: 1fr 1.5fr; gap: 76px; }
.c-info-items { display: flex; flex-direction: column; gap: 24px; margin: 30px 0 28px; }
.c-item { display: flex; align-items: flex-start; gap: 16px; }
.c-icon {
  width: 50px; height: 50px; border-radius: 12px; background: var(--green);
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.c-icon i { font-size: 1.1rem; color: var(--gold); }
.c-lbl  { font-size: .69rem; text-transform: uppercase; letter-spacing: .12em; color: var(--gray-400); margin-bottom: 4px; }
.c-val  { font-weight: 600; color: var(--green-dark); font-size: .92rem; line-height: 1.55; }
.c-val a { color: var(--green-dark); }
.social-row { display: flex; gap: 9px; }
.soc-btn {
  width: 38px; height: 38px; border-radius: 9px; background: var(--green);
  display: flex; align-items: center; justify-content: center;
  color: var(--gold); font-size: .92rem; transition: all .22s;
}
.soc-btn:hover { background: var(--gold); color: var(--green-dark); transform: translateY(-2px); }

/* ── FORM (shared) ──────────────────────────────────────── */
.form-box {
  background: var(--white); border-radius: 20px;
  padding: 44px; box-shadow: var(--shadow-lg);
}
.form-title { font-size: 1.3rem; font-weight: 700; color: var(--green-dark); margin-bottom: 5px; }
.form-sub   { font-size: .82rem; color: var(--gray-400); margin-bottom: 30px; }
.f-row  { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.f-g    { margin-bottom: 16px; }
.f-g label {
  display: block; font-size: .74rem; font-weight: 700; color: var(--gray-800);
  text-transform: uppercase; letter-spacing: .07em; margin-bottom: 7px;
}
.f-g input, .f-g select, .f-g textarea {
  width: 100%; padding: 12px 14px;
  border: 1.5px solid var(--gray-200); border-radius: 9px;
  font-size: .875rem; font-family: 'Inter', sans-serif;
  color: var(--dark); background: var(--off-white);
  transition: all .22s; outline: none; appearance: none;
}
.f-g input:focus, .f-g select:focus, .f-g textarea:focus {
  border-color: var(--gold); background: var(--white);
  box-shadow: 0 0 0 4px rgba(244,168,32,.1);
}
.f-g textarea { height: 110px; resize: vertical; }
.f-submit {
  width: 100%; padding: 14px; background: var(--green-dark); color: white;
  border: none; border-radius: 9px; font-size: .9rem; font-weight: 700;
  cursor: pointer; transition: all .25s; font-family: 'Inter', sans-serif;
  display: flex; align-items: center; justify-content: center; gap: 9px;
}
.f-submit:hover { background: var(--green); transform: translateY(-2px); box-shadow: 0 10px 28px rgba(26,58,18,.26); }
.f-submit:disabled { opacity: .6; pointer-events: none; }

/* ── MAP ────────────────────────────────────────────────── */
#map { height: 400px; overflow: hidden; }
#map iframe { width: 100%; height: 100%; border: 0; filter: saturate(.75) contrast(1.05); }

/* ── INFO CARDS (3-col) ─────────────────────────────────── */
.info-cards { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; margin-top: 60px; }
.info-card {
  background: var(--white); border-radius: var(--radius);
  padding: 34px 28px; border: 1px solid var(--gray-200);
  text-align: center; transition: all .3s;
}
.info-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); }
.info-card-icon {
  width: 64px; height: 64px; border-radius: 16px; background: var(--green);
  display: flex; align-items: center; justify-content: center; margin: 0 auto 20px;
}
.info-card-icon i { font-size: 1.5rem; color: var(--gold); }
.info-card h3 { color: var(--green-dark); margin-bottom: 10px; }
.info-card p  { font-size: .875rem; }

/* ── PROCESS STEPS ──────────────────────────────────────── */
.steps-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 24px; margin-top: 60px; position: relative; }
.steps-grid::before {
  content: ''; position: absolute; top: 30px; left: calc(12.5% + 20px); right: calc(12.5% + 20px);
  height: 2px; background: var(--gray-200); z-index: 0;
}
.step-box { text-align: center; position: relative; z-index: 1; }
.step-num {
  width: 60px; height: 60px; border-radius: 50%;
  background: var(--green-dark); color: var(--gold);
  font-size: 1.3rem; font-weight: 800;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 20px; border: 4px solid var(--off-white);
  box-shadow: 0 4px 20px rgba(26,58,18,.2);
}
.step-box h4 { color: var(--green-dark); margin-bottom: 8px; }
.step-box p  { font-size: .85rem; }

/* ── BENEFITS LIST ──────────────────────────────────────── */
.benefits-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 22px; }
.benefit-item {
  display: flex; align-items: flex-start; gap: 16px;
  padding: 24px; border-radius: var(--radius);
  background: var(--white); border: 1px solid var(--gray-200);
  transition: all .3s;
}
.benefit-item:hover { box-shadow: var(--shadow); transform: translateY(-3px); }
.benefit-icon {
  width: 48px; height: 48px; border-radius: 12px; background: var(--gold-pale);
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.benefit-icon i { font-size: 1.2rem; color: var(--gold); }
.benefit-item h4 { color: var(--green-dark); margin-bottom: 7px; }
.benefit-item p  { font-size: .85rem; }

/* ── PRICING CARDS ──────────────────────────────────────── */
.pricing-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; align-items: start; }
.price-card {
  background: var(--white); border-radius: 20px;
  padding: 34px 26px; border: 1.5px solid var(--gray-200);
  transition: all .35s; position: relative;
}
.price-card.premium {
  border-color: var(--green-dark);
  background: linear-gradient(180deg, var(--white) 0%, #FAFCF8 100%);
}
.price-card.premium:hover {
  border-color: var(--gold);
  box-shadow: 0 22px 56px rgba(26,58,18,.18), 0 0 0 1px rgba(244,168,32,.25);
}
.price-card.popular {
  background: var(--green-dark); border-color: var(--green-dark);
  transform: scale(1.04); box-shadow: 0 28px 72px rgba(26,58,18,.3);
}
.pop-tag {
  position: absolute; top: -14px; left: 50%; transform: translateX(-50%);
  background: var(--gold); color: var(--green-dark);
  font-size: .7rem; font-weight: 800; letter-spacing: .1em; text-transform: uppercase;
  padding: 5px 20px; border-radius: 100px; white-space: nowrap;
}
.price-card:not(.popular):hover { transform: translateY(-6px); box-shadow: 0 22px 56px rgba(0,0,0,.1); }
.price-type { font-size: .73rem; font-weight: 700; text-transform: uppercase; letter-spacing: .12em; color: var(--gold); margin-bottom: 9px; }
.price-name { font-size: 1.3rem; font-weight: 700; color: var(--green-dark); margin-bottom: 20px; }
.price-card.popular .price-name { color: var(--white); }
.price-row  { display: flex; align-items: baseline; gap: 3px; }
.price-curr { font-size: 1.1rem; font-weight: 700; color: var(--gold); }
.price-num  { font-size: 2.9rem; font-weight: 800; color: var(--green-dark); line-height: 1; }
.price-card.popular .price-num { color: var(--white); }
.price-per  { font-size: .82rem; color: var(--gray-400); margin-left: 3px; }
.price-card.popular .price-per { color: rgba(255,255,255,.52); }
.price-sub  { font-size: .76rem; color: var(--gray-400); margin-top: 5px; }
.price-card.popular .price-sub { color: rgba(255,255,255,.48); }
.price-sep  { height: 1px; background: var(--gray-200); margin: 24px 0; }
.price-card.popular .price-sep { background: rgba(255,255,255,.14); }
.price-feats { display: flex; flex-direction: column; gap: 12px; margin-bottom: 30px; }
.pf { display: flex; align-items: flex-start; gap: 10px; font-size: .855rem; color: var(--gray-800); line-height: 1.5; }
.price-card.popular .pf { color: rgba(255,255,255,.82); }
.pf i { color: var(--green); flex-shrink: 0; margin-top: 3px; }
.price-card.popular .pf i { color: var(--gold); }
.price-btn {
  display: block; text-align: center; padding: 13px 18px;
  border-radius: 9px; font-weight: 700; font-size: .875rem;
  border: 2px solid var(--green); color: var(--green); transition: all .25s;
}
.price-btn:hover { background: var(--green); color: var(--white); }
.price-card.popular .price-btn { background: var(--gold); border-color: var(--gold); color: var(--green-dark); }
.price-card.popular .price-btn:hover { background: var(--gold-light); }

/* ── FAQ ────────────────────────────────────────────────── */
.faq-list { max-width: 780px; margin: 0 auto; margin-top: 52px; }
.faq-item {
  border: 1px solid var(--gray-200); border-radius: 12px;
  margin-bottom: 12px; overflow: hidden;
}
.faq-q {
  display: flex; align-items: center; justify-content: space-between;
  padding: 20px 24px; cursor: pointer; background: var(--white);
  font-weight: 600; color: var(--green-dark); font-size: .93rem;
  transition: background .2s;
}
.faq-q:hover { background: var(--off-white); }
.faq-q i { color: var(--gold); transition: transform .3s; font-size: .85rem; flex-shrink: 0; }
.faq-item.open .faq-q i { transform: rotate(45deg); }
.faq-a { display: none; padding: 0 24px 20px; font-size: .88rem; color: var(--gray-600); line-height: 1.75; }
.faq-item.open .faq-a { display: block; }

/* ── PARTNER PAGE HERO ──────────────────────────────────── */
.partner-why { display: grid; grid-template-columns: 1fr 1fr; gap: 76px; align-items: center; }
.partner-img { width: 100%; height: 460px; object-fit: cover; border-radius: 18px; box-shadow: var(--shadow-lg); }

/* ── FOOTER ─────────────────────────────────────────────── */
footer { background: var(--dark); padding: 70px 0 0; }
.footer-grid {
  display: grid; grid-template-columns: 1.9fr 1fr 1fr 1.5fr;
  gap: 52px; padding-bottom: 56px;
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.f-brand img   {
  height: 48px; margin-bottom: 18px;
  /* Footer has a dark background so the dark-green wordmark is invisible.
     Flip the whole logo to white for clear contrast. */
  filter: brightness(0) invert(1);
  opacity: .95;
}
.f-desc        { font-size: .84rem; color: rgba(255,255,255,.46); line-height: 1.82; margin-bottom: 22px; }
.f-social      { display: flex; gap: 8px; }
.f-social a {
  width: 36px; height: 36px; border-radius: 8px;
  background: rgba(255,255,255,.08);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,.52); font-size: .86rem; transition: all .2s;
}
.f-social a:hover { background: var(--gold); color: var(--green-dark); }
.f-col h4 {
  font-size: .78rem; font-weight: 700; color: var(--white);
  text-transform: uppercase; letter-spacing: .12em; margin-bottom: 20px;
}
.f-links { display: flex; flex-direction: column; gap: 10px; }
.f-links a { font-size: .84rem; color: rgba(255,255,255,.46); transition: color .2s; }
.f-links a:hover { color: var(--gold); }
.f-contact-list { display: flex; flex-direction: column; gap: 14px; }
.fc-row { display: flex; align-items: flex-start; gap: 11px; }
.fc-row i { color: var(--gold); font-size: .83rem; margin-top: 3px; flex-shrink: 0; }
.fc-row span, .fc-row a { font-size: .83rem; color: rgba(255,255,255,.46); line-height: 1.65; }
.fc-row a:hover { color: var(--gold); }
.footer-bottom {
  padding: 20px 0; display: flex; align-items: center;
  justify-content: space-between; flex-wrap: wrap; gap: 12px;
}
.footer-bottom p { font-size: .77rem; color: rgba(255,255,255,.26); }
.footer-bl { display: flex; gap: 20px; }
.footer-bl a { font-size: .77rem; color: rgba(255,255,255,.26); transition: color .2s; }
.footer-bl a:hover { color: var(--gold); }

/* ── LEGAL DOCUMENT (Privacy / Terms) ───────────────────── */
.legal-doc {
  max-width: 820px; margin: 0 auto;
  font-size: 1rem; line-height: 1.78;
  color: var(--gray-800);
}
.legal-doc .legal-updated {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--gold-pale);
  color: var(--gold);
  font-size: .82rem; font-weight: 600;
  padding: 8px 18px; border-radius: 100px;
  margin-bottom: 32px;
  border: 1px solid rgba(244,168,32,.3);
}
.legal-doc h2 {
  color: var(--green-dark);
  font-size: 1.35rem; font-weight: 700;
  margin: 38px 0 14px;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--gold);
  display: inline-block;
}
.legal-doc h2:first-of-type { margin-top: 0; }
.legal-doc p { margin-bottom: 14px; color: var(--gray-800); line-height: 1.78; }
.legal-doc ul {
  margin: 6px 0 18px;
  padding-left: 24px;
  list-style: disc;
}
.legal-doc ul li {
  margin-bottom: 8px;
  color: var(--gray-800);
  line-height: 1.7;
}
.legal-doc strong { color: var(--green-dark); font-weight: 600; }
.legal-doc a { color: var(--gold); font-weight: 600; }
.legal-doc a:hover { text-decoration: underline; }

.legal-contact {
  background: var(--off-white);
  border-left: 3px solid var(--gold);
  border-radius: 0 12px 12px 0;
  padding: 20px 24px;
  margin-top: 14px;
}
.legal-contact p {
  display: flex; align-items: center; gap: 10px;
  margin-bottom: 8px; font-size: .92rem;
}
.legal-contact p:last-child { margin-bottom: 0; }
.legal-contact i { color: var(--gold); width: 18px; }

/* ── SITEMAP PAGE ───────────────────────────────────────── */
.sitemap-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 22px;
}
.sitemap-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  padding: 28px 26px;
  transition: all .3s;
  position: relative; overflow: hidden;
}
.sitemap-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--green));
  transform: scaleX(0); transform-origin: left;
  transition: transform .35s ease;
}
.sitemap-card:hover {
  transform: translateY(-6px);
  border-color: transparent;
  box-shadow: 0 24px 56px rgba(26,58,18,.1);
}
.sitemap-card:hover::before { transform: scaleX(1); }
.sitemap-icon {
  width: 50px; height: 50px; border-radius: 13px;
  background: linear-gradient(135deg, var(--green), var(--green-dark));
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 18px;
}
.sitemap-icon i { color: var(--gold); font-size: 1.2rem; }
.sitemap-card h3 {
  color: var(--green-dark); font-size: 1.05rem;
  margin-bottom: 16px;
}
.sitemap-list { display: flex; flex-direction: column; gap: 4px; }
.sitemap-list li a {
  display: flex; align-items: center; gap: 9px;
  padding: 8px 0; font-size: .9rem;
  color: var(--gray-800); font-weight: 500;
  transition: all .2s; border-bottom: 1px dashed transparent;
}
.sitemap-list li a:hover {
  color: var(--gold); gap: 14px;
  border-bottom-color: rgba(244,168,32,.3);
}
.sitemap-list li a i {
  color: var(--gold); font-size: .72rem;
  flex-shrink: 0; width: 14px;
}
.sitemap-list li a .fa-whatsapp,
.sitemap-list li a .fab { font-size: .92rem; }

.sitemap-xml-card {
  margin-top: 40px;
  background: linear-gradient(135deg, var(--green-dark), var(--green));
  color: white;
  border-radius: var(--radius);
  padding: 28px 32px;
  display: flex; align-items: center; justify-content: space-between; gap: 24px;
}
.sitemap-xml-card h4 {
  color: white; font-size: 1.05rem; margin-bottom: 6px;
  display: flex; align-items: center; gap: 10px;
}
.sitemap-xml-card h4 i { color: var(--gold); }
.sitemap-xml-card p {
  color: rgba(255,255,255,.75); margin: 0;
  font-size: .9rem; line-height: 1.5;
}
.sitemap-xml-card code {
  background: rgba(244,168,32,.18); color: var(--gold);
  padding: 2px 8px; border-radius: 5px;
  font-family: 'SF Mono', Menlo, monospace; font-size: .82rem;
}
.sitemap-xml-card a { color: var(--gold); font-weight: 600; }
@media (max-width: 600px) {
  .sitemap-xml-card { flex-direction: column; align-items: flex-start; gap: 14px; }
}

@media (max-width: 768px) {
  .legal-doc h2 { font-size: 1.2rem; }
  .legal-doc { font-size: .95rem; }
}

/* ── SCROLL REVEAL ──────────────────────────────────────── */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity .6s ease, transform .6s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ── TOUR BOOKING MODAL ─────────────────────────────────── */
.tour-modal {
  position: fixed; inset: 0; z-index: 1100;
  display: none; align-items: center; justify-content: center;
  padding: 24px;
}
.tour-modal.open { display: flex; animation: tourFadeIn .25s ease; }
@keyframes tourFadeIn { from { opacity: 0; } to { opacity: 1; } }

.tour-modal-bg {
  position: absolute; inset: 0;
  background: rgba(15, 28, 10, .72);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  cursor: pointer;
}

.tour-modal-card {
  position: relative; z-index: 1;
  background: var(--white);
  border-radius: 22px;
  width: 100%; max-width: 560px;
  max-height: 92vh;
  overflow-y: auto;
  padding: 36px 36px 30px;
  box-shadow: 0 32px 80px rgba(0,0,0,.4),
              0 0 0 1px rgba(244,168,32,.15);
  animation: tourSlideUp .35s cubic-bezier(.34,1.36,.64,1);
}
@keyframes tourSlideUp {
  from { transform: translateY(40px) scale(.96); opacity: 0; }
  to   { transform: translateY(0) scale(1); opacity: 1; }
}
.tour-modal-card::-webkit-scrollbar { width: 6px; }
.tour-modal-card::-webkit-scrollbar-thumb { background: var(--gray-200); border-radius: 3px; }

.tour-modal-close {
  position: absolute; top: 16px; right: 18px;
  width: 36px; height: 36px; border-radius: 50%;
  background: var(--gray-100); border: none;
  color: var(--gray-600);
  font-size: 1.4rem; line-height: 1; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: all .2s;
}
.tour-modal-close:hover {
  background: var(--green-dark); color: var(--gold);
  transform: rotate(90deg);
}

.tour-modal-head {
  text-align: center; margin-bottom: 26px;
}
.tour-modal-badge {
  display: inline-flex; align-items: center; gap: 7px;
  background: linear-gradient(135deg, var(--gold-pale), rgba(244,168,32,.2));
  color: var(--gold);
  font-size: .72rem; font-weight: 700;
  letter-spacing: .14em; text-transform: uppercase;
  padding: 7px 16px; border-radius: 100px;
  border: 1px solid rgba(244,168,32,.3);
  margin-bottom: 14px;
}
.tour-modal-head h3 {
  font-size: clamp(1.5rem, 4vw, 1.85rem);
  color: var(--green-dark); margin-bottom: 8px; line-height: 1.2;
}
.tour-modal-head p {
  font-size: .92rem; color: var(--gray-600); line-height: 1.6;
  max-width: 400px; margin: 0 auto;
}

/* Form */
.tour-form { display: flex; flex-direction: column; gap: 14px; }
.tour-row {
  display: grid; grid-template-columns: 1fr 1fr; gap: 14px;
}
.tour-field { display: flex; flex-direction: column; }
.tour-field label {
  font-size: .72rem; font-weight: 700;
  color: var(--gray-800);
  text-transform: uppercase; letter-spacing: .07em;
  margin-bottom: 6px;
}
.tour-field input,
.tour-field select,
.tour-field textarea {
  width: 100%; padding: 12px 14px;
  border: 1.5px solid var(--gray-200); border-radius: 9px;
  font-size: .9rem; font-family: 'Inter', sans-serif;
  color: var(--dark); background: var(--off-white);
  outline: none; transition: all .2s;
  appearance: none;
}
.tour-field input:focus,
.tour-field select:focus,
.tour-field textarea:focus {
  border-color: var(--gold);
  background: var(--white);
  box-shadow: 0 0 0 4px rgba(244,168,32,.12);
}
.tour-field textarea { resize: vertical; min-height: 60px; line-height: 1.55; }
.tour-field select {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%236B7280' d='M6 8L0 0h12z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  background-size: 10px;
  padding-right: 36px;
}

.tour-submit {
  margin-top: 8px;
  padding: 15px 26px;
  background: linear-gradient(135deg, var(--gold) 0%, #E8920A 100%);
  color: var(--green-dark);
  border: none; border-radius: 10px;
  font-size: .95rem; font-weight: 700;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center; gap: 9px;
  transition: all .25s;
  box-shadow: 0 8px 22px rgba(244,168,32,.35);
  position: relative; overflow: hidden;
}
.tour-submit::before {
  content: ''; position: absolute; top: 0; left: -100%; width: 100%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.4), transparent);
  transition: left .55s ease;
}
.tour-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(244,168,32,.5);
}
.tour-submit:hover::before { left: 100%; }
.tour-submit:disabled { opacity: .8; pointer-events: none; }

.tour-foot {
  text-align: center; margin-top: 6px;
  font-size: .72rem; color: var(--gray-400);
  display: flex; align-items: center; justify-content: center; gap: 6px;
}
.tour-foot i { color: var(--green); font-size: .78rem; }

/* Mobile sizing */
@media (max-width: 600px) {
  .tour-modal { padding: 0; align-items: flex-end; }
  .tour-modal-card {
    max-width: 100%; width: 100%;
    border-radius: 22px 22px 0 0;
    max-height: 95vh;
    padding: 30px 22px 26px;
    animation: tourSlideUpMobile .35s cubic-bezier(.34,1.36,.64,1);
  }
  @keyframes tourSlideUpMobile {
    from { transform: translateY(100%); }
    to   { transform: translateY(0); }
  }
  .tour-row { grid-template-columns: 1fr; gap: 12px; }
  .tour-modal-head { margin-bottom: 22px; }
  .tour-modal-head h3 { font-size: 1.4rem; }
  .tour-modal-head p  { font-size: .85rem; }
  .tour-modal-close { top: 12px; right: 12px; width: 34px; height: 34px; }
}

/* Cursor hint on Book-a-Tour CTAs */
[data-tour] { cursor: pointer; }

/* ── FLOATING WHATSAPP BUTTON ───────────────────────────── */
.wa-float {
  position: fixed; left: 24px; bottom: 28px; z-index: 998;
  display: flex; align-items: center;
  text-decoration: none;
}
.wa-float-btn {
  width: 60px; height: 60px; border-radius: 50%;
  background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
  display: flex; align-items: center; justify-content: center;
  color: #FFFFFF; font-size: 1.7rem;
  box-shadow: 0 10px 28px rgba(37,211,102,.45),
              0 2px 8px rgba(0,0,0,.15);
  transition: transform .3s cubic-bezier(.34,1.56,.64,1),
              box-shadow .3s;
  position: relative;
}
/* Outer pulsing ring */
.wa-float-btn::before {
  content: ''; position: absolute; inset: 0; border-radius: 50%;
  background: rgba(37,211,102,.45);
  z-index: -1;
  animation: waPulse 2s ease-out infinite;
}
@keyframes waPulse {
  0%   { transform: scale(1);   opacity: .6; }
  100% { transform: scale(1.6); opacity: 0;  }
}
.wa-float:hover .wa-float-btn {
  transform: scale(1.08) rotate(-6deg);
  box-shadow: 0 14px 36px rgba(37,211,102,.55),
              0 4px 14px rgba(0,0,0,.18);
}

/* Tooltip / label */
.wa-float-label {
  margin-left: 14px;
  background: var(--white);
  color: var(--green-dark);
  padding: 10px 16px 10px 18px;
  border-radius: 100px;
  font-size: .82rem; font-weight: 600;
  box-shadow: 0 8px 24px rgba(0,0,0,.12);
  white-space: nowrap;
  position: relative;
  opacity: 0; transform: translateX(-8px);
  transition: opacity .25s, transform .25s;
  pointer-events: none;
  border: 1px solid rgba(244,168,32,.18);
}
.wa-float-label::before {
  content: ''; position: absolute; left: -6px; top: 50%;
  transform: translateY(-50%) rotate(45deg);
  width: 10px; height: 10px;
  background: var(--white);
  border-left: 1px solid rgba(244,168,32,.18);
  border-bottom: 1px solid rgba(244,168,32,.18);
}
.wa-float-label .wa-tag {
  display: block; font-size: .62rem; font-weight: 700;
  color: var(--gold); text-transform: uppercase;
  letter-spacing: .12em; margin-bottom: 1px;
}
.wa-float:hover .wa-float-label {
  opacity: 1; transform: translateX(0);
}

/* Mobile sizing */
@media (max-width: 768px) {
  .wa-float { left: 16px; bottom: 18px; }
  .wa-float-btn { width: 54px; height: 54px; font-size: 1.5rem; }
  .wa-float-label { display: none; }
}

/* ── RESPONSIVE ─────────────────────────────────────────── */
@media (max-width: 1280px) {
  #navbar > .container { padding: 0 24px; }
  .nav-links a { padding: 8px 10px; font-size: .8rem; }
  .btn-tel  { padding: 9px 14px; font-size: .78rem; }
  .btn-book { padding: 10px 18px; font-size: .78rem; }
}
@media (max-width: 1100px) {
  .nav-logo img { height: 54px; }
  #navbar.scrolled .nav-logo img,
  #navbar.solid .nav-logo img { height: 48px; }
  .nav-links a { padding: 8px 8px; font-size: .76rem; }
  .nav-inner { gap: 12px; }
}
@media (max-width: 1100px) {
  .hero-grid    { grid-template-columns: 1fr; gap: 64px; }
  .hero-imgs    { height: 460px; max-width: 580px; margin: 0 auto; }
  .about-grid   { grid-template-columns: 1fr; gap: 50px; }
  .about-img-main { height: 420px; }
  .about-float  { right: 0; }
  .services-grid { grid-template-columns: repeat(2,1fr); }
  .amen-split   { grid-template-columns: 1fr; gap: 40px; }
  .amen-grid    { grid-template-columns: repeat(2,1fr); gap: 18px; }
  .amen-item    { padding: 28px 24px; }
  .pricing-grid { grid-template-columns: 1fr 1fr; gap: 18px; }
  .price-card.popular { transform: scale(1); grid-column: span 1; }
  .price-card.premium { grid-column: span 1; }
  .gallery-grid {
    grid-template-columns: repeat(3,1fr);
    grid-template-rows: repeat(3, 180px);
  }
  .gal-item:nth-child(1) { grid-column: span 2; }
  .gal-item:nth-child(6) { grid-column: span 1; }
  .contact-grid { grid-template-columns: 1fr; gap: 50px; }
  .footer-grid  { grid-template-columns: 1fr 1fr; gap: 36px; }
  .stats-grid   { grid-template-columns: repeat(2,1fr); }
  /* testi-card sizing handled in testimonials section above */
  .steps-grid   { grid-template-columns: repeat(2,1fr); }
  .steps-grid::before { display: none; }
  .info-cards   { grid-template-columns: 1fr 1fr; }
  .partner-why  { grid-template-columns: 1fr; gap: 44px; }
}
@media (max-width: 900px) {
  .nav-links { display: none; }
  .nav-cta   { display: none; }
  .hamburger { display: flex; }
  #navbar { padding: 14px 0; }
  .page-banner { padding: 120px 0 64px; }
}
@media (max-width: 768px) {
  html { font-size: 15.5px; }
  .section-pad  { padding: 64px 0; }
  .container    { padding: 0 20px; }

  /* Hero mobile */
  #hero { padding: 130px 0 70px; min-height: auto; }
  .hero-title { font-size: clamp(2rem, 8vw, 2.8rem); }
  .hero-desc  { font-size: .98rem; margin-bottom: 28px; }
  .hero-btns  { flex-direction: column; gap: 10px; }
  .hero-btns .btn { width: 100%; justify-content: center; padding: 14px 22px; }
  .hero-stats { gap: 0; padding-top: 24px; }
  .h-stat     { padding: 0 16px; }
  .hstat-num  { font-size: 1.7rem; }
  .hero-imgs  { height: 380px; }
  .hero-img-1 { width: 75%; height: 75%; }
  .hero-img-2 { width: 55%; height: 58%; border-width: 3px; }
  .hero-float-tag { padding: 10px 12px; gap: 9px; }
  .hero-float-tag .ft-icon { width: 32px; height: 32px; font-size: .85rem; }
  .hero-float-tag .ft-title { font-size: .72rem; }
  .hero-float-tag .ft-sub   { font-size: .6rem; }
  .hero-tag-tl { top: 12%; left: -10px; }
  .hero-tag-br { bottom: 12%; right: -8px; }
  .scroll-hint { display: none; }

  /* Page banner */
  .page-banner { padding: 130px 0 56px; }
  .page-banner h1 { font-size: clamp(1.8rem, 7vw, 2.4rem); }
  .page-banner p  { font-size: .95rem; }

  /* General typography */
  h1 { font-size: clamp(1.85rem, 6vw, 2.4rem); }
  h2 { font-size: clamp(1.55rem, 5vw, 2rem); }
  p  { font-size: .95rem; }
  .section-title    { margin-bottom: 12px; }
  .section-subtitle { font-size: .95rem; }

  /* Layouts */
  .services-grid { grid-template-columns: 1fr; gap: 18px; }
  .amen-grid    { grid-template-columns: 1fr; gap: 14px; }
  .amen-item    { padding: 26px 22px; }
  .amen-icon    { width: 54px; height: 54px; margin-bottom: 18px; }
  .amen-mini-badge { font-size: .72rem; padding: 7px 13px; }
  .amen-stats-row { gap: 10px; margin: 24px 0 36px; }
  .pricing-grid { grid-template-columns: 1fr; gap: 20px; }
  .price-card.popular { transform: scale(1); grid-column: span 1; }
  .price-card   { padding: 32px 26px; }
  .gallery-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto; height: auto; gap: 10px;
  }
  .gal-item     { height: 150px; }
  .gal-item:nth-child(1) { grid-column: span 2; height: 200px; }
  .gal-item:nth-child(6) { grid-column: span 2; }
  .cta-inner    { flex-direction: column; text-align: center; padding: 0 4px; }
  .cta-text h2  { font-size: 1.55rem; }
  .cta-btns     { justify-content: center; width: 100%; }
  .cta-btns a   { flex: 1; justify-content: center; min-width: 0; }
  /* testimonials mobile styles are above — don't override here */
  .footer-grid  { grid-template-columns: 1fr; gap: 32px; padding-bottom: 40px; }
  .f-row        { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; gap: 10px; }
  .footer-bl    { gap: 16px; flex-wrap: wrap; justify-content: center; }
  .about-grid   { gap: 36px; }
  .about-img-main { height: 320px; border-radius: 16px; }
  .about-float  { bottom: -14px; right: 14px; padding: 16px 20px; }
  .float-num    { font-size: 1.6rem; }
  .benefits-grid { grid-template-columns: 1fr; }
  .benefit-item { padding: 20px; }
  .steps-grid   { grid-template-columns: 1fr 1fr; gap: 18px; }
  .step-num     { width: 50px; height: 50px; font-size: 1.1rem; }
  .info-cards   { grid-template-columns: 1fr; gap: 16px; }
  .info-card    { padding: 28px 22px; }

  /* Stats */
  .stats-strip { padding: 56px 0; }
  .stats-grid  { gap: 28px; }
  .stat-num    { font-size: 2.3rem; }
  .stat-suf    { font-size: 1.5rem; }

  /* Trust bar */
  .trust-bar { padding: 12px 0; }
  .trust-track { gap: 36px; animation-duration: 18s; }
  .trust-item { font-size: .72rem; }

  /* Forms */
  .form-box { padding: 32px 24px; border-radius: 16px; }
  .form-title { font-size: 1.15rem; }

  /* CTA banner */
  .cta-banner { padding: 56px 0; }

  /* Buttons - touch friendly */
  .btn { padding: 14px 24px; min-height: 46px; }
  .btn-dark, .btn-ghost-dark { padding: 14px 22px; min-height: 46px; }

  /* Mobile menu refinements */
  #mobileMenu { padding: 90px 24px 40px; }
  #mobileMenu a { padding: 17px 4px; font-size: 1.05rem; }
  #mobileMenu .mob-book { margin-top: 18px; padding: 16px; }
  #mobileMenu .mob-tel  { padding: 15px; }
}
@media (max-width: 580px) {
  .top-bar-info { gap: 10px; }
  .top-bar-info .tb-phone span { display: none; }
  .top-bar-info .tb-hours { display: none; }
  .stats-grid { grid-template-columns: 1fr 1fr; gap: 24px; }
  .pricing-grid { gap: 16px; }
  .gallery-grid { gap: 8px; }
  .compare-table th, .compare-table td { padding: 11px 12px; font-size: .8rem; }
}
@media (max-width: 480px) {
  html { font-size: 15px; }
  .container { padding: 0 16px; }
  #hero { padding: 120px 0 64px; }
  .hero-stats   { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
  .h-stat       { border-right: none; border-bottom: 1px solid rgba(255,255,255,.08); padding: 0 0 12px 0; }
  .h-stat:nth-child(odd)  { border-right: 1px solid rgba(255,255,255,.1); padding-right: 12px; }
  .h-stat:nth-child(n+3)  { padding-bottom: 0; border-bottom: none; }
  .hero-imgs    { height: 320px; }
  .hero-tag-tl  { top: 8%; left: 2px; }
  .hero-tag-br  { bottom: 8%; right: 2px; }
  .about-check-grid { grid-template-columns: 1fr; }
  .steps-grid   { grid-template-columns: 1fr; }
  .stats-grid   { grid-template-columns: 1fr 1fr; }
  .cta-btns     { flex-direction: column; }
  .cta-btns a   { width: 100%; }
  .nav-logo img { height: 46px; }
  #navbar.scrolled .nav-logo img,
  #navbar.solid .nav-logo img { height: 44px; }
  .about-float { padding: 14px 18px; right: 8px; }
  .float-num   { font-size: 1.4rem; }
  .float-txt   { font-size: .62rem; }
}
