/* ===== SAMUEL'S GARAGES - MAIN STYLESHEET ===== */
@import url('https://fonts.googleapis.com/css2?family=Barlow:wght@400;500;600;700;800&family=Barlow+Condensed:wght@700;800;900&display=swap');

:root {
  --orange: #E87722;
  --orange-dark: #c4621a;
  --navy: #1a2233;
  --navy-light: #253047;
  --gray: #f5f5f5;
  --gray-mid: #e0e0e0;
  --text: #222222;
  --text-light: #555555;
  --white: #ffffff;
  --radius: 6px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: 'Barlow', sans-serif; color: var(--text); font-size: 16px; line-height: 1.6; }
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* ===== TOP BAR ===== */
.topbar {
  background: var(--navy);
  color: #ccc;
  font-size: 13px;
  padding: 8px 0;
}
.topbar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 6px;
}
.topbar a { color: var(--orange); font-weight: 600; }
.topbar span { margin-right: 18px; }

/* ===== CONTAINER ===== */
.container { max-width: 1180px; margin: 0 auto; padding: 0 20px; }

/* ===== HEADER / NAV ===== */
header {
  background: var(--white);
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
  position: sticky;
  top: 0;
  z-index: 999;
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 0;
  gap: 20px;
}
.logo {
  display: flex;
  align-items: center;
  gap: 12px;
}
.logo-icon {
  width: 52px;
  height: 52px;
  background: var(--navy);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.logo-icon svg { width: 32px; height: 32px; }
.logo-text { line-height: 1.15; }
.logo-text strong {
  display: block;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 22px;
  font-weight: 900;
  color: var(--navy);
  text-transform: uppercase;
  letter-spacing: 1px;
}
.logo-text span {
  font-size: 11px;
  color: var(--orange);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
}
nav ul {
  display: flex;
  align-items: center;
  gap: 6px;
}
nav ul li a {
  font-weight: 600;
  font-size: 14px;
  color: var(--navy);
  padding: 8px 12px;
  border-radius: var(--radius);
  transition: background 0.2s, color 0.2s;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
nav ul li a:hover { background: var(--gray); color: var(--orange); }
nav ul li a.active { color: var(--orange); }
.nav-cta {
  background: var(--orange) !important;
  color: var(--white) !important;
  padding: 10px 20px !important;
  border-radius: var(--radius) !important;
}
.nav-cta:hover { background: var(--orange-dark) !important; }

/* Dropdown */
.has-dropdown { position: relative; }
.dropdown {
  display: none;
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  background: var(--white);
  box-shadow: 0 8px 24px rgba(0,0,0,0.12);
  border-radius: var(--radius);
  min-width: 230px;
  z-index: 100;
  border-top: 3px solid var(--orange);
}
.has-dropdown:hover .dropdown { display: block; }
.dropdown li a {
  display: block;
  padding: 10px 18px !important;
  font-size: 13px !important;
  border-radius: 0 !important;
  border-bottom: 1px solid var(--gray);
  text-transform: none !important;
  letter-spacing: 0 !important;
}
.dropdown li:last-child a { border-bottom: none; }
.dropdown li a:hover { background: var(--gray) !important; padding-left: 24px !important; }

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

/* ===== HERO ===== */
.hero {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
  color: var(--white);
  padding: 70px 0 60px;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  top: 0; right: 0; bottom: 0;
  width: 45%;
  background: url('images/van.png') center/cover no-repeat;
  opacity: 0.18;
}
.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
  position: relative;
  z-index: 1;
}
.hero-badge {
  display: inline-block;
  background: var(--orange);
  color: var(--white);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  padding: 5px 14px;
  border-radius: 3px;
  margin-bottom: 16px;
}
.hero h1 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: clamp(36px, 5vw, 58px);
  font-weight: 900;
  line-height: 1.05;
  text-transform: uppercase;
  margin-bottom: 18px;
}
.hero h1 span { color: var(--orange); }
.hero p {
  font-size: 17px;
  color: #bfc8d8;
  margin-bottom: 28px;
  line-height: 1.7;
}
.hero-btns { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 36px; }
.btn-primary {
  background: var(--orange);
  color: var(--white);
  font-weight: 700;
  font-size: 15px;
  padding: 14px 28px;
  border-radius: var(--radius);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: background 0.2s, transform 0.1s;
  display: inline-block;
}
.btn-primary:hover { background: var(--orange-dark); transform: translateY(-1px); }
.btn-outline {
  background: transparent;
  color: var(--white);
  font-weight: 700;
  font-size: 15px;
  padding: 13px 28px;
  border-radius: var(--radius);
  border: 2px solid rgba(255,255,255,0.4);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: border-color 0.2s, background 0.2s;
  display: inline-block;
}
.btn-outline:hover { border-color: var(--orange); background: rgba(232,119,34,0.15); }
.hero-trust {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: #bfc8d8;
  font-weight: 600;
}
.trust-item .check {
  width: 22px;
  height: 22px;
  background: var(--orange);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 11px;
  color: white;
}
.hero-image img {
  border-radius: 10px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.4);
  width: 100%;
  height: 420px;
  object-fit: cover;
}

