/* ============================================
   MW INSTALLATIONS — MAIN STYLESHEET
   Fonts: Oswald (headings) | DM Sans (body)
   ============================================ */

@import url('https://fonts.googleapis.com/css2?family=Oswald:wght@400;500;600;700&family=DM+Sans:ital,opsz,wght@0,9..40,300;0,9..40,400;0,9..40,500;0,9..40,600;1,9..40,400&display=swap');

:root {
  --navy:        #0c1c30;
  --navy-mid:    #162d4a;
  --blue:        #1a3d6d;
  --accent:      #f26419;
  --accent-dark: #d4530f;
  --accent-lite: #fff3ec;
  --white:       #ffffff;
  --off-white:   #f7f9fc;
  --light:       #edf1f7;
  --text:        #1a2533;
  --text-muted:  #64748b;
  --border:      #dde3ed;
  --shadow-sm:   0 2px 8px rgba(12,28,48,0.08);
  --shadow:      0 4px 24px rgba(12,28,48,0.1);
  --shadow-lg:   0 8px 48px rgba(12,28,48,0.14);
  --radius:      6px;
  --radius-lg:   12px;
  --transition:  0.28s cubic-bezier(0.4,0,0.2,1);
  --max-w:       1220px;
}

/* ---- Reset ---- */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; font-size: 16px; }
body { font-family: 'DM Sans', sans-serif; color: var(--text); background: var(--white); line-height: 1.65; overflow-x: hidden; }
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }

/* ---- Typography ---- */
h1,h2,h3,h4,h5 {
  font-family: 'Oswald', sans-serif;
  font-weight: 600;
  line-height: 1.15;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  color: var(--navy);
}
h1 { font-size: clamp(2.4rem, 5vw, 4rem); }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.8rem); }
h3 { font-size: clamp(1.2rem, 2.5vw, 1.6rem); }
h4 { font-size: 1.15rem; }
p  { color: var(--text); max-width: 70ch; }

/* ---- Utilities ---- */
.container { max-width: var(--max-w); margin: 0 auto; padding: 0 24px; }
.section    { padding: 88px 0; }
.section-sm { padding: 56px 0; }
.section-dark { background: var(--navy); color: var(--white); }
.section-dark h2, .section-dark h3, .section-dark h4 { color: var(--white); }
.section-dark p { color: rgba(255,255,255,0.78); }
.section-alt  { background: var(--off-white); }
.text-center  { text-align: center; }
.text-center p { margin: 0 auto; }

.section-label {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--accent);
  display: block;
  margin-bottom: 12px;
}
.section-heading { margin-bottom: 20px; }
.section-intro    { font-size: 1.05rem; color: var(--text-muted); margin-bottom: 48px; }

/* ---- Buttons ---- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  font-family: 'Oswald', sans-serif;
  font-size: 0.95rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-radius: var(--radius);
  transition: var(--transition);
  white-space: nowrap;
}
.btn-accent {
  background: var(--accent);
  color: var(--white);
  box-shadow: 0 4px 20px rgba(242,100,25,0.35);
}
.btn-accent:hover { background: var(--accent-dark); box-shadow: 0 6px 28px rgba(242,100,25,0.45); transform: translateY(-1px); }
.btn-outline-white {
  border: 2px solid rgba(255,255,255,0.7);
  color: var(--white);
}
.btn-outline-white:hover { background: rgba(255,255,255,0.1); border-color: var(--white); }
.btn-outline-navy {
  border: 2px solid var(--navy);
  color: var(--navy);
}
.btn-outline-navy:hover { background: var(--navy); color: var(--white); }
.btn svg { width: 18px; height: 18px; flex-shrink: 0; }

/* ---- Navigation ---- */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: var(--white);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}
.nav.scrolled { box-shadow: var(--shadow); }
.nav-inner {
  display: flex;
  align-items: center;
  height: 72px;
  gap: 32px;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
  text-decoration: none;
}
.logo-badge {
  background: var(--accent);
  color: var(--white);
  font-family: 'Oswald', sans-serif;
  font-size: 1.2rem;
  font-weight: 700;
  width: 44px; height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius);
  letter-spacing: 0.05em;
  flex-shrink: 0;
}
.logo-text { line-height: 1.2; }
.logo-name {
  display: block;
  font-family: 'Oswald', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--navy);
}
.logo-tag {
  display: block;
  font-size: 0.68rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
  margin-left: auto;
}
.nav-links a {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--text);
  padding: 8px 12px;
  border-radius: var(--radius);
  transition: var(--transition);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.nav-links a:hover, .nav-links a.active { color: var(--accent); }
