/* ================================================================
   CAPE TOWN SERVICE CENTRE — styles.css
   Theme: Dark Editorial / Refined Industrial
   Palette: Deep Charcoal · Forest Green · Warm Cream · Copper
   Fonts: Playfair Display (headings) + DM Sans (body)
   ================================================================ */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;600;700;900&family=DM+Sans:wght@300;400;500;600;700&family=DM+Mono:wght@400;500&display=swap');
@import url("https://fonts.googleapis.com/css2?family=Fraunces:wght@400;600;700;900&family=Plus+Jakarta+Sans:wght@300;400;500;600;700&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Bricolage+Grotesque:wght@400;500;600;700;800&family=DM+Sans:wght@300;400;500;600;700&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Syne:wght@400;600;700;800&family=Outfit:wght@300;400;500;600;700&display=swap");

/* ── VARIABLES ── */
:root {
  --charcoal: #1c1f22;
  --charcoal-mid: #252a2e;
  --charcoal-light: #2f3438;
  --forest: #2d6a4f;
  --forest-mid: #40916c;
  --forest-light: #52b788;
  --forest-pale: #d8f3dc;
  --copper: #c77d40;
  --copper-light: #e6a065;
  --cream: #f4f1eb;
  --cream-dark: #ede8df;
  --white: #ffffff;
  --text-dark: #1c1f22;
  --text-mid: #4a4f55;
  --text-light: #7a8088;
  --border-light: #e8e4db;
  --border-mid: #d4cfc6;

  --ff-head: 'Syn', Georgia, serif;
  --ff-body: 'Outfit', sans-serif;
  --ff-mono: 'DM Mono', monospace;

  --r-sm: 6px;
  --r-md: 12px;
  --r-lg: 20px;
  --r-xl: 32px;

  --shadow-soft: 0 4px 24px rgba(0,0,0,0.08);
  --shadow-mid: 0 8px 40px rgba(0,0,0,0.12);
  --shadow-deep: 0 20px 60px rgba(0,0,0,0.18);
  --shadow-green: 0 8px 32px rgba(45,106,79,0.28);

  --trans: all 0.25s ease;
}

/* ── BASE ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--ff-body);
  color: var(--text-dark);
  background: var(--cream);
  line-height: 1.7;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }

/* ── TOP STRIP ── */
.top-strip {
  background: var(--charcoal);
  padding: 8px 0;
  font-size: 0.78rem;
  font-weight: 500;
  color: rgba(255,255,255,0.55);
  letter-spacing: 0.3px;
}
.top-strip a { color: rgba(255,255,255,0.55); transition: color 0.2s; }
.top-strip a:hover { color: var(--forest-light); }
.top-strip .highlight { color: var(--forest-light); font-weight: 600; }
.top-strip-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
}
.top-strip-left { display: flex; align-items: center; gap: 20px; }
.top-strip-right { display: flex; align-items: center; gap: 12px; }

/* ── NAVBAR ── */
#mainNav {
  background: var(--white);
  border-bottom: 1px solid var(--border-light);
  padding: 14px 0;
  position: sticky;
  top: 0;
  z-index: 1000;
  transition: var(--trans);
}
#mainNav.scrolled {
  box-shadow: 0 4px 24px rgba(0,0,0,0.1);
  padding: 10px 0;
}

.nav-brand {
  display: flex;
  align-items: center;
  gap: 12px;
}
.nav-brand-icon {
  width: 46px; height: 46px;
  background: var(--charcoal);
  border-radius: var(--r-sm);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.nav-brand-icon svg { width: 24px; height: 24px; fill: var(--forest-light); }
.nav-brand-text-a {
  font-family: var(--ff-head);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--charcoal);
  display: block;
  line-height: 1.1;
}
.nav-brand-text-b {
  font-family: var(--ff-mono);
  font-size: 0.6rem;
  color: var(--forest);
  letter-spacing: 3px;
  text-transform: uppercase;
  display: block;
}

.navbar-nav .nav-link {
  font-family: var(--ff-body);
  font-weight: 500;
  font-size: 0.88rem;
  color: var(--text-mid) !important;
  padding: 6px 14px !important;
  border-radius: var(--r-sm);
  transition: var(--trans);
  letter-spacing: 0.2px;
}
.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
  color: var(--charcoal) !important;
  background: var(--cream);
}

