/* ============================================================
   Mobile Auto Care — Main Stylesheet
   Theme: Navy #0a1f44  |  Orange #e8650a
   ============================================================ */

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

:root {
  --navy:         #0a1f44;
  --navy-light:   #1a3a6b;
  --orange:       #e8650a;
  --orange-hover: #c9550a;
  --bg:           #f4f6f9;
  --white:        #ffffff;
  --text:         #1a1a2e;
  --muted:        #6b7280;
  --border:       #e2e8f0;
  --success:      #16a34a;
  --error:        #dc2626;
  --shadow:       0 2px 12px rgba(10,31,68,.10);
  --shadow-lg:    0 8px 32px rgba(10,31,68,.16);
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Open Sans', sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
}

h1, h2, h3, h4, h5 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  line-height: 1.2;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

.container { max-width: 1200px; margin: 0 auto; padding: 0 1.5rem; }


/* ======== BUTTONS ======== */
.btn {
  display: inline-block;
  padding: .75rem 1.75rem;
  border-radius: 4px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: .9rem;
  letter-spacing: .3px;
  cursor: pointer;
  transition: background .2s, transform .15s, box-shadow .2s;
  border: none;
  text-align: center;
}
.btn-primary { background: var(--orange); color: var(--white); }
.btn-primary:hover { background: var(--orange-hover); transform: translateY(-2px); box-shadow: 0 4px 14px rgba(232,101,10,.35); }
.btn-outline { background: transparent; color: var(--white); border: 2px solid var(--white); }
.btn-outline:hover { background: rgba(255,255,255,.12); transform: translateY(-2px); }
.btn-white { background: var(--white); color: var(--orange); }
.btn-white:hover { background: rgba(255,255,255,.9); transform: translateY(-2px); }
.btn-navy { background: var(--navy); color: var(--white); }
.btn-navy:hover { background: var(--navy-light); transform: translateY(-2px); }


/* ======== NAVBAR ======== */
.navbar {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--navy);
  transition: box-shadow .3s;
}
.navbar.scrolled { box-shadow: var(--shadow-lg); }

.navbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 70px;
}

.nav-logo {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--white);
  letter-spacing: -.3px;
  flex-shrink: 0;
  display: block;
  line-height: 1.15;
  white-space: nowrap;
}
.nav-logo .logo-accent { color: var(--orange); }
.logo-tagline {
  display: block;
  font-size: .58rem;
  font-weight: 600;
  letter-spacing: 2.2px;
  text-transform: uppercase;
  color: rgba(255,255,255,.5);
  font-family: 'Montserrat', sans-serif;
}

.nav-links {
  display: flex;
  gap: 2rem;
  list-style: none;
  align-items: center;
}
.nav-links a {
  color: rgba(255,255,255,.8);
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: .85rem;
  letter-spacing: .5px;
  text-transform: uppercase;
  transition: color .2s;
  padding: .25rem 0;
}
.nav-links a:hover, .nav-links a.active { color: var(--orange); }
.nav-links .nav-cta {
  background: var(--orange);
  color: var(--white) !important;
  padding: .5rem 1.2rem;
  border-radius: 4px;
  transition: background .2s, transform .15s;
}
.nav-links .nav-cta:hover { background: var(--orange-hover); transform: translateY(-1px); }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
  background: none;
  border: none;
}
.hamburger span { display: block; width: 24px; height: 2px; background: var(--white); border-radius: 2px; transition: transform .3s, opacity .3s; }
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }


/* ======== HERO (HOME) ======== */
.hero {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
  color: var(--white);
  padding: 5rem 0 4.5rem;
  position: relative;
  overflow: hidden;
}

.hero-inner {
  display: flex;
  align-items: center;
  gap: 4rem;
}

.hero-content { position: relative; flex: 1; min-width: 0; align-self: center; }

.hero-near-me {
  font-family: 'Montserrat', sans-serif;
  font-size: 3.1rem;
  font-weight: 700;
  letter-spacing: -.3px;
  color: rgba(255,255,255,.45);
  margin-top: 0;
  margin-bottom: 1.1rem;
  line-height: 1.2;
  white-space: nowrap;
}
.hero-near-me i { color: var(--orange); }

.hero-img-wrap {
  flex: 0 0 auto;
  width: 440px;
  position: relative;
}

