/* ============================================================
   WA CLEANING SERVICES — Global Stylesheet
   Colour palette: deep blue primary, white backgrounds
   ============================================================ */

/* ── 1. Variables & Reset ── */
:root {
  --primary:        #0f766e;
  --primary-dark:   #0d5f58;
  --primary-hover:  #0e7069;
  --secondary:      #14b8a6;
  --accent:         #2dd4bf;
  --accent-light:   #ccfbf1;
  --accent-xlight:  #f0fdfb;
  --text-dark:      #0f172a;
  --text:           #374151;
  --text-light:     #6b7280;
  --bg:             #ffffff;
  --bg-alt:         #f8fafc;
  --border:         #e2e8f0;
  --shadow-sm:      0 1px 4px rgba(15,118,110,.08);
  --shadow:         0 4px 20px rgba(15,118,110,.12);
  --shadow-lg:      0 8px 40px rgba(15,118,110,.16);
  --radius:         12px;
  --radius-lg:      20px;
  --radius-pill:    999px;
  --transition:     0.3s ease;
  --container:      1200px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

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

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

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

/* ── 2. Typography ── */
h1, h2, h3, h4, h5 {
  color: var(--text-dark);
  line-height: 1.25;
  font-weight: 700;
}
h1 { font-size: clamp(2rem, 5vw, 3.25rem); }
h2 { font-size: clamp(1.6rem, 3vw, 2.4rem); }
h3 { font-size: 1.25rem; }
h4 { font-size: 1.1rem; }
p  { line-height: 1.75; }

/* ── 3. Utilities ── */
.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}
.section        { padding: 80px 0; }
.section-alt    { background: var(--bg-alt); }
.section-dark   { background: var(--primary-dark); color: #fff; }
.section-header { text-align: center; margin-bottom: 56px; }
.section-header p { color: var(--text-light); max-width: 600px; margin: 12px auto 0; font-size: 1.05rem; }
.section-tag {
  display: inline-block;
  background: var(--accent-light);
  color: var(--primary);
  font-size: .8rem;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: var(--radius-pill);
  margin-bottom: 12px;
}
.text-center { text-align: center; }
.text-blue   { color: var(--primary); }
.fw-700      { font-weight: 700; }
.grid-2  { display: grid; grid-template-columns: repeat(2, 1fr); gap: 32px; }
.grid-3  { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; }
.grid-4  { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.flex    { display: flex; }
.flex-center { display: flex; align-items: center; justify-content: center; }
.gap-8  { gap: 8px; }
.gap-16 { gap: 16px; }
.gap-24 { gap: 24px; }
.mt-8   { margin-top: 8px; }
.mt-16  { margin-top: 16px; }
.mt-24  { margin-top: 24px; }
.mt-32  { margin-top: 32px; }
.mb-8   { margin-bottom: 8px; }
.mb-16  { margin-bottom: 16px; }

/* ── 4. Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: var(--radius-pill);
  font-weight: 600;
  font-size: .95rem;
  border: 2px solid transparent;
  transition: all var(--transition);
  cursor: pointer;
  white-space: nowrap;
}
.btn-sm  { padding: 10px 20px; font-size: .875rem; }
.btn-lg  { padding: 18px 36px; font-size: 1.05rem; }
.btn-xl  { padding: 20px 44px; font-size: 1.1rem; }

.btn-primary {
  background: var(--primary);
  color: #fff;
  border-color: var(--primary);
}
.btn-primary:hover {
  background: var(--primary-hover);
  border-color: var(--primary-hover);
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(30,64,175,.35);
}
.btn-white {
  background: #fff;
  color: var(--primary);
  border-color: #fff;
}
.btn-white:hover {
  background: var(--accent-light);
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(255,255,255,.3);
}
.btn-outline {
  background: transparent;
  color: var(--primary);
  border-color: var(--primary);
}
.btn-outline:hover {
  background: var(--primary);
  color: #fff;
  transform: translateY(-1px);
}
.btn-outline-white {
  background: transparent;
  color: #fff;
  border-color: rgba(255,255,255,.7);
}
.btn-outline-white:hover {
  background: rgba(255,255,255,.15);
  border-color: #fff;
}

/* ── 5. Announcement Bar ── */
.announce-bar {
  background: var(--primary-dark);
  color: #fff;
  text-align: center;
  padding: 10px 24px;
  font-size: .85rem;
  font-weight: 500;
  letter-spacing: .02em;
}
.announce-bar a { color: #fde68a; font-weight: 700; }
.announce-bar span { margin: 0 12px; opacity: .5; }

/* ── 6. Navbar ── */
.navbar {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: #fff;
  border-bottom: 1px solid var(--border);
  transition: box-shadow var(--transition);
}
.navbar.scrolled { box-shadow: var(--shadow); }

.navbar-inner {
  display: flex;
  align-items: center;
  height: 72px;
  gap: 32px;
}

/* Logo */
.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}
.logo-badge {
  width: 44px;
  height: 44px;
  background: var(--primary);
  color: #fff;
  font-size: 1rem;
  font-weight: 800;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  letter-spacing: -.02em;
  flex-shrink: 0;
}
.logo-text { display: flex; flex-direction: column; line-height: 1.2; }
.logo-name {
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-dark);
}
.logo-name span { color: var(--primary); }
.logo-tagline { font-size: .7rem; color: var(--text-light); font-weight: 500; }

/* Nav links */
.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
  flex: 1;
}
.nav-item { position: relative; }
.nav-link {
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 8px 14px;
  font-size: .9rem;
  font-weight: 500;
  color: var(--text);
  border-radius: 8px;
  transition: all var(--transition);
}
.nav-link:hover, .nav-link.active { color: var(--primary); background: var(--accent-xlight); }
.nav-link .chevron { font-size: .7rem; transition: transform var(--transition); }
.nav-item:hover .chevron { transform: rotate(180deg); }

