/* A2Z Mechanical — Charlotte, NC
   Palette: Prussian Blue #003049 | Vivid Orange #F77F00 | Emergency Red #D62828 | Warm White #F9F7F4
   Fonts: Exo 2 (display) + Nunito Sans (body)
*/

@import url('https://fonts.googleapis.com/css2?family=Exo+2:ital,wght@0,400;0,600;0,700;0,800;0,900;1,700&family=Nunito+Sans:wght@300;400;600;700&display=swap');

/* ─── Reset & Base ─────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --primary:    #003049;
  --accent:     #F77F00;
  --urgent:     #D62828;
  --gold:       #FCBF49;
  --bg:         #F9F7F4;
  --dark:       #0D1B2A;
  --text:       #2C3E50;
  --muted:      #6B7280;
  --white:      #FFFFFF;
  --border:     rgba(0,48,73,0.12);
  --radius:     8px;
  --radius-lg:  16px;
  --shadow-sm:  0 2px 8px rgba(0,0,0,0.08);
  --shadow-md:  0 4px 24px rgba(0,0,0,0.12);
  --shadow-lg:  0 8px 48px rgba(0,0,0,0.18);
  --transition: 0.25s ease;
  --max-w:      1200px;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Nunito Sans', sans-serif;
  font-size: 1rem;
  line-height: 1.7;
  color: var(--text);
  background: var(--bg);
}

h1, h2, h3, h4, h5 {
  font-family: 'Exo 2', sans-serif;
  font-weight: 800;
  line-height: 1.2;
  color: var(--primary);
}

a { color: var(--accent); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--primary); }
a:focus-visible { outline: 3px solid var(--accent); outline-offset: 3px; border-radius: 3px; }

img { display: block; max-width: 100%; height: auto; }

p { margin-bottom: 1rem; }
p:last-child { margin-bottom: 0; }

.container { max-width: var(--max-w); margin: 0 auto; padding: 0 1.5rem; }

/* ─── Skip Link ────────────────────────────────────────────── */
.skip-link {
  position: absolute;
  top: -100%;
  left: 1rem;
  background: var(--accent);
  color: var(--white);
  padding: 0.5rem 1rem;
  border-radius: 0 0 var(--radius) var(--radius);
  font-weight: 700;
  z-index: 9999;
  transition: top var(--transition);
}
.skip-link:focus { top: 0; }

/* ─── Emergency Banner ─────────────────────────────────────── */
.emergency-banner {
  background: var(--urgent);
  color: var(--white);
  text-align: center;
  padding: 0.625rem 1rem;
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.3px;
}
.emergency-banner a { color: var(--gold); font-weight: 700; }
.emergency-banner a:hover { color: var(--white); }

/* ─── Header / Nav ─────────────────────────────────────────── */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--primary);
  box-shadow: var(--shadow-md);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.875rem 1.5rem;
  max-width: var(--max-w);
  margin: 0 auto;
  position: relative;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  text-decoration: none;
}
.logo-badge {
  background: var(--accent);
  color: var(--white);
  font-family: 'Exo 2', sans-serif;
  font-size: 1.1rem;
  font-weight: 900;
  padding: 0.25rem 0.6rem;
  border-radius: 6px;
  letter-spacing: -0.5px;
}
.logo-text {
  font-family: 'Exo 2', sans-serif;
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1.2;
}
.logo-text small {
  display: block;
  font-size: 0.7rem;
  font-weight: 400;
  color: rgba(255,255,255,0.65);
  letter-spacing: 1px;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  list-style: none;
}
.nav-links a {
  color: rgba(255,255,255,0.85);
  font-weight: 600;
  font-size: 0.9rem;
  padding: 0.4rem 0.8rem;
  border-radius: var(--radius);
  transition: all var(--transition);
  letter-spacing: 0.3px;
}
.nav-links a:hover,
.nav-links a.active { color: var(--white); background: rgba(255,255,255,0.12); }

.nav-cta {
  background: var(--accent) !important;
  color: var(--white) !important;
  padding: 0.45rem 1rem !important;
}
.nav-cta:hover { background: #e06e00 !important; }

.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  color: var(--white);
  padding: 0.3rem;
  align-items: center;
  justify-content: center;
}