/* Dropdown */
.dropdown-menu {
  background: var(--charcoal);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--r-md);
  padding: 8px;
  box-shadow: var(--shadow-deep);
  min-width: 220px;
  border-top: 2px solid var(--forest-mid);
  margin-top: 6px !important;
}
.dropdown-item {
  font-family: var(--ff-body);
  font-size: 0.84rem;
  font-weight: 500;
  color: rgba(255,255,255,0.72);
  padding: 9px 14px;
  border-radius: var(--r-sm);
  transition: var(--trans);
  display: flex;
  align-items: center;
  gap: 10px;
}
.dropdown-item:hover { background: rgba(255,255,255,0.07); color: var(--forest-light); }
.dropdown-item i { color: var(--forest-mid); font-size: 0.8rem; width: 14px; text-align: center; }

.btn-nav-wa {
  background: #25d366;
  color: white !important;
  font-family: var(--ff-body);
  font-weight: 600;
  font-size: 0.82rem;
  padding: 8px 16px;
  border-radius: 50px;
  border: none;
  transition: var(--trans);
}
.btn-nav-wa:hover { background: #20ba5a; transform: translateY(-1px); box-shadow: 0 4px 14px rgba(37,211,102,0.35); color: white !important; }

.btn-nav-call {
  background: var(--forest);
  color: white !important;
  font-family: var(--ff-body);
  font-weight: 700;
  font-size: 0.82rem;
  padding: 8px 18px;
  border-radius: 50px;
  border: none;
  transition: var(--trans);
}
.btn-nav-call:hover { background: var(--forest-mid); transform: translateY(-1px); box-shadow: var(--shadow-green); color: white !important; }

/* ── HERO ── */
.hero-section {
  position: relative;
  min-height: 95vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--charcoal);
}
.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('images/appliance-repair.jpg');
  background-size: cover;
  background-position: center;
  opacity: 0.22;
  filter: grayscale(40%);
}
/* Angled overlay divider */
.hero-section::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0; right: 0;
  height: 100px;
  background: var(--cream);
  clip-path: polygon(0 60%, 100% 0%, 100% 100%, 0 100%);
}

.hero-inner {
  position: relative;
  z-index: 2;
  width: 100%;
  padding: 80px 0 140px;
}

.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.14);
  color: var(--forest-light);
  font-family: var(--ff-mono);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 50px;
  margin-bottom: 22px;
}
.hero-tag-dot {
  width: 6px; height: 6px;
  background: var(--forest-light);
  border-radius: 50%;
  animation: pulse-dot 2s infinite;
}
@keyframes pulse-dot {
  0%,100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(0.7); }
}

.hero-title {
  font-family: var(--ff-head);
  font-size: clamp(2.2rem, 5vw, 4rem);
  font-weight: 900;
  color: var(--white);
  line-height: 1.08;
  margin-bottom: 20px;
  letter-spacing: -0.5px;
}
.hero-title em {
  font-style: italic;
  color: var(--forest-light);
}
.hero-subtitle {
  font-size: 1.3rem;
  color: white;
  max-width: 500px;
  margin-bottom: 28px;
  line-height: 1.75;
}

.hero-checks {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 10px 24px;
  margin-bottom: 32px;
}
.hero-checks li {
  font-size: 0.86rem;
  color: rgba(255,255,255,0.75);
  display: flex;
  align-items: center;
  gap: 7px;
  font-weight: 500;
}
.hero-checks li::before {
  content: '';
  width: 16px; height: 16px;
  background: var(--forest);
  border-radius: 50%;
  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='white' stroke-width='1.8' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  flex-shrink: 0;
}

.repair-links {
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
}

.repair-links h5 {
  font-family: var(--ff-head);
  font-size: 1.4rem;
  color: var(--white);
  font-weight: 600;
  margin-bottom: 18px;
  text-decoration: underline;
}

.repair-links ul { display: flex; flex-direction: column; gap: 10px; }

.repair-links ul li a {
  font-size: 1.2rem;
  color: var(--forest-light);
  transition: var(--trans);
}
.repair-links ul li a:hover { color: var(--forest-light); }

.hero-ctas { display: flex; gap: 14px; flex-wrap: wrap; }

.btn-primary-hero {
  background: var(--forest);
  color: white;
  font-family: var(--ff-body);
  font-weight: 700;
  font-size: 0.96rem;
  padding: 14px 28px;
  border-radius: var(--r-sm);
  border: none;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: var(--trans);
  letter-spacing: 0.2px;
}
.btn-primary-hero:hover { background: var(--forest-mid); transform: translateY(-2px); box-shadow: var(--shadow-green); color: white; }

