/* ============================================================
   constructiontiznit.com — Global Design System
   Niche: BTP & Construction | Market: Tiznit, Maroc
   ============================================================ */

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

/* ── CSS Custom Properties ─────────────────────────────────── */
:root {
  /* Brand Colors */
  --color-primary:     hsl(28, 85%, 45%);   /* Saffron/Terracotta – Tiznit walls */
  --color-primary-dk:  hsl(28, 90%, 35%);
  --color-primary-lt:  hsl(28, 100%, 95%);
  --color-secondary:   hsl(210, 20%, 12%);  /* Deep charcoal */
  --color-accent:      hsl(195, 80%, 40%);  /* Atlas blue */
  --color-accent-lt:   hsl(195, 80%, 95%);

  /* Neutrals */
  --color-bg:          hsl(40, 20%, 98%);
  --color-bg-dark:     hsl(210, 20%, 10%);
  --color-surface:     #ffffff;
  --color-text:        hsl(210, 15%, 15%);
  --color-text-muted:  hsl(210, 12%, 38%);
  --color-border:      hsl(210, 15%, 85%);

  /* Success / Trust */
  --color-success:     hsl(145, 60%, 40%);
  --color-success-lt:  hsl(145, 60%, 95%);

  /* Typography */
  --font-body:    'Inter', -apple-system, sans-serif;
  --font-heading: 'Playfair Display', Georgia, serif;

  /* Spacing */
  --space-xs:   0.25rem;
  --space-sm:   0.5rem;
  --space-md:   1rem;
  --space-lg:   1.5rem;
  --space-xl:   2.5rem;
  --space-2xl:  4rem;
  --space-3xl:  6rem;

  /* Border Radius */
  --radius-sm:  4px;
  --radius-md:  8px;
  --radius-lg:  16px;
  --radius-xl:  24px;
  --radius-full: 999px;

  /* Shadows */
  --shadow-sm:  0 1px 3px rgba(0,0,0,.08);
  --shadow-md:  0 4px 16px rgba(0,0,0,.10);
  --shadow-lg:  0 8px 32px rgba(0,0,0,.12);
  --shadow-xl:  0 20px 60px rgba(0,0,0,.16);

  /* Transitions */
  --ease:       cubic-bezier(.4, 0, .2, 1);
  --transition: 0.25s var(--ease);
}

/* ── 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);
  color: var(--color-text);
  background: var(--color-bg);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

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

/* ── Layout ─────────────────────────────────────────────────── */
.container {
  max-width: 1200px;
  margin-inline: auto;
  padding-inline: var(--space-lg);
}
.container--narrow { max-width: 800px; }

.section { padding-block: var(--space-3xl); }
.section--alt { background: hsl(40, 20%, 96%); }
.section--dark { background: var(--color-bg-dark); color: white; }

/* ── Typography ─────────────────────────────────────────────── */
h1, h2, h3, h4 { font-family: var(--font-heading); line-height: 1.2; }

h1 { font-size: clamp(2rem, 5vw, 3.5rem); font-weight: 900; }
h2 { font-size: clamp(1.6rem, 3.5vw, 2.5rem); font-weight: 700; }
h3 { font-size: clamp(1.1rem, 2.5vw, 1.5rem); font-weight: 700; }
h4 { font-size: 1.1rem; font-weight: 600; }

p { color: var(--color-text); line-height: 1.75; }
.lead { font-size: 1.2rem; color: var(--color-text-muted); }

.text-primary { color: var(--color-primary); }
.text-center  { text-align: center; }
.text-white   { color: white; }

/* ── Top Bar ────────────────────────────────────────────────── */
.topbar {
  background: var(--color-secondary);
  color: white;
  padding: var(--space-xs) 0;
  font-size: 0.85rem;
}
.topbar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: var(--space-sm);
}
.topbar a { color: var(--color-primary); transition: opacity var(--transition); }
.topbar a:hover { opacity: .75; }
.topbar-item { display: flex; align-items: center; gap: 6px; }

/* ── Navigation ─────────────────────────────────────────────── */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.75);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border-bottom: 1px solid rgba(255, 255, 255, 0.4);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.02);
  transition: all var(--transition);
}
.nav.scrolled {
  background: rgba(255, 255, 255, 0.85);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}
