/* ============================================================
   SEVCO RESTORATION AZ — MASTER STYLESHEET
   Brand: Navy #0a192f | Orange/Gold #e8a020 | White #ffffff
   ============================================================ */

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

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

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  color: #1a202c;
  background: #fff;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

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

/* ── TYPOGRAPHY ───────────────────────────────────────────── */
h1, h2, h3, h4, h5 {
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: -0.02em;
}

h1 { font-size: clamp(2.2rem, 5vw, 3.5rem); }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.8rem); }
h3 { font-size: clamp(1.2rem, 2vw, 1.5rem); }

p { line-height: 1.75; color: #4a5568; }

/* ── LAYOUT ───────────────────────────────────────────────── */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.container--narrow { max-width: 860px; }
.container--wide   { max-width: 1400px; }

section { padding: 80px 0; }

/* ── COLORS ───────────────────────────────────────────────── */
:root {
  --navy:    #0a192f;
  --navy-2:  #1a3a5c;
  --orange:  #e8a020;
  --orange-2:#d4911a;
  --white:   #ffffff;
  --gray-50: #f8fafc;
  --gray-100:#f4f6f9;
  --gray-400:#9ca3af;
  --gray-600:#4a5568;
  --gray-800:#1a202c;
}

/* ── BUTTONS ──────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.2s ease;
  border: 2px solid transparent;
  white-space: nowrap;
}

.btn-primary {
  background: var(--orange);
  color: #fff;
  border-color: var(--orange);
}
.btn-primary:hover {
  background: var(--orange-2);
  border-color: var(--orange-2);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(232,160,32,0.4);
}

.btn-outline-white {
  background: transparent;
  color: #fff;
  border-color: rgba(255,255,255,0.5);
}
.btn-outline-white:hover {
  background: rgba(255,255,255,0.1);
  border-color: #fff;
}

.btn-outline-navy {
  background: transparent;
  color: var(--navy);
  border-color: var(--navy);
}
.btn-outline-navy:hover {
  background: var(--navy);
  color: #fff;
}

.btn-lg { padding: 18px 36px; font-size: 1.1rem; }
.btn-sm { padding: 10px 20px; font-size: 0.9rem; }

/* ── LABELS / EYEBROWS ────────────────────────────────────── */
.label {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 12px;
}

/* ── SECTION HEADERS ──────────────────────────────────────── */
.section-header {
  text-align: center;
  margin-bottom: 56px;
}
.section-header h2 { color: var(--navy); margin-bottom: 16px; }
.section-header p  { max-width: 620px; margin: 0 auto; font-size: 1.05rem; }

/* ── HEADER / NAV ─────────────────────────────────────────── */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: var(--navy);
  box-shadow: 0 2px 20px rgba(0,0,0,0.3);
  transition: all 0.3s ease;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 24px;
  height: 72px;
  max-width: 1400px;
  margin: 0 auto;
}

.logo { display: flex; align-items: center; gap: 10px; text-decoration: none; }
.logo img { height: 44px; width: auto; }
.logo-text {
  font-size: 1.1rem;
  font-weight: 800;
  color: #fff;
  line-height: 1.1;
  letter-spacing: -0.01em;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav-links a {
  color: rgba(255,255,255,0.85);
  font-weight: 500;
  font-size: 0.95rem;
  transition: color 0.2s;
  position: relative;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--orange);
  transition: width 0.2s;
}
.nav-links a:hover { color: #fff; }
.nav-links a:hover::after { width: 100%; }

/* Service Areas Dropdown */
.nav-dropdown { position: relative; }
.nav-dropdown > a { display: flex; align-items: center; gap: 4px; }
.nav-dropdown > a::after { display: none; }

.dropdown-menu {
  position: absolute;
  top: calc(100% + 16px);
  left: 50%;
  transform: translateX(-50%);
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.2);
  padding: 16px;
  min-width: 280px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4px;
  opacity: 0;
  visibility: hidden;
  transition: all 0.2s ease;
  pointer-events: none;
}
.nav-dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  pointer-events: all;
  top: calc(100% + 8px);
}
.dropdown-menu a {
  padding: 8px 12px;
  border-radius: 6px;
  color: var(--navy);
  font-size: 0.9rem;
  font-weight: 500;
  transition: background 0.15s;
}
.dropdown-menu a:hover { background: var(--gray-100); color: var(--orange); }

.header-cta {
  display: flex;
  align-items: center;
  gap: 12px;
}

.header-phone {
  color: #fff;
  font-weight: 700;
  font-size: 0.95rem;
  display: flex;
  align-items: center;
  gap: 6px;
}
.header-phone:hover { color: var(--orange); }