.btn-secondary-hero {
  background: transparent;
  color: rgba(255,255,255,0.85);
  font-family: var(--ff-body);
  font-weight: 600;
  font-size: 0.96rem;
  padding: 13px 28px;
  border-radius: var(--r-sm);
  border: 1.5px solid rgba(255,255,255,0.22);
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: var(--trans);
}
.btn-secondary-hero:hover { background: rgba(255,255,255,0.08); border-color: rgba(255,255,255,0.4); color: white; }

/* Hero card */
.hero-card {
  background: var(--white);
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: var(--shadow-deep);
  position: relative;
  z-index: 2;
}
.hero-card-header {
  background: var(--charcoal);
  padding: 18px 24px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.hero-card-header h3 {
  font-family: var(--ff-head);
  font-size: 1.05rem;
  color: white;
  font-weight: 600;
}
.hero-card-header .hch-icon {
  width: 36px; height: 36px;
  background: var(--forest);
  border-radius: var(--r-sm);
  display: flex; align-items: center; justify-content: center;
  color: white; font-size: 1rem; flex-shrink: 0;
}
.hero-card-body { padding: 24px; }
.hero-card p.sub { font-size: 0.8rem; color: var(--text-light); margin-bottom: 18px; }

/* Form inputs — distinct style */
.ctsc-input, .ctsc-select, .ctsc-textarea {
  width: 100%;
  background: var(--cream);
  border: 1.5px solid var(--border-mid);
  border-radius: var(--r-sm);
  padding: 10px 14px;
  font-family: var(--ff-body);
  font-size: 0.86rem;
  color: var(--text-dark);
  transition: var(--trans);
  appearance: none;
}
.ctsc-input:focus, .ctsc-select:focus, .ctsc-textarea:focus {
  outline: none;
  border-color: var(--forest);
  background: var(--white);
  box-shadow: 0 0 0 3px rgba(45,106,79,0.12);
}
.ctsc-label {
  display: block;
  font-weight: 600;
  font-size: 0.78rem;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  color: var(--text-mid);
  margin-bottom: 5px;
}
.form-group { margin-bottom: 14px; }
.select-wrap { position: relative; }
.select-wrap::after {
  content: '▾';
  position: absolute; right: 13px; top: 50%;
  transform: translateY(-50%);
  font-size: 0.8rem;
  color: var(--text-light);
  pointer-events: none;
}

.btn-form-submit {
  width: 100%;
  background: var(--forest);
  color: white;
  font-family: var(--ff-body);
  font-weight: 700;
  font-size: 0.92rem;
  padding: 13px;
  border: none;
  border-radius: var(--r-sm);
  cursor: pointer;
  letter-spacing: 0.3px;
  transition: var(--trans);
  display: flex; align-items: center; justify-content: center; gap: 8px;
}
.btn-form-submit:hover { background: var(--forest-mid); transform: translateY(-1px); box-shadow: var(--shadow-green); }
.form-disclaimer { font-size: 0.72rem; color: var(--text-light); text-align: center; margin-top: 10px; }

/* ── METRICS STRIP ── */
.metrics-strip {
  background: var(--charcoal-light);
  padding: 0;
}
.metric-cell {
  padding: 30px 20px;
  text-align: center;
  border-right: 1px solid rgba(255,255,255,0.06);
  position: relative;
}
.metric-cell:last-child { border-right: none; }
.metric-num {
  font-family: var(--ff-head);
  font-size: 2.4rem;
  font-weight: 900;
  color: var(--forest-light);
  line-height: 1;
}
.metric-label {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
  margin-top: 4px;
}

/* ── SECTION BASE ── */
.section { padding: 88px 0; }
.section-sm { padding: 60px 0; }

.section-eyebrow {
  font-family: var(--ff-mono);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--forest);
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.section-eyebrow::before {
  content: '';
  width: 28px; height: 2px;
  background: var(--forest);
  display: inline-block;
  flex-shrink: 0;
}
.section-heading {
  font-family: var(--ff-head);
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 700;
  color: var(--charcoal);
  line-height: 1.15;
  margin-bottom: 14px;
  letter-spacing: -0.3px;
}
.section-desc {
  font-size: 1.2rem;
  color: var(--text-mid);
  line-height: 1.8;
  max-width: 560px;
}

/* ── SERVICES SECTION ── */
.services-section { background: var(--cream); }

.service-tile {
  background: var(--white);
  border-radius: var(--r-md);
  overflow: hidden;
  border: 1.5px solid var(--border-light);
  transition: var(--trans);
  height: 100%;
  display: flex;
  flex-direction: column;
  position: relative;
}
.service-tile:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-mid);
  border-color: var(--forest-pale);
}