.nav .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 76px;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  font-weight: 900;
  font-size: 1.35rem;
  color: var(--color-secondary);
}
.nav-logo span { color: var(--color-primary); }
.nav-logo-icon {
  width: 42px; height: 42px;
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-dk) 100%);
  border-radius: 10px;
  display: grid; place-items: center;
  color: white; font-size: 1.3rem;
  box-shadow: 0 4px 12px rgba(212, 91, 17, 0.25);
  transition: transform 0.3s var(--ease);
}
.nav:hover .nav-logo-icon { transform: rotate(5deg) scale(1.05); }
.nav-links {
  display: flex;
  align-items: center;
  gap: var(--space-xl);
}
.nav-links a {
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--color-text);
  position: relative;
  padding: 6px 0;
  transition: color var(--transition);
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 0; height: 2px;
  background: var(--color-primary);
  transition: width var(--transition);
}
.nav-links a:hover, .nav-links a.active { color: var(--color-primary); }
.nav-links a:hover::after, .nav-links a.active::after { width: 100%; }

.nav-cta {
  background: linear-gradient(135deg, #f37021 0%, #D45B11 100%);
  color: white !important;
  padding: 11px 24px;
  border-radius: var(--radius-full);
  font-weight: 700;
  font-size: 0.88rem;
  box-shadow: 0 6px 16px rgba(212, 91, 17, 0.35);
  transition: all var(--transition) !important;
}
.nav-cta:hover { 
  transform: translateY(-2px); 
  box-shadow: 0 10px 22px rgba(212, 91, 17, 0.45);
  filter: brightness(1.05);
}
.nav-cta::after { display: none !important; }

/* Hamburger */
.nav-toggle { display: none; background: none; border: none; cursor: pointer; padding: 8px; }
.nav-toggle span {
  display: block; width: 24px; height: 2px;
  background: var(--color-secondary); margin: 5px 0;
  transition: var(--transition);
}

/* ── Hero Section ────────────────────────────────────────────── */
.hero {
  background: linear-gradient(135deg,
    hsl(210, 25%, 8%) 0%,
    hsl(25, 40%, 15%) 60%,
    hsl(28, 60%, 20%) 100%);
  color: white;
  padding: var(--space-3xl) 0;
  position: relative;
  overflow: hidden;
  min-height: 88vh;
  display: flex;
  align-items: center;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  opacity: 0.4;
}
.hero .container {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-3xl);
  align-items: center;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,.1);
  border: 1px solid rgba(255,255,255,.2);
  border-radius: var(--radius-full);
  padding: 6px 16px;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  color: hsl(28, 100%, 80%);
  margin-bottom: var(--space-lg);
  backdrop-filter: blur(8px);
}
.hero-badge::before { content: '🏗️'; }
.hero h1 {
  color: white;
  margin-bottom: var(--space-lg);
  text-shadow: 0 2px 20px rgba(0,0,0,.4);
}
.hero h1 em { color: hsl(28, 100%, 72%); font-style: normal; }
.hero .lead { color: rgba(255,255,255,.95); margin-bottom: var(--space-xl); font-size: 1.15rem; }

.hero-actions {
  display: flex;
  gap: var(--space-md);
  flex-wrap: wrap;
  align-items: center;
}
.hero-stats {
  display: flex;
  gap: var(--space-xl);
  margin-top: var(--space-xl);
  padding-top: var(--space-xl);
  border-top: 1px solid rgba(255,255,255,.1);
}
.hero-stat .num {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 900;
  color: hsl(28, 100%, 72%);
  line-height: 1;
}
.hero-stat .label { font-size: 0.82rem; color: rgba(255,255,255,.6); margin-top: 4px; }

.hero-visual {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-md);
}
.hero-card {
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
  backdrop-filter: blur(8px);
  transition: transform var(--transition), background var(--transition);
}
.hero-card:hover { transform: translateY(-4px); background: rgba(255,255,255,.12); }
.hero-card:first-child { grid-column: 1 / -1; }
.hero-card-icon { font-size: 2rem; margin-bottom: var(--space-sm); }
.hero-card h4 { color: white; margin-bottom: 4px; font-size: 0.95rem; }
.hero-card p { color: rgba(255,255,255,.6); font-size: 0.82rem; line-height: 1.5; }