/* ─── Hero ─────────────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 85vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--dark);
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('https://images.unsplash.com/photo-1560883123-04646fef95df?w=1200&h=600&fit=crop&auto=format');
  background-size: cover;
  background-position: center;
  transform: scale(1.05);
  transition: transform 8s ease;
}
.hero-bg.loaded { transform: scale(1); }

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    120deg,
    rgba(0,48,73,0.93) 0%,
    rgba(0,48,73,0.76) 55%,
    rgba(13,27,42,0.5) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 4rem 1.5rem;
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 3rem;
  align-items: center;
  width: 100%;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--accent);
  color: var(--white);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 0.3rem 0.85rem;
  border-radius: 100px;
  margin-bottom: 1.25rem;
}

.hero-title {
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 900;
  color: var(--white);
  margin-bottom: 1.25rem;
  line-height: 1.05;
}
.hero-title .highlight {
  color: var(--gold);
  font-style: italic;
}

.hero-subtitle {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.85);
  max-width: 540px;
  margin-bottom: 2rem;
  line-height: 1.8;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 2.5rem;
}

.hero-trust {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  color: rgba(255,255,255,0.7);
  font-size: 0.85rem;
  font-weight: 600;
}
.trust-item svg { color: var(--gold); flex-shrink: 0; }

/* Hero Card */
.hero-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2rem;
  box-shadow: var(--shadow-lg);
  border-top: 4px solid var(--accent);
}
.hero-card h3 {
  font-size: 1rem;
  margin-bottom: 0.75rem;
  color: var(--primary);
  display: flex;
  align-items: center;
}
.emergency-badge {
  background: var(--urgent);
  color: var(--white);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 0.2rem 0.55rem;
  border-radius: 100px;
  margin-left: 0.5rem;
}
.hero-card .phone-link {
  display: block;
  font-family: 'Exo 2', sans-serif;
  font-size: 1.65rem;
  font-weight: 900;
  color: var(--primary);
  margin-bottom: 0.5rem;
}
.hero-card .phone-link:hover { color: var(--accent); }
.hero-card > p { font-size: 0.875rem; color: var(--muted); margin-bottom: 1.25rem; }
.services-quick {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}
.services-quick li {
  font-size: 0.875rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--text);
}
.services-quick li::before {
  content: '';
  width: 6px;
  height: 6px;
  background: var(--accent);
  border-radius: 50%;
  flex-shrink: 0;
}

/* ─── Buttons ──────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.75rem;
  border-radius: var(--radius);
  font-family: 'Exo 2', sans-serif;
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.3px;
  cursor: pointer;
  border: 2px solid transparent;
  transition: all var(--transition);
  text-decoration: none;
  white-space: nowrap;
}
.btn:focus-visible { outline: 3px solid var(--accent); outline-offset: 3px; }

.btn-primary {
  background: var(--accent);
  color: var(--white);
  border-color: var(--accent);
}
.btn-primary:hover {
  background: #e06e00;
  border-color: #e06e00;
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 4px 20px rgba(247,127,0,0.4);
}

.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);
  color: var(--white);
}

.btn-secondary {
  background: var(--primary);
  color: var(--white);
  border-color: var(--primary);
}
.btn-secondary:hover {
  background: #00253a;
  color: var(--white);
  transform: translateY(-2px);
}

.btn-white {
  background: var(--white);
  color: var(--accent);
  border-color: var(--white);
}
.btn-white:hover { background: #f0f0f0; color: var(--accent); transform: translateY(-2px); }

/* ─── Section Shared ───────────────────────────────────────── */
.section { padding: 5rem 0; }
.section-alt { background: var(--white); }
.section-dark { background: var(--primary); }

.section-label {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 0.75rem;
}
.section-label::before {
  content: '';
  width: 24px;
  height: 2px;
  background: var(--accent);
}

.section-title {
  font-size: clamp(1.75rem, 3.5vw, 2.75rem);
  margin-bottom: 1rem;
}
.section-subtitle {
  font-size: 1.05rem;
  color: var(--muted);
  max-width: 600px;
  line-height: 1.8;
}

/* ─── Services Grid ────────────────────────────────────────── */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 1.5rem;
  margin-top: 3rem;
}