.hero-img-wrap::before {
  content: '';
  position: absolute;
  inset: -8px;
  border: 2px solid rgba(232,101,10,.35);
  border-radius: 16px;
  pointer-events: none;
  z-index: 1;
}

.hero-img-wrap img {
  width: 100%;
  height: 460px;
  object-fit: cover;
  border-radius: 12px;
  box-shadow: 0 24px 60px rgba(0,0,0,.5);
  display: block;
  position: relative;
  z-index: 0;
}

.hero-badge {
  display: inline-block;
  background: rgba(232,101,10,.18);
  border: 1px solid rgba(232,101,10,.5);
  color: #f0821e;
  padding: .3rem .9rem;
  border-radius: 20px;
  font-family: 'Montserrat', sans-serif;
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 1rem;
}
.hero h1 { font-size: 3.1rem; margin-bottom: 1.1rem; }
.hero h1 span { color: var(--orange); }
.hero .subtitle {
  font-size: 1.1rem;
  color: rgba(255,255,255,.78);
  margin-bottom: 2rem;
  max-width: 520px;
  line-height: 1.7;
}
.hero-buttons { display: flex; gap: 1rem; flex-wrap: wrap; }


/* ======== PAGE HERO (sub-pages) ======== */
.page-hero {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
  color: var(--white);
  padding: 4rem 0;
  text-align: center;
  position: relative;
}
.page-hero h1 { font-size: 2.5rem; margin-bottom: .6rem; }
.page-hero p { color: rgba(255,255,255,.72); font-size: 1rem; }
.breadcrumb {
  display: flex;
  justify-content: center;
  gap: .5rem;
  font-size: .82rem;
  color: rgba(255,255,255,.5);
  margin-bottom: .75rem;
}
.breadcrumb a { color: rgba(255,255,255,.65); }
.breadcrumb a:hover { color: var(--orange); }
.breadcrumb span { color: rgba(255,255,255,.35); }


/* ======== SECTION HELPERS ======== */
.section { padding: 5rem 0; }
.section-alt { background: var(--white); }

.section-header { text-align: center; margin-bottom: 3rem; }
.section-tag {
  display: inline-block;
  color: var(--orange);
  font-family: 'Montserrat', sans-serif;
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: .4rem;
}
.section-header h2 { font-size: 2.2rem; color: var(--navy); margin-bottom: .75rem; }
.section-header p { color: var(--muted); max-width: 560px; margin: 0 auto; }


/* ======== SERVICE CARDS (home grid) ======== */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.service-card {
  background: var(--white);
  border-radius: 8px;
  padding: 2rem;
  box-shadow: var(--shadow);
  border-bottom: 3px solid transparent;
  transition: transform .2s, box-shadow .2s, border-color .2s;
}
.service-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); border-bottom-color: var(--orange); }

.service-icon {
  width: 56px;
  height: 56px;
  background: rgba(232,101,10,.1);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  color: var(--orange);
  margin-bottom: 1.2rem;
  flex-shrink: 0;
}
.service-card h3 { font-size: 1.05rem; color: var(--navy); margin-bottom: .5rem; }
.service-card p { color: var(--muted); font-size: .88rem; line-height: 1.65; }
.service-card .learn-link {
  display: inline-block;
  margin-top: .75rem;
  color: var(--orange);
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: .82rem;
  letter-spacing: .3px;
}
.service-card .learn-link:hover { text-decoration: underline; }


/* ======== SERVICE FULL (services page) ======== */
.services-full-list { max-width: 900px; margin: 0 auto; }
.service-full {
  background: var(--white);
  border-radius: 8px;
  padding: 2.5rem;
  margin-bottom: 1.5rem;
  box-shadow: var(--shadow);
  display: flex;
  gap: 2rem;
  align-items: flex-start;
  transition: box-shadow .2s;
}
.service-full:hover { box-shadow: var(--shadow-lg); }
.service-full .service-icon { margin-bottom: 0; }
.service-full-body h3 { font-size: 1.3rem; color: var(--navy); margin-bottom: .6rem; }
.service-full-body p { color: var(--muted); line-height: 1.75; font-size: .95rem; }


/* ======== TRUST STRIP ======== */
.trust-strip { background: var(--navy); padding: 2.75rem 0; }
.trust-items {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 3rem;
  flex-wrap: wrap;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: .75rem;
  color: var(--white);
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: .9rem;
}
.trust-item i { color: var(--orange); font-size: 1.3rem; }