/* ── Buttons ─────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: var(--radius-full);
  font-weight: 700;
  font-size: 0.95rem;
  cursor: pointer;
  border: 2px solid transparent;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  text-decoration: none;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-3px); }

.btn-primary {
  background: linear-gradient(135deg, #f37021 0%, #D45B11 100%);
  color: white;
  box-shadow: 0 10px 24px -5px rgba(212, 91, 17, 0.35);
  border: none;
}
.btn-primary:hover {
  background: linear-gradient(135deg, #ff8137 0%, #e26719 100%);
  box-shadow: 0 16px 32px -5px rgba(212, 91, 17, 0.5);
  filter: brightness(1.05);
}
.btn-outline {
  background: transparent;
  color: white;
  border-color: rgba(255, 255, 255, 0.4);
}
.btn-outline:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.85);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}
.btn-dark {
  background: var(--color-secondary);
  color: white;
  box-shadow: 0 8px 20px rgba(17, 22, 34, 0.15);
}
.btn-dark:hover { 
  background: hsl(210, 20%, 18%);
  box-shadow: 0 12px 28px rgba(17, 22, 34, 0.25);
}
.btn-lg { padding: 18px 38px; font-size: 1.05rem; }
.btn-sm { padding: 8px 20px; font-size: 0.85rem; }

/* ── Sections Labels ─────────────────────────────────────────── */
.section-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--color-primary-lt);
  color: var(--color-primary-dk);
  padding: 6px 16px;
  border-radius: var(--radius-full);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: var(--space-md);
}
.section-header {
  max-width: 640px;
  margin-bottom: var(--space-2xl);
}
.section-header.centered {
  text-align: center;
  margin-inline: auto;
}
.section-header h2 { margin-bottom: var(--space-md); }
.section-header p { color: var(--color-text-muted); }

/* ── Service Cards ───────────────────────────────────────────── */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: var(--space-lg);
}
.service-card {
  background: var(--color-surface);
  border: 1px solid rgba(0, 0, 0, 0.04);
  border-radius: 20px;
  padding: var(--space-xl);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.02), 0 5px 15px rgba(0, 0, 0, 0.01);
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
  overflow: hidden;
}
.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, #f37021, #D45B11);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}
.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 30px 60px rgba(212, 91, 17, 0.08), 0 10px 20px rgba(0, 0, 0, 0.02);
  border-color: rgba(212, 91, 17, 0.15);
}
.service-card:hover::before {
  transform: scaleX(1);
}
.service-icon {
  width: 60px; height: 60px;
  background: var(--color-primary-lt);
  border-radius: 14px;
  display: grid; place-items: center;
  font-size: 1.8rem;
  margin-bottom: var(--space-lg);
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  color: var(--color-primary);
}
.service-card:hover .service-icon {
  background: linear-gradient(135deg, #f37021 0%, #D45B11 100%);
  color: white;
  transform: rotate(5deg) scale(1.05);
  box-shadow: 0 10px 20px rgba(212, 91, 17, 0.2);
}
.service-card h3 { margin-bottom: var(--space-sm); font-size: 1.25rem; font-weight: 700; }
.service-card p { color: var(--color-text-muted); font-size: 0.92rem; line-height: 1.7; }
.service-card .service-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--color-primary);
  font-weight: 700;
  font-size: 0.88rem;
  margin-top: var(--space-md);
  transition: all 0.3s var(--ease);
}
.service-card:hover .service-link {
  gap: 12px;
  color: var(--color-primary-dk);
}

/* ── Why Us Section ──────────────────────────────────────────── */
.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-3xl);
  align-items: center;
}
.why-list { display: flex; flex-direction: column; gap: var(--space-lg); }
.why-item { display: flex; gap: var(--space-lg); align-items: flex-start; }
.why-icon {
  width: 48px; height: 48px; flex-shrink: 0;
  background: var(--color-primary-lt);
  border-radius: var(--radius-md);
  display: grid; place-items: center;
  font-size: 1.3rem;
  margin-top: 2px;
}
.why-item h4 { margin-bottom: 4px; }
.why-item p { color: var(--color-text-muted); font-size: 0.92rem; }