.service-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2rem;
  position: relative;
  overflow: hidden;
  transition: all var(--transition);
}
.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}
.service-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.service-card:hover::before { transform: scaleX(1); }

.service-icon {
  width: 52px;
  height: 52px;
  background: rgba(247,127,0,0.1);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
  color: var(--accent);
}

.service-card h3 { font-size: 1.15rem; margin-bottom: 0.5rem; }
.service-card p { font-size: 0.9rem; color: var(--muted); }

/* ─── About Section ────────────────────────────────────────── */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.about-image-wrap { position: relative; }
.about-image-wrap img {
  width: 100%;
  height: 480px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}
.about-accent-box {
  position: absolute;
  bottom: -1.5rem;
  right: -1.5rem;
  background: var(--accent);
  color: var(--white);
  padding: 1.5rem;
  border-radius: var(--radius);
  text-align: center;
  font-family: 'Exo 2', sans-serif;
  font-weight: 900;
  box-shadow: var(--shadow-md);
}
.about-accent-box .num { font-size: 2.5rem; line-height: 1; display: block; }
.about-accent-box .lbl { font-size: 0.7rem; letter-spacing: 1px; text-transform: uppercase; opacity: 0.9; }

.value-list {
  list-style: none;
  margin-top: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.value-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 0.95rem;
}
.value-list .icon {
  width: 28px;
  height: 28px;
  background: rgba(247,127,0,0.12);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  flex-shrink: 0;
  margin-top: 0.1rem;
}

/* ─── Stats Band ───────────────────────────────────────────── */
.stats-band {
  background: var(--primary);
  padding: 4rem 1.5rem;
  text-align: center;
}
.stats-inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 3rem;
  max-width: var(--max-w);
  margin: 0 auto;
}
.stat-num {
  font-family: 'Exo 2', sans-serif;
  font-size: 3.25rem;
  font-weight: 900;
  color: var(--gold);
  display: block;
  line-height: 1;
  margin-bottom: 0.25rem;
}
.stat-label {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.65);
}

/* ─── Why Choose Us (dark bg) ──────────────────────────────── */
.reasons-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 1.5rem;
  margin-top: 3rem;
}
.reason-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  transition: background var(--transition);
}
.reason-card:hover { background: rgba(255,255,255,0.09); }
.reason-icon {
  width: 44px;
  height: 44px;
  background: rgba(247,127,0,0.15);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  margin-bottom: 1rem;
}
.reason-card h3 { font-size: 1rem; color: var(--white); margin-bottom: 0.4rem; }
.reason-card p { font-size: 0.875rem; color: rgba(255,255,255,0.6); }

/* ─── FAQ Accordion ────────────────────────────────────────── */
.faq-list { max-width: 780px; margin: 2.5rem auto 0; }
.faq-item { border-bottom: 1px solid var(--border); }
.faq-item summary {
  cursor: pointer;
  padding: 1.25rem 0;
  font-weight: 700;
  font-size: 1rem;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  color: var(--primary);
  transition: color var(--transition);
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::marker { display: none; content: ''; }
.faq-item summary:hover { color: var(--accent); }
.faq-chevron { flex-shrink: 0; transition: transform 0.3s; color: var(--accent); }
.faq-item[open] .faq-chevron { transform: rotate(180deg); }
.faq-item[open] summary { color: var(--accent); }
.faq-body { padding: 0 0 1.25rem; color: var(--muted); line-height: 1.8; font-size: 0.95rem; }

/* ─── Before/After Slider ──────────────────────────────────── */
.ba-section { padding: 5rem 0; background: var(--dark); }
.ba-section .section-label { color: var(--gold); }
.ba-section .section-label::before { background: var(--gold); }
.ba-section .section-title { color: var(--white); }
.ba-section .section-subtitle { color: rgba(255,255,255,0.6); }
.ba-wrapper { max-width: 800px; margin: 2.5rem auto 0; }
.ba-labels {
  display: flex;
  justify-content: space-between;
  margin-bottom: 0.75rem;
}
.ba-label {
  font-family: 'Exo 2', sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 0.3rem 0.85rem;
  border-radius: 100px;
}
.ba-label.before { background: rgba(255,255,255,0.2); color: var(--white); }
.ba-label.after  { background: var(--accent); color: var(--white); }

/* ─── Map Section ──────────────────────────────────────────── */
#service-area-map {
  height: 380px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  margin-top: 2.5rem;
  border: 2px solid var(--border);
}