/* Mobile menu toggle */
.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px;
}
.menu-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: all 0.3s;
}

/* ── HERO ─────────────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding-top: 114px; /* 42px ebar + 72px header */
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('../images/hero-fire.jpeg');
  background-size: cover;
  background-position: center;
  z-index: 0;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    105deg,
    rgba(10,25,47,0.92) 0%,
    rgba(10,25,47,0.75) 50%,
    rgba(10,25,47,0.4) 100%
  );
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: 0 auto;
  padding: 80px 24px;
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 60px;
  align-items: center;
  width: 100%;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(232,160,32,0.15);
  border: 1px solid rgba(232,160,32,0.4);
  color: var(--orange);
  padding: 6px 16px;
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.hero-title {
  color: #fff;
  margin-bottom: 20px;
  font-size: clamp(2.5rem, 5vw, 4rem);
}
.hero-title span { color: var(--orange); }

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

.hero-buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 48px;
}

.hero-trust {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.8);
  font-size: 0.85rem;
  font-weight: 500;
}
.trust-item svg { color: var(--orange); flex-shrink: 0; }

/* Hero form card */
.hero-form-card {
  background: #fff;
  border-radius: 16px;
  padding: 36px 32px;
  box-shadow: 0 24px 64px rgba(0,0,0,0.3);
}

.hero-form-card h3 {
  color: var(--navy);
  font-size: 1.3rem;
  margin-bottom: 6px;
}
.hero-form-card p {
  color: var(--gray-600);
  font-size: 0.9rem;
  margin-bottom: 24px;
}

.form-group {
  margin-bottom: 14px;
}
.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 12px 16px;
  border: 2px solid #e2e8f0;
  border-radius: 8px;
  font-size: 0.95rem;
  font-family: inherit;
  color: var(--gray-800);
  transition: border-color 0.2s;
  background: #fff;
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--orange);
}
.form-group textarea { resize: vertical; min-height: 80px; }

.form-submit {
  width: 100%;
  padding: 16px;
  background: var(--orange);
  color: #fff;
  border: none;
  border-radius: 50px;
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.2s;
  font-family: inherit;
}
.form-submit:hover {
  background: var(--orange-2);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(232,160,32,0.4);
}

.form-disclaimer {
  text-align: center;
  font-size: 0.78rem;
  color: var(--gray-400);
  margin-top: 10px;
}

/* ── GHL FORM WRAPPER ─────────────────────────────────────── */
.ghl-form-wrapper {
  width: 100%;
  border-radius: 8px;
  overflow: hidden;
  background: transparent;
}
.ghl-form-wrapper iframe {
  width: 100% !important;
  border: none !important;
  border-radius: 8px;
  display: block;
  height: 622px;
  min-height: unset;
}
/* Remove extra padding from hero card when holding GHL form */
.hero-form-card {
  padding: 28px 24px 20px;
}
/* Remove extra padding from contact card when holding GHL form */
.contact-form-card {
  padding: 24px 20px;
}

/* ── STATS BAR ────────────────────────────────────────────── */
.stats-bar {
  background: var(--navy);
  padding: 0;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid rgba(255,255,255,0.08);
}

.stat-item {
  padding: 32px 24px;
  text-align: center;
  border-right: 1px solid rgba(255,255,255,0.08);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}
.stat-item:last-child { border-right: none; }

.stat-number {
  font-size: 2.4rem;
  font-weight: 800;
  color: var(--orange);
  line-height: 1;
}
.stat-label {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.65);
  font-weight: 500;
  text-align: center;
}

/* ── SERVICES SECTION ─────────────────────────────────────── */
.services-section { background: var(--gray-100); }

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.service-card {
  background: #fff;
  border-radius: 16px;
  padding: 36px 32px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.06);
  transition: all 0.3s ease;
  border: 1px solid transparent;
  display: flex;
  flex-direction: column;
}
.service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 48px rgba(0,0,0,0.12);
  border-color: var(--orange);
}

.service-icon {
  width: 56px;
  height: 56px;
  background: rgba(232,160,32,0.1);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  font-size: 1.6rem;
}

.service-card h3 {
  color: var(--navy);
  margin-bottom: 12px;
  font-size: 1.15rem;
}

.service-card p {
  font-size: 0.95rem;
  line-height: 1.65;
  flex: 1;
  margin-bottom: 20px;
}

.service-link {
  color: var(--orange);
  font-weight: 700;
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  gap: 6px;
  transition: gap 0.2s;
}
.service-link:hover { gap: 10px; }