/* ======== CTA BANNER ======== */
.cta-banner { background: var(--orange); color: var(--white); padding: 4.5rem 0; text-align: center; }
.cta-banner h2 { font-size: 2.1rem; margin-bottom: .75rem; }
.cta-banner p { margin-bottom: 2rem; font-size: 1.05rem; opacity: .9; max-width: 540px; margin-left: auto; margin-right: auto; }


/* ======== CONTACT PAGE ======== */
.contact-section { padding: 5rem 0; }
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.7fr;
  gap: 3rem;
  align-items: start;
}
.contact-info h2 { font-size: 1.9rem; color: var(--navy); margin-bottom: .75rem; }
.contact-info > p { color: var(--muted); margin-bottom: 2rem; line-height: 1.7; }
.contact-detail {
  display: flex;
  align-items: flex-start;
  gap: .85rem;
  margin-bottom: 1.1rem;
  font-size: .93rem;
}
.contact-detail i { color: var(--orange); font-size: 1rem; margin-top: 3px; flex-shrink: 0; }
.contact-detail strong { display: block; font-family: 'Montserrat', sans-serif; font-size: .8rem; font-weight: 700; text-transform: uppercase; letter-spacing: .5px; color: var(--navy); margin-bottom: 1px; }
.contact-detail span { color: var(--muted); }

.form-card {
  background: var(--white);
  border-radius: 8px;
  padding: 2.5rem;
  box-shadow: var(--shadow);
}
.form-card h3 { font-size: 1.4rem; color: var(--navy); margin-bottom: 1.5rem; }

.form-group { margin-bottom: 1.25rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.25rem; }

label {
  display: block;
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: .82rem;
  color: var(--navy);
  margin-bottom: .4rem;
  text-transform: uppercase;
  letter-spacing: .4px;
}
label .req { color: var(--error); margin-left: 2px; }

input[type="text"],
input[type="email"],
input[type="tel"],
select,
textarea {
  width: 100%;
  padding: .72rem 1rem;
  border: 1.5px solid var(--border);
  border-radius: 4px;
  font-family: 'Open Sans', sans-serif;
  font-size: .93rem;
  color: var(--text);
  background: var(--white);
  transition: border-color .2s;
  outline: none;
  -webkit-appearance: none;
  appearance: none;
}
input[type="text"]:focus,
input[type="email"]:focus,
input[type="tel"]:focus,
select:focus,
textarea:focus { border-color: var(--navy); }

textarea { resize: vertical; min-height: 110px; }