.service-tile-img {
  width: 100%;
  height: 196px;
  object-fit: cover;
  filter: saturate(0.85);
  transition: filter 0.4s, transform 0.5s;
}
.service-tile:hover .service-tile-img { filter: saturate(1); transform: scale(1.04); }
.service-tile-img-wrap { overflow: hidden; position: relative; }
.service-tile-img-wrap::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(28,31,34,0.45));
}

.service-tile-num {
  position: absolute;
  top: 14px; left: 14px;
  font-family: var(--ff-mono);
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 1.5px;
  background: var(--charcoal);
  color: var(--forest-light);
  padding: 4px 10px;
  border-radius: 50px;
  z-index: 2;
}

.service-tile-body {
  padding: 22px;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.service-tile-body h3 {
  font-family: var(--ff-head);
  font-size: 1.28rem;
  font-weight: 700;
  color: var(--charcoal);
  margin-bottom: 8px;
  line-height: 1.25;
}
.service-tile-body p {
  font-size: 1rem;
  color: var(--text-mid);
  line-height: 1.7;
  flex: 1;
  margin-bottom: 16px;
}
.service-tile-link {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-weight: 700;
  font-size: 0.8rem;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  color: var(--forest);
  transition: var(--trans);
}
.service-tile-link i { font-size: 0.7rem; transition: transform 0.2s; }
.service-tile:hover .service-tile-link { color: var(--forest-mid); }
.service-tile:hover .service-tile-link i { transform: translateX(3px); }

/* ── WHY SECTION — dark bg with image ── */
.why-section {
  background: var(--charcoal);
  position: relative;
  overflow: hidden;
}
.why-section-bg {
  position: absolute;
  inset: 0;
  background-image: url('images/appliances.jpg');
  background-size: cover;
  background-position: right center;
  opacity: 0.07;
}

.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: rgba(255,255,255,0.05);
  border-radius: var(--r-md);
  overflow: hidden;
}
.why-item {
  background: var(--charcoal-mid);
  padding: 32px 28px;
  transition: var(--trans);
}
.why-item:hover { background: var(--charcoal-light); }
.why-item-icon {
  width: 48px; height: 48px;
  background: rgba(45,106,79,0.15);
  border: 1px solid rgba(82,183,136,0.25);
  border-radius: var(--r-sm);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem; color: var(--forest-light);
  margin-bottom: 16px;
}
.why-item h4 {
  font-family: var(--ff-head);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 8px;
}
.why-item p { font-size: 1rem; color: rgba(255,255,255,0.5); line-height: 1.75; margin: 0; }

/* ── CTA BAND — Forest green full bleed ── */
.cta-band {
  background: var(--forest);
  padding: 60px 0;
  position: relative;
  overflow: hidden;
}
.cta-band::before {
  content: '';
  position: absolute;
  top: -60px; right: -60px;
  width: 300px; height: 300px;
  border-radius: 50%;
  background: rgba(255,255,255,0.05);
}
.cta-band::after {
  content: '';
  position: absolute;
  bottom: -80px; left: -40px;
  width: 220px; height: 220px;
  border-radius: 50%;
  background: rgba(0,0,0,0.1);
}
.cta-band h2 {
  font-family: var(--ff-head);
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  color: white;
  font-weight: 700;
  margin-bottom: 10px;
}
.cta-band p { color: rgba(255,255,255,0.75); font-size: 1.2rem; margin-bottom: 26px; }
.btn-cta-main {
  background: var(--white);
  color: var(--forest);
  font-family: var(--ff-body);
  font-weight: 700;
  font-size: 1.2rem;
  padding: 14px 28px;
  border-radius: var(--r-sm);
  border: none;
  display: inline-flex;
  align-items: center; gap: 9px;
  transition: var(--trans);
}
.btn-cta-main:hover { background: var(--cream); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(0,0,0,0.2); color: var(--forest); }
.btn-cta-alt {
  background: transparent;
  color: rgba(255,255,255,0.9);
  font-family: var(--ff-body);
  font-weight: 600;
  font-size: 0.95rem;
  padding: 13px 28px;
  border: 1.5px solid rgba(255,255,255,0.35);
  border-radius: var(--r-sm);
  display: inline-flex; align-items: center; gap: 9px;
  transition: var(--trans);
}
.btn-cta-alt:hover { background: rgba(255,255,255,0.1); border-color: rgba(255,255,255,0.6); color: white; }

