/* ============================================================
   WestMetro Restoration - Main Stylesheet
   Color Palette:
   - Metro Blue: #1e3a8a
   - Restoration Teal: #0d9488
   - Emergency Orange: #f97316
   - Charcoal: #374151
   - Sky Blue: #0ea5e9
   - Light Gray: #f3f4f6
   - Success Green: #059669
   ============================================================ */

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

/* --- CSS Reset & Base --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 18px; }
body {
  font-family: 'Open Sans', sans-serif;
  color: #374151;
  background: #fff;
  line-height: 1.7;
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

/* --- Typography --- */
h1, h2, h3, h4, h5 {
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  line-height: 1.2;
  color: #1e3a8a;
}
h1 { font-size: clamp(2rem, 5vw, 3.5rem); }
h2 { font-size: clamp(1.6rem, 3.5vw, 2.6rem); }
h3 { font-size: clamp(1.2rem, 2.5vw, 1.8rem); }
h4 { font-size: 1.2rem; }
p { margin-bottom: 1rem; font-size: 1rem; }
.lead { font-size: 1.15rem; color: #374151; }

/* --- Layout Utilities --- */
.container { max-width: 1200px; margin: 0 auto; padding: 0 1.5rem; }
.section { padding: 5rem 0; }
.section-sm { padding: 3rem 0; }
.section-alt { background: #f3f4f6; }
.text-center { text-align: center; }
.text-white { color: #fff !important; }
.text-blue { color: #1e3a8a; }
.text-teal { color: #0d9488; }
.text-orange { color: #f97316; }
.mt-1 { margin-top: 0.5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mt-4 { margin-top: 2rem; }
.mb-1 { margin-bottom: 0.5rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }
.mb-4 { margin-bottom: 2rem; }
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 2rem; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; }
.flex { display: flex; }
.flex-center { display: flex; align-items: center; justify-content: center; }
.flex-between { display: flex; align-items: center; justify-content: space-between; }
.gap-1 { gap: 0.5rem; }
.gap-2 { gap: 1rem; }
.gap-3 { gap: 1.5rem; }

/* --- Section Headers --- */
.section-header { text-align: center; margin-bottom: 3.5rem; }
.section-header .eyebrow {
  display: inline-block;
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: #0d9488;
  background: #e6f7f6;
  padding: 0.3rem 1rem;
  border-radius: 999px;
  margin-bottom: 0.75rem;
}
.section-header h2 { margin-bottom: 1rem; }
.section-header p { max-width: 680px; margin: 0 auto; color: #6b7280; font-size: 1.05rem; }
.divider {
  width: 60px; height: 4px;
  background: linear-gradient(90deg, #1e3a8a, #0d9488);
  border-radius: 2px;
  margin: 1rem auto 0;
}

/* --- Buttons --- */
.btn {
  display: inline-flex; align-items: center; gap: 0.5rem;
  padding: 0.85rem 2rem;
  border-radius: 8px;
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  border: 2px solid transparent;
  transition: all 0.25s ease;
  text-decoration: none;
  white-space: nowrap;
}
.btn-primary {
  background: #1e3a8a;
  color: #fff;
  box-shadow: 0 4px 15px rgba(30,58,138,0.3);
}
.btn-primary:hover { background: #1e40af; transform: translateY(-2px); box-shadow: 0 8px 25px rgba(30,58,138,0.4); }
.btn-secondary {
  background: transparent;
  color: #0d9488;
  border-color: #0d9488;
}
.btn-secondary:hover { background: #0d9488; color: #fff; transform: translateY(-2px); }
.btn-emergency {
  background: linear-gradient(135deg, #f97316, #ea580c);
  color: #fff;
  border-radius: 999px;
  box-shadow: 0 4px 20px rgba(249,115,22,0.4);
  animation: pulse-orange 2s infinite;
}
.btn-emergency:hover { transform: translateY(-2px); box-shadow: 0 8px 30px rgba(249,115,22,0.5); }
.btn-white { background: #fff; color: #1e3a8a; }
.btn-white:hover { background: #f3f4f6; transform: translateY(-2px); }
.btn-lg { padding: 1rem 2.5rem; font-size: 1.05rem; }
.btn-sm { padding: 0.6rem 1.4rem; font-size: 0.875rem; }

@keyframes pulse-orange {
  0%, 100% { box-shadow: 0 4px 20px rgba(249,115,22,0.4); }
  50% { box-shadow: 0 4px 30px rgba(249,115,22,0.7); }
}

/* ============================================================
   HEADER / NAVIGATION
   ============================================================ */
.site-header {
  position: sticky; top: 0; z-index: 1000;
  background: #fff;
  box-shadow: 0 2px 20px rgba(0,0,0,0.08);
}
.top-bar {
  background: #1e3a8a;
  color: #fff;
  padding: 0.4rem 0;
  font-size: 0.85rem;
}
.top-bar .container { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 0.5rem; }
.top-bar a { color: #fff; }
.top-bar a:hover { color: #93c5fd; }
.top-bar-item { display: flex; align-items: center; gap: 0.4rem; }
.nav-main { padding: 0.75rem 0; }
.nav-main .container { display: flex; align-items: center; justify-content: space-between; }
.nav-logo img { height: 60px; width: auto; }
.nav-links { display: flex; align-items: center; gap: 0.25rem; }
.nav-links a {
  padding: 0.5rem 0.85rem;
  border-radius: 6px;
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 0.9rem;
  color: #374151;
  transition: all 0.2s;
}
.nav-links a:hover, .nav-links a.active { color: #1e3a8a; background: #eff6ff; }
.nav-cta { margin-left: 1rem; }
.hamburger {
  display: none;
  flex-direction: column; gap: 5px;
  background: none; border: none; cursor: pointer; padding: 0.5rem;
}
.hamburger span { display: block; width: 25px; height: 2px; background: #1e3a8a; border-radius: 2px; transition: all 0.3s; }

/* Mobile Nav */
.mobile-nav {
  display: none;
  position: fixed; top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(0,0,0,0.5); z-index: 2000;
}
.mobile-nav.open { display: flex; }
.mobile-nav-inner {
  background: #fff;
  width: 300px; max-width: 85vw;
  height: 100%;
  padding: 2rem 1.5rem;
  overflow-y: auto;
  display: flex; flex-direction: column; gap: 0.5rem;
}
.mobile-nav-close {
  align-self: flex-end;
  background: none; border: none; font-size: 1.5rem; cursor: pointer; color: #374151;
}
.mobile-nav-inner a {
  display: block; padding: 0.75rem 1rem;
  font-family: 'Inter', sans-serif; font-weight: 600;
  color: #374151; border-radius: 8px;
  border-bottom: 1px solid #f3f4f6;
}
.mobile-nav-inner a:hover { background: #eff6ff; color: #1e3a8a; }

/* ============================================================
   HERO SECTION
   ============================================================ */
.hero {
  position: relative;
  background: linear-gradient(135deg, #0f2060 0%, #1e3a8a 50%, #1e40af 100%);
  color: #fff;
  padding: 5rem 0 4rem;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute; inset: 0;
  background: url('../images/WestMetroRestorationworkvan.png') center/cover no-repeat;
  opacity: 0.12;
}
.hero-content { position: relative; z-index: 1; }
.hero .container { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; align-items: center; }
.hero-text .eyebrow {
  display: inline-block;
  background: rgba(249,115,22,0.2); color: #fed7aa;
  font-size: 0.85rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em;
  padding: 0.3rem 1rem; border-radius: 999px; margin-bottom: 1rem;
  border: 1px solid rgba(249,115,22,0.4);
}
.hero-text h1 { color: #fff; font-size: clamp(1.8rem, 4vw, 3rem); margin-bottom: 1.25rem; }
.hero-text h1 span { color: #f97316; }
.hero-text p { color: #bfdbfe; font-size: 1.1rem; margin-bottom: 2rem; }
.hero-badges { display: flex; flex-wrap: wrap; gap: 0.75rem; margin-bottom: 2rem; }
.hero-badge {
  display: flex; align-items: center; gap: 0.4rem;
  background: rgba(255,255,255,0.1); border: 1px solid rgba(255,255,255,0.2);
  color: #fff; padding: 0.4rem 0.9rem; border-radius: 999px; font-size: 0.82rem; font-weight: 600;
}
.hero-badge svg { width: 16px; height: 16px; flex-shrink: 0; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 1rem; }
.hero-image-side { position: relative; }
.hero-image-side img { border-radius: 16px; box-shadow: 0 25px 60px rgba(0,0,0,0.4); }
.hero-phone-card {
  position: absolute; bottom: -1.5rem; left: -1.5rem;
  background: #fff; border-radius: 12px; padding: 1rem 1.5rem;
  box-shadow: 0 10px 40px rgba(0,0,0,0.2);
  display: flex; align-items: center; gap: 0.75rem;
}
.hero-phone-card .icon { width: 44px; height: 44px; background: #f97316; border-radius: 50%; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.hero-phone-card .icon svg { width: 22px; height: 22px; color: #fff; }
.hero-phone-card .label { font-size: 0.75rem; color: #6b7280; font-weight: 600; text-transform: uppercase; letter-spacing: 0.05em; }
.hero-phone-card .number { font-family: 'Inter', sans-serif; font-weight: 800; font-size: 1.2rem; color: #1e3a8a; }

/* ============================================================
   TRUST BAR
   ============================================================ */
.trust-bar { background: #f3f4f6; padding: 1.5rem 0; border-top: 3px solid #1e3a8a; }
.trust-bar .container { display: flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: 2rem; }
.trust-item { display: flex; align-items: center; gap: 0.6rem; font-family: 'Inter', sans-serif; font-weight: 700; font-size: 0.9rem; color: #374151; }
.trust-item svg { width: 22px; height: 22px; color: #0d9488; flex-shrink: 0; }

/* ============================================================
   CARDS
   ============================================================ */
.card {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
  padding: 2rem;
  border-left: 4px solid #1e3a8a;
  transition: all 0.3s ease;
}
.card:hover { box-shadow: 0 12px 40px rgba(0,0,0,0.12); transform: translateY(-4px); border-left-color: #0d9488; }
.card-icon {
  width: 56px; height: 56px;
  background: linear-gradient(135deg, #eff6ff, #dbeafe);
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 1.25rem;
}
.card-icon svg { width: 28px; height: 28px; color: #1e3a8a; }
.card-icon.teal { background: linear-gradient(135deg, #f0fdfa, #ccfbf1); }
.card-icon.teal svg { color: #0d9488; }
.card-icon.orange { background: linear-gradient(135deg, #fff7ed, #fed7aa); }
.card-icon.orange svg { color: #f97316; }
.card h3 { margin-bottom: 0.75rem; font-size: 1.15rem; }
.card p { color: #6b7280; font-size: 0.95rem; margin-bottom: 1rem; }
.card-link { color: #0d9488; font-weight: 600; font-size: 0.9rem; display: flex; align-items: center; gap: 0.3rem; }
.card-link:hover { color: #1e3a8a; }

/* ============================================================
   PROCESS TIMELINE
   ============================================================ */
.timeline { position: relative; }
.timeline::before {
  content: '';
  position: absolute; left: 28px; top: 0; bottom: 0;
  width: 2px; background: linear-gradient(180deg, #1e3a8a, #0d9488);
}
.timeline-item { display: flex; gap: 1.5rem; margin-bottom: 2.5rem; position: relative; }
.timeline-marker {
  width: 56px; height: 56px; flex-shrink: 0;
  background: #1e3a8a; color: #fff;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: 'Inter', sans-serif; font-weight: 800; font-size: 1.1rem;
  position: relative; z-index: 1;
  box-shadow: 0 0 0 4px #fff, 0 0 0 6px #1e3a8a;
}
.timeline-content { padding-top: 0.75rem; }
.timeline-content h4 { color: #1e3a8a; margin-bottom: 0.4rem; }
.timeline-content p { color: #6b7280; font-size: 0.95rem; margin: 0; }
.timeline-badge {
  display: inline-block; font-size: 0.75rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em;
  padding: 0.2rem 0.6rem; border-radius: 4px; margin-bottom: 0.4rem;
  background: #eff6ff; color: #1e3a8a;
}

/* ============================================================
   SERVICE AREA
   ============================================================ */
.service-area-grid { display: flex; flex-wrap: wrap; gap: 0.75rem; justify-content: center; margin-top: 2rem; }
.area-tag {
  display: flex; align-items: center; gap: 0.4rem;
  background: #fff; border: 2px solid #1e3a8a; color: #1e3a8a;
  padding: 0.5rem 1.2rem; border-radius: 999px;
  font-family: 'Inter', sans-serif; font-weight: 600; font-size: 0.9rem;
  transition: all 0.2s;
}
.area-tag:hover { background: #1e3a8a; color: #fff; }
.area-tag svg { width: 16px; height: 16px; }

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.testimonial-card {
  background: #fff; border-radius: 16px;
  padding: 2rem; box-shadow: 0 4px 20px rgba(0,0,0,0.08);
  border-top: 4px solid #0d9488;
  transition: all 0.3s;
}
.testimonial-card:hover { box-shadow: 0 12px 40px rgba(0,0,0,0.12); transform: translateY(-4px); }
.stars { color: #f59e0b; font-size: 1.1rem; margin-bottom: 1rem; }
.testimonial-text { font-style: italic; color: #374151; margin-bottom: 1.25rem; }
.testimonial-author { display: flex; align-items: center; gap: 0.75rem; }
.author-avatar {
  width: 44px; height: 44px; border-radius: 50%;
  background: linear-gradient(135deg, #1e3a8a, #0d9488);
  display: flex; align-items: center; justify-content: center;
  color: #fff; font-family: 'Inter', sans-serif; font-weight: 700; font-size: 1rem;
  flex-shrink: 0;
}
.author-name { font-family: 'Inter', sans-serif; font-weight: 700; font-size: 0.95rem; color: #1e3a8a; }
.author-location { font-size: 0.82rem; color: #6b7280; }

/* ============================================================
   EMERGENCY CTA SECTION
   ============================================================ */
.emergency-section {
  background: linear-gradient(135deg, #1e3a8a 0%, #0f2060 100%);
  color: #fff; padding: 5rem 0; text-align: center;
}
.emergency-section h2 { color: #fff; margin-bottom: 1rem; }
.emergency-section p { color: #bfdbfe; font-size: 1.1rem; margin-bottom: 2rem; }
.emergency-phone {
  font-family: 'Inter', sans-serif; font-weight: 900;
  font-size: clamp(2rem, 5vw, 3.5rem);
  color: #f97316; display: block; margin-bottom: 1.5rem;
  text-decoration: none;
}
.emergency-phone:hover { color: #fb923c; }

/* ============================================================
   EDUCATIONAL SECTIONS
   ============================================================ */
.edu-box {
  background: linear-gradient(135deg, #eff6ff, #dbeafe);
  border-radius: 16px; padding: 2.5rem;
  border-left: 5px solid #1e3a8a;
  margin-bottom: 2rem;
}
.edu-box h3 { color: #1e3a8a; margin-bottom: 0.75rem; }
.edu-box p { color: #374151; margin: 0; }
.info-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 1.5rem; margin-top: 2rem; }
.info-item {
  background: #fff; border-radius: 12px; padding: 1.5rem;
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
  border-top: 3px solid #0d9488;
}
.info-item h4 { color: #1e3a8a; margin-bottom: 0.5rem; font-size: 1rem; }
.info-item p { color: #6b7280; font-size: 0.9rem; margin: 0; }
.comparison-table { width: 100%; border-collapse: collapse; margin-top: 1.5rem; border-radius: 12px; overflow: hidden; box-shadow: 0 4px 20px rgba(0,0,0,0.08); }
.comparison-table th { background: #1e3a8a; color: #fff; padding: 1rem 1.5rem; text-align: left; font-family: 'Inter', sans-serif; font-weight: 700; }
.comparison-table td { padding: 0.85rem 1.5rem; border-bottom: 1px solid #f3f4f6; font-size: 0.95rem; }
.comparison-table tr:nth-child(even) td { background: #f9fafb; }
.comparison-table tr:last-child td { border-bottom: none; }

/* ============================================================
   FAQ ACCORDION
   ============================================================ */
.faq-item { border-bottom: 1px solid #e5e7eb; }
.faq-question {
  width: 100%; background: none; border: none; cursor: pointer;
  display: flex; align-items: center; justify-content: space-between;
  padding: 1.25rem 0; text-align: left;
  font-family: 'Inter', sans-serif; font-weight: 700; font-size: 1rem; color: #1e3a8a;
  transition: color 0.2s;
}
.faq-question:hover { color: #0d9488; }
.faq-icon { width: 24px; height: 24px; flex-shrink: 0; transition: transform 0.3s; }
.faq-item.open .faq-icon { transform: rotate(45deg); }
.faq-answer { display: none; padding-bottom: 1.25rem; color: #374151; font-size: 0.95rem; line-height: 1.7; }
.faq-item.open .faq-answer { display: block; }

/* ============================================================
   CASE STUDY CARDS
   ============================================================ */
.case-card {
  background: #fff; border-radius: 16px;
  overflow: hidden; box-shadow: 0 4px 20px rgba(0,0,0,0.08);
  transition: all 0.3s;
}
.case-card:hover { box-shadow: 0 12px 40px rgba(0,0,0,0.12); transform: translateY(-4px); }
.case-card-header { background: linear-gradient(135deg, #1e3a8a, #0d9488); padding: 1.5rem; color: #fff; }
.case-card-header h3 { color: #fff; font-size: 1.1rem; margin-bottom: 0.5rem; }
.case-meta { display: flex; flex-wrap: wrap; gap: 0.5rem; }
.case-tag {
  background: rgba(255,255,255,0.2); color: #fff;
  padding: 0.2rem 0.7rem; border-radius: 999px; font-size: 0.78rem; font-weight: 600;
}
.case-card-body { padding: 1.5rem; }
.case-detail { display: flex; gap: 0.5rem; margin-bottom: 0.5rem; font-size: 0.9rem; }
.case-detail strong { color: #1e3a8a; min-width: 120px; flex-shrink: 0; }
.case-testimonial {
  background: #f3f4f6; border-radius: 10px; padding: 1rem 1.25rem;
  margin-top: 1rem; font-style: italic; font-size: 0.9rem; color: #374151;
  border-left: 3px solid #0d9488;
}

/* ============================================================
   BLOG CARDS
   ============================================================ */
.blog-card {
  background: #fff; border-radius: 16px;
  overflow: hidden; box-shadow: 0 4px 20px rgba(0,0,0,0.08);
  transition: all 0.3s;
}
.blog-card:hover { box-shadow: 0 12px 40px rgba(0,0,0,0.12); transform: translateY(-4px); }
.blog-card-img {
  height: 200px; background: linear-gradient(135deg, #1e3a8a, #0d9488);
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
}
.blog-card-img img { width: 100%; height: 100%; object-fit: cover; }
.blog-card-body { padding: 1.5rem; }
.blog-tag {
  display: inline-block; background: #eff6ff; color: #1e3a8a;
  padding: 0.2rem 0.7rem; border-radius: 999px; font-size: 0.78rem; font-weight: 700;
  margin-bottom: 0.75rem;
}
.blog-card h3 { font-size: 1.05rem; margin-bottom: 0.75rem; }
.blog-card p { color: #6b7280; font-size: 0.9rem; margin-bottom: 1rem; }
.blog-meta { font-size: 0.82rem; color: #9ca3af; display: flex; gap: 1rem; }

/* ============================================================
   CONTACT FORM
   ============================================================ */
.contact-form-wrap {
  background: #fff; border-radius: 20px;
  padding: 2.5rem; box-shadow: 0 8px 40px rgba(0,0,0,0.1);
}
.form-group { margin-bottom: 1.25rem; }
.form-group label {
  display: block; font-family: 'Inter', sans-serif; font-weight: 600;
  font-size: 0.9rem; color: #374151; margin-bottom: 0.4rem;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%; padding: 0.85rem 1rem;
  border: 2px solid #e5e7eb; border-radius: 8px;
  font-family: 'Open Sans', sans-serif; font-size: 0.95rem; color: #374151;
  background: #fff; transition: border-color 0.2s;
  min-height: 50px;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none; border-color: #1e3a8a;
  box-shadow: 0 0 0 3px rgba(30,58,138,0.1);
}
.form-group textarea { min-height: 120px; resize: vertical; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-submit { width: 100%; padding: 1rem; font-size: 1rem; }
.form-note { font-size: 0.82rem; color: #9ca3af; text-align: center; margin-top: 0.75rem; }

/* ============================================================
   PAGE HERO (Inner Pages)
   ============================================================ */
.page-hero {
  background: linear-gradient(135deg, #0f2060 0%, #1e3a8a 100%);
  color: #fff; padding: 4rem 0 3rem;
}
.page-hero h1 { color: #fff; margin-bottom: 1rem; }
.page-hero p { color: #bfdbfe; font-size: 1.05rem; max-width: 700px; }
.breadcrumb {
  display: flex; align-items: center; gap: 0.5rem;
  font-size: 0.85rem; color: #93c5fd; margin-bottom: 1rem;
}
.breadcrumb a { color: #93c5fd; }
.breadcrumb a:hover { color: #fff; }
.breadcrumb span { color: #bfdbfe; }

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  background: #0f172a; color: #94a3b8; padding: 4rem 0 0;
}
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 3rem; margin-bottom: 3rem; }
.footer-brand img { height: 55px; width: auto; margin-bottom: 1rem; }
.footer-brand p { font-size: 0.9rem; line-height: 1.7; margin-bottom: 1.25rem; }
.footer-contact-item { display: flex; align-items: flex-start; gap: 0.6rem; margin-bottom: 0.75rem; font-size: 0.9rem; }
.footer-contact-item svg { width: 18px; height: 18px; color: #0d9488; flex-shrink: 0; margin-top: 2px; }
.footer-contact-item a { color: #94a3b8; }
.footer-contact-item a:hover { color: #fff; }
.footer-col h4 { color: #fff; font-size: 0.95rem; margin-bottom: 1.25rem; text-transform: uppercase; letter-spacing: 0.08em; }
.footer-col ul li { margin-bottom: 0.6rem; }
.footer-col ul li a { color: #94a3b8; font-size: 0.9rem; transition: color 0.2s; }
.footer-col ul li a:hover { color: #0d9488; }
.footer-bottom {
  border-top: 1px solid #1e293b; padding: 1.5rem 0;
  display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 1rem;
  font-size: 0.85rem;
}
.footer-bottom a { color: #94a3b8; }
.footer-bottom a:hover { color: #fff; }

/* ============================================================
   FLOATING EMERGENCY BUTTON (Mobile)
   ============================================================ */
.floating-emergency {
  position: fixed; bottom: 1.5rem; right: 1.5rem; z-index: 999;
  display: none;
}
.floating-emergency a {
  display: flex; align-items: center; gap: 0.5rem;
  background: linear-gradient(135deg, #f97316, #ea580c);
  color: #fff; padding: 0.85rem 1.25rem; border-radius: 999px;
  font-family: 'Inter', sans-serif; font-weight: 700; font-size: 0.9rem;
  box-shadow: 0 4px 20px rgba(249,115,22,0.5);
  animation: pulse-orange 2s infinite;
  text-decoration: none;
}
.floating-emergency svg { width: 20px; height: 20px; }

/* ============================================================
   STATS SECTION
   ============================================================ */
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 2rem; }
.stat-item { text-align: center; }
.stat-number {
  font-family: 'Inter', sans-serif; font-weight: 900;
  font-size: clamp(2rem, 4vw, 3rem);
  color: #1e3a8a; display: block; line-height: 1;
  margin-bottom: 0.5rem;
}
.stat-label { font-size: 0.9rem; color: #6b7280; font-weight: 600; }

/* ============================================================
   VAN SHOWCASE SECTION
   ============================================================ */
.van-section { background: #f3f4f6; }
.van-section .container { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; align-items: center; }
.van-section img { border-radius: 16px; box-shadow: 0 20px 60px rgba(0,0,0,0.15); }
.van-text h2 { margin-bottom: 1rem; }
.van-text p { color: #6b7280; margin-bottom: 1.5rem; }
.van-features { display: flex; flex-direction: column; gap: 0.75rem; margin-bottom: 2rem; }
.van-feature { display: flex; align-items: center; gap: 0.75rem; font-weight: 600; color: #374151; }
.van-feature svg { width: 20px; height: 20px; color: #059669; flex-shrink: 0; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  html { font-size: 16px; }
  .nav-links, .nav-cta { display: none; }
  .hamburger { display: flex; }
  .hero .container { grid-template-columns: 1fr; }
  .hero-image-side { display: none; }
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
  .van-section .container { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .floating-emergency { display: block; }
  .top-bar .container { justify-content: center; }
  .timeline::before { left: 22px; }
  .timeline-marker { width: 44px; height: 44px; font-size: 0.95rem; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-bottom { flex-direction: column; text-align: center; }
}

@media (max-width: 480px) {
  .section { padding: 3rem 0; }
  .hero { padding: 3rem 0; }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { width: 100%; justify-content: center; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 1rem; }
  .trust-bar .container { flex-direction: column; gap: 1rem; }
}

/* ============================================================
   UTILITY CLASSES
   ============================================================ */
.check-list { list-style: none; }
.check-list li {
  display: flex; align-items: flex-start; gap: 0.6rem;
  margin-bottom: 0.6rem; font-size: 0.95rem; color: #374151;
}
.check-list li::before {
  content: '';
  width: 20px; height: 20px; flex-shrink: 0;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20' fill='%23059669'%3E%3Cpath fill-rule='evenodd' d='M16.707 5.293a1 1 0 010 1.414l-8 8a1 1 0 01-1.414 0l-4-4a1 1 0 011.414-1.414L8 12.586l7.293-7.293a1 1 0 011.414 0z' clip-rule='evenodd'/%3E%3C/svg%3E") center/contain no-repeat;
  margin-top: 2px;
}
.highlight-box {
  background: linear-gradient(135deg, #f0fdfa, #ccfbf1);
  border: 1px solid #99f6e4; border-radius: 12px; padding: 1.5rem;
  margin: 1.5rem 0;
}
.highlight-box h4 { color: #0d9488; margin-bottom: 0.5rem; }
.highlight-box p { color: #374151; margin: 0; font-size: 0.95rem; }
.alert-box {
  background: linear-gradient(135deg, #fff7ed, #fed7aa);
  border: 1px solid #fdba74; border-radius: 12px; padding: 1.5rem;
  margin: 1.5rem 0; display: flex; gap: 1rem; align-items: flex-start;
}
.alert-box svg { width: 24px; height: 24px; color: #f97316; flex-shrink: 0; margin-top: 2px; }
.alert-box p { color: #374151; margin: 0; font-size: 0.95rem; }
.badge { display: inline-block; padding: 0.25rem 0.75rem; border-radius: 999px; font-size: 0.8rem; font-weight: 700; }
.badge-blue { background: #dbeafe; color: #1e3a8a; }
.badge-teal { background: #ccfbf1; color: #0d9488; }
.badge-orange { background: #fed7aa; color: #ea580c; }
.badge-green { background: #d1fae5; color: #059669; }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); border: 0; }

/* ============================================================
   ADDITIONAL STYLES FOR INNER PAGES
   ============================================================ */

/* Blog page styles */
.blog-card { padding: 2rem; }
.blog-meta { display: flex; flex-wrap: wrap; gap: 1rem; margin-bottom: 0.75rem; font-size: 0.85rem; color: #9ca3af; }
.blog-category {
  background: #eff6ff; color: #1e3a8a;
  padding: 0.2rem 0.7rem; border-radius: 999px; font-size: 0.78rem; font-weight: 700;
}
.blog-title { font-size: clamp(1.1rem, 2vw, 1.4rem); margin-bottom: 0.75rem; }
.blog-title a { color: #1e3a8a; }
.blog-title a:hover { color: #0d9488; }
.blog-excerpt { color: #6b7280; margin-bottom: 1rem; }
.blog-content { border-top: 1px solid #e5e7eb; padding-top: 1.5rem; margin-top: 1rem; }
.blog-content h3 { font-size: 1.15rem; margin: 1.5rem 0 0.75rem; color: #1e3a8a; }
.blog-content p { color: #374151; }

/* Project cards */
.project-card {
  background: #fff; border-radius: 20px;
  padding: 2.5rem; box-shadow: 0 4px 30px rgba(0,0,0,0.08);
  border-top: 5px solid #0d9488; position: relative;
}
.project-badge {
  position: absolute; top: -1px; left: 2rem;
  background: #0d9488; color: #fff;
  padding: 0.3rem 1rem; border-radius: 0 0 8px 8px;
  font-size: 0.78rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em;
}
.project-meta { display: flex; flex-wrap: wrap; gap: 1rem; margin-bottom: 1rem; font-size: 0.85rem; color: #6b7280; font-weight: 600; }

/* Contact page */
.contact-item { display: flex; gap: 1.25rem; align-items: flex-start; }
.contact-icon {
  width: 52px; height: 52px; flex-shrink: 0;
  background: #eff6ff; color: #1e3a8a; border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
}
.contact-icon svg { width: 26px; height: 26px; }

/* Eyebrow standalone */
.eyebrow {
  display: inline-block;
  font-size: 0.85rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.12em;
  color: #0d9488; background: #e6f7f6; padding: 0.3rem 1rem; border-radius: 999px;
  margin-bottom: 0.75rem;
}

/* Service sticky nav */
@media (max-width: 768px) {
  .blog-card { padding: 1.25rem; }
  .project-card { padding: 1.5rem; }
  .project-badge { left: 1.25rem; }
  .contact-item { flex-direction: column; gap: 0.75rem; }
}