/* Dropdown */
.dropdown {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  min-width: 220px;
  padding: 8px;
  opacity: 0;
  pointer-events: none;
  transform: translateY(-8px);
  transition: all var(--transition);
  z-index: 100;
}
.nav-item:hover .dropdown, .nav-item.open .dropdown {
  opacity: 1;
  pointer-events: all;
  transform: translateY(0);
}
.dropdown a {
  display: block;
  padding: 10px 16px;
  font-size: .88rem;
  font-weight: 500;
  color: var(--text);
  border-radius: 8px;
  transition: all var(--transition);
}
.dropdown a:hover { background: var(--accent-xlight); color: var(--primary); }
.dropdown .dropdown-badge {
  background: var(--primary);
  color: #fff;
  font-size: .65rem;
  font-weight: 700;
  padding: 2px 8px;
  border-radius: var(--radius-pill);
  float: right;
  margin-top: 2px;
}

/* Nav right */
.nav-right {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}
.nav-phone {
  font-size: .875rem;
  font-weight: 600;
  color: var(--text-dark);
  display: flex;
  align-items: center;
  gap: 6px;
  transition: color var(--transition);
}
.nav-phone:hover { color: var(--primary); }

/* Mobile toggle */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  background: none;
  border: none;
  margin-left: auto;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text-dark);
  border-radius: 2px;
  transition: all var(--transition);
}
.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ── 7. Hero ── */
.hero {
  position: relative;
  background: linear-gradient(135deg, #0f2463 0%, var(--primary) 45%, #1d4ed8 100%);
  color: #fff;
  padding: 96px 0 80px;
  overflow: hidden;
}
.hero::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  right: 0;
  height: 60px;
  background: var(--bg);
  clip-path: ellipse(55% 100% at 50% 100%);
}

/* Decorative shapes */
.hero-shapes { position: absolute; inset: 0; pointer-events: none; overflow: hidden; }
.hero-shape {
  position: absolute;
  border-radius: 50%;
  background: rgba(255,255,255,.06);
}
.hero-shape-1 { width: 500px; height: 500px; top: -200px; right: -100px; }
.hero-shape-2 { width: 300px; height: 300px; bottom: -50px; left: -80px; }
.hero-shape-3 { width: 180px; height: 180px; top: 40%; right: 20%; }
.hero-shape-4 { width: 80px; height: 80px; top: 20%; left: 30%; background: rgba(255,255,255,.1); }