.why-visual {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  aspect-ratio: 4/3;
  background: linear-gradient(135deg, hsl(28, 60%, 20%), hsl(210, 25%, 12%));
}
.why-visual-inner {
  width: 100%; height: 100%;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  gap: var(--space-lg);
  color: white;
  padding: var(--space-xl);
}
.why-badge-float {
  position: absolute;
  bottom: var(--space-lg); right: var(--space-lg);
  background: var(--color-primary);
  color: white;
  border-radius: var(--radius-lg);
  padding: var(--space-md) var(--space-lg);
  text-align: center;
  box-shadow: var(--shadow-lg);
}
.why-badge-float .num {
  font-family: var(--font-heading);
  font-size: 2.2rem;
  font-weight: 900;
  line-height: 1;
}
.why-badge-float .label { font-size: 0.78rem; opacity: .85; }

/* ── Location Grid ───────────────────────────────────────────── */
.locations-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: var(--space-md);
}
.location-card {
  background: var(--color-surface);
  border: 1px solid rgba(0, 0, 0, 0.03);
  border-radius: 12px;
  padding: 14px 20px;
  display: flex;
  align-items: center;
  gap: 12px;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  cursor: pointer;
  text-decoration: none;
  color: var(--color-text);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.01);
}
.location-card:hover {
  border-color: rgba(212, 91, 17, 0.2);
  background: var(--color-primary-lt);
  transform: translateY(-4px);
  box-shadow: 0 10px 20px rgba(212, 91, 17, 0.05);
  color: var(--color-primary-dk);
}
.location-card::before { 
  content: '📍'; 
  font-size: 1.05rem; 
  transition: transform 0.3s var(--ease);
}
.location-card:hover::before {
  transform: scale(1.15) rotate(-10deg);
}
.location-card span { font-size: 0.9rem; font-weight: 600; }

/* ── Process Steps ───────────────────────────────────────────── */
.process-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: var(--space-lg);
  counter-reset: step;
}
.process-step {
  text-align: center;
  padding: var(--space-xl) var(--space-lg);
  position: relative;
}
.process-step:not(:last-child)::after {
  content: '→';
  position: absolute;
  right: -12px;
  top: 48px;
  font-size: 1.5rem;
  color: var(--color-primary);
  opacity: .4;
}
.process-num {
  width: 56px; height: 56px;
  background: var(--color-primary);
  color: white;
  border-radius: 50%;
  display: grid; place-items: center;
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 900;
  margin: 0 auto var(--space-lg);
  box-shadow: 0 4px 16px hsla(28, 85%, 45%, .35);
}
.process-step h4 { margin-bottom: var(--space-sm); }
.process-step p { color: var(--color-text-muted); font-size: 0.88rem; }

/* ── Testimonials ────────────────────────────────────────────── */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: var(--space-lg);
}
.testimonial-card {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: var(--space-xl);
  position: relative;
  transition: box-shadow var(--transition);
}
.testimonial-card:hover { box-shadow: var(--shadow-lg); }
.stars { color: hsl(40, 100%, 55%); font-size: 1rem; margin-bottom: var(--space-md); }
.testimonial-card blockquote {
  font-size: 0.95rem;
  line-height: 1.7;
  color: var(--color-text);
  margin-bottom: var(--space-lg);
  font-style: italic;
}
.testimonial-author { display: flex; align-items: center; gap: var(--space-md); }
.author-avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--color-primary);
  color: white;
  display: grid; place-items: center;
  font-weight: 700;
  font-size: 1rem;
}
.author-name { font-weight: 700; font-size: 0.9rem; }
.author-loc { color: var(--color-text-muted); font-size: 0.82rem; }