/* ── PROCESS — zigzag steps ── */
.process-section { background: var(--cream-dark); }
.step-card {
  background: var(--white);
  border-radius: var(--r-md);
  padding: 28px 24px;
  border: 1.5px solid var(--border-light);
  position: relative;
  transition: var(--trans);
}
.step-card:hover { border-color: var(--forest-pale); box-shadow: var(--shadow-soft); }
.step-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--forest);
  border-radius: var(--r-md) var(--r-md) 0 0;
  transform: scaleX(0);
  transition: transform 0.3s ease;
  transform-origin: left;
}
.step-card:hover::before { transform: scaleX(1); }
.step-num {
  font-family: var(--ff-mono);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 2px;
  color: var(--text-light);
  margin-bottom: 14px;
}
.step-icon {
  width: 52px; height: 52px;
  background: var(--forest-pale);
  border-radius: var(--r-sm);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.3rem; color: var(--forest);
  margin-bottom: 16px;
  transition: var(--trans);
}
.step-card:hover .step-icon { background: var(--forest); color: white; }
.step-card h4 {
  font-family: var(--ff-head);
  font-size: 1.2rem;
  color: var(--charcoal);
  margin-bottom: 8px;
}
.step-card p { font-size: 1rem; color: var(--text-mid); line-height: 1.7; margin: 0; }

/* ── AREAS — editorial grid ── */
.areas-section {
  background: var(--charcoal);
  position: relative;
  overflow: hidden;
}
.areas-bg {
  position: absolute;
  inset: 0;
  background-image: url('images/hero.jpg');
  background-size: cover;
  background-position: center;
  opacity: 0.08;
  filter: grayscale(100%);
}
.area-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  color: rgba(255,255,255,0.72);
  font-size: 0.82rem;
  font-weight: 500;
  padding: 7px 16px;
  border-radius: 50px;
  transition: var(--trans);
  cursor: default;
}
.area-pill:hover { background: var(--forest); border-color: var(--forest); color: white; }
.area-pill i { color: var(--forest-mid); font-size: 0.65rem; }
.areas-grid { display: flex; flex-wrap: wrap; gap: 8px; }

/* ── TESTIMONIALS ── */
.testi-section { background: var(--cream); }
.testi-card {
  background: var(--white);
  border-radius: var(--r-md);
  padding: 30px;
  border: 1.5px solid var(--border-light);
  height: 100%;
  position: relative;
  transition: var(--trans);
}
.testi-card:hover { box-shadow: var(--shadow-mid); border-color: var(--border-mid); transform: translateY(-3px); }
.testi-card.featured {
  background: var(--charcoal);
  border-color: transparent;
}
.quote-mark {
  font-family: var(--ff-head);
  font-size: 5rem;
  line-height: 0.5;
  color: var(--forest-pale);
  margin-bottom: 14px;
  display: block;
}
.testi-card.featured .quote-mark { color: rgba(255,255,255,0.08); }
.testi-stars { color: #e6a065; font-size: 0.85rem; letter-spacing: 2px; margin-bottom: 12px; }
.testi-text { font-size: 0.91rem; color: var(--text-mid); line-height: 1.8; margin-bottom: 22px; font-style: italic; }
.testi-card.featured .testi-text { color: rgba(255,255,255,0.68); }
.testi-author { display: flex; align-items: center; gap: 12px; }
.testi-avatar {
  width: 42px; height: 42px;
  border-radius: var(--r-sm);
  background: var(--forest);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--ff-head);
  font-weight: 700;
  font-size: 1rem;
  color: white;
  flex-shrink: 0;
}
.testi-card.featured .testi-avatar { background: var(--copper); }
.testi-name {
  font-family: var(--ff-body);
  font-weight: 700;
  font-size: 0.88rem;
  color: var(--charcoal);
}
.testi-card.featured .testi-name { color: white; }
.testi-area { font-size: 0.76rem; color: var(--text-light); }
.testi-card.featured .testi-area { color: rgba(255,255,255,0.45); }

