/* ============================================
   EXTREME MARBLE POLISHING - MAIN STYLESHEET
   ============================================ */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;600;700;900&family=DM+Sans:wght@300;400;500;600&display=swap');

/* ---- CSS VARIABLES ---- */
:root {
  --green:    #1B9C85;
  --green-dark: #157a69;
  --green-light: #22c4a8;
  --bg-light: #EDF6EE;
  --dark:     #0F172A;
  --dark-80:  rgba(15,23,42,0.85);
  --white:    #ffffff;
  --gray:     #64748B;
  --gray-light: #f1f5f9;
  --gold:     #d4a843;
  --border:   rgba(27,156,133,0.15);
  --radius:   14px;
  --shadow:   0 4px 32px rgba(15,23,42,0.10);
  --shadow-lg:0 12px 48px rgba(15,23,42,0.18);
  --font-display: 'Playfair Display', Georgia, serif;
  --font-body:    'DM Sans', system-ui, sans-serif;
}

/* ---- RESET & BASE ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: var(--font-body);
  background: var(--white);
  color: var(--dark);
  line-height: 1.6;
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a  { text-decoration: none; color: inherit; }

/* ---- UTILITY ---- */
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.section-tag {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--green);
  background: rgba(27,156,133,0.1);
  padding: 6px 16px;
  border-radius: 100px;
  margin-bottom: 16px;
}
.section-title {
  font-family: var(--font-display);
  font-size: clamp(1.9rem, 4vw, 3rem);
  font-weight: 700;
  line-height: 1.18;
  color: var(--dark);
}
.section-title span { color: var(--green); }
.section-sub {
  font-size: 1.05rem;
  color: var(--gray);
  max-width: 600px;
  margin-top: 12px;
  line-height: 1.7;
}

/* ============================================
   BUTTONS
   ============================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.97rem;
  padding: 14px 28px;
  border-radius: 100px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: all 0.28s cubic-bezier(0.34, 1.56, 0.64, 1);
  position: relative;
  overflow: hidden;
  letter-spacing: 0.01em;
  text-align: center;
  white-space: nowrap;
}

.btn::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at center, rgba(255,255,255,0.25) 0%, transparent 70%);
  opacity: 0;
  transition: opacity 0.3s;
}
.btn:hover::after { opacity: 1; }

.btn-primary {
  background: var(--green);
  color: var(--white);
  box-shadow: 0 4px 20px rgba(27,156,133,0.35);
}
.btn-primary:hover {
  background: var(--green-dark);
  transform: translateY(-3px) scale(1.03);
  box-shadow: 0 8px 32px rgba(27,156,133,0.5);
}
.btn-primary:active { transform: scale(0.98); }

.btn-whatsapp {
  background: #25D366;
  color: var(--white);
  box-shadow: 0 4px 20px rgba(37,211,102,0.35);
}
.btn-whatsapp:hover {
  background: #1fa355;
  transform: translateY(-3px) scale(1.03);
  box-shadow: 0 8px 32px rgba(37,211,102,0.5);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.6);
}
.btn-outline:hover {
  background: rgba(255,255,255,0.15);
  border-color: var(--white);
  transform: translateY(-3px) scale(1.03);
}

.btn-dark {
  background: var(--dark);
  color: var(--white);
  box-shadow: 0 4px 20px rgba(15,23,42,0.25);
}
.btn-dark:hover {
  background: #1e293b;
  transform: translateY(-3px) scale(1.03);
  box-shadow: 0 8px 32px rgba(15,23,42,0.35);
}

/* pulse ring on CTA buttons */
.btn-pulse {
  animation: pulseRing 2.2s infinite;
}
@keyframes pulseRing {
  0%   { box-shadow: 0 0 0 0 rgba(27,156,133,0.55), 0 4px 20px rgba(27,156,133,0.35); }
  60%  { box-shadow: 0 0 0 14px rgba(27,156,133,0), 0 4px 20px rgba(27,156,133,0.35); }
  100% { box-shadow: 0 0 0 0 rgba(27,156,133,0), 0 4px 20px rgba(27,156,133,0.35); }
}
.btn-pulse-wa {
  animation: pulseRingWa 2.2s infinite 0.5s;
}
@keyframes pulseRingWa {
  0%   { box-shadow: 0 0 0 0 rgba(37,211,102,0.55), 0 4px 20px rgba(37,211,102,0.35); }
  60%  { box-shadow: 0 0 0 14px rgba(37,211,102,0), 0 4px 20px rgba(37,211,102,0.35); }
  100% { box-shadow: 0 0 0 0 rgba(37,211,102,0), 0 4px 20px rgba(37,211,102,0.35); }
}