/* ── WHY SEVCO ────────────────────────────────────────────── */
.why-sevco { background: var(--navy); }

.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.why-content .label { color: var(--orange); }
.why-content h2 { color: #fff; margin-bottom: 20px; }
.why-content > p { color: rgba(255,255,255,0.8); margin-bottom: 32px; }

.why-points {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 36px;
}

.why-point {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 16px 20px;
  background: rgba(255,255,255,0.04);
  border-radius: 10px;
  border: 1px solid rgba(255,255,255,0.06);
}

.why-point-icon {
  width: 36px;
  height: 36px;
  background: rgba(232,160,32,0.15);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--orange);
  font-size: 1rem;
}

.why-point-text h4 {
  color: #fff;
  font-size: 0.95rem;
  font-weight: 700;
  margin-bottom: 4px;
}
.why-point-text p {
  color: rgba(255,255,255,0.65);
  font-size: 0.85rem;
  line-height: 1.5;
}

.why-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.why-stat {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 14px;
  padding: 28px 24px;
  text-align: center;
  transition: all 0.2s;
}
.why-stat:hover {
  background: rgba(232,160,32,0.08);
  border-color: rgba(232,160,32,0.3);
}

.why-stat-num {
  font-size: 2.4rem;
  font-weight: 800;
  color: var(--orange);
  line-height: 1;
  margin-bottom: 8px;
}
.why-stat-lbl {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.65);
  font-weight: 500;
}

/* ── PROCESS SECTION ──────────────────────────────────────── */
.process-section { background: #fff; }

.process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  position: relative;
}

.process-steps::before {
  content: '';
  position: absolute;
  top: 36px;
  left: calc(12.5% + 20px);
  right: calc(12.5% + 20px);
  height: 2px;
  background: linear-gradient(90deg, var(--orange), rgba(232,160,32,0.2));
}

.process-step {
  text-align: center;
  padding: 0 20px;
  position: relative;
}

.step-number {
  width: 72px;
  height: 72px;
  background: var(--navy);
  color: var(--orange);
  font-size: 1.4rem;
  font-weight: 800;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
  border: 3px solid var(--orange);
  position: relative;
  z-index: 1;
}

.process-step h3 {
  color: var(--navy);
  font-size: 1.05rem;
  margin-bottom: 10px;
}
.process-step p { font-size: 0.9rem; }

/* ── PROJECTS / GALLERY ───────────────────────────────────── */
.projects-section { background: var(--gray-100); }

.projects-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.project-card {
  border-radius: 12px;
  overflow: hidden;
  position: relative;
  aspect-ratio: 4/3;
  cursor: pointer;
}

.project-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.project-card:hover img { transform: scale(1.05); }

.project-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(10,25,47,0.85) 0%, transparent 60%);
  display: flex;
  align-items: flex-end;
  padding: 20px;
  opacity: 0;
  transition: opacity 0.3s;
}
.project-card:hover .project-overlay { opacity: 1; }

.project-overlay span {
  color: #fff;
  font-weight: 700;
  font-size: 0.95rem;
}

/* ── VIDEOS SECTION (homepage) ─────────────────────────── */
.videos-section {
  background: var(--gray-100);
  padding: 80px 0;
}
.videos-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 48px;
}
.video-card {
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 24px rgba(0,0,0,0.08);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.video-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.14);
}
.video-embed-wrapper {
  position: relative;
  padding-bottom: 56.25%; /* 16:9 */
  height: 0;
  overflow: hidden;
  background: #0a192f;
}
.video-embed-wrapper iframe {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  border: 0;
}
.video-card-body {
  padding: 24px;
}
.video-tag {
  display: inline-block;
  background: rgba(232,160,32,0.15);
  color: #b87d10;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 50px;
  margin-bottom: 12px;
}
.video-card-body h3 {
  color: var(--navy);
  font-size: 1.1rem;
  margin-bottom: 10px;
  line-height: 1.35;
}
.video-card-body p {
  color: #64748b;
  font-size: 0.9rem;
  line-height: 1.65;
  margin: 0;
}