.hero-grid {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 48px;
  align-items: center;
  position: relative;
  z-index: 1;
}
.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,.15);
  border: 1px solid rgba(255,255,255,.25);
  color: #fff;
  font-size: .82rem;
  font-weight: 600;
  letter-spacing: .06em;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: var(--radius-pill);
  margin-bottom: 20px;
}
.hero-title { font-size: clamp(2.4rem, 5.5vw, 3.8rem); color: #fff; margin-bottom: 20px; }
.hero-title em { font-style: normal; color: #93c5fd; }
.hero-desc { font-size: 1.1rem; color: rgba(255,255,255,.85); max-width: 560px; margin-bottom: 36px; line-height: 1.8; }
.hero-ctas { display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 40px; }
.hero-trust { display: flex; gap: 24px; flex-wrap: wrap; }
.hero-trust-item {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: .875rem;
  color: rgba(255,255,255,.85);
  font-weight: 500;
}
.hero-trust-item .check {
  width: 20px; height: 20px;
  background: rgba(255,255,255,.2);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: .65rem;
  flex-shrink: 0;
}

/* Hero card */
.hero-card {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 28px;
  box-shadow: 0 16px 48px rgba(0,0,0,.25);
  color: var(--text-dark);
  min-width: 230px;
  position: relative;
  z-index: 1;
}
.hero-card-stars { color: #fbbf24; font-size: 1.2rem; letter-spacing: 2px; }
.hero-card-rating { font-size: 2rem; font-weight: 800; color: var(--text-dark); margin: 4px 0; }
.hero-card-label { font-size: .8rem; color: var(--text-light); font-weight: 500; }
.hero-card-divider { height: 1px; background: var(--border); margin: 16px 0; }
.hero-card-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: .85rem;
  color: var(--text);
  margin-bottom: 8px;
  font-weight: 500;
}
.hero-card-item:last-child { margin-bottom: 0; }
.hero-card-dot { width: 8px; height: 8px; background: #22c55e; border-radius: 50%; flex-shrink: 0; }

/* ── 8. Trust Badges ── */
.trust-bar {
  background: var(--bg);
  padding: 28px 0;
  border-bottom: 1px solid var(--border);
}
.trust-badges {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 40px;
  flex-wrap: wrap;
}
.trust-badge {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: .88rem;
  font-weight: 600;
  color: var(--text-dark);
}
.trust-badge-icon {
  width: 40px; height: 40px;
  background: var(--accent-light);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}
.trust-badge-text { display: flex; flex-direction: column; }
.trust-badge-text span:last-child { font-size: .75rem; color: var(--text-light); font-weight: 400; }

/* ── 9. Service Cards ── */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}
.service-card {
  background: #fff;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px;
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}
.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: var(--primary);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--transition);
}
.service-card:hover {
  border-color: var(--accent);
  box-shadow: var(--shadow);
  transform: translateY(-4px);
}
.service-card:hover::before { transform: scaleX(1); }
.service-card.featured {
  border-color: var(--primary);
  background: var(--accent-xlight);
}
.service-card.featured::before { transform: scaleX(1); }

.service-featured-badge {
  position: absolute;
  top: 16px; right: 16px;
  background: var(--primary);
  color: #fff;
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .06em;
  padding: 4px 10px;
  border-radius: var(--radius-pill);
}
.service-icon {
  width: 56px; height: 56px;
  background: var(--accent-light);
  border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.6rem;
  margin-bottom: 16px;
}
.service-card.featured .service-icon { background: var(--primary); }
.service-card h3 { margin-bottom: 8px; font-size: 1.15rem; }
.service-card p { font-size: .875rem; color: var(--text-light); margin-bottom: 16px; line-height: 1.6; }
.service-price {
  font-size: 1rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 16px;
}
.service-price span { font-size: .75rem; font-weight: 400; color: var(--text-light); }

/* ── 10. Why Us ── */
.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
}
.why-card {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 28px;
  border: 1px solid var(--border);
  transition: all var(--transition);
}
.why-card:hover { box-shadow: var(--shadow); transform: translateY(-3px); }
.why-icon {
  width: 52px; height: 52px;
  border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem;
  margin-bottom: 16px;
  background: var(--accent-light);
}
.why-card h3 { font-size: 1.05rem; margin-bottom: 8px; }
.why-card p { font-size: .875rem; color: var(--text-light); line-height: 1.65; }

/* ── 11. Stats ── */
.stats-bar {
  background: var(--primary);
  padding: 60px 0;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}
.stat-item {
  text-align: center;
  padding: 0 24px;
  border-right: 1px solid rgba(255,255,255,.2);
  color: #fff;
}
.stat-item:last-child { border-right: none; }
.stat-number {
  font-size: clamp(2.2rem, 4vw, 3rem);
  font-weight: 800;
  line-height: 1;
  color: #fff;
  margin-bottom: 8px;
}
.stat-label { font-size: .9rem; color: rgba(255,255,255,.75); font-weight: 500; }