/* ===== TRUST STRIP ===== */
.trust-strip {
  background: var(--orange);
  padding: 18px 0;
}
.trust-strip .container {
  display: flex;
  justify-content: space-around;
  align-items: center;
  flex-wrap: wrap;
  gap: 14px;
}
.trust-strip-item {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--white);
  font-weight: 700;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.trust-strip-item svg { width: 22px; height: 22px; flex-shrink: 0; }

/* ===== SECTION TITLES ===== */
.section-label {
  display: inline-block;
  color: var(--orange);
  font-weight: 700;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 10px;
}
.section-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 800;
  color: var(--navy);
  line-height: 1.1;
  text-transform: uppercase;
  margin-bottom: 14px;
}
.section-title span { color: var(--orange); }
.section-sub {
  color: var(--text-light);
  font-size: 16px;
  max-width: 600px;
  line-height: 1.7;
}
.section-head { margin-bottom: 44px; }
.section-head.center { text-align: center; }
.section-head.center .section-sub { margin: 0 auto; }

/* ===== SECTIONS ===== */
.section { padding: 80px 0; }
.section-gray { background: var(--gray); }
.section-navy { background: var(--navy); color: var(--white); }
.section-navy .section-title { color: var(--white); }
.section-navy .section-sub { color: #bfc8d8; }

/* ===== SERVICES GRID ===== */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}
.service-card {
  background: var(--white);
  border-radius: 10px;
  padding: 30px 26px;
  border: 1px solid var(--gray-mid);
  transition: box-shadow 0.25s, transform 0.25s, border-color 0.25s;
  position: relative;
  overflow: hidden;
}
.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 4px;
  height: 100%;
  background: var(--orange);
  transform: scaleY(0);
  transform-origin: bottom;
  transition: transform 0.3s;
}
.service-card:hover { box-shadow: 0 10px 40px rgba(0,0,0,0.1); transform: translateY(-3px); border-color: var(--orange); }
.service-card:hover::before { transform: scaleY(1); }
.service-icon {
  width: 56px;
  height: 56px;
  background: #fff4ec;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
}
.service-icon svg { width: 28px; height: 28px; }
.service-card h3 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 20px;
  font-weight: 800;
  color: var(--navy);
  text-transform: uppercase;
  margin-bottom: 10px;
}
.service-card p { color: var(--text-light); font-size: 14px; line-height: 1.65; margin-bottom: 18px; }
.service-card a {
  color: var(--orange);
  font-weight: 700;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  display: inline-flex;
  align-items: center;
  gap: 4px;
}
.service-card a:hover { color: var(--orange-dark); }

