/* ============================================
   CS CLEAN TEAM — Global Stylesheet
   Palette: Navy #0d1f35 | Steel #1e3a5f | Red #c0392b | Light #f4f7fb | White #ffffff
   ============================================ */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&family=Barlow+Condensed:wght@600;700;800&display=swap');

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

:root {
  --navy: #0d1f35;
  --steel: #1e3a5f;
  --red: #c0392b;
  --red-dark: #a93226;
  --light: #f4f7fb;
  --mid: #e2e8f0;
  --white: #ffffff;
  --text: #1a2533;
  --muted: #64748b;
  --font-display: 'Barlow Condensed', sans-serif;
  --font-body: 'Inter', sans-serif;
  --radius: 4px;
  --shadow: 0 4px 24px rgba(13,31,53,0.12);
  --transition: 0.2s ease;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  color: var(--text);
  background: var(--white);
}

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

/* ── TYPOGRAPHY ── */
h1, h2, h3, h4 { font-family: var(--font-display); line-height: 1.15; letter-spacing: 0.01em; }
h1 { font-size: clamp(2.2rem, 5vw, 3.8rem); font-weight: 800; }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.8rem); font-weight: 700; }
h3 { font-size: clamp(1.2rem, 2vw, 1.5rem); font-weight: 700; }
p { margin-bottom: 1rem; }
p:last-child { margin-bottom: 0; }

/* ── LAYOUT ── */
.container { max-width: 1160px; margin: 0 auto; padding: 0 24px; }
.section { padding: 80px 0; }
.section-sm { padding: 48px 0; }

/* ── BUTTONS ── */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 28px; font-family: var(--font-body); font-size: 0.95rem;
  font-weight: 600; border-radius: var(--radius); cursor: pointer;
  border: 2px solid transparent; transition: all var(--transition); text-decoration: none;
}
.btn-red { background: var(--red); color: var(--white); border-color: var(--red); }
.btn-red:hover { background: var(--red-dark); border-color: var(--red-dark); transform: translateY(-1px); }
.btn-outline { background: transparent; color: var(--white); border-color: var(--white); }
.btn-outline:hover { background: var(--white); color: var(--navy); }
.btn-navy { background: var(--navy); color: var(--white); border-color: var(--navy); }
.btn-navy:hover { background: var(--steel); border-color: var(--steel); }
.btn-lg { padding: 18px 36px; font-size: 1.05rem; }

/* ── HEADER ── */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: var(--navy); box-shadow: 0 2px 16px rgba(0,0,0,0.25);
}
.header-inner {
  display: flex; align-items: center; justify-content: space-between;
  padding: 16px 24px; max-width: 1160px; margin: 0 auto; gap: 24px;
}
.logo {
  font-family: var(--font-display); font-size: 1.5rem; font-weight: 800;
  color: var(--white); letter-spacing: 0.02em; white-space: nowrap;
}
.logo span { color: var(--red); }
.nav { display: flex; align-items: center; gap: 4px; }
.nav a {
  color: rgba(255,255,255,0.8); font-size: 0.88rem; font-weight: 500;
  padding: 8px 12px; border-radius: var(--radius); transition: all var(--transition);
  white-space: nowrap;
}
.nav a:hover, .nav a.active { color: var(--white); background: rgba(255,255,255,0.1); }
.header-cta { white-space: nowrap; }
.header-cta .btn { padding: 10px 20px; font-size: 0.9rem; }
.mobile-toggle { display: none; background: none; border: none; cursor: pointer; padding: 8px; }
.mobile-toggle span { display: block; width: 22px; height: 2px; background: white; margin: 4px 0; transition: all var(--transition); }

/* ── HERO ── */
.hero {
  background: linear-gradient(135deg, var(--navy) 0%, var(--steel) 100%);
  color: var(--white); padding: 100px 0 80px; position: relative; overflow: hidden;
}
.hero::before {
  content: ''; position: absolute; inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.hero-content { position: relative; z-index: 1; max-width: 720px; }
.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--red); color: white; font-size: 0.78rem; font-weight: 700;
  letter-spacing: 0.1em; text-transform: uppercase; padding: 6px 14px;
  border-radius: var(--radius); margin-bottom: 24px;
}
.hero h1 { color: var(--white); margin-bottom: 20px; }
.hero h1 em { color: var(--red); font-style: normal; }
.hero-sub { font-size: 1.1rem; color: rgba(255,255,255,0.8); margin-bottom: 36px; max-width: 580px; }
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; }

/* ── TRUST BAR ── */
.trust-bar { background: var(--steel); padding: 20px 0; }
.trust-bar-inner {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 16px; align-items: center;
}
.trust-item {
  display: flex; align-items: center; gap: 10px;
  color: var(--white); font-size: 0.88rem; font-weight: 500;
}
.trust-item svg { flex-shrink: 0; color: var(--red); }

/* ── SECTION HEADERS ── */
.section-header { text-align: center; margin-bottom: 56px; }
.section-header .eyebrow {
  display: inline-block; font-size: 0.75rem; font-weight: 700;
  letter-spacing: 0.12em; text-transform: uppercase; color: var(--red);
  margin-bottom: 12px;
}
.section-header h2 { color: var(--navy); margin-bottom: 16px; }
.section-header p { color: var(--muted); max-width: 580px; margin: 0 auto; font-size: 1.05rem; }