/* ── FAQ ── */
.faq-section { background: var(--white); }
.faq-item {
  border-bottom: 1px solid var(--border-light);
}
.faq-question {
  width: 100%;
  background: none;
  border: none;
  padding: 18px 0;
  font-family: var(--ff-body);
  font-weight: 600;
  font-size: 0.93rem;
  color: var(--charcoal);
  text-align: left;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  transition: color 0.2s;
}
.faq-question:hover { color: var(--forest); }
.faq-q-icon {
  width: 26px; height: 26px;
  border-radius: var(--r-sm);
  background: var(--cream);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.75rem;
  color: var(--text-mid);
  flex-shrink: 0;
  transition: var(--trans);
}
.faq-item.open .faq-q-icon { background: var(--forest); color: white; transform: rotate(45deg); }
.faq-item.open .faq-question { color: var(--forest); }
.faq-answer {
  overflow: hidden;
  max-height: 0;
  transition: max-height 0.35s ease, padding 0.25s ease;
  font-size: 0.9rem;
  color: var(--text-mid);
  line-height: 1.8;
  padding-bottom: 0;
}
.faq-item.open .faq-answer { max-height: 280px; padding-bottom: 18px; }

/* ── FOOTER ── */
.site-footer {
  background: var(--charcoal);
}
.footer-main { padding: 64px 0 44px; }
.footer-brand-name {
  font-family: var(--ff-head);
  font-size: 1.3rem;
  font-weight: 700;
  color: white;
  line-height: 1.1;
}
.footer-brand-sub {
  font-family: var(--ff-mono);
  font-size: 0.6rem;
  color: var(--forest-mid);
  letter-spacing: 3px;
  text-transform: uppercase;
  display: block;
  margin-top: 2px;
}
.footer-about { font-size: 0.87rem; color: rgba(255,255,255,0.5); line-height: 1.75; margin: 14px 0; }
.footer-contact-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.86rem;
  color: rgba(255,255,255,0.55);
  margin-bottom: 8px;
  transition: color 0.2s;
}
.footer-contact-item:hover { color: var(--forest-light); }
.footer-contact-item i { color: var(--forest-mid); width: 16px; text-align: center; flex-shrink: 0; }

.footer-heading {
  font-family: var(--ff-body);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.35);
  margin-bottom: 16px;
}
.footer-links { list-style: none; display: flex; flex-direction: column; gap: 8px; }
.footer-links a { font-size: 0.87rem; color: rgba(255,255,255,0.55); transition: var(--trans); display: flex; align-items: center; gap: 7px; }
.footer-links a:hover { color: var(--forest-light); padding-left: 3px; }
.footer-links a i { font-size: 0.65rem; color: var(--forest-mid); }

.footer-hours-item { display: flex; justify-content: space-between; font-size: 0.83rem; color: rgba(255,255,255,0.5); padding: 5px 0; border-bottom: 1px solid rgba(255,255,255,0.05); }
.footer-hours-item:last-child { border-bottom: none; }
.footer-hours-item span:last-child { color: var(--forest-light); font-weight: 600; }

.footer-bottom {
  background: rgba(0,0,0,0.25);
  border-top: 1px solid rgba(255,255,255,0.05);
  padding: 16px 0;
  font-size: 0.78rem;
  color: rgba(255,255,255,0.3);
}
.footer-bottom a { color: var(--forest-light);  transition: color 0.2s; }
.footer-bottom a:hover { color: var(--forest-light); }

/* ── FLOATING BUTTONS ── */
.float-wa {
  position: fixed;
  bottom: 82px;
  right: 20px;
  width: 48px; height: 48px;
  border-radius: 50%;
  background: #25d366;
  color: white;
  font-size: 1.3rem;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 16px rgba(37,211,102,0.4);
  z-index: 9999;
  transition: var(--trans);
}
.float-wa:hover { transform: scale(1.1); box-shadow: 0 6px 20px rgba(37,211,102,0.6); color: white; }
.float-call {
  position: fixed;
  bottom: 22px; right: 20px;
  width: 48px; height: 48px;
  border-radius: 50%;
  background: var(--forest);
  color: white;
  font-size: 1.1rem;
  display: flex; align-items: center; justify-content: center;
  box-shadow: var(--shadow-green);
  z-index: 9999;
  transition: var(--trans);
}
.float-call:hover { transform: scale(1.1); background: var(--forest-mid); color: white; }

