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

:root {
  --navy:   #1a237e;
  --navy2:  #283593;
  --red:    #c62828;
  --red2:   #b71c1c;
  --purple: #6a1b9a;
  --grad:   linear-gradient(90deg, #1a237e 0%, #6a1b9a 50%, #c62828 100%);
  --light:  #f4f7fb;
  --gray:   #64748b;
  --white:  #ffffff;
  --radius: 10px;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', sans-serif;
  color: #1e293b;
  background: var(--white);
  line-height: 1.6;
}

/* ── NAV ──────────────────────────────────────────────── */
nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--navy);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 5%;
  height: 68px;
  box-shadow: 0 2px 12px rgba(0,0,0,.35);
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.nav-logo-icon {
  width: 36px; height: 36px;
  background: var(--grad);
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
}

.nav-logo-icon svg { width: 22px; height: 22px; fill: white; }

.nav-logo-text { font-size: 1.25rem; font-weight: 800; color: #fff; letter-spacing: -.3px; }
.nav-logo-text span { color: var(--red); }

.nav-links { display: flex; gap: 28px; list-style: none; }

.nav-links a {
  color: #cbd5e1;
  text-decoration: none;
  font-size: .9rem;
  font-weight: 500;
  transition: color .2s;
  padding-bottom: 4px;
  border-bottom: 2px solid transparent;
}

.nav-links a:hover { color: #fff; border-bottom-color: rgba(255,255,255,.4); }
.nav-links a.active { color: #fff; border-bottom-color: var(--red); }

.nav-cta {
  background: var(--red) !important;
  color: #fff !important;
  padding: 9px 20px !important;
  border-radius: 6px;
  font-weight: 700 !important;
  font-size: .88rem !important;
  border-bottom: none !important;
}

.nav-cta:hover { background: var(--red2) !important; }

.hamburger {
  display: none; flex-direction: column; gap: 5px;
  cursor: pointer; background: none; border: none; padding: 4px;
}
.hamburger span { width: 24px; height: 2px; background: white; border-radius: 2px; transition: .3s; }

.mobile-menu {
  display: none; position: fixed; top: 68px; left: 0; right: 0;
  background: var(--navy2); padding: 20px 5%; flex-direction: column;
  gap: 16px; z-index: 99; border-top: 1px solid rgba(255,255,255,.1);
}
.mobile-menu.open { display: flex; }
.mobile-menu a { color: #cbd5e1; text-decoration: none; font-weight: 500; font-size: 1rem; }
.mobile-menu a:hover { color: white; }
.mobile-menu .nav-cta { text-align: center; padding: 12px !important; border-radius: 6px; }

/* ── PAGE HERO BANNER (inner pages) ──────────────────── */
.page-hero {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy2) 100%);
  padding: 60px 5%;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: ''; position: absolute; top: -60px; right: -60px;
  width: 300px; height: 300px; background: var(--red); opacity: .07;
  border-radius: 50%; pointer-events: none;
}
.page-hero h1 { font-size: clamp(1.8rem, 4vw, 2.8rem); font-weight: 800; color: #fff; margin-bottom: 12px; }
.page-hero p { color: #94a3b8; font-size: 1.05rem; max-width: 560px; margin: 0 auto; }

/* ── HERO (home) ─────────────────────────────────────── */
.hero {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy2) 100%);
  padding: 90px 5% 80px;
  position: relative; overflow: hidden;
}
.hero::before {
  content: ''; position: absolute; top: -80px; right: -80px;
  width: 420px; height: 420px; background: var(--red); opacity: .07;
  border-radius: 50%; pointer-events: none;
}
.hero::after {
  content: ''; position: absolute; bottom: -120px; left: -60px;
  width: 300px; height: 300px; background: var(--red); opacity: .05;
  border-radius: 50%; pointer-events: none;
}
.hero-inner { max-width: 700px; position: relative; z-index: 2; }

.hero-badge {
  display: inline-flex; align-items: center; gap: 6px;
  background: rgba(198,40,40,.15); border: 1px solid rgba(198,40,40,.4);
  color: #ef9a9a; font-size: .8rem; font-weight: 600;
  padding: 5px 12px; border-radius: 999px; margin-bottom: 22px; letter-spacing: .3px;
}

.hero h1 { font-size: clamp(2rem, 5vw, 3.2rem); font-weight: 800; color: #fff; line-height: 1.15; margin-bottom: 18px; letter-spacing: -.5px; }
.hero h1 span { color: var(--red); }
.hero p { font-size: 1.1rem; color: #94a3b8; margin-bottom: 36px; max-width: 560px; }

.hero-btns { display: flex; flex-wrap: wrap; gap: 14px; }

.hero-trust {
  display: flex; flex-wrap: wrap; gap: 24px;
  margin-top: 48px; padding-top: 36px;
  border-top: 1px solid rgba(255,255,255,.1);
}
.trust-item { display: flex; align-items: center; gap: 10px; color: #94a3b8; font-size: .88rem; }
.trust-item svg { width: 18px; height: 18px; flex-shrink: 0; }

/* ── BUTTONS ─────────────────────────────────────────── */
.btn-primary {
  background: var(--red); color: white; text-decoration: none;
  padding: 14px 28px; border-radius: 8px; font-weight: 700; font-size: 1rem;
  transition: background .2s, transform .15s;
  display: inline-flex; align-items: center; gap: 8px;
}
.btn-primary:hover { background: var(--red2); transform: translateY(-1px); }

.btn-secondary {
  background: transparent; color: white; text-decoration: none;
  padding: 14px 28px; border-radius: 8px; font-weight: 600; font-size: 1rem;
  border: 2px solid rgba(255,255,255,.25); transition: border-color .2s, background .2s;
}
.btn-secondary:hover { border-color: white; background: rgba(255,255,255,.08); }

/* ── SECTIONS ────────────────────────────────────────── */
section { padding: 80px 5%; }

.section-label {
  font-size: .8rem; font-weight: 700; letter-spacing: 1.5px;
  text-transform: uppercase; color: var(--red); margin-bottom: 10px;
}
.section-title {
  font-size: clamp(1.6rem, 3.5vw, 2.4rem); font-weight: 800;
  color: var(--navy); line-height: 1.2; letter-spacing: -.4px; margin-bottom: 14px;
}
.section-sub { font-size: 1rem; color: var(--gray); max-width: 560px; margin-bottom: 48px; }

/* ── SERVICE CARDS ───────────────────────────────────── */
.services-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 24px; }

.service-card {
  background: white; border-radius: var(--radius);
  padding: 30px 26px;
  box-shadow: 0 1px 4px rgba(0,0,0,.07), 0 4px 16px rgba(0,0,0,.04);
  transition: transform .2s, box-shadow .2s;
  border-top: 3px solid transparent;
}
.service-card:hover { transform: translateY(-4px); box-shadow: 0 8px 30px rgba(0,0,0,.1); border-top-color: var(--red); }

.service-icon {
  width: 48px; height: 48px; background: rgba(26,35,126,.1);
  border-radius: 10px; display: flex; align-items: center; justify-content: center; margin-bottom: 18px;
}
.service-icon svg { width: 26px; height: 26px; stroke: var(--navy); fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.service-card h3 { font-size: 1.05rem; font-weight: 700; color: var(--navy); margin-bottom: 8px; }
.service-card p { font-size: .9rem; color: var(--gray); line-height: 1.6; }

/* ── TABS ────────────────────────────────────────────── */
.tab-bar { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 32px; }

.tab-btn {
  background: white; border: 2px solid #e2e8f0; color: var(--gray);
  padding: 10px 20px; border-radius: 8px; font-family: inherit;
  font-size: .88rem; font-weight: 600; cursor: pointer; transition: all .2s;
}
.tab-btn:hover { border-color: var(--navy); color: var(--navy); }
.tab-btn.active { background: var(--navy); border-color: var(--navy); color: white; }

.tab-panel { display: none; }
.tab-panel.active { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 24px; }

/* ── ABOUT ───────────────────────────────────────────── */
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }

.about-visual {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy2) 100%);
  border-radius: 16px; overflow: hidden;
}
.about-van-photo {
  width: 100%; height: 220px; object-fit: contain; object-position: center;
  display: block; background: #0d1535; padding: 12px;
}
.about-visual-inner { padding: 32px 36px 36px; position: relative; }
.about-visual-inner::before {
  content: ''; position: absolute; top: -40px; right: -40px;
  width: 200px; height: 200px; background: var(--red); opacity: .1;
  border-radius: 50%; pointer-events: none;
}
.about-big-num { font-size: 5rem; font-weight: 800; color: var(--red); line-height: 1; margin-bottom: 6px; }
.about-big-label { color: #94a3b8; font-size: .95rem; font-weight: 500; margin-bottom: 36px; }

.about-stats { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.about-stat { background: rgba(255,255,255,.07); border-radius: 10px; padding: 16px; }
.about-stat-num { font-size: 1.8rem; font-weight: 800; color: white; }
.about-stat-label { font-size: .78rem; color: #94a3b8; margin-top: 2px; }

.about-content p { color: var(--gray); margin-bottom: 18px; font-size: .97rem; }
.about-content h2 { margin-bottom: 18px; }

.faith-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(26,35,126,.08); border: 1px solid rgba(26,35,126,.2);
  color: var(--navy); font-size: .85rem; font-weight: 600;
  padding: 8px 16px; border-radius: 8px; margin-top: 6px;
}

/* ── WHY US ──────────────────────────────────────────── */
.why-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(210px, 1fr)); gap: 20px; }

.why-card {
  background: white; border-radius: var(--radius); padding: 26px 22px;
  box-shadow: 0 1px 4px rgba(0,0,0,.06); display: flex; gap: 14px; align-items: flex-start;
}
.why-num {
  width: 36px; height: 36px; background: var(--navy); color: white;
  border-radius: 8px; display: flex; align-items: center; justify-content: center;
  font-weight: 800; font-size: .95rem; flex-shrink: 0;
}
.why-card h3 { font-size: .95rem; font-weight: 700; color: var(--navy); margin-bottom: 5px; }
.why-card p { font-size: .85rem; color: var(--gray); }

/* ── REVIEWS ─────────────────────────────────────────── */
.reviews-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 24px; }

.review-card {
  background: var(--light); border-radius: var(--radius);
  padding: 28px 26px; border-left: 4px solid var(--red);
}
.stars { color: #f59e0b; font-size: 1rem; margin-bottom: 14px; letter-spacing: 2px; }
.review-text { font-size: .93rem; color: #334155; line-height: 1.7; font-style: italic; margin-bottom: 18px; }
.reviewer { display: flex; align-items: center; gap: 10px; }
.reviewer-avatar {
  width: 38px; height: 38px; border-radius: 50%; background: var(--navy); color: white;
  display: flex; align-items: center; justify-content: center; font-weight: 700; font-size: .85rem; flex-shrink: 0;
}
.reviewer-name { font-weight: 600; font-size: .88rem; color: var(--navy); }
.reviewer-source { font-size: .78rem; color: var(--gray); }

/* ── AWARD BAR ───────────────────────────────────────── */
.award-bar { background: var(--navy); padding: 36px 5%; text-align: center; }
.award-bar-inner { display: flex; flex-wrap: wrap; justify-content: center; gap: 32px; align-items: center; }
.award-item { display: flex; align-items: center; gap: 10px; color: white; font-weight: 700; font-size: .95rem; }
.award-icon { width: 40px; height: 40px; background: var(--red); border-radius: 8px; display: flex; align-items: center; justify-content: center; font-size: 1.2rem; }

/* ── ACCORDION ───────────────────────────────────────── */
.accordion { max-width: 760px; margin: 0 auto; }

.accordion-item { border: 1.5px solid #e2e8f0; border-radius: 10px; margin-bottom: 10px; overflow: hidden; }

.accordion-header {
  width: 100%; background: white; border: none; padding: 18px 22px;
  display: flex; justify-content: space-between; align-items: center;
  font-family: inherit; font-size: 1rem; font-weight: 600; color: var(--navy);
  cursor: pointer; text-align: left; transition: background .2s;
}
.accordion-header:hover { background: var(--light); }
.accordion-header.open { background: var(--navy); color: white; }

.accordion-icon {
  width: 22px; height: 22px; flex-shrink: 0; transition: transform .3s;
  fill: none; stroke: currentColor; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round;
}
.accordion-header.open .accordion-icon { transform: rotate(180deg); }

.accordion-body {
  max-height: 0; overflow: hidden;
  transition: max-height .35s ease, padding .35s ease;
  background: #f8fafc; font-size: .95rem; color: var(--gray); line-height: 1.7; padding: 0 22px;
}
.accordion-body.open { max-height: 400px; padding: 18px 22px; }

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

.contact-info h2 { margin-bottom: 18px; }
.contact-info p { color: var(--gray); margin-bottom: 32px; font-size: .97rem; }

.contact-item { display: flex; gap: 14px; align-items: flex-start; margin-bottom: 22px; }
.contact-icon {
  width: 42px; height: 42px; background: var(--navy); border-radius: 8px;
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.contact-icon svg { width: 20px; height: 20px; stroke: white; fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.contact-item-label { font-size: .78rem; color: var(--gray); text-transform: uppercase; letter-spacing: .5px; font-weight: 600; }
.contact-item-value { font-size: 1rem; font-weight: 600; color: var(--navy); text-decoration: none; }
.contact-item-value:hover { color: var(--red); }

.contact-form-wrap { background: white; border-radius: 14px; padding: 36px 32px; box-shadow: 0 4px 24px rgba(0,0,0,.07); }
.contact-form-wrap h3 { font-size: 1.2rem; font-weight: 700; color: var(--navy); margin-bottom: 22px; }

.form-group { margin-bottom: 18px; }
.form-group label { display: block; font-size: .85rem; font-weight: 600; color: var(--navy); margin-bottom: 6px; }
.form-group input, .form-group select, .form-group textarea {
  width: 100%; border: 1.5px solid #e2e8f0; border-radius: 8px; padding: 11px 14px;
  font-family: inherit; font-size: 16px; color: #1e293b; background: #f8fafc;
  transition: border-color .2s, box-shadow .2s; outline: none;
  position: relative; z-index: 1; -webkit-appearance: none;
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
  border-color: var(--red); box-shadow: 0 0 0 3px rgba(198,40,40,.1); background: white;
}
.form-group textarea { resize: vertical; min-height: 100px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }

.form-submit {
  width: 100%; background: var(--red); color: white; border: none;
  padding: 14px; border-radius: 8px; font-weight: 700; font-size: 1rem;
  cursor: pointer; transition: background .2s; font-family: inherit;
}
.form-submit:hover { background: var(--red2); }

/* ── SERVICE AREAS ───────────────────────────────────── */
.area-tags { display: flex; flex-wrap: wrap; justify-content: center; gap: 10px; max-width: 900px; margin: 0 auto; }
.area-tag { background: rgba(255,255,255,.08); color: #cbd5e1; padding: 7px 16px; border-radius: 999px; font-size: .85rem; font-weight: 500; }

/* ── CTA SECTION ─────────────────────────────────────── */
.cta-section { background: var(--grad); padding: 80px 5%; text-align: center; }
.cta-section h2 { font-size: clamp(1.6rem, 3.5vw, 2.2rem); font-weight: 800; color: white; margin-bottom: 14px; }
.cta-section p { color: rgba(255,255,255,.8); margin-bottom: 32px; font-size: 1.05rem; }

/* ── FOOTER ──────────────────────────────────────────── */
footer { background: var(--navy); color: #94a3b8; padding: 60px 5% 28px; }

.footer-top { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 48px; margin-bottom: 36px; }
.footer-brand p { font-size: .88rem; margin-top: 12px; line-height: 1.7; max-width: 300px; }

.footer-col h4 { font-size: .85rem; font-weight: 700; color: white; text-transform: uppercase; letter-spacing: .8px; margin-bottom: 16px; }
.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 10px; }
.footer-col a { color: #94a3b8; text-decoration: none; font-size: .88rem; transition: color .2s; }
.footer-col a:hover { color: white; }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.08); padding-top: 24px;
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 12px; font-size: .82rem;
}

/* ── RESPONSIVE ──────────────────────────────────────── */
@media (max-width: 900px) {
  .about-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr 1fr; }
  .nav-links { display: none; }
  .hamburger { display: flex; }
}

@media (max-width: 600px) {
  section { padding: 60px 5%; }
  .footer-top { grid-template-columns: 1fr; gap: 32px; }
  .form-row { grid-template-columns: 1fr; }
  .hero { padding: 60px 5%; }
  .contact-form-wrap { padding: 24px 18px; }
}

@media (max-width: 480px) {
  .hero-btns { flex-direction: column; }
  .hero-btns a { text-align: center; justify-content: center; width: 100%; }
}