/* ===== WHY CHOOSE US ===== */
.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
}
.why-image img {
  border-radius: 10px;
  width: 100%;
  height: 460px;
  object-fit: cover;
  box-shadow: 0 16px 48px rgba(0,0,0,0.15);
}
.why-list { display: flex; flex-direction: column; gap: 20px; margin-top: 28px; }
.why-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
.why-num {
  width: 44px;
  height: 44px;
  background: var(--orange);
  color: white;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 20px;
  font-weight: 900;
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.why-item h4 { font-size: 16px; font-weight: 700; color: var(--navy); margin-bottom: 4px; }
.why-item p { font-size: 14px; color: var(--text-light); line-height: 1.6; }

/* ===== STATS ===== */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.stat-card {
  text-align: center;
  padding: 30px 20px;
  background: rgba(255,255,255,0.06);
  border-radius: 10px;
  border: 1px solid rgba(255,255,255,0.1);
}
.stat-card .number {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 52px;
  font-weight: 900;
  color: var(--orange);
  line-height: 1;
  margin-bottom: 8px;
}
.stat-card .label { font-size: 14px; color: #bfc8d8; font-weight: 600; text-transform: uppercase; letter-spacing: 1px; }

/* ===== REVIEWS ===== */
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}
.review-card {
  background: var(--white);
  border-radius: 10px;
  padding: 26px 24px;
  border: 1px solid var(--gray-mid);
  box-shadow: 0 4px 16px rgba(0,0,0,0.05);
}
.review-stars { color: #f5a623; font-size: 17px; letter-spacing: 2px; margin-bottom: 12px; }
.review-text { font-size: 14px; color: var(--text-light); line-height: 1.7; margin-bottom: 16px; font-style: italic; }
.review-author { display: flex; align-items: center; gap: 12px; }
.review-avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--navy);
  color: white;
  font-weight: 700;
  font-size: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.review-author-info strong { display: block; font-size: 14px; font-weight: 700; color: var(--navy); }
.review-author-info span { font-size: 12px; color: var(--text-light); }
.reviews-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 36px;
  flex-wrap: wrap;
  gap: 16px;
}
.rating-badge {
  background: var(--white);
  border: 1px solid var(--gray-mid);
  border-radius: 10px;
  padding: 16px 24px;
  display: flex;
  align-items: center;
  gap: 14px;
}
.rating-badge .big-num {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 48px;
  font-weight: 900;
  color: var(--navy);
  line-height: 1;
}
.rating-badge .stars { color: #f5a623; font-size: 18px; }
.rating-badge .count { font-size: 12px; color: var(--text-light); }

/* ===== FAQ ===== */
.faq-list { max-width: 800px; margin: 0 auto; }
.faq-item {
  border-bottom: 1px solid var(--gray-mid);
  padding: 20px 0;
}
.faq-question {
  width: 100%;
  background: none;
  border: none;
  text-align: left;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  font-family: 'Barlow', sans-serif;
  font-size: 16px;
  font-weight: 700;
  color: var(--navy);
  padding: 0;
}
.faq-question .icon {
  width: 28px;
  height: 28px;
  background: var(--orange);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 18px;
  color: white;
  font-weight: 400;
  transition: transform 0.3s;
}
.faq-item.open .faq-question .icon { transform: rotate(45deg); }
.faq-answer { display: none; padding: 14px 0 0; color: var(--text-light); font-size: 15px; line-height: 1.7; }
.faq-item.open .faq-answer { display: block; }

/* ===== MAP ===== */
.map-section { padding: 0; }
.map-wrapper { display: grid; grid-template-columns: 1fr 2fr; }
.map-info {
  background: var(--navy);
  color: white;
  padding: 50px 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 24px;
}
.map-info h2 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 32px;
  font-weight: 800;
  text-transform: uppercase;
  line-height: 1.15;
  margin-bottom: 8px;
}
.map-info h2 span { color: var(--orange); }
.map-detail { display: flex; gap: 14px; align-items: flex-start; }
.map-detail svg { width: 22px; height: 22px; flex-shrink: 0; margin-top: 2px; color: var(--orange); }
.map-detail strong { display: block; font-size: 13px; text-transform: uppercase; letter-spacing: 1px; color: #aaa; margin-bottom: 3px; }
.map-detail span { font-size: 15px; color: white; font-weight: 500; }
.map-detail a { color: var(--orange); font-weight: 600; }
.map-iframe { width: 100%; height: 400px; border: 0; display: block; }

/* ===== CTA BANNER ===== */
.cta-banner {
  background: linear-gradient(135deg, var(--orange) 0%, var(--orange-dark) 100%);
  padding: 60px 0;
  text-align: center;
  color: white;
}
.cta-banner h2 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 900;
  text-transform: uppercase;
  margin-bottom: 12px;
}
.cta-banner p { font-size: 17px; opacity: 0.92; margin-bottom: 30px; }
.cta-banner .btn-white {
  background: white;
  color: var(--orange);
  font-weight: 800;
  font-size: 16px;
  padding: 16px 36px;
  border-radius: var(--radius);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  display: inline-block;
  margin: 6px;
  transition: transform 0.2s, box-shadow 0.2s;
}
.cta-banner .btn-white:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(0,0,0,0.2); }
.cta-banner .btn-outline-white {
  background: transparent;
  color: white;
  font-weight: 700;
  font-size: 16px;
  padding: 14px 36px;
  border-radius: var(--radius);
  border: 2px solid rgba(255,255,255,0.6);
  text-transform: uppercase;
  display: inline-block;
  margin: 6px;
  transition: border-color 0.2s, background 0.2s;
}
.cta-banner .btn-outline-white:hover { border-color: white; background: rgba(255,255,255,0.15); }