/* ── SERVICE CARDS ── */
.services-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px;
}
.service-card {
  border: 1px solid var(--mid); border-radius: 6px; padding: 32px;
  transition: all var(--transition); background: var(--white);
  display: flex; flex-direction: column; gap: 12px;
  border-top: 4px solid transparent;
}
.service-card:hover {
  border-top-color: var(--red); box-shadow: var(--shadow);
  transform: translateY(-4px);
}
.service-icon {
  width: 48px; height: 48px; background: #fef2f2; border-radius: 8px;
  display: flex; align-items: center; justify-content: center; color: var(--red);
}
.service-card h3 { color: var(--navy); font-size: 1.15rem; }
.service-card p { color: var(--muted); font-size: 0.93rem; margin: 0; flex: 1; }
.service-card a {
  color: var(--red); font-weight: 600; font-size: 0.88rem;
  display: inline-flex; align-items: center; gap: 4px; margin-top: auto;
}
.service-card a:hover { color: var(--red-dark); }

/* ── WHY US ── */
.why-us { background: var(--navy); color: var(--white); }
.why-us .section-header h2 { color: var(--white); }
.why-us .section-header p { color: rgba(255,255,255,0.7); }
.why-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.why-item {
  background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.1);
  border-radius: 6px; padding: 28px; display: flex; gap: 16px; align-items: flex-start;
}
.why-icon { color: var(--red); flex-shrink: 0; margin-top: 2px; }
.why-item h3 { color: var(--white); font-size: 1rem; margin-bottom: 6px; }
.why-item p { color: rgba(255,255,255,0.65); font-size: 0.9rem; margin: 0; }

/* ── TESTIMONIALS ── */
.testimonials { background: var(--light); }
.testimonials-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.testimonial-card {
  background: var(--white); border-radius: 6px; padding: 32px;
  box-shadow: 0 2px 12px rgba(13,31,53,0.07); position: relative;
}
.testimonial-card::before {
  content: '\201C'; font-family: Georgia, serif; font-size: 4rem;
  color: var(--red); opacity: 0.3; position: absolute; top: 12px; left: 24px;
  line-height: 1;
}
.testimonial-card blockquote { color: var(--text); font-size: 0.95rem; margin-bottom: 20px; font-style: italic; }
.testimonial-author { font-weight: 600; color: var(--navy); font-size: 0.88rem; }

/* ── EMERGENCY BANNER ── */
.emergency-banner {
  background: var(--red); color: var(--white); padding: 56px 0; text-align: center;
}
.emergency-banner h2 { color: var(--white); margin-bottom: 12px; font-size: clamp(1.8rem, 4vw, 2.8rem); }
.emergency-banner p { color: rgba(255,255,255,0.9); margin-bottom: 28px; font-size: 1.05rem; }
.emergency-banner .btn-outline { border-color: rgba(255,255,255,0.6); }
.emergency-banner .btn-outline:hover { background: rgba(255,255,255,0.15); color: white; }

/* ── FOOTER ── */
.site-footer { background: #080f1a; color: rgba(255,255,255,0.65); }
.footer-main { padding: 64px 0 40px; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 48px; }
.footer-brand .logo { font-size: 1.3rem; margin-bottom: 16px; display: block; }
.footer-brand p { font-size: 0.9rem; line-height: 1.7; margin-bottom: 16px; }
.footer-col h4 {
  color: var(--white); font-family: var(--font-body); font-size: 0.85rem;
  font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase;
  margin-bottom: 16px;
}
.footer-col ul li { margin-bottom: 8px; }
.footer-col ul li a { font-size: 0.9rem; transition: color var(--transition); }
.footer-col ul li a:hover { color: var(--white); }
.footer-contact-item { display: flex; gap: 10px; margin-bottom: 10px; font-size: 0.9rem; align-items: flex-start; }
.footer-contact-item svg { flex-shrink: 0; color: var(--red); margin-top: 2px; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08); padding: 20px 0;
  display: flex; align-items: center; justify-content: space-between;
  font-size: 0.82rem;
}

/* ── PAGE HERO (inner pages) ── */
.page-hero {
  background: linear-gradient(135deg, var(--navy) 0%, var(--steel) 100%);
  padding: 72px 0 56px; color: var(--white);
}
.page-hero h1 { color: var(--white); margin-bottom: 16px; }
.page-hero p { color: rgba(255,255,255,0.8); font-size: 1.1rem; max-width: 640px; margin-bottom: 28px; }
.breadcrumb { font-size: 0.82rem; color: rgba(255,255,255,0.5); margin-bottom: 16px; }
.breadcrumb a { color: rgba(255,255,255,0.5); } .breadcrumb a:hover { color: white; }
.breadcrumb span { color: rgba(255,255,255,0.3); margin: 0 6px; }