input.valid { border-color: var(--success); background: #f0fdf4; }
input.invalid { border-color: var(--error); background: #fef2f2; }

.vin-feedback,
.field-feedback {
  margin-top: .35rem;
  font-size: .8rem;
  font-weight: 600;
  min-height: 16px;
  font-family: 'Montserrat', sans-serif;
}
.vin-feedback.success,
.field-feedback.success { color: var(--success); }
.vin-feedback.error,
.field-feedback.error   { color: var(--error); }
.vin-feedback.loading   { color: var(--muted); }

select { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%236b7280' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 1rem center; padding-right: 2.5rem; cursor: pointer; }

.form-submit { width: 100%; padding: .9rem; font-size: .95rem; margin-top: .5rem; border-radius: 4px; }
.form-submit:disabled { opacity: .4; cursor: not-allowed; pointer-events: none; }

/* ---- Validate VIN button ---- */
.btn-validate-vin {
  margin-top: .6rem;
  padding: .55rem 1.2rem;
  font-family: 'Montserrat', sans-serif;
  font-size: .82rem;
  font-weight: 700;
  letter-spacing: .3px;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  transition: background .2s, opacity .2s;
  background: var(--navy);
  color: #fff;
}
.btn-validate-vin:hover:not(:disabled) { background: var(--navy-light); }
.btn-validate-vin:disabled { opacity: .6; cursor: not-allowed; }
.btn-validate-vin.btn-error   { background: var(--error); }
.btn-validate-vin.btn-success { background: var(--success); }

/* ---- VIN info panel ---- */
.vin-info-panel {
  margin-top: 1rem;
  margin-bottom: 1rem;
  border: 1.5px solid var(--border);
  border-radius: 6px;
  overflow: hidden;
  font-size: .88rem;
}
.vin-info-section {
  padding: .9rem 1.1rem;
  border-bottom: 1px solid var(--border);
}
.vin-info-section:last-child { border-bottom: none; }
.vin-info-section h4 {
  font-family: 'Montserrat', sans-serif;
  font-size: .75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .5px;
  color: var(--navy);
  margin-bottom: .65rem;
}
.vin-info-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: .5rem .75rem;
}
.vin-info-item { display: flex; flex-direction: column; }
.vin-info-label {
  font-size: .7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .3px;
  color: var(--muted);
  margin-bottom: .1rem;
}
.vin-info-value { color: var(--text); }

/* ---- Recall cards ---- */
.recall-count {
  font-size: .85rem;
  font-weight: 700;
  margin-bottom: .6rem;
}
.recall-count.none  { color: var(--success); }
.recall-count.found { color: var(--error); }
.recall-card {
  background: #fef2f2;
  border: 1px solid #fecaca;
  border-radius: 4px;
  padding: .7rem .9rem;
  margin-bottom: .5rem;
  font-size: .82rem;
  line-height: 1.5;
}
.recall-card:last-child { margin-bottom: 0; }
.recall-component {
  font-weight: 700;
  font-size: .75rem;
  text-transform: uppercase;
  letter-spacing: .3px;
  color: var(--error);
  margin-bottom: .35rem;
}
.recall-card p { margin-bottom: .2rem; }
.recall-card p:last-child { margin-bottom: 0; }
.recall-card strong { color: var(--navy); }


/* ======== POLICY PAGES ======== */
.policy-hero { background: var(--navy); color: var(--white); padding: 3.5rem 0; text-align: center; }
.policy-hero h1 { font-size: 2.2rem; margin-bottom: .4rem; }
.policy-hero .last-updated { color: rgba(255,255,255,.55); font-size: .85rem; margin-top: .4rem; }

.policy-body { background: var(--white); }
.policy-content {
  max-width: 820px;
  margin: 0 auto;
  padding: 4rem 1.5rem 5rem;
}
.policy-content h2 {
  font-size: 1.35rem;
  color: var(--navy);
  margin: 2.5rem 0 .65rem;
  padding-bottom: .5rem;
  border-bottom: 2px solid var(--bg);
}
.policy-content h2:first-child { margin-top: 0; }
.policy-content p, .policy-content li {
  color: var(--muted);
  line-height: 1.85;
  margin-bottom: .75rem;
  font-size: .95rem;
}
.policy-content ul, .policy-content ol { padding-left: 1.5rem; margin-bottom: 1rem; }
.policy-content a { color: var(--orange); text-decoration: underline; }
.policy-content strong { color: var(--text); }

.policy-alert {
  background: rgba(232,101,10,.08);
  border-left: 4px solid var(--orange);
  border-radius: 4px;
  padding: 1rem 1.25rem;
  margin: 1.5rem 0;
  font-size: .9rem;
  color: var(--text);
}

.placeholder-box {
  background: var(--bg);
  border: 2px dashed var(--border);
  border-radius: 8px;
  padding: 3rem 2rem;
  text-align: center;
  margin: 2rem 0;
}
.placeholder-box i { font-size: 2.5rem; color: var(--muted); margin-bottom: 1rem; display: block; }
.placeholder-box h3 { color: var(--navy); margin-bottom: .5rem; font-size: 1.2rem; }
.placeholder-box p { color: var(--muted); font-size: .9rem; margin: 0; }


/* ======== FOOTER ======== */
footer { background: var(--navy); color: rgba(255,255,255,.72); padding: 3.5rem 0 0; }
.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr;
  gap: 2.5rem;
  padding-bottom: 2.5rem;
  border-bottom: 1px solid rgba(255,255,255,.1);
}
.footer-brand .nav-logo { display: block; margin-bottom: .75rem; }
.footer-brand p { font-size: .87rem; line-height: 1.65; color: rgba(255,255,255,.6); max-width: 320px; }

.footer-col h4 {
  font-family: 'Montserrat', sans-serif;
  font-size: .78rem;
  font-weight: 700;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: 1.2px;
  margin-bottom: 1rem;
  margin-top: 0;
}
.footer-col + .footer-col h4:not(:first-child) { margin-top: 1.5rem; }
.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: .55rem; }
.footer-col a { color: rgba(255,255,255,.6); font-size: .87rem; transition: color .2s; }
.footer-col a:hover { color: var(--orange); }