/* ── 12. How It Works ── */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  position: relative;
}
.steps-grid::before {
  content: '';
  position: absolute;
  top: 32px; left: calc(16.66% + 16px); right: calc(16.66% + 16px);
  height: 2px;
  background: var(--border);
  z-index: 0;
}
.step {
  text-align: center;
  position: relative;
  z-index: 1;
}
.step-number {
  width: 64px; height: 64px;
  background: var(--primary);
  color: #fff;
  font-size: 1.4rem;
  font-weight: 800;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 20px;
  border: 4px solid #fff;
  box-shadow: 0 0 0 3px var(--primary);
}
.step h3 { font-size: 1.1rem; margin-bottom: 10px; }
.step p { font-size: .875rem; color: var(--text-light); }

/* ── 13. Reviews ── */
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}
.review-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px;
  transition: all var(--transition);
}
.review-card:hover { box-shadow: var(--shadow); transform: translateY(-3px); }
.review-stars { color: #f59e0b; font-size: 1.05rem; letter-spacing: 2px; margin-bottom: 14px; }
.review-text { font-size: .9rem; color: var(--text); line-height: 1.75; margin-bottom: 20px; font-style: italic; }
.review-author { display: flex; align-items: center; gap: 12px; }
.review-avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--primary);
  color: #fff;
  font-weight: 700;
  font-size: .95rem;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.review-author-info strong { display: block; font-size: .9rem; }
.review-author-info span { font-size: .8rem; color: var(--text-light); }
.review-google {
  margin-top: 14px;
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: .75rem;
  color: var(--text-light);
}

/* ── 14. CTA Banner ── */
.cta-banner {
  background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 100%);
  padding: 80px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-banner::before {
  content: '';
  position: absolute;
  width: 400px; height: 400px;
  border-radius: 50%;
  background: rgba(255,255,255,.05);
  top: -200px; right: -100px;
}
.cta-banner h2 { color: #fff; margin-bottom: 12px; }
.cta-banner p { color: rgba(255,255,255,.8); font-size: 1.1rem; margin-bottom: 36px; }
.cta-btns { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* ── 15. FAQ Accordion ── */
.faq-list { max-width: 780px; margin: 0 auto; }
.accordion-item {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  margin-bottom: 10px;
  overflow: hidden;
  transition: box-shadow var(--transition);
}
.accordion-item.open { box-shadow: var(--shadow-sm); }
.accordion-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 24px;
  background: #fff;
  cursor: pointer;
  font-weight: 600;
  font-size: .95rem;
  color: var(--text-dark);
  transition: background var(--transition);
  user-select: none;
}
.accordion-header:hover { background: var(--accent-xlight); }
.accordion-item.open .accordion-header { background: var(--accent-xlight); color: var(--primary); }
.accordion-icon {
  width: 28px; height: 28px;
  background: var(--border);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: .9rem;
  flex-shrink: 0;
  transition: all var(--transition);
}
.accordion-item.open .accordion-icon {
  background: var(--primary);
  color: #fff;
  transform: rotate(45deg);
}
.accordion-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height .4s ease;
}
.accordion-item.open .accordion-body { max-height: 500px; }
.accordion-body p {
  padding: 0 24px 20px;
  font-size: .9rem;
  color: var(--text-light);
  line-height: 1.8;
}

/* ── 16. Forms ── */
.form-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: var(--shadow-sm);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.form-group { margin-bottom: 20px; }
.form-group label {
  display: block;
  font-size: .875rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 6px;
}
.form-group label .required { color: #ef4444; margin-left: 2px; }
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid var(--border);
  border-radius: 10px;
  font-family: inherit;
  font-size: .9rem;
  color: var(--text-dark);
  background: #fff;
  transition: border-color var(--transition), box-shadow var(--transition);
  outline: none;
  appearance: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(30,64,175,.1);
}
.form-group textarea { resize: vertical; min-height: 120px; }
.form-group select { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%236b7280' d='M1 1l5 5 5-5'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 14px center; padding-right: 40px; }
.form-submit-btn {
  width: 100%;
  padding: 16px;
  background: var(--primary);
  color: #fff;
  border: none;
  border-radius: var(--radius-pill);
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  transition: all var(--transition);
  letter-spacing: .02em;
}
.form-submit-btn:hover { background: var(--primary-hover); transform: translateY(-1px); box-shadow: 0 6px 20px rgba(30,64,175,.35); }
.form-submit-btn:disabled { opacity: .6; cursor: not-allowed; transform: none; }
.form-note { font-size: .78rem; color: var(--text-light); text-align: center; margin-top: 12px; }

/* ── 17. Contact Info ── */
.contact-grid { display: grid; grid-template-columns: 1fr 1.4fr; gap: 48px; align-items: start; }
.contact-info { display: flex; flex-direction: column; gap: 20px; }
.contact-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 20px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
}
.contact-item-icon {
  width: 48px; height: 48px;
  background: var(--accent-light);
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
}
.contact-item-body strong { display: block; font-size: .88rem; color: var(--text-light); margin-bottom: 4px; }
.contact-item-body a, .contact-item-body p { font-weight: 600; color: var(--text-dark); font-size: .95rem; }
.contact-item-body a:hover { color: var(--primary); }