.nav-actions { display: flex; align-items: center; gap: 12px; flex-shrink: 0; }
.nav-phone {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--navy);
  white-space: nowrap;
}
.nav-phone svg { color: var(--accent); width: 16px; height: 16px; }
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  margin-left: auto;
}
.nav-toggle span {
  display: block;
  width: 24px; height: 2px;
  background: var(--navy);
  border-radius: 2px;
  transition: var(--transition);
}

/* Mobile nav */
.nav-mobile {
  display: none;
  position: fixed;
  top: 72px; left: 0; right: 0; bottom: 0;
  background: var(--white);
  padding: 24px;
  z-index: 999;
  flex-direction: column;
  gap: 4px;
  overflow-y: auto;
  border-top: 1px solid var(--border);
}
.nav-mobile.open { display: flex; }
.nav-mobile a {
  font-family: 'Oswald', sans-serif;
  font-size: 1.3rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--text);
  padding: 14px 0;
  border-bottom: 1px solid var(--border);
  transition: var(--transition);
}
.nav-mobile a:hover { color: var(--accent); padding-left: 8px; }
.nav-mobile .mobile-cta { margin-top: 20px; display: flex; flex-direction: column; gap: 12px; }
.nav-mobile .mobile-cta .btn { width: 100%; justify-content: center; }

/* Page offset for fixed nav */
.page-content { padding-top: 72px; }

/* ---- Hero (full page) ---- */
.hero {
  position: relative;
  min-height: calc(100vh - 72px);
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--navy);
}
.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 0.35;
  transition: transform 0.6s ease;
}
.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg, rgba(12,28,48,0.92) 0%, rgba(12,28,48,0.6) 60%, rgba(12,28,48,0.3) 100%);
}
.hero-content {
  position: relative;
  z-index: 2;
  padding: 80px 0;
}
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 20px;
}
.hero-eyebrow::before {
  content: '';
  display: block;
  width: 32px;
  height: 2px;
  background: var(--accent);
}
.hero h1 { color: var(--white); margin-bottom: 20px; }
.hero h1 span { color: var(--accent); display: block; }
.hero-sub {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.78);
  margin-bottom: 36px;
  max-width: 52ch;
}
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 56px; }
.hero-badges {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}
.hero-badge {
  display: flex;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.78);
  font-size: 0.85rem;
}
.hero-badge svg { color: var(--accent); flex-shrink: 0; }

/* ---- Page Hero (inner pages) ---- */
.page-hero {
  background: var(--navy);
  padding: 72px 0 56px;
  position: relative;
  overflow: hidden;
}
.page-hero::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 4px;
  background: var(--accent);
}
.page-hero .section-label { color: rgba(255,255,255,0.5); }
.page-hero h1 { color: var(--white); }
.page-hero p   { color: rgba(255,255,255,0.7); }
.page-breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.5);
  margin-bottom: 20px;
}
.page-breadcrumb a { color: rgba(255,255,255,0.6); }
.page-breadcrumb a:hover { color: var(--accent); }
.page-breadcrumb svg { width: 12px; height: 12px; }

/* ---- Trust Strip ---- */
.trust-strip {
  background: var(--navy-mid);
  padding: 20px 0;
  border-bottom: 3px solid var(--accent);
}
.trust-items {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 32px;
  flex-wrap: wrap;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--white);
  font-size: 0.9rem;
  font-weight: 500;
}
.trust-item svg { color: var(--accent); flex-shrink: 0; }

/* ---- Services Grid ---- */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
  margin-top: 48px;
}
.service-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: left;
  transition: var(--transition);
}
.service-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-4px); border-color: transparent; }
.service-card:hover::before { transform: scaleX(1); }
.service-icon {
  width: 56px; height: 56px;
  background: var(--accent-lite);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}
.service-icon svg { color: var(--accent); width: 28px; height: 28px; }
.service-card h3 { margin-bottom: 12px; font-size: 1.15rem; }
.service-card p  { font-size: 0.92rem; color: var(--text-muted); margin-bottom: 20px; max-width: none; }
.service-features { display: flex; flex-direction: column; gap: 6px; margin-bottom: 24px; }
.service-feat {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  color: var(--text-muted);
}
.service-feat::before {
  content: '';
  width: 6px; height: 6px;
  background: var(--accent);
  border-radius: 50%;
  flex-shrink: 0;
}
.service-link {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--accent);
  display: flex;
  align-items: center;
  gap: 6px;
  transition: var(--transition);
}
.service-link:hover { gap: 10px; }
.service-link svg { width: 14px; height: 14px; }

/* ---- Why Choose Us ---- */
.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.why-img-stack {
  position: relative;
  height: 520px;
}
.why-img-main {
  position: absolute;
  top: 0; left: 0;
  width: 78%;
  height: 420px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}