/* ── CTA Banner ──────────────────────────────────────────────── */
.cta-banner {
  background: linear-gradient(135deg, var(--color-primary), var(--color-primary-dk));
  color: white;
  padding: var(--space-3xl) 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-banner::before {
  content: '';
  position: absolute; inset: 0;
  background: repeating-linear-gradient(
    45deg,
    transparent, transparent 20px,
    rgba(255,255,255,.03) 20px, rgba(255,255,255,.03) 40px
  );
}
.cta-banner .container { position: relative; z-index: 1; }
.cta-banner h2 { color: white; margin-bottom: var(--space-md); }
.cta-banner p { color: rgba(255,255,255,.8); margin-bottom: var(--space-xl); font-size: 1.1rem; }
.cta-actions { display: flex; gap: var(--space-md); justify-content: center; flex-wrap: wrap; }
.btn-white {
  background: white;
  color: var(--color-primary-dk);
  border-color: white;
}
.btn-white:hover { background: var(--color-primary-lt); }

/* ── Contact / Form ──────────────────────────────────────────── */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-3xl);
  align-items: start;
}
.form-group { display: flex; flex-direction: column; gap: 6px; margin-bottom: var(--space-lg); }
.form-group label { font-weight: 600; font-size: 0.88rem; color: var(--color-text); }
.form-control {
  padding: 12px 16px;
  border: 1.5px solid var(--color-border);
  border-radius: var(--radius-md);
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--color-text);
  background: var(--color-surface);
  transition: border-color var(--transition), box-shadow var(--transition);
  outline: none;
}
.form-control:focus {
  border-color: var(--color-primary);
  box-shadow: 0 0 0 3px hsla(28, 85%, 45%, .15);
}
textarea.form-control { min-height: 140px; resize: vertical; }
select.form-control { cursor: pointer; }

.contact-info { display: flex; flex-direction: column; gap: var(--space-lg); }
.contact-item {
  display: flex;
  gap: var(--space-lg);
  align-items: flex-start;
  padding: var(--space-lg);
  background: var(--color-bg);
  border-radius: var(--radius-lg);
  border: 1px solid var(--color-border);
}
.contact-item-icon {
  width: 48px; height: 48px; flex-shrink: 0;
  background: var(--color-primary-lt);
  border-radius: var(--radius-md);
  display: grid; place-items: center;
  font-size: 1.3rem;
}
.contact-item h4 { font-size: 0.9rem; color: var(--color-text-muted); margin-bottom: 4px; font-weight: 600; }
.contact-item a { color: var(--color-primary); font-weight: 700; font-size: 1.05rem; }

/* ── Trust Bar ───────────────────────────────────────────────── */
.trust-bar {
  background: var(--color-surface);
  border-top: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
  padding: var(--space-xl) 0;
}
.trust-bar .container {
  display: flex;
  align-items: center;
  justify-content: space-around;
  gap: var(--space-xl);
  flex-wrap: wrap;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--color-text-muted);
}
.trust-item::before { font-size: 1.2rem; }
.trust-item.verified::before  { content: '✅'; }
.trust-item.fast::before      { content: '⚡'; }
.trust-item.local::before     { content: '📍'; }
.trust-item.guarantee::before { content: '🛡️'; }
.trust-item.years::before     { content: '🏆'; }

/* ── Footer ──────────────────────────────────────────────────── */
.footer {
  background: var(--color-bg-dark);
  color: rgba(255,255,255,.8);
  padding: var(--space-3xl) 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: var(--space-2xl);
  padding-bottom: var(--space-3xl);
}
.footer-brand .nav-logo { margin-bottom: var(--space-md); color: white; }
.footer-brand p { font-size: 0.88rem; line-height: 1.7; color: rgba(255,255,255,.55); }
.footer-social { display: flex; gap: var(--space-md); margin-top: var(--space-lg); }
.social-link {
  width: 38px; height: 38px;
  background: rgba(255,255,255,.08);
  border-radius: var(--radius-sm);
  display: grid; place-items: center;
  font-size: 1rem;
  transition: background var(--transition);
  color: white;
}
.social-link:hover { background: var(--color-primary); }

.footer-col h4 {
  font-family: var(--font-body);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--color-primary);
  margin-bottom: var(--space-lg);
}
.footer-col ul { display: flex; flex-direction: column; gap: var(--space-sm); }
.footer-col a {
  color: rgba(255,255,255,.55);
  font-size: 0.88rem;
  transition: color var(--transition);
}
.footer-col a:hover { color: white; }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.08);
  padding: var(--space-lg) 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: var(--space-md);
  font-size: 0.82rem;
  color: rgba(255,255,255,.35);
}