/* ── 18. Service Detail (services.html) ── */
.service-detail {
  padding: 60px 0;
  border-bottom: 1px solid var(--border);
}
.service-detail:last-child { border-bottom: none; }
.service-detail-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center; }
.service-detail-grid.reverse { direction: rtl; }
.service-detail-grid.reverse > * { direction: ltr; }
.service-detail-icon-big {
  width: 72px; height: 72px;
  background: var(--accent-light);
  border-radius: 20px;
  display: flex; align-items: center; justify-content: center;
  font-size: 2rem;
  margin-bottom: 20px;
}
.service-detail h2 { margin-bottom: 12px; }
.service-detail p { color: var(--text-light); margin-bottom: 20px; line-height: 1.8; }
.service-includes h4 { font-size: .85rem; color: var(--text-light); letter-spacing: .06em; text-transform: uppercase; margin-bottom: 12px; }
.includes-list { display: grid; grid-template-columns: 1fr 1fr; gap: 8px 16px; }
.includes-list li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: .875rem;
  color: var(--text);
}
.includes-list li::before {
  content: '✓';
  color: #22c55e;
  font-weight: 700;
  flex-shrink: 0;
}
.service-price-block {
  background: var(--accent-xlight);
  border: 1px solid var(--accent-light);
  border-radius: var(--radius);
  padding: 20px 24px;
  margin-top: 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}
.service-price-from { font-size: .85rem; color: var(--text-light); }
.service-price-amount { font-size: 1.8rem; font-weight: 800; color: var(--primary); }