.why-img-accent {
  position: absolute;
  bottom: 0; right: 0;
  width: 58%;
  height: 280px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  border: 6px solid var(--white);
}
.why-badge {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  z-index: 10;
  background: var(--accent);
  color: var(--white);
  width: 88px; height: 88px;
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  font-family: 'Oswald', sans-serif;
  text-align: center;
  box-shadow: var(--shadow-lg);
  border: 4px solid var(--white);
}
.why-badge strong { font-size: 1.5rem; line-height: 1; }
.why-badge span   { font-size: 0.62rem; letter-spacing: 0.08em; text-transform: uppercase; opacity: 0.9; }
.why-points { display: flex; flex-direction: column; gap: 24px; margin: 32px 0; }
.why-point  { display: flex; gap: 16px; align-items: flex-start; }
.why-point-icon {
  width: 44px; height: 44px;
  background: var(--accent-lite);
  border-radius: var(--radius);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.why-point-icon svg { color: var(--accent); width: 22px; height: 22px; }
.why-point h4 { margin-bottom: 4px; }
.why-point p  { font-size: 0.9rem; color: var(--text-muted); max-width: none; }

/* ---- Stats Strip ---- */
.stats-strip { background: var(--accent); padding: 48px 0; }
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  text-align: center;
}
.stat-num {
  font-family: 'Oswald', sans-serif;
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1;
  display: block;
}
.stat-label {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.82);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  display: block;
  margin-top: 6px;
}
.stat-divider { border: none; width: 32px; height: 2px; background: rgba(255,255,255,0.4); margin: 10px auto 0; }

/* ---- Projects Gallery ---- */
.filter-bar {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}
.filter-btn {
  padding: 8px 18px;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.88rem;
  font-weight: 500;
  border: 1.5px solid var(--border);
  border-radius: 100px;
  color: var(--text-muted);
  transition: var(--transition);
  background: var(--white);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.filter-btn:hover, .filter-btn.active {
  background: var(--navy);
  color: var(--white);
  border-color: var(--navy);
}
.gallery-grid {
  columns: 4 260px;
  column-gap: 16px;
  gap: 16px;
}
.gallery-item {
  break-inside: avoid;
  margin-bottom: 16px;
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  cursor: pointer;
  display: block;
}
.gallery-item img {
  width: 100%;
  display: block;
  transition: transform 0.4s ease;
}
.gallery-item:hover img { transform: scale(1.05); }
.gallery-item-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(12,28,48,0.85) 0%, transparent 60%);
  opacity: 0;
  transition: var(--transition);
  display: flex;
  align-items: flex-end;
  padding: 16px;
}
.gallery-item:hover .gallery-item-overlay { opacity: 1; }
.gallery-item-label {
  color: var(--white);
  font-size: 0.85rem;
  font-weight: 500;
}

/* ---- Before/After Slider ---- */
.ba-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 32px;
  margin-top: 48px;
}
.ba-card { border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow); }
.ba-title {
  background: var(--navy);
  color: var(--white);
  font-family: 'Oswald', sans-serif;
  font-size: 0.95rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 12px 16px;
}
.ba-slider {
  position: relative;
  overflow: hidden;
  height: 340px;
  cursor: col-resize;
  touch-action: none;
  user-select: none;
  -webkit-user-select: none;
}
.ba-slider img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  pointer-events: none;
}
.ba-after-wrap {
  position: absolute;
  inset: 0;
  overflow: hidden;
  clip-path: polygon(50% 0%, 100% 0%, 100% 100%, 50% 100%);
  transition: clip-path 0s;
}
.ba-label {
  position: absolute;
  bottom: 12px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--white);
  background: rgba(12,28,48,0.75);
  padding: 4px 10px;
  border-radius: 100px;
}
.ba-label-before { left: 12px; }
.ba-label-after  { right: 12px; }
.ba-handle {
  position: absolute;
  top: 0;
  left: 50%;
  width: 3px;
  height: 100%;
  background: var(--white);
  transform: translateX(-50%);
  cursor: col-resize;
  z-index: 10;
}
.ba-handle-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 44px; height: 44px;
  background: var(--accent);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 12px rgba(0,0,0,0.3);
  color: var(--white);
}
.ba-handle-btn svg { width: 20px; height: 20px; }