/* ── WhatsApp Float Button ───────────────────────────────────── */
.whatsapp-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 999;
  width: 60px; height: 60px;
  background: #25D366;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 20px rgba(37, 211, 102, .5);
  transition: transform var(--transition), box-shadow var(--transition);
  animation: pulse-wa 2.5s infinite;
}
.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 8px 30px rgba(37, 211, 102, .65);
  animation: none;
}
.whatsapp-float svg { width: 32px; height: 32px; fill: white; }
@keyframes pulse-wa {
  0%, 100% { box-shadow: 0 4px 20px rgba(37, 211, 102, .4); }
  50% { box-shadow: 0 4px 30px rgba(37, 211, 102, .7); }
}

/* ── Phone CTA Float ─────────────────────────────────────────── */
.phone-float {
  position: fixed;
  bottom: 28px;
  left: 28px;
  z-index: 999;
  background: var(--color-primary);
  color: white;
  border-radius: var(--radius-full);
  padding: 12px 22px;
  display: flex; align-items: center; gap: 8px;
  font-weight: 700;
  font-size: 0.9rem;
  box-shadow: 0 4px 20px hsla(28, 85%, 45%, .45);
  transition: all var(--transition);
}
.phone-float:hover { background: var(--color-primary-dk); transform: translateY(-2px); }

/* ── Location Page Hero ──────────────────────────────────────── */
.loc-hero {
  background: linear-gradient(135deg, hsl(210, 25%, 10%), hsl(28, 50%, 18%));
  color: white;
  padding: var(--space-2xl) 0;
  position: relative;
  overflow: hidden;
}
.loc-hero::before {
  content: '';
  position: absolute; inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='80' height='80' viewBox='0 0 80 80' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M0 0h40v40H0V0zm40 40h40v40H40V40z'/%3E%3C/g%3E%3C/svg%3E");
}
.loc-hero .container { position: relative; z-index: 1; }
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.82rem;
  color: rgba(255,255,255,.5);
  margin-bottom: var(--space-lg);
}
.breadcrumb a { color: rgba(255,255,255,.6); transition: color var(--transition); }
.breadcrumb a:hover { color: hsl(28, 100%, 72%); }
.breadcrumb span { color: rgba(255,255,255,.3); }
.loc-hero h1 { color: white; margin-bottom: var(--space-md); }
.loc-hero h1 em { color: hsl(28, 100%, 72%); font-style: normal; }
.loc-hero .lead { color: rgba(255,255,255,.9); margin-bottom: var(--space-xl); }
.loc-hero-meta {
  display: flex;
  gap: var(--space-xl);
  flex-wrap: wrap;
}
.loc-meta-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.88rem;
  color: rgba(255,255,255,.85);
}
.loc-meta-item strong { color: white; }

/* ── Local Content Grid ──────────────────────────────────────── */
.local-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: var(--space-2xl);
  align-items: start;
}
.sidebar-card {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: var(--space-xl);
  position: sticky;
  top: 90px;
}
.sidebar-card h3 { margin-bottom: var(--space-lg); font-size: 1.1rem; }
.sidebar-card .btn { width: 100%; text-align: center; justify-content: center; }
.sidebar-card .btn + .btn { margin-top: var(--space-sm); }

/* ── FAQ Accordion ───────────────────────────────────────────── */
.faq-list { display: flex; flex-direction: column; gap: var(--space-sm); }
.faq-item {
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: box-shadow var(--transition);
}
.faq-item:hover { box-shadow: var(--shadow-sm); }
.faq-question {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: var(--space-lg) var(--space-xl);
  background: var(--color-surface);
  border: none;
  cursor: pointer;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--color-text);
  text-align: left;
  transition: background var(--transition);
}
.faq-question:hover { background: var(--color-primary-lt); }
.faq-question.open { background: var(--color-primary-lt); color: var(--color-primary-dk); }
.faq-chevron { font-size: 0.75rem; transition: transform var(--transition); flex-shrink: 0; }
.faq-question.open .faq-chevron { transform: rotate(180deg); }
.faq-answer {
  display: none;
  padding: 0 var(--space-xl) var(--space-lg);
  font-size: 0.92rem;
  color: var(--color-text-muted);
  line-height: 1.75;
  background: var(--color-surface);
}
.faq-answer.open { display: block; }