/* ── 19. Page Hero (inner pages) ── */
.page-hero {
  background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 100%);
  padding: 64px 0;
  text-align: center;
  color: #fff;
}
.page-hero h1 { color: #fff; margin-bottom: 12px; }
.page-hero p { color: rgba(255,255,255,.8); font-size: 1.05rem; }
.breadcrumb {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: .82rem;
  color: rgba(255,255,255,.6);
  margin-bottom: 16px;
}
.breadcrumb a { color: rgba(255,255,255,.7); }
.breadcrumb a:hover { color: #fff; }
.breadcrumb span { opacity: .5; }

/* ── 20. About ── */
.about-story { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.about-img-placeholder {
  border-radius: var(--radius-lg);
  background: linear-gradient(135deg, var(--accent-light) 0%, var(--accent-xlight) 100%);
  aspect-ratio: 4/3;
  display: flex; align-items: center; justify-content: center;
  font-size: 4rem;
  color: var(--primary);
  border: 1px solid var(--border);
}
.values-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.value-card {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 28px;
  text-align: center;
  border: 1px solid var(--border);
  transition: all var(--transition);
}
.value-card:hover { box-shadow: var(--shadow); transform: translateY(-3px); }
.value-icon { font-size: 2rem; margin-bottom: 12px; }
.value-card h3 { margin-bottom: 8px; }
.value-card p { font-size: .875rem; color: var(--text-light); }

/* ── 21. Footer ── */
.footer {
  background: var(--text-dark);
  color: rgba(255,255,255,.75);
  padding: 64px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 48px;
}
.footer-logo { margin-bottom: 16px; }
.footer-logo .logo-badge { background: rgba(255,255,255,.15); }
.footer-logo .logo-name { color: #fff; }
.footer-logo .logo-tagline { color: rgba(255,255,255,.5); }
.footer-desc { font-size: .875rem; line-height: 1.75; color: rgba(255,255,255,.6); margin-bottom: 20px; }
.footer-social { display: flex; gap: 10px; }
.social-btn {
  width: 36px; height: 36px;
  background: rgba(255,255,255,.1);
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  font-size: .9rem;
  transition: background var(--transition);
}
.social-btn:hover { background: var(--primary); }
.footer-heading {
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: 16px;
}
.footer-links { display: flex; flex-direction: column; gap: 10px; }
.footer-links a {
  font-size: .875rem;
  color: rgba(255,255,255,.6);
  transition: color var(--transition);
}
.footer-links a:hover { color: #fff; }
.footer-contact-item {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  margin-bottom: 12px;
  font-size: .875rem;
  color: rgba(255,255,255,.6);
}
.footer-contact-item a { color: rgba(255,255,255,.6); }
.footer-contact-item a:hover { color: #fff; }
.footer-contact-icon { font-size: 1rem; flex-shrink: 0; margin-top: 1px; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.08);
  padding: 20px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  font-size: .8rem;
  color: rgba(255,255,255,.4);
}
.footer-bottom a { color: rgba(255,255,255,.5); }
.footer-bottom a:hover { color: #fff; }

/* ── 22. Scroll Animations ── */
.fade-in {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .6s ease, transform .6s ease;
}
.fade-in.visible { opacity: 1; transform: translateY(0); }
.fade-in-left {
  opacity: 0;
  transform: translateX(-24px);
  transition: opacity .6s ease, transform .6s ease;
}
.fade-in-left.visible { opacity: 1; transform: translateX(0); }
.fade-in-right {
  opacity: 0;
  transform: translateX(24px);
  transition: opacity .6s ease, transform .6s ease;
}
.fade-in-right.visible { opacity: 1; transform: translateX(0); }

/* ── 23. Misc ── */
.divider { height: 1px; background: var(--border); margin: 0; }
.badge-green {
  background: #dcfce7;
  color: #15803d;
  font-size: .75rem;
  font-weight: 600;
  padding: 3px 10px;
  border-radius: var(--radius-pill);
}
.success-msg { background: #dcfce7; color: #166534; border-radius: 10px; padding: 16px 20px; font-weight: 600; display: none; }
.error-msg   { background: #fee2e2; color: #991b1b; border-radius: 10px; padding: 16px 20px; font-weight: 600; display: none; }

/* ── 24. Responsive ── */
@media (max-width: 1024px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .stats-grid  { grid-template-columns: repeat(2, 1fr); }
  .stat-item   { border-right: none; border-bottom: 1px solid rgba(255,255,255,.2); padding: 20px; }
  .stat-item:last-child { border-bottom: none; }
  .contact-grid { grid-template-columns: 1fr; }
  .service-detail-grid { grid-template-columns: 1fr; }
  .service-detail-grid.reverse { direction: ltr; }
  .about-story { grid-template-columns: 1fr; }
  .values-grid { grid-template-columns: 1fr 1fr; }
  .hero-grid   { grid-template-columns: 1fr; }
  .hero-card   { display: none; }
}

@media (max-width: 768px) {
  .section { padding: 56px 0; }
  .nav-links, .nav-right { display: none; }
  .nav-toggle { display: flex; }
  .nav-phone  { display: none; }

  /* Mobile nav open */
  .nav-links.open {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 72px;
    left: 0; right: 0; bottom: 0;
    background: #fff;
    padding: 24px;
    gap: 4px;
    overflow-y: auto;
    z-index: 999;
    border-top: 1px solid var(--border);
  }
  .nav-links.open .nav-right {
    display: flex;
    flex-direction: column;
    margin-top: 16px;
    padding-top: 16px;
    border-top: 1px solid var(--border);
    gap: 12px;
  }
  .nav-links.open .dropdown {
    position: static;
    opacity: 1;
    pointer-events: all;
    transform: none;
    box-shadow: none;
    border: none;
    background: var(--accent-xlight);
    margin: 4px 0;
    display: none;
  }
  .nav-links.open .nav-item.open .dropdown { display: block; }

  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
  .steps-grid { grid-template-columns: 1fr; }
  .steps-grid::before { display: none; }
  .values-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .hero-ctas { flex-direction: column; }
  .hero-trust { flex-direction: column; gap: 12px; }
  .trust-badges { gap: 20px; }
  .form-row { grid-template-columns: 1fr; }
  .includes-list { grid-template-columns: 1fr; }
  .service-price-block { flex-direction: column; text-align: center; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .hero { padding: 64px 0 56px; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .cta-btns { flex-direction: column; align-items: center; }
}

@media (max-width: 480px) {
  .stats-grid { grid-template-columns: 1fr; }
  .reviews-grid { grid-template-columns: 1fr; }
}