/* ── INNER PAGE HERO ── */
.inner-hero {
  background: var(--charcoal);
  padding: 72px 0 80px;
  position: relative;
  overflow: hidden;
}
.inner-hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0.15;
  filter: grayscale(50%);
}
.inner-hero::after {
  content: '';
  position: absolute;
  bottom: -2px; left: 0; right: 0;
  height: 60px;
  background: var(--cream);
  clip-path: polygon(0 80%, 100% 0%, 100% 100%, 0 100%);
}
.inner-hero-inner { position: relative; z-index: 2; }
.inner-hero-tag {
  font-family: var(--ff-mono);
  font-size: 0.7rem;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--forest-light);
  margin-bottom: 14px;
  display: flex; align-items: center; gap: 8px;
}
.inner-hero-tag::before { content: ''; width: 20px; height: 1.5px; background: var(--forest-light); }
.inner-hero h1 {
  font-family: var(--ff-head);
  font-size: clamp(1.8rem, 4vw, 3rem);
  font-weight: 900;
  color: white;
  margin-bottom: 14px;
  line-height: 1.12;
}
.inner-hero p { color: rgba(255,255,255,0.65); font-size: 0.97rem; max-width: 520px; line-height: 1.75; }
.inner-hero-ctas { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 26px; }
.breadcrumb-trail { font-size: 0.78rem; color: rgba(255,255,255,0.38); margin-bottom: 18px; }
.breadcrumb-trail a { color: rgba(255,255,255,0.38); }
.breadcrumb-trail a:hover { color: var(--forest-light); }
.breadcrumb-trail span { color: var(--forest-light); }

/* ── SERVICE PAGE CONTENT ── */
.page-content { padding: 72px 0; background: var(--cream); }

.content-main h2 {
  font-family: var(--ff-head);
  font-size: clamp(1.4rem, 2.5vw, 2rem);
  color: var(--charcoal);
  font-weight: 700;
  margin-bottom: 14px;
  margin-top: 0;
}
.content-main h3 {
  font-family: var(--ff-head);
  font-size: 1.15rem;
  color: var(--charcoal);
  margin-bottom: 14px;
  margin-top: 36px;
}
.content-main p { color: var(--text-mid); line-height: 1.85; margin-bottom: 14px; }

.problems-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin: 20px 0;
}
.problem-item {
  background: var(--white);
  border: 1.5px solid var(--border-light);
  border-radius: var(--r-sm);
  padding: 16px;
  display: flex;
  gap: 12px;
  align-items: flex-start;
  transition: var(--trans);
}
.problem-item:hover { border-color: var(--forest-pale); }
.pi-bullet {
  width: 22px; height: 22px;
  background: var(--forest-pale);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; margin-top: 2px;
}
.pi-bullet i { font-size: 0.6rem; color: var(--forest); }
.problem-item strong { font-size: 0.88rem; font-weight: 700; color: var(--charcoal); display: block; margin-bottom: 3px; }
.problem-item p { font-size: 0.81rem; color: var(--text-mid); line-height: 1.6; margin: 0; }

.guarantee-box {
  background: var(--charcoal);
  border-radius: var(--r-md);
  padding: 24px;
  display: flex;
  gap: 16px;
  align-items: flex-start;
  margin: 28px 0;
}
.guarantee-box .gb-icon {
  width: 44px; height: 44px;
  background: var(--forest);
  border-radius: var(--r-sm);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem; color: white; flex-shrink: 0;
}
.guarantee-box h4 { font-family: var(--ff-head); color: white; font-size: 1rem; margin-bottom: 6px; }
.guarantee-box p { color: rgba(255,255,255,0.6); font-size: 0.86rem; margin: 0; line-height: 1.7; }