/* ============================================
   ANNOUNCEMENT BAR
   ============================================ */
.announcement-bar {
  background: var(--dark);
  color: var(--white);
  text-align: center;
  padding: 10px 24px;
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  position: relative;
  overflow: hidden;
}
.announcement-bar::before {
  content: '';
  position: absolute;
  left: -100%;
  top: 0; bottom: 0;
  width: 60%;
  background: linear-gradient(90deg, transparent, rgba(27,156,133,0.25), transparent);
  animation: shimmer 3s infinite;
}
@keyframes shimmer {
  to { left: 160%; }
}
.announcement-bar strong { color: var(--green-light); }

/* ============================================
   NAVBAR
   ============================================ */
.navbar {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
  transition: box-shadow 0.3s;
}
.navbar.scrolled { box-shadow: 0 2px 24px rgba(15,23,42,0.10); }
.navbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  gap: 24px;
}
.logo { display: flex; align-items: center; gap: 12px; }
.logo img { height: 48px; width: auto; }
.logo-text { font-family: var(--font-display); font-weight: 700; font-size: 1.1rem; line-height: 1.2; color: var(--dark); }
.logo-text span { display: block; font-family: var(--font-body); font-weight: 400; font-size: 0.72rem; letter-spacing: 0.15em; text-transform: uppercase; color: var(--green); }
.nav-links { display: flex; align-items: center; gap: 32px; }
.nav-links a { font-size: 0.9rem; font-weight: 500; color: var(--gray); transition: color 0.2s; }
.nav-links a:hover { color: var(--green); }
.nav-cta { display: flex; align-items: center; gap: 10px; }
.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 4px; }
.hamburger span { display: block; width: 24px; height: 2px; background: var(--dark); border-radius: 2px; transition: all 0.3s; }

/* ============================================
   HERO
   ============================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--dark);
}
.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('./images/extreme-marble-polish-dubai-hero-section-bg.webp');
  background-size: cover;
  background-position: center;
  filter: brightness(0.15) saturate(0.8);
  transform: scale(1.05);
  animation: heroZoom 12s ease-out forwards;
}
@keyframes heroZoom { to { transform: scale(1); } }

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(15,23,42,0.65) 0%, rgba(27,156,133,0.15) 100%);
}
.hero-content {
  position: relative;
  z-index: 2;
  padding: 120px 0 80px;
  max-width: 760px;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(27,156,133,0.2);
  border: 1px solid rgba(27,156,133,0.5);
  color: #6ee7d4;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 7px 16px;
  border-radius: 100px;
  margin-bottom: 24px;
  backdrop-filter: blur(8px);
}
.hero-badge .dot {
  width: 7px; height: 7px;
  background: #6ee7d4;
  border-radius: 50%;
  animation: blink 1.4s infinite;
}
@keyframes blink { 0%,100%{opacity:1} 50%{opacity:0.3} }

.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 6vw, 4.5rem);
  font-weight: 900;
  color: var(--white);
  line-height: 1.08;
  margin-bottom: 22px;
}
.hero h1 .accent { color: var(--green-light); }
.hero p {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.8);
  max-width: 560px;
  margin-bottom: 36px;
  line-height: 1.75;
}
.hero-cta { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 48px; }

.hero-stats {
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
}
.hero-stat { }
.hero-stat .num {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1;
}
.hero-stat .num span { color: var(--green-light); }
.hero-stat .label { font-size: 0.8rem; color: rgba(255,255,255,0.6); margin-top: 4px; letter-spacing: 0.04em; }

/* ============================================
   TRUST BAR
   ============================================ */