/* ===== FOOTER ===== */
footer {
  background: #111827;
  color: #9ca3af;
  padding: 60px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer-logo strong {
  display: block;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 24px;
  font-weight: 900;
  color: white;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 4px;
}
.footer-logo span { color: var(--orange); font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: 2px; }
.footer-about { margin-top: 14px; font-size: 14px; line-height: 1.7; }
.footer-badges { display: flex; gap: 8px; flex-wrap: wrap; margin-top: 18px; }
.footer-badge {
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 4px;
  padding: 4px 10px;
  font-size: 11px;
  font-weight: 700;
  color: #ccc;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.footer-col h4 {
  color: white;
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 18px;
}
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul li a {
  font-size: 14px;
  color: #9ca3af;
  transition: color 0.2s;
  display: flex;
  align-items: center;
  gap: 6px;
}
.footer-col ul li a::before { content: '›'; color: var(--orange); font-size: 16px; }
.footer-col ul li a:hover { color: var(--orange); }
.footer-contact-item { display: flex; gap: 12px; align-items: flex-start; margin-bottom: 16px; }
.footer-contact-item svg { width: 18px; height: 18px; flex-shrink: 0; margin-top: 2px; color: var(--orange); }
.footer-contact-item span { font-size: 14px; line-height: 1.5; }
.footer-contact-item a { color: var(--orange); }
.footer-bottom {
  padding: 20px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  font-size: 13px;
}
.footer-bottom a { color: #9ca3af; }
.footer-bottom a:hover { color: var(--orange); }

/* ===== PAGE HERO (inner pages) ===== */
.page-hero {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
  padding: 60px 0 50px;
  color: white;
  text-align: center;
}
.page-hero h1 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: clamp(32px, 5vw, 52px);
  font-weight: 900;
  text-transform: uppercase;
  margin-bottom: 14px;
}
.page-hero h1 span { color: var(--orange); }
.page-hero p { font-size: 17px; color: #bfc8d8; max-width: 600px; margin: 0 auto; }
.breadcrumb {
  display: flex;
  justify-content: center;
  gap: 8px;
  font-size: 13px;
  color: #9ca3af;
  margin-bottom: 16px;
}
.breadcrumb a { color: var(--orange); }
.breadcrumb span { opacity: 0.5; }

/* ===== SERVICE PAGE CONTENT ===== */
.service-content { display: grid; grid-template-columns: 2fr 1fr; gap: 50px; align-items: start; }
.service-content img { border-radius: 10px; width: 100%; height: 320px; object-fit: cover; margin-bottom: 28px; }
.service-content h2 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 30px;
  font-weight: 800;
  color: var(--navy);
  text-transform: uppercase;
  margin-bottom: 14px;
}
.service-content p { color: var(--text-light); font-size: 15px; line-height: 1.75; margin-bottom: 16px; }
.service-content ul { margin: 16px 0; }
.service-content ul li {
  padding: 8px 0 8px 24px;
  position: relative;
  font-size: 15px;
  color: var(--text-light);
  border-bottom: 1px solid var(--gray-mid);
}
.service-content ul li::before { content: '✓'; position: absolute; left: 0; color: var(--orange); font-weight: 700; }
.sidebar-card {
  background: var(--white);
  border-radius: 10px;
  border: 1px solid var(--gray-mid);
  overflow: hidden;
  position: sticky;
  top: 90px;
}
.sidebar-card-header {
  background: var(--navy);
  color: white;
  padding: 20px 22px;
}
.sidebar-card-header h3 { font-family: 'Barlow Condensed', sans-serif; font-size: 20px; font-weight: 800; text-transform: uppercase; }
.sidebar-card-body { padding: 22px; }
.sidebar-card-body p { font-size: 14px; color: var(--text-light); margin-bottom: 18px; }
.sidebar-phone {
  display: flex;
  align-items: center;
  gap: 12px;
  background: var(--orange);
  color: white;
  font-weight: 800;
  font-size: 18px;
  padding: 14px 18px;
  border-radius: var(--radius);
  margin-bottom: 12px;
  transition: background 0.2s;
}
.sidebar-phone:hover { background: var(--orange-dark); color: white; }
.sidebar-phone svg { width: 22px; height: 22px; flex-shrink: 0; }
.service-list-sidebar li a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 14px;
  background: var(--gray);
  border-radius: var(--radius);
  font-size: 14px;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 8px;
  transition: background 0.2s, color 0.2s;
}
.service-list-sidebar li a:hover { background: var(--orange); color: white; }
.service-list-sidebar li a span { color: var(--orange); font-size: 16px; }
.service-list-sidebar li a:hover span { color: white; }