.footer-contact-item {
  display: flex;
  align-items: center;
  gap: .65rem;
  margin-bottom: .75rem;
  font-size: .87rem;
  color: rgba(255,255,255,.65);
}
.footer-contact-item i { color: var(--orange); width: 16px; text-align: center; }

.footer-bottom {
  padding: 1.25rem 0;
  text-align: center;
  font-size: .8rem;
  color: rgba(255,255,255,.38);
}
.footer-bottom a { color: rgba(255,255,255,.48); transition: color .2s; }
.footer-bottom a:hover { color: var(--orange); }
.footer-sep { margin: 0 .6rem; opacity: .4; }


/* ======== COOKIE BANNER ======== */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 9000;
  background: var(--navy);
  border-top: 2px solid rgba(232,101,10,.4);
  padding: 1rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
  box-shadow: 0 -4px 24px rgba(0,0,0,.22);
}
.cookie-banner p {
  flex: 1;
  min-width: 220px;
  font-size: .87rem;
  color: rgba(255,255,255,.82);
  margin: 0;
}
.cookie-banner a { color: var(--orange); text-decoration: underline; }
.cookie-actions { display: flex; gap: .75rem; flex-shrink: 0; align-items: center; }

.btn-cookie-accept {
  background: var(--orange);
  color: var(--white);
  padding: .5rem 1.3rem;
  border-radius: 4px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: .83rem;
  cursor: pointer;
  border: none;
  transition: background .2s;
  white-space: nowrap;
}
.btn-cookie-accept:hover { background: var(--orange-hover); }
.btn-cookie-learn {
  background: transparent;
  color: rgba(255,255,255,.7);
  padding: .5rem 1rem;
  border-radius: 4px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: .83rem;
  cursor: pointer;
  border: 1px solid rgba(255,255,255,.28);
  transition: color .2s, border-color .2s;
  white-space: nowrap;
  text-decoration: none;
}
.btn-cookie-learn:hover { color: var(--white); border-color: rgba(255,255,255,.55); }


/* ======== HOW IT WORKS ======== */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}
.step-card {
  text-align: center;
  padding: 2rem 1.5rem;
  background: var(--white);
  border-radius: 8px;
  box-shadow: var(--shadow);
}
.step-number {
  width: 60px;
  height: 60px;
  background: var(--orange);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Montserrat', sans-serif;
  font-size: 1.5rem;
  font-weight: 800;
  margin: 0 auto 1.25rem;
  box-shadow: 0 4px 14px rgba(232,101,10,.3);
}
.step-card h3 { font-size: 1.1rem; color: var(--navy); margin-bottom: .5rem; }
.step-card p { color: var(--muted); font-size: .9rem; line-height: 1.65; }


/* ======== FAQ ======== */
.faq-list { max-width: 820px; margin: 0 auto; }
.faq-item {
  background: var(--white);
  border-radius: 6px;
  margin-bottom: .6rem;
  box-shadow: var(--shadow);
  overflow: hidden;
  border-left: 3px solid transparent;
  transition: border-color .2s;
}
.faq-item:has(details[open]) { border-left-color: var(--orange); }

details summary {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: .95rem;
  color: var(--navy);
  padding: 1.2rem 1.5rem;
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  user-select: none;
}
details summary::-webkit-details-marker { display: none; }
details summary::after {
  content: '+';
  font-size: 1.4rem;
  color: var(--orange);
  font-weight: 300;
  flex-shrink: 0;
  line-height: 1;
}
details[open] summary::after { content: '\2212'; }

.faq-body {
  padding: 0 1.5rem 1.2rem;
  border-top: 1px solid var(--border);
}
.faq-body p {
  color: var(--muted);
  font-size: .92rem;
  line-height: 1.78;
  margin: .75rem 0 0;
}
.faq-body a { color: var(--orange); text-decoration: underline; }


/* ======== BLOG ======== */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.75rem;
}
.blog-card {
  background: var(--white);
  border-radius: 8px;
  padding: 2rem;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  gap: .75rem;
  transition: transform .2s, box-shadow .2s;
  border-top: 3px solid transparent;
}
.blog-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); border-top-color: var(--orange); }
.blog-card-tag {
  display: inline-block;
  background: rgba(232,101,10,.1);
  color: var(--orange);
  font-family: 'Montserrat', sans-serif;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  padding: .25rem .65rem;
  border-radius: 20px;
  width: fit-content;
}
.blog-card h3 { font-size: 1.05rem; color: var(--navy); line-height: 1.35; }
.blog-card p { color: var(--muted); font-size: .88rem; line-height: 1.65; flex: 1; }
.blog-card-meta {
  font-size: .8rem;
  color: var(--muted);
  display: flex;
  align-items: center;
  gap: .45rem;
}
.blog-card-meta i { color: var(--orange); font-size: .75rem; }
.blog-read-link {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: .82rem;
  color: var(--orange);
  letter-spacing: .3px;
}
.blog-read-link:hover { text-decoration: underline; }