.trust-bar {
  background: var(--dark);
  padding: 18px 0;
  overflow: hidden;
  position: relative;
}
.trust-bar::before, .trust-bar::after {
  content: '';
  position: absolute;
  top: 0; bottom: 0;
  width: 80px;
  z-index: 2;
}
.trust-bar::before { left: 0; background: linear-gradient(90deg, var(--dark), transparent); }
.trust-bar::after  { right: 0; background: linear-gradient(-90deg, var(--dark), transparent); }
.trust-track {
  display: flex;
  align-items: center;
  gap: 60px;
  white-space: nowrap;
  animation: scroll-left 22s linear infinite;
  width: max-content;
}
@keyframes scroll-left { to { transform: translateX(-50%); } }
.trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.85rem;
  font-weight: 600;
  color: rgba(255,255,255,0.75);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.trust-item .icon { font-size: 1.1rem; }
.trust-dot {
  width: 5px; height: 5px;
  border-radius: 50%;
  background: var(--green);
  flex-shrink: 0;
}

/* ============================================
   GOOGLE RATING BAR
   ============================================ */
.rating-section {
  background: var(--bg-light);
  padding: 40px 0;
  border-bottom: 1px solid var(--border);
}
.rating-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 48px;
  flex-wrap: wrap;
}
.rating-block {
  display: flex;
  align-items: center;
  gap: 18px;
}
.g-logo {
  width: 48px; height: 48px;
  background: white;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  box-shadow: 0 2px 12px rgba(0,0,0,0.1);
  flex-shrink: 0;
}
.rating-info .score {
  font-family: var(--font-display);
  font-size: 2.4rem;
  font-weight: 700;
  color: var(--dark);
  line-height: 1;
}
.stars { color: #f59e0b; font-size: 1.15rem; letter-spacing: 2px; }
.rating-info .count { font-size: 0.82rem; color: var(--gray); margin-top: 2px; }
.rating-divider { width: 1px; height: 50px; background: var(--border); }
.rating-badges { display: flex; gap: 20px; flex-wrap: wrap; }
.rating-badge {
  display: flex;
  align-items: center;
  gap: 9px;
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 10px 18px;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--dark);
  box-shadow: var(--shadow);
}
.rating-badge .icon { font-size: 1.2rem; }

/* ============================================
   SERVICES
   ============================================ */
.services { padding: 96px 0; background: var(--white); }
.section-header { margin-bottom: 56px; }
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 28px;
}
.service-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 20px;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s;
  cursor: default;
}
.service-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: var(--green);
}
.service-img {
  height: 220px;
  overflow: hidden;
  position: relative;
}
.service-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.service-card:hover .service-img img { transform: scale(1.06); }
.service-tag {
  position: absolute;
  top: 14px; left: 14px;
  background: var(--green);
  color: white;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: 100px;
}
.service-body { padding: 26px; }
.service-icon { font-size: 2rem; margin-bottom: 12px; }
.service-card h3 {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 10px;
}
.service-card p { font-size: 0.9rem; color: var(--gray); line-height: 1.65; }
.service-card.featured {
  border-color: var(--green);
  background: linear-gradient(135deg, var(--dark) 0%, #1a2744 100%);
  color: white;
  grid-column: span 1;
}
.service-card.featured h3,
.service-card.featured p { color: rgba(255,255,255,0.9); }
.service-card.featured p { color: rgba(255,255,255,0.65); }
.service-card.featured .service-tag {
  background: var(--green-light);
  color: var(--dark);
}
.service-card.featured:hover { border-color: var(--green-light); }

/* ============================================
   WHY US / EXPERTISE
   ============================================ */
.expertise { padding: 96px 0; background: var(--bg-light); }
.expertise-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}
.expertise-img-stack { position: relative; }
.expertise-img-main {
  width: 100%;

  border-radius: 24px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.expertise-img-main img { width: 100%; height: 720px; object-fit: cover; }
.expertise-img-badge {
  position: absolute;
  bottom: -24px;
  right: -24px;
  background: var(--green);
  color: white;
  border-radius: 20px;
  padding: 20px 24px;
  text-align: center;
  box-shadow: 0 8px 32px rgba(27,156,133,0.4);
}
.expertise-img-badge .big { font-family: var(--font-display); font-size: 2.2rem; font-weight: 900; line-height: 1; }
.expertise-img-badge .small { font-size: 0.78rem; font-weight: 600; opacity: 0.85; margin-top: 4px; }

.expertise-content { }
.expertise-points { margin-top: 36px; display: flex; flex-direction: column; gap: 24px; }
.expertise-point { display: flex; gap: 16px; align-items: flex-start; }
.ep-icon {
  width: 48px; height: 48px;
  background: rgba(27,156,133,0.12);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  flex-shrink: 0;
}
.ep-text h4 { font-weight: 700; font-size: 1rem; color: var(--dark); margin-bottom: 4px; }
.ep-text p  { font-size: 0.88rem; color: var(--gray); line-height: 1.6; }

/* ============================================
   OFFER / PROMO BANNER
   ============================================ */
.offer-section {
  padding: 80px 0;
  background: linear-gradient(135deg, var(--dark) 0%, #1a2744 60%, #0d3330 100%);
  position: relative;
  overflow: hidden;
}
.offer-section::before {
  content: '';
  position: absolute;
  top: -40%; right: -10%;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(27,156,133,0.25) 0%, transparent 70%);
  pointer-events: none;
}
.offer-section::after {
  content: '';
  position: absolute;
  bottom: -30%; left: -5%;
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(27,156,133,0.15) 0%, transparent 70%);
  pointer-events: none;
}
.offer-inner {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 48px;
  flex-wrap: wrap;
}
.offer-left { max-width: 600px; }
.offer-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(212,168,67,0.15);
  border: 1px solid rgba(212,168,67,0.4);
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 7px 16px;
  border-radius: 100px;
  margin-bottom: 20px;
}
.offer-badge .fire { animation: shake 0.8s infinite; display: inline-block; }
@keyframes shake { 0%,100%{transform:rotate(0)} 25%{transform:rotate(8deg)} 75%{transform:rotate(-8deg)} }