/* ===== CONTACT PAGE ===== */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 50px; align-items: start; }
.contact-form-wrap {
  background: var(--white);
  border-radius: 10px;
  border: 1px solid var(--gray-mid);
  padding: 36px 32px;
}
.contact-form-wrap h2 { font-family: 'Barlow Condensed', sans-serif; font-size: 28px; font-weight: 800; color: var(--navy); text-transform: uppercase; margin-bottom: 6px; }
.contact-form-wrap p { font-size: 14px; color: var(--text-light); margin-bottom: 24px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { margin-bottom: 18px; }
.form-group label { display: block; font-size: 13px; font-weight: 700; color: var(--navy); text-transform: uppercase; letter-spacing: 0.5px; margin-bottom: 6px; }
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid var(--gray-mid);
  border-radius: var(--radius);
  font-family: 'Barlow', sans-serif;
  font-size: 15px;
  color: var(--text);
  transition: border-color 0.2s;
  background: var(--white);
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--orange);
  box-shadow: 0 0 0 3px rgba(232,119,34,0.12);
}
.form-group textarea { resize: vertical; min-height: 120px; }
.btn-submit {
  width: 100%;
  background: var(--orange);
  color: white;
  font-family: 'Barlow', sans-serif;
  font-size: 16px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 16px;
  border: none;
  border-radius: var(--radius);
  cursor: pointer;
  transition: background 0.2s;
}
.btn-submit:hover { background: var(--orange-dark); }
.contact-info-card {
  background: var(--navy);
  border-radius: 10px;
  padding: 36px 32px;
  color: white;
}
.contact-info-card h3 { font-family: 'Barlow Condensed', sans-serif; font-size: 26px; font-weight: 800; text-transform: uppercase; margin-bottom: 24px; }
.contact-info-item { display: flex; gap: 16px; align-items: flex-start; margin-bottom: 24px; padding-bottom: 24px; border-bottom: 1px solid rgba(255,255,255,0.1); }
.contact-info-item:last-of-type { border-bottom: none; }
.contact-info-icon { width: 46px; height: 46px; background: var(--orange); border-radius: var(--radius); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.contact-info-icon svg { width: 22px; height: 22px; color: white; }
.contact-info-item strong { display: block; font-size: 12px; text-transform: uppercase; letter-spacing: 1px; color: #9ca3af; margin-bottom: 4px; }
.contact-info-item span, .contact-info-item a { font-size: 15px; color: white; font-weight: 500; }
.contact-info-item a { color: var(--orange); }
.hours-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; margin-top: 16px; }
.hours-row { font-size: 13px; color: #9ca3af; }
.hours-row strong { color: white; display: block; font-size: 12px; text-transform: uppercase; letter-spacing: 0.5px; }

/* ===== ABOUT PAGE ===== */
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.about-grid img { border-radius: 10px; width: 100%; height: 460px; object-fit: cover; }
.about-text .section-title { margin-bottom: 18px; }
.about-text p { color: var(--text-light); font-size: 15px; line-height: 1.8; margin-bottom: 16px; }
.about-values { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; margin-top: 28px; }
.value-item {
  background: var(--gray);
  border-radius: var(--radius);
  padding: 18px 16px;
  border-left: 4px solid var(--orange);
}
.value-item h4 { font-size: 14px; font-weight: 700; color: var(--navy); margin-bottom: 5px; }
.value-item p { font-size: 13px; color: var(--text-light); line-height: 1.5; margin: 0; }
.areas-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 14px;
  margin-top: 10px;
}
.area-pill {
  background: var(--white);
  border: 1px solid var(--gray-mid);
  border-radius: 30px;
  padding: 10px 20px;
  text-align: center;
  font-size: 14px;
  font-weight: 600;
  color: var(--navy);
  transition: background 0.2s, color 0.2s, border-color 0.2s;
}
.area-pill:hover { background: var(--orange); color: white; border-color: var(--orange); }

/* ===== RESPONSIVE ===== */
@media (max-width: 900px) {
  .hero-inner, .why-grid, .about-grid { grid-template-columns: 1fr; }
  .hero-image { display: none; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .service-content, .contact-grid { grid-template-columns: 1fr; }
  .map-wrapper { grid-template-columns: 1fr; }
  .map-iframe { height: 300px; }
}
@media (max-width: 640px) {
  .section { padding: 50px 0; }
  nav ul { display: none; }
  nav ul.open { display: flex; flex-direction: column; position: absolute; top: 100%; left: 0; right: 0; background: white; padding: 16px; box-shadow: 0 8px 24px rgba(0,0,0,0.12); z-index: 999; }
  .menu-toggle { display: flex; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .about-values, .hours-grid { grid-template-columns: 1fr; }
  .hero-btns { flex-direction: column; }
  .hero-btns a { text-align: center; }
}