/* ── PROJECTS MASONRY (projects page) ───────────────────── */
.projects-filter { display: flex; gap: 10px; flex-wrap: wrap; margin-bottom: 32px; }
.filter-btn {
  padding: 8px 20px;
  border-radius: 50px;
  border: 2px solid var(--navy);
  background: transparent;
  color: var(--navy);
  font-weight: 600;
  font-size: 0.9rem;
  cursor: pointer;
  transition: all 0.2s;
}
.filter-btn.active, .filter-btn:hover {
  background: var(--navy);
  color: #fff;
}
.projects-masonry {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.project-item {
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(0,0,0,0.08);
  transition: transform 0.2s, box-shadow 0.2s;
}
.project-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.14);
}
.project-item-img {
  position: relative;
  aspect-ratio: 4/3;
  overflow: hidden;
  background: var(--gray-100);
}
.project-item-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
  display: block;
}
.project-item:hover .project-item-img img { transform: scale(1.05); }
.project-item-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  background: var(--orange);
  color: #fff;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 50px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.project-item-body {
  padding: 18px 20px;
}
.project-item-body h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 6px;
}
.project-item-body p {
  font-size: 0.875rem;
  color: #64748b;
  margin-bottom: 12px;
  line-height: 1.5;
}
.project-meta {
  display: flex;
  gap: 12px;
  font-size: 0.8rem;
  color: #94a3b8;
  font-weight: 500;
}
.project-item-body a.view-project-link {
  display: inline-block;
  margin-top: 10px;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--orange);
  text-decoration: none;
}
.project-item-body a.view-project-link:hover { text-decoration: underline; }
@media (max-width: 900px) { .projects-masonry { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .projects-masonry { grid-template-columns: 1fr; } }

/* ── TESTIMONIALS ─────────────────────────────────────────── */
.testimonials-section { background: #fff; }

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.testimonial-card {
  background: var(--gray-50);
  border-radius: 16px;
  padding: 32px 28px;
  border: 1px solid #e2e8f0;
  transition: all 0.2s;
}
.testimonial-card:hover {
  box-shadow: 0 8px 32px rgba(0,0,0,0.08);
  transform: translateY(-4px);
}

.stars {
  color: var(--orange);
  font-size: 1.1rem;
  letter-spacing: 2px;
  margin-bottom: 16px;
}

.testimonial-card blockquote {
  font-size: 0.95rem;
  line-height: 1.7;
  color: var(--gray-600);
  font-style: italic;
  margin-bottom: 20px;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
}
.author-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--navy);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--orange);
  font-weight: 800;
  font-size: 1rem;
  flex-shrink: 0;
}
.author-name {
  font-weight: 700;
  color: var(--navy);
  font-size: 0.95rem;
}
.author-location {
  font-size: 0.8rem;
  color: var(--gray-400);
}

/* ── SERVICE AREAS ────────────────────────────────────────── */
.areas-section { background: var(--gray-100); }

.areas-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
}

.area-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 10px 22px;
  background: #fff;
  border: 2px solid var(--navy);
  border-radius: 50px;
  color: var(--navy);
  font-weight: 600;
  font-size: 0.9rem;
  transition: all 0.2s;
}
.area-pill:hover {
  background: var(--navy);
  color: #fff;
  transform: translateY(-2px);
}