.offer-left h2 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 800;
  color: var(--white);
  line-height: 1.18;
  margin-bottom: 14px;
}
.offer-left h2 span { color: var(--green-light); }
.offer-left p { font-size: 0.95rem; color: rgba(255,255,255,0.7); line-height: 1.7; margin-bottom: 28px; }
.offer-perks { display: flex; flex-direction: column; gap: 10px; margin-bottom: 32px; }
.offer-perk {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.9rem;
  color: rgba(255,255,255,0.85);
}
.offer-perk .check { color: var(--green-light); font-size: 1rem; }
.offer-right {
  display: flex;
  flex-direction: column;
  gap: 14px;
  align-items: flex-end;
}

/* ============================================
   PROCESS
   ============================================ */
.process { padding: 96px 0; background: var(--white); }
.process-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 0;
  margin-top: 56px;
  position: relative;
}
.process-steps::before {
  content: '';
  position: absolute;
  top: 36px; left: 10%; right: 10%;
  height: 2px;
  background: linear-gradient(90deg, var(--border), var(--green), var(--border));
  z-index: 0;
}
.process-step {
  text-align: center;
  padding: 0 20px;
  position: relative;
  z-index: 1;
}
.step-num {
  width: 72px; height: 72px;
  background: var(--white);
  border: 3px solid var(--green);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--green);
  margin: 0 auto 20px;
  box-shadow: 0 0 0 8px var(--bg-light);
  transition: all 0.3s;
}
.process-step:hover .step-num {
  background: var(--green);
  color: white;
  transform: scale(1.1);
}
.process-step h4 { font-weight: 700; font-size: 1rem; color: var(--dark); margin-bottom: 8px; }
.process-step p  { font-size: 0.85rem; color: var(--gray); line-height: 1.6; }

/* ============================================
   REVIEWS
   ============================================ */