/* ---- Testimonials ---- */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
  margin-top: 48px;
}
.testimonial-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px;
  position: relative;
}
.testimonial-card::before {
  content: '"';
  position: absolute;
  top: 20px; left: 28px;
  font-family: 'Oswald', sans-serif;
  font-size: 5rem;
  color: var(--accent);
  opacity: 0.15;
  line-height: 1;
}
.stars { display: flex; gap: 4px; color: #f59e0b; margin-bottom: 16px; }
.stars svg { width: 16px; height: 16px; fill: currentColor; }
.testimonial-card p { font-size: 0.95rem; line-height: 1.7; color: var(--text); margin-bottom: 20px; max-width: none; font-style: italic; }
.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
  border-top: 1px solid var(--border);
  padding-top: 16px;
}
.testimonial-avatar {
  width: 40px; height: 40px;
  background: var(--accent);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Oswald', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  color: var(--white);
  flex-shrink: 0;
}
.testimonial-name { font-weight: 600; font-size: 0.9rem; color: var(--navy); }
.testimonial-loc  { font-size: 0.8rem; color: var(--text-muted); }

/* ---- Areas ---- */
.areas-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: 16px;
  margin-top: 40px;
}
.area-card {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  padding: 20px;
  text-align: center;
  transition: var(--transition);
}
.area-card:hover {
  border-color: var(--accent);
  box-shadow: var(--shadow);
  transform: translateY(-2px);
}
.area-icon { font-size: 1.5rem; margin-bottom: 8px; display: block; }
.area-name { font-family: 'Oswald', sans-serif; font-size: 1rem; text-transform: uppercase; letter-spacing: 0.05em; color: var(--navy); }

/* ---- Blog Cards ---- */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 28px;
  margin-top: 40px;
}
.blog-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: var(--transition);
}
.blog-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-4px); }
.blog-card-img { height: 210px; overflow: hidden; background: var(--light); }
.blog-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s ease; }
.blog-card:hover .blog-card-img img { transform: scale(1.05); }
.blog-card-body { padding: 24px; }
.blog-meta { display: flex; gap: 12px; align-items: center; margin-bottom: 12px; flex-wrap: wrap; }
.blog-tag {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  background: var(--accent-lite);
  padding: 3px 10px;
  border-radius: 100px;
}
.blog-date { font-size: 0.8rem; color: var(--text-muted); }
.blog-card h3 { font-size: 1.1rem; margin-bottom: 10px; line-height: 1.3; }
.blog-card h3 a { transition: var(--transition); }
.blog-card h3 a:hover { color: var(--accent); }
.blog-card p { font-size: 0.88rem; color: var(--text-muted); margin-bottom: 16px; max-width: none; -webkit-line-clamp: 3; -webkit-box-orient: vertical; overflow: hidden; display: -webkit-box; }
.blog-read-more { font-size: 0.88rem; font-weight: 600; color: var(--accent); display: flex; align-items: center; gap: 6px; }
.blog-read-more:hover { gap: 10px; }

/* ---- Quote / Contact Form ---- */
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.form-full  { grid-column: 1 / -1; }
.form-group { display: flex; flex-direction: column; gap: 6px; }
.form-group label { font-size: 0.85rem; font-weight: 600; color: var(--text); text-transform: uppercase; letter-spacing: 0.06em; }
.form-group label span { color: var(--accent); }
.form-group input,
.form-group select,
.form-group textarea {
  padding: 12px 16px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  font-family: 'DM Sans', sans-serif;
  font-size: 0.95rem;
  color: var(--text);
  background: var(--white);
  transition: var(--transition);
  outline: none;
  -webkit-appearance: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-color: var(--accent); box-shadow: 0 0 0 3px rgba(242,100,25,0.12); }