/* ── CTA BANNER ───────────────────────────────────────────── */
.cta-section {
  background: linear-gradient(135deg, var(--orange) 0%, #d4911a 100%);
  padding: 80px 0;
  text-align: center;
}

.cta-section h2 { color: #fff; margin-bottom: 16px; }
.cta-section p  { color: rgba(255,255,255,0.9); font-size: 1.1rem; margin-bottom: 36px; }

.cta-buttons {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

/* ── FOOTER ───────────────────────────────────────────────── */
.site-footer {
  background: #060f1e;
  color: rgba(255,255,255,0.7);
  padding: 64px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 48px;
  margin-bottom: 48px;
}

.footer-brand img { height: 120px; width: auto; margin-bottom: 16px; }
.footer-brand p { font-size: 0.9rem; line-height: 1.7; margin-bottom: 20px; }

.footer-badges { display: flex; gap: 12px; flex-wrap: wrap; }
.footer-badges img { height: 44px; width: auto; }

.footer-col h4 {
  color: #fff;
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.footer-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-col ul li a {
  color: rgba(255,255,255,0.65);
  font-size: 0.9rem;
  transition: color 0.2s;
}
.footer-col ul li a:hover { color: var(--orange); }

.footer-contact { display: flex; flex-direction: column; gap: 14px; }
.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.9rem;
}
.footer-contact-item svg { color: var(--orange); flex-shrink: 0; margin-top: 2px; }
.footer-contact-item a { color: rgba(255,255,255,0.75); transition: color 0.2s; }
.footer-contact-item a:hover { color: var(--orange); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 20px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}

.footer-bottom p { font-size: 0.82rem; }
.footer-bottom-links { display: flex; gap: 20px; }
.footer-bottom-links a {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.5);
  transition: color 0.2s;
}
.footer-bottom-links a:hover { color: var(--orange); }

/* ── STICKY CALL BAR (mobile) ─────────────────────────────── */
.sticky-call {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 999;
  background: var(--orange);
  padding: 14px 24px;
  text-align: center;
}
.sticky-call a {
  color: #fff;
  font-weight: 800;
  font-size: 1.1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

/* ── PAGE HERO (inner pages) ──────────────────────────────── */
.page-hero {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-2) 100%);
  padding: 140px 0 80px;
  text-align: center;
}
.page-hero .container { text-align: center; }
.page-hero .label { color: var(--orange); }
.page-hero h1 { color: #fff; margin-bottom: 16px; }
.page-hero p { color: rgba(255,255,255,0.8); font-size: 1.1rem; max-width: 640px; margin: 0 auto 32px; }
.page-hero-buttons { display: flex; justify-content: center; gap: 16px; flex-wrap: wrap; }
/* Hero inner content — force centering for all flex rows */
.page-hero .ph-inner { max-width: 780px; margin: 0 auto; text-align: center; }
.page-hero .hero-cta-row { display: flex; gap: 16px; flex-wrap: wrap; justify-content: center; align-items: center; margin-bottom: 24px; }
.page-hero .trust-badges { display: flex; gap: 20px; flex-wrap: wrap; justify-content: center; margin-top: 24px; }
.page-hero .badge-row { display: flex; gap: 18px; flex-wrap: wrap; justify-content: center; }
.page-hero .breadcrumb { display: flex; justify-content: center; gap: 8px; align-items: center; }
.page-hero .lead { max-width: 640px; margin-left: auto !important; margin-right: auto !important; display: block; }

/* ── CONTENT SECTIONS ─────────────────────────────────────── */
.content-section { background: #fff; }
.content-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.content-grid.reverse { direction: rtl; }
.content-grid.reverse > * { direction: ltr; }

.content-image {
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0,0,0,0.15);
}
.content-image img { width: 100%; height: 400px; object-fit: cover; }

.content-text .label { color: var(--orange); }
.content-text h2 { color: var(--navy); margin-bottom: 16px; }
.content-text p { margin-bottom: 16px; }

.check-list { display: flex; flex-direction: column; gap: 10px; margin: 20px 0; }
.check-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.95rem;
  color: var(--gray-600);
}
.check-item::before {
  content: '✓';
  color: var(--orange);
  font-weight: 800;
  flex-shrink: 0;
  margin-top: 1px;
}

/* ── CONTACT PAGE ─────────────────────────────────────────── */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 64px;
  align-items: start;
}

.contact-info h2 { color: var(--navy); margin-bottom: 16px; }
.contact-info > p { margin-bottom: 32px; }

.contact-details { display: flex; flex-direction: column; gap: 20px; }
.contact-detail {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 20px;
  background: var(--gray-50);
  border-radius: 12px;
  border: 1px solid #e2e8f0;
}
.contact-detail-icon {
  width: 44px;
  height: 44px;
  background: rgba(232,160,32,0.1);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--orange);
  flex-shrink: 0;
}
.contact-detail h4 { color: var(--navy); font-size: 0.9rem; margin-bottom: 4px; }
.contact-detail p, .contact-detail a {
  color: var(--gray-600);
  font-size: 0.95rem;
}

.contact-form-card {
  background: #fff;
  border-radius: 20px;
  padding: 44px 40px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.1);
  border: 1px solid #e2e8f0;
}
.contact-form-card h3 { color: var(--navy); margin-bottom: 8px; }
.contact-form-card > p { margin-bottom: 28px; }

/* ── ABOUT PAGE ───────────────────────────────────────────── */
.team-section { background: var(--gray-100); }
.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.value-card {
  background: #fff;
  border-radius: 14px;
  padding: 32px 28px;
  text-align: center;
  box-shadow: 0 4px 16px rgba(0,0,0,0.06);
}
.value-icon {
  font-size: 2.5rem;
  margin-bottom: 16px;
}
.value-card h3 { color: var(--navy); margin-bottom: 10px; }

/* ── CITY/SERVICE LANDING PAGES ───────────────────────────── */
.local-hero {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-2) 100%);
  padding: 140px 0 80px;
}
.local-hero-inner {
  display: grid;
  grid-template-columns: 1fr 400px;
  gap: 48px;
  align-items: center;
}
.local-hero-text .label { color: var(--orange); }
.local-hero-text h1 { color: #fff; margin-bottom: 16px; }
.local-hero-text p { color: rgba(255,255,255,0.82); font-size: 1.05rem; margin-bottom: 28px; }

/* ── FAQ ──────────────────────────────────────────────────── */
.faq-list { max-width: 800px; margin: 0 auto; }
.faq-item {
  border-bottom: 1px solid #e2e8f0;
  padding: 20px 0;
}
.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  font-weight: 700;
  color: var(--navy);
  font-size: 1rem;
  gap: 16px;
}
.faq-question svg { flex-shrink: 0; transition: transform 0.2s; color: var(--orange); }
.faq-item.open .faq-question svg { transform: rotate(180deg); }
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s;
}
.faq-item.open .faq-answer { max-height: 400px; padding-top: 14px; }
.faq-answer p { font-size: 0.95rem; line-height: 1.7; }