/* ─── CTA Band ─────────────────────────────────────────────── */
.cta-band {
  background: var(--accent);
  padding: 4.5rem 1.5rem;
  text-align: center;
}
.cta-band h2 {
  color: var(--white);
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  margin-bottom: 0.75rem;
}
.cta-band p {
  color: rgba(255,255,255,0.88);
  max-width: 560px;
  margin: 0 auto 2rem;
  font-size: 1.05rem;
}

/* ─── Contact ──────────────────────────────────────────────── */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 4rem;
  align-items: start;
}
.contact-detail {
  display: flex;
  align-items: flex-start;
  gap: 0.875rem;
  margin-bottom: 1.25rem;
}
.contact-detail .icon {
  width: 40px;
  height: 40px;
  background: rgba(247,127,0,0.1);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  flex-shrink: 0;
}
.contact-detail .label {
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 0.2rem;
}
.contact-detail .value { font-weight: 600; color: var(--primary); }
.contact-detail .value a { color: var(--primary); }
.contact-detail .value a:hover { color: var(--accent); }

.form-group { margin-bottom: 1.25rem; }
.form-group label {
  display: block;
  font-weight: 700;
  font-size: 0.875rem;
  margin-bottom: 0.4rem;
  color: var(--primary);
}
.form-group label .req { color: var(--urgent); margin-left: 2px; }
.form-control {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 2px solid var(--border);
  border-radius: var(--radius);
  font-family: 'Nunito Sans', sans-serif;
  font-size: 0.95rem;
  color: var(--text);
  background: var(--white);
  transition: border-color var(--transition), box-shadow var(--transition);
}
.form-control:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(247,127,0,0.15);
}
.form-control::placeholder { color: #aaa; }
textarea.form-control { resize: vertical; min-height: 130px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }

#form-success {
  display: none;
  background: #ecfdf5;
  border: 2px solid #10b981;
  border-radius: var(--radius);
  padding: 1.25rem 1.5rem;
  color: #065f46;
  font-weight: 600;
  margin-top: 1rem;
}
#form-error {
  display: none;
  background: #fef2f2;
  border: 2px solid var(--urgent);
  border-radius: var(--radius);
  padding: 1.25rem 1.5rem;
  color: var(--urgent);
  font-weight: 600;
  margin-top: 1rem;
}

/* ─── Footer ───────────────────────────────────────────────── */
.site-footer {
  background: var(--dark);
  color: rgba(255,255,255,0.7);
  padding: 4rem 0 1.5rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 2.5rem;
  margin-bottom: 3rem;
}
.footer-brand p { font-size: 0.875rem; line-height: 1.7; max-width: 280px; margin-top: 1rem; }
.footer-col h4 {
  font-family: 'Exo 2', sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 1rem;
}
.footer-links { list-style: none; }
.footer-links li { margin-bottom: 0.5rem; }
.footer-links a {
  color: rgba(255,255,255,0.6);
  font-size: 0.875rem;
  transition: color var(--transition);
}
.footer-links a:hover { color: var(--accent); }
.footer-phone {
  font-family: 'Exo 2', sans-serif;
  font-size: 1.5rem;
  font-weight: 900;
  color: var(--gold);
  display: block;
  margin-bottom: 0.5rem;
  text-decoration: none;
}
.footer-phone:hover { color: var(--accent); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.75rem;
  font-size: 0.8rem;
}

/* ─── Floating CTA ─────────────────────────────────────────── */
.floating-cta {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  z-index: 50;
  background: var(--accent);
  color: var(--white);
  width: 58px;
  height: 58px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(247,127,0,0.45);
  text-decoration: none;
  transition: transform 0.2s, box-shadow 0.2s;
  animation: pulse-ring 2.5s ease infinite;
}
.floating-cta:hover { transform: scale(1.1); box-shadow: 0 6px 28px rgba(247,127,0,0.55); color: var(--white); }
@keyframes pulse-ring {
  0%   { box-shadow: 0 0 0 0 rgba(247,127,0,0.55); }
  70%  { box-shadow: 0 0 0 14px rgba(247,127,0,0); }
  100% { box-shadow: 0 0 0 0 rgba(247,127,0,0); }
}
@media (min-width: 768px) {
  .floating-cta { bottom: 2rem; right: 2rem; width: 64px; height: 64px; }
}