.form-group textarea { resize: vertical; min-height: 120px; }
.form-group select { cursor: pointer; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%2364748b' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 14px center; padding-right: 40px; }
.form-checkbox { display: flex; align-items: flex-start; gap: 10px; cursor: pointer; }
.form-checkbox input { width: 18px; height: 18px; border-radius: 4px; cursor: pointer; flex-shrink: 0; margin-top: 2px; accent-color: var(--accent); }
.form-checkbox span { font-size: 0.88rem; color: var(--text-muted); }

.form-success, .form-error { display: none; padding: 16px 20px; border-radius: var(--radius); font-weight: 500; font-size: 0.95rem; margin-top: 16px; }
.form-success { background: #ecfdf5; color: #065f46; border: 1px solid #a7f3d0; }
.form-error   { background: #fef2f2; color: #991b1b; border: 1px solid #fecaca; }

/* ---- Quote Page Layout ---- */
.quote-layout { display: grid; grid-template-columns: 1fr 380px; gap: 56px; align-items: start; }
.quote-sidebar { position: sticky; top: 100px; }
.sidebar-card {
  background: var(--navy);
  color: var(--white);
  border-radius: var(--radius-lg);
  padding: 32px;
  margin-bottom: 24px;
}
.sidebar-card h3 { color: var(--white); margin-bottom: 20px; font-size: 1.1rem; }
.sidebar-info { display: flex; flex-direction: column; gap: 16px; }
.sidebar-info-item { display: flex; align-items: flex-start; gap: 12px; }
.sidebar-info-item svg { color: var(--accent); flex-shrink: 0; margin-top: 2px; }
.sidebar-info-item p { font-size: 0.9rem; color: rgba(255,255,255,0.78); max-width: none; }
.sidebar-info-item strong { color: var(--white); display: block; font-size: 0.95rem; }
.cert-logos { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 20px; }
.cert-logo {
  background: rgba(255,255,255,0.1);
  border-radius: var(--radius);
  padding: 10px 16px;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

/* ---- About Page ---- */
.about-intro { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.team-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(240px, 1fr)); gap: 24px; margin-top: 48px; }
.team-card { background: var(--white); border: 1px solid var(--border); border-radius: var(--radius-lg); overflow: hidden; text-align: center; transition: var(--transition); }
.team-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-3px); }
.team-photo { height: 220px; overflow: hidden; background: var(--light); }
.team-photo img { width: 100%; height: 100%; object-fit: cover; }
.team-photo-placeholder { width: 100%; height: 100%; display: flex; align-items: center; justify-content: center; background: linear-gradient(135deg, var(--navy) 0%, var(--blue) 100%); }
.team-photo-placeholder svg { color: rgba(255,255,255,0.3); width: 64px; height: 64px; }
.team-info { padding: 20px; }
.team-name { font-family: 'Oswald', sans-serif; font-size: 1.1rem; text-transform: uppercase; letter-spacing: 0.05em; margin-bottom: 4px; }
.team-role { font-size: 0.85rem; color: var(--accent); font-weight: 500; margin-bottom: 10px; }
.team-bio  { font-size: 0.88rem; color: var(--text-muted); }
.accreditations { display: flex; gap: 24px; flex-wrap: wrap; align-items: center; margin-top: 40px; }
.accred-item { display: flex; align-items: center; gap: 12px; padding: 16px 24px; border: 1.5px solid var(--border); border-radius: var(--radius); font-weight: 600; font-size: 0.9rem; }
.accred-item svg { color: var(--accent); }
.timeline { position: relative; padding-left: 32px; }
.timeline::before { content: ''; position: absolute; left: 0; top: 6px; bottom: 0; width: 2px; background: var(--border); }
.timeline-item { position: relative; margin-bottom: 32px; }
.timeline-item::before { content: ''; position: absolute; left: -37px; top: 6px; width: 10px; height: 10px; background: var(--accent); border-radius: 50%; border: 2px solid var(--white); box-shadow: 0 0 0 2px var(--accent); }
.timeline-year { font-family: 'Oswald', sans-serif; color: var(--accent); font-size: 0.9rem; letter-spacing: 0.1em; }
.timeline-title { font-family: 'Oswald', sans-serif; font-size: 1.1rem; margin: 4px 0; }
.timeline-text { font-size: 0.9rem; color: var(--text-muted); }

/* ---- Areas Page ---- */
.areas-intro-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.area-detail-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(240px, 1fr)); gap: 20px; margin-top: 40px; }
.area-detail-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 24px;
  transition: var(--transition);
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.area-detail-card:hover { box-shadow: var(--shadow); border-color: var(--accent); }
.area-detail-card h3 { font-size: 1.1rem; display: flex; align-items: center; gap: 10px; }
.area-detail-card h3 svg { color: var(--accent); }
.area-detail-card p { font-size: 0.88rem; color: var(--text-muted); max-width: none; }

/* ---- CTA Section ---- */
.cta-section {
  background: var(--navy);
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}
.cta-section::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 600px; height: 600px;
  background: var(--accent);
  opacity: 0.05;
  border-radius: 50%;
}
.cta-section h2 { color: var(--white); margin-bottom: 16px; }
.cta-section p  { color: rgba(255,255,255,0.72); margin-bottom: 36px; }
.cta-actions { display: flex; gap: 14px; flex-wrap: wrap; }