/* ── Nearby Locations ────────────────────────────────────────── */
.nearby-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: var(--space-sm);
}

/* ── Schema Badge ────────────────────────────────────────────── */
.schema-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--color-success-lt);
  color: var(--color-success);
  border-radius: var(--radius-full);
  padding: 4px 12px;
  font-size: 0.78rem;
  font-weight: 700;
}
.schema-badge::before { content: '✓'; }

/* ── Checklist ───────────────────────────────────────────────── */
.checklist { display: flex; flex-direction: column; gap: var(--space-sm); }
.checklist li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.92rem;
  color: var(--color-text-muted);
  line-height: 1.6;
}
.checklist li::before {
  content: '✓';
  color: var(--color-success);
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 2px;
}

/* ── Page Intro Box ──────────────────────────────────────────── */
.intro-box {
  background: var(--color-primary-lt);
  border-left: 4px solid var(--color-primary);
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
  padding: var(--space-lg) var(--space-xl);
  margin-bottom: var(--space-2xl);
}
.intro-box p { color: var(--color-primary-dk); font-weight: 500; }

/* ── Blog Grid ───────────────────────────────────────────────── */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: var(--space-lg);
}
.blog-card {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all var(--transition);
}
.blog-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.blog-thumb {
  height: 200px;
  background: linear-gradient(135deg, hsl(28, 60%, 25%), hsl(210, 25%, 15%));
  display: flex; align-items: center; justify-content: center;
  font-size: 3rem;
}
.blog-body { padding: var(--space-lg); }
.blog-cat {
  display: inline-block;
  background: var(--color-primary-lt);
  color: var(--color-primary);
  border-radius: var(--radius-full);
  padding: 3px 10px;
  font-size: 0.75rem;
  font-weight: 700;
  margin-bottom: var(--space-sm);
}
.blog-card h3 { font-size: 1rem; margin-bottom: var(--space-sm); }
.blog-card p { font-size: 0.85rem; color: var(--color-text-muted); }
.blog-meta { font-size: 0.78rem; color: var(--color-text-muted); margin-top: var(--space-md); }

/* ── Responsive ──────────────────────────────────────────────── */
@media (max-width: 1024px) {
  .hero .container { grid-template-columns: 1fr; }
  .hero-visual { display: none; }
  .why-grid { grid-template-columns: 1fr; }
  .why-visual { max-height: 280px; }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .local-grid { grid-template-columns: 1fr; }
  .sidebar-card { position: static; }
}

@media (max-width: 768px) {
  .nav-links { display: none; }
  .nav-links.open {
    display: flex; flex-direction: column;
    position: absolute; top: 70px; left: 0; right: 0;
    background: white; border-bottom: 1px solid var(--color-border);
    padding: var(--space-lg);
    box-shadow: var(--shadow-lg);
  }
  .nav-toggle { display: block; }
  .hero { min-height: auto; padding: var(--space-2xl) 0; }
  .hero-stats { gap: var(--space-lg); flex-wrap: wrap; }
  .process-step:not(:last-child)::after { display: none; }
  .footer-grid { grid-template-columns: 1fr; }
  .phone-float { display: none; }
  .process-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 480px) {
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { width: 100%; justify-content: center; }
  .process-grid { grid-template-columns: 1fr; }
}

/* ── Animations ──────────────────────────────────────────────── */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}
.animate-up { animation: fadeInUp 0.6s var(--ease) both; }
.animate-up:nth-child(2) { animation-delay: 0.1s; }
.animate-up:nth-child(3) { animation-delay: 0.2s; }
.animate-up:nth-child(4) { animation-delay: 0.3s; }

/* Print */
@media print {
  .nav, .topbar, .whatsapp-float, .phone-float, .cta-banner { display: none; }
}