.reviews { padding: 96px 0; background: var(--bg-light); }
.reviews-header-inner {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
  margin-bottom: 48px;
}
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
}
.review-card {
  background: var(--white);
  border-radius: 20px;
  padding: 28px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  transition: transform 0.3s, box-shadow 0.3s;
}
.review-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); }
.review-top {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 16px;
}
.reviewer-avatar {
  width: 48px; height: 48px;
  border-radius: 50%;
  background: var(--green);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  color: white;
  flex-shrink: 0;
}
.reviewer-info .name { font-weight: 700; font-size: 0.95rem; color: var(--dark); }
.reviewer-info .date { font-size: 0.78rem; color: var(--gray); margin-top: 2px; }
.review-stars { color: #f59e0b; font-size: 0.9rem; letter-spacing: 1px; }
.review-text { font-size: 0.9rem; color: #374151; line-height: 1.7; }
.review-google {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-top: 16px;
  font-size: 0.78rem;
  color: var(--gray);
  font-weight: 500;
}
.g-verified { color: #4285f4; font-size: 0.8rem; }

.reviews-total {
  background: var(--dark);
  border-radius: 20px;
  padding: 28px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: white;
  border: 1px solid rgba(27,156,133,0.3);
}
.reviews-total .big { font-family: var(--font-display); font-size: 3.5rem; font-weight: 900; color: white; line-height: 1; }
.reviews-total .stars-big { color: #f59e0b; font-size: 1.4rem; letter-spacing: 3px; margin: 6px 0; }
.reviews-total .label { font-size: 0.82rem; color: rgba(255,255,255,0.6); }
.reviews-total .view-link {
  margin-top: 16px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--green-light);
  font-size: 0.85rem;
  font-weight: 600;
  transition: gap 0.2s;
}
.reviews-total .view-link:hover { gap: 10px; }

/* ============================================
   COVERAGE AREA
   ============================================ */
.coverage { padding: 80px 0; background: var(--white); }
.coverage-inner {
  display: flex;
  align-items: center;
  gap: 64px;
  flex-wrap: wrap;
}
.coverage-text { flex: 1; min-width: 280px; }
.coverage-areas {
  flex: 1;
  min-width: 280px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}
.area-pill {
  background: var(--bg-light);
  border: 1px solid var(--border);
  border-radius: 100px;
  padding: 9px 16px;
  font-size: 0.83rem;
  font-weight: 500;
  color: var(--dark);
  text-align: center;
  transition: all 0.2s;
}
.area-pill:hover {
  background: var(--green);
  color: white;
  border-color: var(--green);
  transform: scale(1.04);
}

/* ============================================
   FAQ
   ============================================ */
.faq { padding: 96px 0; background: var(--bg-light); }
.faq-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 48px;
}
.faq-item {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: border-color 0.3s, box-shadow 0.3s;
}
.faq-item.open {
  border-color: var(--green);
  box-shadow: 0 4px 20px rgba(27,156,133,0.1);
}
.faq-q {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 24px;
  cursor: pointer;
  user-select: none;
}
.faq-q span {
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--dark);
  line-height: 1.4;
}
.faq-icon {
  width: 28px; height: 28px;
  background: var(--bg-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  color: var(--green);
  transition: transform 0.3s, background 0.3s;
  flex-shrink: 0;
}
.faq-item.open .faq-icon { transform: rotate(45deg); background: var(--green); color: white; }
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.faq-item.open .faq-a { max-height: 400px; }
.faq-a p { padding: 0 24px 20px; font-size: 0.9rem; color: var(--gray); line-height: 1.7; }

/* ============================================
   CTA BOTTOM
   ============================================ */
.cta-bottom {
  padding: 96px 0;
  background: linear-gradient(135deg, var(--dark) 0%, #0d2f2a 100%);
  position: relative;
  overflow: hidden;
  text-align: center;
}
.cta-bottom::before {
  content: '';
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 700px; height: 700px;
  background: radial-gradient(circle, rgba(27,156,133,0.18) 0%, transparent 65%);
  pointer-events: none;
}
.cta-bottom-inner { position: relative; z-index: 2; }
.cta-bottom h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4.5vw, 3.4rem);
  font-weight: 800;
  color: var(--white);
  margin-bottom: 16px;
  line-height: 1.15;
}
.cta-bottom h2 span { color: var(--green-light); }
.cta-bottom p {
  color: rgba(255,255,255,0.65);
  max-width: 520px;
  margin: 0 auto 36px;
  font-size: 1rem;
  line-height: 1.7;
}
.cta-bottom-btns { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
.contact-info-bar {
  margin-top: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 32px;
  flex-wrap: wrap;
  padding-top: 32px;
  border-top: 1px solid rgba(255,255,255,0.1);
}
.contact-item {
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(255,255,255,0.75);
  font-size: 0.9rem;
  font-weight: 500;
}
.contact-item .icon { font-size: 1.2rem; }

/* ============================================
   FOOTER
   ============================================ */
footer {
  background: #060d1a;
  color: rgba(255,255,255,0.5);
  padding: 40px 0 24px;
}
.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 24px;
  padding-bottom: 24px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  margin-bottom: 24px;
}
.footer-logo { display: flex; align-items: center; gap: 12px; }
.footer-logo img { height: 40px; width: auto; filter: brightness(0) invert(1); opacity: 0.7; }
.footer-logo-text { font-family: var(--font-display); font-size: 1rem; font-weight: 700; color: rgba(255,255,255,0.7); }
.footer-links { display: flex; gap: 24px; flex-wrap: wrap; }
.footer-links a { font-size: 0.85rem; transition: color 0.2s; }
.footer-links a:hover { color: var(--green-light); }
.footer-bottom { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 12px; }
.footer-bottom p { font-size: 0.8rem; }
.footer-bottom .trd { color: var(--green); font-size: 0.8rem; }

/* ============================================
   FLOATING CTA
   ============================================ */
.floating-cta {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 900;
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: flex-end;
}
.fab {
  width: 58px; height: 58px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  cursor: pointer;
  transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.3s;
  text-decoration: none;
  border: none;
}
.fab:hover { transform: scale(1.15); }
.fab-wa {
  background: #25D366;
  box-shadow: 0 4px 20px rgba(37,211,102,0.5);
  animation: pulseRingWa 2.5s infinite;
}
.fab-call {
  background: var(--green);
  box-shadow: 0 4px 20px rgba(27,156,133,0.5);
  animation: pulseRing 2.5s infinite 0.8s;
}

/* ============================================
   ANIMATIONS & REVEAL
   ============================================ */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-left {
  opacity: 0;
  transform: translateX(-30px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}
.reveal-left.visible {
  opacity: 1;
  transform: translateX(0);
}
.reveal-right {
  opacity: 0;
  transform: translateX(30px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}
.reveal-right.visible {
  opacity: 1;
  transform: translateX(0);
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 900px) {
  .nav-links, .nav-cta { display: none; }
  .hamburger { display: flex; }
  .expertise-inner { grid-template-columns: 1fr; }
  .expertise-img-badge { right: 0; bottom: -20px; }
  .faq-grid { grid-template-columns: 1fr; }
  .process-steps::before { display: none; }
  .offer-inner { flex-direction: column; }
  .offer-right { align-items: flex-start; }
  .coverage-inner { flex-direction: column; }
  .footer-inner { flex-direction: column; }
  .footer-bottom { flex-direction: column; text-align: center; }
}

@media (max-width: 600px) {
  .hero-cta { flex-direction: column; }
  .hero-cta .btn { justify-content: center; }
  .btn { width: 100%; justify-content: center; }
  .coverage-areas { grid-template-columns: repeat(2, 1fr); }
  .rating-inner { flex-direction: column; text-align: center; }
  .rating-divider { width: 80%; height: 1px; }
  .rating-badges { justify-content: center; }
  .cta-bottom-btns .btn { width: auto; }
  .contact-info-bar { flex-direction: column; gap: 16px; }
  .hero-stats { gap: 24px; }
  .reviews-grid { grid-template-columns: 1fr; }
}

/* Mobile nav open */
.mobile-nav {
  display: none;
  flex-direction: column;
  gap: 0;
  background: white;
  border-top: 1px solid var(--border);
  padding: 16px 24px 24px;
}
.mobile-nav.open { display: flex; }
.mobile-nav a {
  font-size: 1rem;
  font-weight: 500;
  color: var(--dark);
  padding: 12px 0;
  border-bottom: 1px solid var(--border);
  transition: color 0.2s;
}
.mobile-nav a:last-child { border-bottom: none; }
.mobile-nav a:hover { color: var(--green); }
.mobile-nav-btns { display: flex; flex-direction: column; gap: 10px; margin-top: 16px; }