/* ── PROCESS STEPS ── */
.process-steps { display: flex; flex-direction: column; gap: 0; }
.step {
  display: flex; gap: 24px; padding: 28px 0;
  border-bottom: 1px solid var(--mid); align-items: flex-start;
}
.step:last-child { border-bottom: none; }
.step-num {
  width: 44px; height: 44px; background: var(--red); color: white;
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display); font-size: 1.1rem; font-weight: 800; flex-shrink: 0;
}
.step-content h3 { color: var(--navy); margin-bottom: 6px; font-size: 1.1rem; }
.step-content p { color: var(--muted); margin: 0; font-size: 0.95rem; }

/* ── COMPLIANCE BADGES ── */
.compliance-list { display: flex; flex-direction: column; gap: 12px; }
.compliance-item {
  display: flex; align-items: center; gap: 12px;
  padding: 14px 18px; background: var(--light); border-radius: var(--radius);
  border-left: 4px solid var(--red); font-size: 0.93rem; font-weight: 500;
}
.compliance-item svg { color: var(--red); flex-shrink: 0; }

/* ── TWO-COL LAYOUT ── */
.two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: start; }
.two-col-wide { display: grid; grid-template-columns: 3fr 2fr; gap: 64px; align-items: start; }

/* ── CONTENT BLOCKS ── */
.content-block h2 { color: var(--navy); margin-bottom: 16px; }
.content-block p { color: var(--muted); margin-bottom: 16px; }
.check-list { display: flex; flex-direction: column; gap: 10px; margin: 20px 0; }
.check-list li { display: flex; gap: 10px; align-items: flex-start; font-size: 0.95rem; }
.check-list li svg { color: var(--red); flex-shrink: 0; margin-top: 3px; }

/* ── SIDEBAR CARD ── */
.sidebar-card {
  background: var(--navy); color: white; border-radius: 8px;
  padding: 36px; position: sticky; top: 100px;
}
.sidebar-card h3 { color: white; margin-bottom: 12px; }
.sidebar-card p { color: rgba(255,255,255,0.75); font-size: 0.93rem; margin-bottom: 20px; }
.sidebar-phone {
  font-family: var(--font-display); font-size: 1.8rem; font-weight: 800;
  color: var(--red); display: block; margin-bottom: 16px;
}
.sidebar-hours { font-size: 0.85rem; color: rgba(255,255,255,0.55); margin-top: 16px; }
.sidebar-hours li { padding: 6px 0; border-bottom: 1px solid rgba(255,255,255,0.08); display: flex; justify-content: space-between; }

/* ── ABOUT PAGE ── */
.values-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
.value-card {
  background: var(--light); border-radius: 6px; padding: 28px;
  border-top: 4px solid var(--red);
}
.value-card h3 { color: var(--navy); margin-bottom: 8px; }
.value-card p { color: var(--muted); font-size: 0.93rem; margin: 0; }

/* ── CONTACT PAGE ── */
.contact-form { background: var(--white); border: 1px solid var(--mid); border-radius: 8px; padding: 40px; }
.form-group { margin-bottom: 20px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
label { display: block; font-size: 0.88rem; font-weight: 600; color: var(--navy); margin-bottom: 6px; }
input, select, textarea {
  width: 100%; padding: 12px 16px; border: 1.5px solid var(--mid);
  border-radius: var(--radius); font-family: var(--font-body); font-size: 0.95rem;
  color: var(--text); background: var(--white); transition: border-color var(--transition);
}
input:focus, select:focus, textarea:focus { outline: none; border-color: var(--red); }
textarea { resize: vertical; min-height: 120px; }
.info-card {
  background: var(--navy); color: white; border-radius: 8px; padding: 36px; margin-bottom: 24px;
}
.info-card h3 { color: white; margin-bottom: 20px; font-size: 1.1rem; }
.info-item { display: flex; gap: 12px; margin-bottom: 16px; align-items: flex-start; }
.info-item svg { color: var(--red); flex-shrink: 0; margin-top: 2px; }
.info-item div { font-size: 0.9rem; }
.info-item strong { display: block; color: white; margin-bottom: 2px; }
.info-item span { color: rgba(255,255,255,0.6); }
.hours-table { width: 100%; font-size: 0.88rem; margin-top: 8px; }
.hours-table td { padding: 5px 0; color: rgba(255,255,255,0.65); }
.hours-table td:last-child { text-align: right; color: white; }

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .trust-bar-inner { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
  .two-col, .two-col-wide { grid-template-columns: 1fr; }
  .sidebar-card { position: static; }
  .values-grid { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
  .nav { display: none; }
  .nav.open { display: flex; flex-direction: column; position: absolute; top: 100%; left: 0; right: 0; background: var(--navy); padding: 16px; z-index: 200; }
  .mobile-toggle { display: block; }
  .site-header { position: relative; }
  .header-inner { flex-wrap: wrap; }
  .services-grid { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .trust-bar-inner { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }
  .hero-actions { flex-direction: column; }
  .form-row { grid-template-columns: 1fr; }
  .hero { padding: 60px 0 48px; }
  .section { padding: 56px 0; }
}
@media (max-width: 480px) {
  .trust-bar-inner { grid-template-columns: 1fr; }
}