/* ---- Footer ---- */
.footer {
  background: var(--navy);
  padding: 64px 0 0;
  border-top: 4px solid var(--accent);
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.footer-brand p { font-size: 0.9rem; color: rgba(255,255,255,0.62); margin: 16px 0 24px; max-width: 36ch; }
.footer-social { display: flex; gap: 10px; }
.footer-social a {
  width: 36px; height: 36px;
  background: rgba(255,255,255,0.1);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.7);
  transition: var(--transition);
}
.footer-social a:hover { background: var(--accent); color: var(--white); }
.footer-social svg { width: 16px; height: 16px; }
.footer-col h4 {
  font-family: 'Oswald', sans-serif;
  font-size: 0.9rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--white);
  margin-bottom: 20px;
}
.footer-links { display: flex; flex-direction: column; gap: 10px; }
.footer-links a { font-size: 0.88rem; color: rgba(255,255,255,0.62); transition: var(--transition); }
.footer-links a:hover { color: var(--accent); }
.footer-contact-item { display: flex; align-items: flex-start; gap: 10px; margin-bottom: 12px; }
.footer-contact-item svg { color: var(--accent); flex-shrink: 0; margin-top: 2px; width: 15px; height: 15px; }
.footer-contact-item span { font-size: 0.88rem; color: rgba(255,255,255,0.62); line-height: 1.5; }
.footer-bottom {
  padding: 20px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}
.footer-bottom p { font-size: 0.82rem; color: rgba(255,255,255,0.4); max-width: none; }
.footer-bottom a { color: rgba(255,255,255,0.55); transition: var(--transition); }
.footer-bottom a:hover { color: var(--accent); }

/* ---- Lightbox ---- */
.lightbox-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.92);
  z-index: 9999;
  align-items: center;
  justify-content: center;
  padding: 24px;
}
.lightbox-overlay.open { display: flex; }
.lightbox-img { max-width: 90vw; max-height: 88vh; object-fit: contain; border-radius: var(--radius); }
.lightbox-close {
  position: absolute;
  top: 20px; right: 20px;
  width: 44px; height: 44px;
  background: rgba(255,255,255,0.12);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: white;
  font-size: 1.4rem;
  cursor: pointer;
  transition: var(--transition);
}
.lightbox-close:hover { background: var(--accent); }
.lightbox-caption {
  position: absolute;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  color: rgba(255,255,255,0.8);
  font-size: 0.9rem;
  background: rgba(0,0,0,0.5);
  padding: 8px 20px;
  border-radius: 100px;
  white-space: nowrap;
}