/* Sidebar */
.sidebar-booking {
  background: var(--charcoal);
  border-radius: var(--r-md);
  overflow: hidden;
  box-shadow: var(--shadow-deep);
}
.sidebar-booking-head {
  padding: 18px 22px;
  background: var(--forest);
  font-family: var(--ff-head);
  font-weight: 700;
  font-size: 1rem;
  color: white;
  display: flex; align-items: center; gap: 10px;
}
.sidebar-booking-body { padding: 22px; }
.sidebar-booking-body .ctsc-label { color: rgba(255,255,255,0.55); }
.sidebar-booking-body .ctsc-input,
.sidebar-booking-body .ctsc-select,
.sidebar-booking-body .ctsc-textarea {
  background: rgba(255,255,255,0.06);
  border-color: rgba(255,255,255,0.1);
  color: rgba(255,255,255,0.85);
}
.sidebar-booking-body .ctsc-input::placeholder { color: rgba(255,255,255,0.25); }
.sidebar-booking-body .ctsc-input:focus,
.sidebar-booking-body .ctsc-select:focus,
.sidebar-booking-body .ctsc-textarea:focus {
  border-color: var(--forest-mid);
  background: rgba(255,255,255,0.09);
  box-shadow: 0 0 0 3px rgba(64,145,108,0.2);
}
.sidebar-booking-body .ctsc-select option { background: var(--charcoal); color: white; }
.sidebar-booking-body .select-wrap::after { color: rgba(255,255,255,0.35); }

.sidebar-direct {
  background: var(--white);
  border-radius: var(--r-md);
  padding: 20px;
  margin-top: 14px;
  text-align: center;
  border: 1.5px solid var(--border-light);
}
.sidebar-direct p { font-size: 0.84rem; color: var(--text-light); margin-bottom: 12px; font-weight: 500; }
.btn-sidebar-call {
  width: 100%;
  background: var(--forest);
  color: white;
  font-family: var(--ff-body);
  font-weight: 700;
  font-size: 0.88rem;
  padding: 11px;
  border-radius: var(--r-sm);
  border: none;
  display: flex; align-items: center; justify-content: center; gap: 8px;
  transition: var(--trans); margin-bottom: 8px;
}
.btn-sidebar-call:hover { background: var(--forest-mid); color: white; }
.btn-sidebar-wa {
  width: 100%;
  background: #25d366;
  color: white;
  font-family: var(--ff-body);
  font-weight: 700;
  font-size: 0.88rem;
  padding: 11px;
  border-radius: var(--r-sm);
  border: none;
  display: flex; align-items: center; justify-content: center; gap: 8px;
  transition: var(--trans);
}
.btn-sidebar-wa:hover { background: #1ebe57; color: white; }

.sidebar-related {
  background: var(--cream-dark);
  border-radius: var(--r-md);
  padding: 20px;
  margin-top: 14px;
}
.sidebar-related h6 {
  font-family: var(--ff-mono);
  font-size: 0.68rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--text-light);
  margin-bottom: 12px;
}
.related-item {
  display: flex; align-items: center; gap: 10px;
  padding: 8px 10px; border-radius: var(--r-sm);
  font-size: 0.86rem;
  color: var(--text-mid);
  font-weight: 500;
  transition: var(--trans);
  margin-bottom: 2px;
}
.related-item:hover { background: white; color: var(--forest); }
.related-item i { font-size: 0.75rem; color: var(--forest-mid); }

/* ── UTILITIES ── */
.text-white { color: white; }
.text-green { color: var(--forest-light); }
.mt-0 { margin-top: 0; }
.form-feedback { padding: 10px 14px; border-radius: var(--r-sm); font-size: 0.86rem; font-weight: 600; text-align: center; margin-top: 10px; display: none; }

/* ── RESPONSIVE ── */
@media (max-width: 991px) {
  .hero-section { min-height: auto; }
  .hero-inner { padding: 60px 0 100px; }
  .why-grid { grid-template-columns: 1fr; }
  .section { padding: 64px 0; }
}
@media (max-width: 767px) {
  .problems-grid { grid-template-columns: 1fr; }
  .top-strip-left { flex-direction: column; gap: 4px; font-size: 0.72rem; }
  .metric-cell { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.06); }
  .metric-cell:last-child { border-bottom: none; }
  .float-wa { bottom: 78px; right: 16px; }
  .float-call { bottom: 18px; right: 16px; }
}
@media (max-width: 480px) {
  .hero-title { font-size: 2rem; }
  .btn-primary-hero, .btn-secondary-hero { width: 100%; justify-content: center; }
}


.field-error {
  display: block;
  color: #e74c3c;
  font-size: 0.78rem;
  margin-top: 0.25rem;
  min-height: 1em;
}

.ctsc-input.input-error,
.ctsc-select.input-error,
.ctsc-textarea.input-error {
  border-color: #e74c3c !important;
  outline-color: #e74c3c !important;
}

#submit-btn:disabled {
  opacity: 0.65;
  cursor: not-allowed;
}