/* Blog post single */
.post-wrap { background: var(--white); }
.post-content {
  max-width: 820px;
  margin: 0 auto;
  padding: 4rem 1.5rem 5rem;
}
.post-meta {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.75rem;
  flex-wrap: wrap;
}
.post-meta-date {
  display: flex;
  align-items: center;
  gap: .4rem;
  font-size: .83rem;
  color: var(--muted);
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
}
.post-meta-date i { color: var(--orange); }
.post-meta-tag {
  background: rgba(232,101,10,.1);
  color: var(--orange);
  font-family: 'Montserrat', sans-serif;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  padding: .25rem .65rem;
  border-radius: 20px;
}
.post-content h1 { font-size: 2.2rem; color: var(--navy); margin-bottom: 1.75rem; line-height: 1.25; }
.post-content h2 { font-size: 1.35rem; color: var(--navy); margin: 2.5rem 0 .75rem; padding-bottom: .5rem; border-bottom: 2px solid var(--bg); }
.post-content p { color: var(--muted); line-height: 1.85; margin-bottom: 1rem; font-size: .95rem; }
.post-content ul, .post-content ol { padding-left: 1.5rem; margin-bottom: 1.25rem; }
.post-content li { color: var(--muted); line-height: 1.78; margin-bottom: .4rem; font-size: .95rem; }
.post-content strong { color: var(--text); }
.post-content a { color: var(--orange); text-decoration: underline; }

.post-callout {
  background: rgba(232,101,10,.07);
  border-left: 4px solid var(--orange);
  border-radius: 4px;
  padding: 1.1rem 1.4rem;
  margin: 2rem 0;
}
.post-callout p { margin: 0; font-size: .93rem; }

.related-posts { background: var(--bg); padding: 4rem 0; }
.related-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 2rem;
}


/* ======== RESPONSIVE ======== */
@media (max-width: 900px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .hero h1 { font-size: 2.4rem; }
  .blog-grid { grid-template-columns: repeat(2, 1fr); }
  .related-grid { grid-template-columns: repeat(2, 1fr); }
  .hero-inner { gap: 2.5rem; }
  .hero-img-wrap { width: 340px; }
  .hero-img-wrap img { height: 360px; }
}

@media (max-width: 600px) {
  .hamburger { display: flex; }

  .nav-links {
    display: none;
    position: absolute;
    top: 70px;
    left: 0;
    right: 0;
    background: var(--navy);
    flex-direction: column;
    gap: 0;
    padding: .5rem 0;
    box-shadow: 0 8px 24px rgba(0,0,0,.25);
  }
  .nav-links.open { display: flex; }
  .nav-links li { width: 100%; }
  .nav-links a { display: block; padding: .85rem 1.5rem; border-top: 1px solid rgba(255,255,255,.07); }
  .nav-links .nav-cta { background: transparent; border-radius: 0; color: var(--orange) !important; }

  .hero { padding: 3.5rem 0 3rem; }
  .hero h1 { font-size: 2rem; }
  .hero-inner { flex-direction: column; gap: 2rem; }
  .hero-img-wrap { width: 100%; }
  .hero-img-wrap img { height: 240px; }
  .section { padding: 3.5rem 0; }

  .services-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .trust-items { flex-direction: column; gap: 1.5rem; align-items: flex-start; padding: 0 1.5rem; }
  .service-full { flex-direction: column; gap: 1rem; }
  .steps-grid { grid-template-columns: 1fr; }
  .page-hero h1 { font-size: 1.9rem; }
  .section-header h2 { font-size: 1.8rem; }
  .cta-banner h2 { font-size: 1.7rem; }
  .contact-grid { gap: 2rem; }
  .blog-grid { grid-template-columns: 1fr; }
  .related-grid { grid-template-columns: 1fr; }
  .post-content h1 { font-size: 1.75rem; }
}