/* ---- Scroll Animations ---- */
.fade-up {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.fade-up.visible { opacity: 1; transform: translateY(0); }

/* ---- Responsive ---- */
@media (max-width: 1100px) {
  .why-grid        { grid-template-columns: 1fr; }
  .why-img-stack   { display: none; }
  .quote-layout    { grid-template-columns: 1fr; }
  .quote-sidebar   { position: static; }
  .footer-grid     { grid-template-columns: 1fr 1fr; }
  .areas-intro-grid { grid-template-columns: 1fr; }
  .about-intro     { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
  .section         { padding: 60px 0; }
  .nav-links       { display: none; }
  .nav-actions     { display: none; }
  .nav-toggle      { display: flex; }
  .nav-phone-mobile { display: flex; }
  .form-grid       { grid-template-columns: 1fr; }
  .stats-grid      { grid-template-columns: 2fr 2fr; }
  .hero-actions    { flex-direction: column; }
  .hero-actions .btn { width: 100%; justify-content: center; }
  .gallery-grid    { columns: 2 160px; }
  .footer-grid     { grid-template-columns: 1fr; gap: 32px; }
}
@media (max-width: 480px) {
  .trust-items { flex-direction: column; align-items: flex-start; }
  .ba-grid     { grid-template-columns: 1fr; }
  .stats-grid  { grid-template-columns: 1fr 1fr; }
}

/* =====================================================================
   BLOG PAGE
   ===================================================================== */
.blog-filter-section {
  background: var(--light);
  border-bottom: 1px solid var(--border);
  padding: 20px 0;
}
.blog-featured {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  margin-bottom: 56px;
}
.blog-featured-img {
  min-height: 380px;
  background-size: cover;
  background-position: center;
  position: relative;
}
.blog-cat-badge {
  position: absolute;
  top: 16px;
  left: 16px;
  background: var(--accent);
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 4px 12px;
  border-radius: 20px;
}
.blog-featured-body {
  background: var(--navy);
  color: #fff;
  padding: 48px 44px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 16px;
}
.blog-featured-body h2 { font-size: clamp(1.2rem, 2vw, 1.7rem); color: #fff; line-height: 1.3; }
.blog-featured-body h2 a { color: #fff; text-decoration: none; }
.blog-featured-body h2 a:hover { color: var(--accent); }
.blog-featured-body p { color: rgba(255,255,255,0.75); line-height: 1.7; margin: 0; }
.blog-meta { display: flex; gap: 16px; align-items: center; }
.blog-date, .blog-read {
  display: flex; align-items: center; gap: 5px;
  font-size: 13px; color: rgba(255,255,255,0.55);
}
.blog-date svg, .blog-read svg { width: 14px; height: 14px; }

.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
.blog-card {
  background: #fff;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: transform 0.25s, box-shadow 0.25s;
  display: flex;
  flex-direction: column;
}
.blog-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.blog-card-img {
  height: 200px;
  background-size: cover;
  background-position: center;
  position: relative;
  flex-shrink: 0;
}
.blog-card-body {
  padding: 22px 24px 24px;
  display: flex;
  flex-direction: column;
  flex: 1;
  gap: 10px;
}
.blog-card-body .blog-meta { gap: 12px; }
.blog-card-body .blog-date,
.blog-card-body .blog-read { color: #999; }
.blog-card-body .blog-date svg,
.blog-card-body .blog-read svg { display: none; }
.blog-card-body h3 { font-size: 1.05rem; line-height: 1.4; margin: 0; }
.blog-card-body h3 a { color: var(--navy); text-decoration: none; }
.blog-card-body h3 a:hover { color: var(--accent); }
.blog-card-body p { font-size: 0.9rem; color: #666; line-height: 1.6; margin: 0; flex: 1; }
.blog-more {
  color: var(--accent);
  font-weight: 600;
  font-size: 0.9rem;
  text-decoration: none;
  margin-top: auto;
}
.blog-more:hover { color: var(--navy); }
.blog-load-more { text-align: center; margin-top: 48px; }

.blog-cta-section { background: var(--light); padding: 64px 0; }
.blog-cta-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.blog-cta-card {
  background: #fff;
  border-radius: 14px;
  padding: 36px 28px;
  text-align: center;
  box-shadow: var(--shadow-md);
}
.blog-cta-icon {
  width: 60px; height: 60px;
  background: var(--accent);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 18px;
}
.blog-cta-icon svg { width: 28px; height: 28px; color: #fff; }
.blog-cta-card h3 { margin: 0 0 10px; font-size: 1.15rem; }
.blog-cta-card p { color: #666; font-size: 0.9rem; margin: 0 0 20px; }

/* =====================================================================
   QUOTE PAGE
   ===================================================================== */
.quote-trust-strip {
  background: var(--navy);
  padding: 20px 0;
}
.quote-trust-items {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: center;
}
.quote-trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.85);
  font-size: 0.9rem;
  font-weight: 500;
}
.quote-trust-item svg { width: 18px; height: 18px; color: var(--accent); flex-shrink: 0; }

.quote-section { padding: 72px 0 80px; }
.quote-layout {
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 48px;
  align-items: start;
}

/* --- Form --- */
.quote-form-wrap {
  background: #fff;
  border-radius: 16px;
  padding: 44px 48px;
  box-shadow: var(--shadow-lg);
}
.quote-form-wrap h2 { margin: 0 0 6px; font-size: 1.8rem; }
.quote-intro { color: #666; margin: 0 0 32px; line-height: 1.7; }

.form-section-heading {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--accent);
  border-bottom: 1px solid var(--border);
  padding-bottom: 8px;
  margin: 28px 0 20px;
}
.form-row { display: grid; gap: 20px; }
.form-row.two-col { grid-template-columns: 1fr 1fr; }
.form-group { display: flex; flex-direction: column; gap: 6px; }
.form-group label { font-size: 0.875rem; font-weight: 600; color: var(--navy); }
.form-group input,
.form-group select,
.form-group textarea {
  padding: 11px 14px;
  border: 1px solid var(--border);
  border-radius: 8px;
  font-size: 0.95rem;
  font-family: inherit;
  color: var(--navy);
  background: #fafafa;
  transition: border-color 0.2s, box-shadow 0.2s;
  outline: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(242,100,25,0.12);
  background: #fff;
}
.form-group input.input-error,
.form-group select.input-error,
.form-group textarea.input-error {
  border-color: #e53935;
}
.form-group textarea { resize: vertical; min-height: 100px; }
.form-error { font-size: 12px; color: #e53935; min-height: 16px; }
.req { color: var(--accent); }

/* Checkbox grid */
.checkbox-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
  gap: 10px;
}
.checkbox-item {
  display: flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  font-size: 0.9rem;
  font-weight: 400;
  color: var(--text);
  padding: 8px 12px;
  border: 1px solid var(--border);
  border-radius: 8px;
  transition: border-color 0.2s, background 0.2s;
}
.checkbox-item:hover { border-color: var(--accent); background: rgba(242,100,25,0.04); }
.checkbox-item input[type=checkbox] { accent-color: var(--accent); width: 16px; height: 16px; }
.checkbox-item input[type=checkbox]:checked + span { color: var(--accent); font-weight: 600; }
.consent-item {
  border: none !important;
  padding: 0 !important;
  font-size: 0.85rem;
  color: #666;
}
.consent-item a { color: var(--accent); }

.form-submit-row { margin-top: 28px; }
.form-disclaimer { font-size: 12px; color: #999; margin-top: 10px; }
.btn-lg { font-size: 1rem; padding: 15px 32px; }

/* Spinner */
.spinner {
  display: inline-block;
  width: 16px; height: 16px;
  border: 2px solid rgba(255,255,255,0.4);
  border-top-color: #fff;
  border-radius: 50%;
  animation: spin 0.7s linear infinite;
  vertical-align: middle;
}
@keyframes spin { to { transform: rotate(360deg); } }

/* Success / Error states */
.quote-success {
  text-align: center;
  padding: 60px 40px;
}
.success-icon {
  width: 80px; height: 80px;
  background: #e8f5e9;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 24px;
}
.success-icon svg { width: 40px; height: 40px; color: #2e7d32; }
.quote-success h2 { margin: 0 0 12px; color: var(--navy); }
.quote-success p { color: #666; margin: 0 0 10px; }
.success-actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; margin-top: 28px; }
.quote-error {
  background: #fff3f3;
  border: 1px solid #ffcdd2;
  border-radius: 8px;
  padding: 14px 18px;
  font-size: 0.9rem;
  color: #c62828;
  margin-top: 16px;
}
.quote-error a { color: var(--accent); }

/* --- Sidebar --- */
.quote-sidebar {
  position: sticky;
  top: 90px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.sidebar-card {
  background: #fff;
  border-radius: 14px;
  padding: 24px 26px;
  box-shadow: var(--shadow-md);
}
.sidebar-card h3 { font-size: 1.05rem; margin: 0 0 14px; color: var(--navy); }
.sidebar-phone {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--navy);
  text-decoration: none;
  margin-bottom: 14px;
}
.sidebar-phone svg { width: 22px; height: 22px; color: var(--accent); }
.sidebar-phone:hover { color: var(--accent); }
.sidebar-hours { font-size: 0.875rem; color: #666; line-height: 1.8; }
.sidebar-area-list {
  list-style: none;
  padding: 0;
  margin: 0 0 14px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4px;
}
.sidebar-area-list li { font-size: 0.875rem; color: #555; padding: 4px 0; }
.sidebar-area-list li::before { content: '✓ '; color: var(--accent); font-weight: 700; }
.btn-sm { font-size: 0.85rem; padding: 9px 18px; }
.accred-list { display: flex; flex-direction: column; gap: 14px; }
.accred-item { display: flex; align-items: flex-start; gap: 12px; }
.accred-badge-lg {
  background: var(--navy);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  padding: 6px 8px;
  border-radius: 6px;
  white-space: nowrap;
  flex-shrink: 0;
  min-width: 48px;
  text-align: center;
}
.accred-item strong { display: block; font-size: 0.875rem; color: var(--navy); }
.accred-item p { font-size: 0.8rem; color: #777; margin: 2px 0 0; line-height: 1.4; }
.sidebar-review { background: var(--navy); color: #fff; }
.sidebar-stars { color: #f9a825; font-size: 18px; margin-bottom: 10px; }
.sidebar-review blockquote {
  margin: 0 0 10px;
  font-size: 0.875rem;
  line-height: 1.7;
  color: rgba(255,255,255,0.82);
  font-style: italic;
}
.sidebar-review cite { font-size: 0.8rem; color: rgba(255,255,255,0.5); font-style: normal; }

/* =====================================================================
   RESPONSIVE ADDITIONS
   ===================================================================== */
@media (max-width: 1100px) {
  .quote-layout { grid-template-columns: 1fr; }
  .quote-sidebar { position: static; }
  .blog-grid { grid-template-columns: 1fr 1fr; }
  .blog-cta-grid { grid-template-columns: 1fr 1fr; }
  .blog-featured { grid-template-columns: 1fr; }
  .blog-featured-img { min-height: 260px; }
}
@media (max-width: 768px) {
  .quote-form-wrap { padding: 28px 20px; }
  .form-row.two-col { grid-template-columns: 1fr; }
  .checkbox-grid { grid-template-columns: 1fr 1fr; }
  .blog-grid { grid-template-columns: 1fr; }
  .blog-cta-grid { grid-template-columns: 1fr; }
  .quote-trust-items { gap: 14px; }
  .quote-trust-item { font-size: 0.8rem; }
  .sidebar-area-list { grid-template-columns: 1fr 1fr; }
}