/* ── BREADCRUMBS ──────────────────────────────────────────── */
.breadcrumbs {
  background: var(--navy);
  padding: 12px 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.breadcrumb-list {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.82rem;
}
.breadcrumb-list a { color: rgba(255,255,255,0.6); transition: color 0.2s; }
.breadcrumb-list a:hover { color: var(--orange); }
.breadcrumb-list span { color: rgba(255,255,255,0.35); }
.breadcrumb-list li:last-child { color: rgba(255,255,255,0.85); }

/* ── SUCCESS MESSAGE ──────────────────────────────────────── */
.success-msg {
  display: none;
  background: #d1fae5;
  border: 1px solid #6ee7b7;
  border-radius: 8px;
  padding: 16px;
  color: #065f46;
  font-weight: 600;
  text-align: center;
  margin-top: 12px;
}

/* ── RESPONSIVE ───────────────────────────────────────────── */
@media (max-width: 1024px) {
  .hero-content { grid-template-columns: 1fr; }
  .hero-form-card { max-width: 480px; }
  .why-grid { grid-template-columns: 1fr; gap: 48px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .process-steps { grid-template-columns: repeat(2, 1fr); }
  .process-steps::before { display: none; }
  .local-hero-inner { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  section { padding: 56px 0; }
  .nav-links { display: none; }
  .menu-toggle { display: flex; }
  .services-grid { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .projects-grid { grid-template-columns: repeat(2, 1fr); }
  .videos-grid { grid-template-columns: repeat(2, 1fr); }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .stat-item { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.08); }
  .content-grid { grid-template-columns: 1fr; }
  .content-grid.reverse { direction: ltr; }
  .contact-grid { grid-template-columns: 1fr; }
  .values-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .sticky-call { display: block; }
  body { padding-bottom: 60px; }
  .hero { min-height: auto; padding-top: 102px; padding-bottom: 40px; } /* 42px ebar + 60px mobile header */
  .hero-content { padding: 40px 24px; }
  /* Mobile header fixes */
  .header-inner { padding: 0 16px; height: 60px; }
  .logo img { height: 36px; }
  .header-phone { display: none; }
  .header-cta .btn-sm { padding: 10px 16px; font-size: 0.85rem; }
  /* Emergency bar: shorter text on mobile, single line */
  .ebar { font-size: 0.78rem; gap: 10px; padding: 8px 12px; flex-wrap: nowrap; }
  .ebar a { padding: 4px 10px; font-size: 0.78rem; white-space: nowrap; }
  .emergency-bar { font-size: 0.78rem; gap: 10px; padding: 8px 12px; }
  /* Page hero mobile */
  .page-hero { padding: 100px 0 50px; }
  .page-hero h1 { font-size: clamp(1.6rem, 6vw, 2.4rem); }
  .page-hero .lead { font-size: 0.95rem; }
  .page-hero .hero-cta-row { flex-direction: column; align-items: center; gap: 12px; }
  .page-hero .hero-cta-row .btn { width: 100%; max-width: 320px; justify-content: center; }
  .page-hero .trust-badges { gap: 12px; }
  .page-hero .badge-row { gap: 10px; }
  /* Content grids mobile */
  .handle-grid { grid-template-columns: 1fr 1fr !important; }
  .local-hero { padding: 100px 0 50px; }
  .local-hero-inner { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
  .projects-grid { grid-template-columns: 1fr; }
  .videos-grid { grid-template-columns: 1fr; }
  .process-steps { grid-template-columns: 1fr; }
  .hero-buttons { flex-direction: column; }
  .cta-buttons { flex-direction: column; align-items: center; }
  .contact-form-card { padding: 28px 20px; }
  /* Extra small mobile */
  .handle-grid { grid-template-columns: 1fr !important; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .ebar span { overflow: hidden; text-overflow: ellipsis; white-space: nowrap; max-width: 55vw; }
  .page-hero { padding: 90px 0 40px; }
  .page-hero h1 { font-size: clamp(1.5rem, 7vw, 2rem); }
}

/* ── MOBILE NAV OPEN ────────────────────────────────────── */
.mobile-nav {
  display: none;
  position: fixed;
  top: 60px;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--navy);
  z-index: 999;
  padding: 32px 24px;
  overflow-y: auto;
  flex-direction: column;
  gap: 8px;
}
.mobile-nav.open { display: flex; }
.mobile-nav a {
  color: rgba(255,255,255,0.85);
  font-size: 1.1rem;
  font-weight: 600;
  padding: 14px 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  display: block;
}
.mobile-nav a:hover { color: var(--orange); }
.mobile-nav .btn { margin-top: 16px; text-align: center; justify-content: center; }

/* ── ANIMATIONS ───────────────────────────────────────────── */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}
.animate-in { animation: fadeInUp 0.6s ease forwards; }

/* ── UTILITY ──────────────────────────────────────────────── */
.text-center { text-align: center; }
.text-orange { color: var(--orange); }
.text-navy   { color: var(--navy); }
.text-white  { color: #fff; }
.mt-4  { margin-top: 16px; }
.mt-8  { margin-top: 32px; }
.mb-4  { margin-bottom: 16px; }
.mb-8  { margin-bottom: 32px; }
.hidden { display: none; }

/* ── FOOTER BADGE TEXT ────────────────────────────────────── */
.footer-badge-text {
  display: inline-block;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  color: rgba(255,255,255,0.8);
  padding: 5px 12px;
  border-radius: 50px;
  font-size: 0.78rem;
  font-weight: 600;
  margin: 4px 4px 4px 0;
}

.footer-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 16px;
}

/* ===== VISUAL POLISH PASS ===== */

/* Testimonial cards */
.testimonial-card {
  background: #fff;
  border-radius: 12px;
  padding: 32px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.07);
  border: 1px solid rgba(0,0,0,0.06);
}
.testimonial-stars { color: #e8a020; font-size: 1.1rem; margin-bottom: 14px; letter-spacing: 2px; }
.testimonial-text { color: #333; line-height: 1.7; font-size: 0.97rem; margin-bottom: 20px; font-style: italic; }
.testimonial-author { display: flex; align-items: center; gap: 12px; }
.author-avatar {
  width: 44px; height: 44px;
  background: #0a192f; color: #e8a020;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-weight: 800; font-size: 1.1rem; flex-shrink: 0;
}
.author-name { font-weight: 700; color: #0a192f; font-size: 0.95rem; }
.author-location { color: #888; font-size: 0.82rem; }

/* Process steps */
.process-step {
  display: flex; gap: 20px;
  align-items: flex-start;
  padding: 28px 0;
  border-bottom: 1px solid rgba(0,0,0,0.08);
}
.process-step:last-child { border-bottom: none; }
.step-number {
  width: 52px; height: 52px;
  background: #e8a020; color: #fff;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-weight: 800; font-size: 1.2rem; flex-shrink: 0;
}
.step-content h3 { color: #0a192f; margin-bottom: 6px; font-size: 1.1rem; }
.step-content p { color: #555; line-height: 1.65; font-size: 0.95rem; margin: 0; }

/* City pills */
.city-pills { display: flex; flex-wrap: wrap; gap: 10px; justify-content: center; }
.city-pill {
  background: rgba(255,255,255,0.08);
  color: rgba(255,255,255,0.9);
  padding: 10px 20px;
  border-radius: 50px;
  text-decoration: none;
  font-size: 0.88rem;
  font-weight: 500;
  border: 1px solid rgba(255,255,255,0.2);
  transition: all 0.2s ease;
}
.city-pill:hover { background: #e8a020; border-color: #e8a020; color: #fff; }

/* Breadcrumb */
.breadcrumb { padding: 12px 0; font-size: 0.82rem; color: rgba(255,255,255,0.55); }
.breadcrumb a { color: rgba(255,255,255,0.55); text-decoration: none; }
.breadcrumb a:hover { color: #e8a020; }
.breadcrumb span { margin: 0 6px; opacity: 0.4; }

/* Emergency bar */
.emergency-bar {
  background: #c0392b; color: #fff;
  text-align: center; padding: 10px 20px;
  font-size: 0.88rem; font-weight: 600;
  position: sticky; top: 0; z-index: 1001;
}
.emergency-bar a { color: #fff; font-weight: 800; text-decoration: none; margin-left: 6px; }

/* Section label eyebrow */
.section-label {
  font-size: 0.75rem; font-weight: 700;
  letter-spacing: 3px; text-transform: uppercase;
  color: #e8a020; display: block; margin-bottom: 12px;
}

/* FAQ accordion */
.faq-item { border: 1px solid rgba(0,0,0,0.08); border-radius: 10px; margin-bottom: 12px; overflow: hidden; }
.faq-question {
  width: 100%; padding: 20px 24px;
  background: #fff; border: none;
  text-align: left; font-size: 1rem;
  font-weight: 600; color: #0a192f;
  cursor: pointer; display: flex;
  justify-content: space-between; align-items: center;
  font-family: inherit; transition: background 0.15s;
}
.faq-question:hover { background: #f8fafc; }
.faq-icon { font-size: 1.4rem; color: #e8a020; font-weight: 400; transition: transform 0.2s; }
.faq-question.open .faq-icon { transform: rotate(45deg); }
.faq-answer { padding: 0 24px; max-height: 0; overflow: hidden; transition: max-height 0.3s ease, padding 0.3s ease; }
.faq-answer.open { max-height: 400px; padding: 0 24px 20px; }
.faq-answer p { color: #555; line-height: 1.7; }

/* Sidebar card */
.sidebar-card {
  background: #0a192f; color: #fff;
  border-radius: 12px; padding: 28px;
  position: sticky; top: 100px;
}
.sidebar-card h3 { color: #fff; font-size: 1.1rem; margin-bottom: 8px; }
.sidebar-card p { color: rgba(255,255,255,0.75); font-size: 0.9rem; margin-bottom: 20px; }
.sidebar-card .btn-primary { width: 100%; text-align: center; display: block; margin-bottom: 10px; }
.sidebar-divider { border: none; border-top: 1px solid rgba(255,255,255,0.1); margin: 20px 0; }
.sidebar-badge { font-size: 0.8rem; color: rgba(255,255,255,0.65); display: flex; align-items: center; gap: 8px; margin-bottom: 8px; }

/* Page layout with sidebar */
.page-layout { display: grid; grid-template-columns: 1fr 320px; gap: 48px; align-items: start; }
@media (max-width: 900px) { .page-layout { grid-template-columns: 1fr; } .sidebar-card { position: static; } }

/* Content prose */
.prose h2 { color: #0a192f; font-size: 1.6rem; margin: 40px 0 16px; }
.prose h3 { color: #0a192f; font-size: 1.2rem; margin: 28px 0 12px; }
.prose p { color: #444; line-height: 1.75; margin-bottom: 16px; }
.prose ul { list-style: disc; padding-left: 24px; margin-bottom: 16px; }
.prose ul li { color: #444; line-height: 1.7; margin-bottom: 6px; }
.prose strong { color: #0a192f; }

/* Check list */
.check-list { list-style: none; padding: 0; margin: 0; }
.check-list li {
  display: flex; align-items: flex-start; gap: 10px;
  padding: 8px 0; color: #333; font-size: 0.95rem; line-height: 1.5;
}
.check-list li::before { content: '✓'; color: #e8a020; font-weight: 800; flex-shrink: 0; margin-top: 1px; }

/* Responsive final */
@media (max-width: 600px) {
  .process-step { flex-direction: column; gap: 12px; }
  .step-number { width: 44px; height: 44px; font-size: 1rem; }
  .city-pill { padding: 8px 16px; font-size: 0.82rem; }
  .testimonial-card { padding: 24px 20px; }
  .faq-question { padding: 16px 18px; font-size: 0.95rem; }
}

/* Related Projects Section */
.related-projects-section {
  background: #f8fafc;
  padding: 60px 0;
  border-top: 1px solid #e2e8f0;
}
.related-projects-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 16px;
  margin-top: 28px;
}
.related-project-card {
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 14px;
  padding: 20px 22px;
  text-decoration: none;
  transition: all 0.2s;
  display: block;
}
.related-project-card:hover {
  border-color: #e8a020;
  box-shadow: 0 4px 16px rgba(0,0,0,0.08);
  transform: translateY(-2px);
}
.related-project-card .rpc-label {
  font-size: 0.75rem;
  color: #64748b;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 6px;
}
.related-project-card .rpc-title {
  font-size: 1rem;
  color: #0a192f;
  font-weight: 700;
  margin-bottom: 10px;
  line-height: 1.4;
}
.related-project-card .rpc-arrow {
  font-size: 0.85rem;
  color: #e8a020;
  font-weight: 700;
}
.btn-outline-dark {
  display: inline-block;
  border: 2px solid #0a192f;
  color: #0a192f;
  padding: 12px 28px;
  border-radius: 50px;
  font-weight: 700;
  text-decoration: none;
  font-size: 0.95rem;
  transition: all 0.2s;
}
.btn-outline-dark:hover {
  background: #0a192f;
  color: #fff;
}