/* ─── Scroll Reveal ────────────────────────────────────────── */
.reveal { opacity: 0; transform: translateY(30px); transition: opacity 0.6s ease, transform 0.6s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal:nth-child(2) { transition-delay: 0.1s; }
.reveal:nth-child(3) { transition-delay: 0.2s; }
.reveal:nth-child(4) { transition-delay: 0.3s; }
.reveal:nth-child(5) { transition-delay: 0.4s; }
.reveal:nth-child(6) { transition-delay: 0.5s; }

/* ─── Page Hero (inner pages) ──────────────────────────────── */
.page-hero {
  background: var(--primary);
  padding: 4rem 1.5rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.page-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'%3E%3Cg fill='%23F77F00' fill-opacity='0.05'%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");
}
.page-hero h1 { color: var(--white); font-size: clamp(2rem, 4vw, 3rem); margin-bottom: 0.75rem; position: relative; }
.page-hero p { color: rgba(255,255,255,0.75); max-width: 560px; margin: 0 auto; position: relative; }
.breadcrumb {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  align-items: center;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.55);
  margin-bottom: 1rem;
  position: relative;
}
.breadcrumb a { color: rgba(255,255,255,0.7); }
.breadcrumb a:hover { color: var(--gold); }
.breadcrumb span { color: var(--gold); }

/* ─── Team Cards ───────────────────────────────────────────── */
.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 1.5rem;
  margin-top: 3rem;
}
.team-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2rem;
  text-align: center;
  border: 1px solid var(--border);
  transition: transform var(--transition), box-shadow var(--transition);
}
.team-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.team-avatar {
  width: 80px;
  height: 80px;
  background: var(--primary);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  font-family: 'Exo 2', sans-serif;
  font-size: 1.5rem;
  font-weight: 900;
}
.team-card h3 { margin-bottom: 0.25rem; font-size: 1.1rem; }
.team-card .role { font-size: 0.85rem; color: var(--muted); }

/* ─── Services Detail ──────────────────────────────────────── */
.service-detail {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
  margin-bottom: 2rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
}
.service-detail:nth-child(even) { direction: rtl; }
.service-detail:nth-child(even) > * { direction: ltr; }
.service-detail-img { width: 100%; height: 280px; object-fit: cover; display: block; }
.service-detail-body {
  padding: 2.5rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.service-detail-body h3 { margin-bottom: 0.75rem; font-size: 1.4rem; }
.service-detail-body p { font-size: 0.925rem; color: var(--muted); }
.service-tag {
  display: inline-block;
  background: rgba(247,127,0,0.1);
  color: var(--accent);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 0.2rem 0.6rem;
  border-radius: 100px;
  margin-bottom: 0.75rem;
}

/* ─── Responsive ───────────────────────────────────────────── */
@media (max-width: 1024px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .service-detail { grid-template-columns: 1fr; }
  .service-detail:nth-child(even) { direction: ltr; }
  .service-detail-img { height: 220px; }
}

@media (max-width: 768px) {
  .hero-content { grid-template-columns: 1fr; }
  .hero-card { display: none; }
  .about-grid { grid-template-columns: 1fr; }
  .about-image-wrap img { height: 300px; }
  .about-accent-box { right: 0; bottom: -1rem; }
  .contact-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .nav-links {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0; right: 0;
    background: var(--primary);
    padding: 1rem;
    gap: 0.25rem;
    box-shadow: var(--shadow-md);
  }
  .nav-links.open { display: flex; }
  .nav-toggle { display: flex; }
  .header-inner { position: relative; }
}

@media (max-width: 480px) {
  .hero-title { font-size: 2rem; }
  .section { padding: 3.5rem 0; }
  .stats-inner { gap: 2rem; }
  .stat-num { font-size: 2.5rem; }
  .footer-grid { grid-template-columns: 1fr; }
}
