/* ============================================
   TOLES ACQUISITIONS — styles.css  (Option C: White Modern)
   ============================================ */

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

:root {
  --navy:       #0d1b2a;
  --dark:       #1a2a3a;
  --gold:       #c9a84c;
  --gold-light: #e0c06e;
  --copper:     #c06a2d;
  --white:      #ffffff;
  --off-white:  #f7f6f2;
  --cream:      #faf9f6;
  --gray:       #6b7280;
  --light-gray: #e5e7eb;
  --text:       #1f2937;
  --radius:     12px;
  --shadow:     0 4px 24px rgba(0,0,0,0.08);
}

html { scroll-behavior: smooth; }
body { font-family: 'Inter', sans-serif; color: var(--text); background: var(--white); line-height: 1.6; }
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }

.container { max-width: 1140px; margin: 0 auto; padding: 0 24px; }

/* ── BUTTONS ── */
.btn {
  display: inline-block;
  padding: 14px 28px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 15px;
  cursor: pointer;
  transition: all 0.2s ease;
  border: 2px solid transparent;
  letter-spacing: 0.01em;
}
.btn-primary {
  background: var(--navy);
  color: var(--white);
  border-color: var(--navy);
}
.btn-primary:hover { background: #162840; border-color: #162840; transform: translateY(-1px); }
.btn-outline {
  background: transparent;
  color: var(--navy);
  border-color: var(--navy);
}
.btn-outline:hover { background: var(--navy); color: var(--white); }
.btn-outline-dark {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.6);
}
.btn-outline-dark:hover { background: rgba(255,255,255,0.12); border-color: var(--white); }
.btn-gold {
  background: var(--gold);
  color: var(--navy);
  border-color: var(--gold);
}
.btn-gold:hover { background: var(--gold-light); border-color: var(--gold-light); transform: translateY(-1px); }
.btn-lg { padding: 18px 36px; font-size: 16px; }

/* ── TYPOGRAPHY ── */
.section-eyebrow {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--copper);
  margin-bottom: 10px;
}
.section-title {
  font-size: clamp(28px, 4vw, 40px);
  font-weight: 800;
  color: var(--navy);
  line-height: 1.2;
  margin-bottom: 40px;
}
.center { text-align: center; }

/* ── NAV ── */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: var(--white);
  border-bottom: 1px solid var(--light-gray);
  box-shadow: 0 2px 16px rgba(0,0,0,0.06);
}
.nav-inner {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 24px;
  height: 72px;
  display: flex;
  align-items: center;
  gap: 40px;
}
.nav-logo { flex-shrink: 0; }
.nav-logo img { height: 48px; width: auto; display: block; }
.nav-logo-img { height: 48px; width: auto; }
.logo-text { font-size: 16px; font-weight: 800; color: var(--navy); letter-spacing: 0.08em; }
.logo-accent { color: var(--copper); }
.nav-links {
  display: flex;
  gap: 32px;
  list-style: none;
  margin-left: auto;
}
.nav-links a { font-size: 14px; font-weight: 500; color: var(--gray); transition: color 0.2s; }
.nav-links a:hover { color: var(--navy); }
.nav-cta { margin-left: 16px; padding: 10px 22px; font-size: 14px; }
.nav-toggle { display: none; background: none; border: none; color: var(--navy); font-size: 22px; cursor: pointer; margin-left: auto; }

/* ── HERO ── */
.hero {
  min-height: 100vh;
  background: var(--cream);
  display: flex;
  align-items: center;
  padding-top: 72px;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  top: 0; right: 0;
  width: 50%;
  height: 100%;
  background: url('after2.jpg') center/cover no-repeat;
  opacity: 0.18;
}
.hero-content {
  position: relative;
  z-index: 1;
  max-width: 1140px;
  margin: 0 auto;
  padding: 80px 24px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  width: 100%;
}
.hero-text { }
.hero-eyebrow {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--copper);
  margin-bottom: 16px;
}
.hero-headline {
  font-size: clamp(36px, 5vw, 62px);
  font-weight: 800;
  color: var(--navy);
  line-height: 1.1;
  margin-bottom: 24px;
}
.hero-sub {
  font-size: 17px;
  color: var(--gray);
  max-width: 480px;
  margin-bottom: 40px;
  line-height: 1.7;
}
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 56px; }
.hero-trust {
  display: flex;
  align-items: center;
  gap: 28px;
  flex-wrap: wrap;
}
.trust-item { display: flex; flex-direction: column; }
.trust-num { font-size: 26px; font-weight: 800; color: var(--navy); }
.trust-label { font-size: 12px; color: var(--gray); font-weight: 500; letter-spacing: 0.05em; }
.trust-divider { width: 1px; height: 40px; background: var(--light-gray); }

.hero-image {
  position: relative;
}
.hero-image img {
  width: 100%;
  height: 520px;
  object-fit: cover;
  border-radius: 16px;
  box-shadow: 0 24px 64px rgba(0,0,0,0.14);
}
/* ── BEFORE / AFTER GRID ── */
.ba-grid {
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 10px;
  height: 520px;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 24px 64px rgba(0,0,0,0.14);
}
.ba-photo {
  position: relative;
  overflow: hidden;
}
.ba-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 35%;
}
.ba-label {
  position: absolute;
  top: 12px;
  left: 12px;
  background: rgba(0,0,0,0.65);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 4px;
}
.ba-label-after {
  background: var(--copper);
}

.hero-badge {
  position: absolute;
  bottom: -20px;
  left: -20px;
  background: var(--white);
  border-radius: 12px;
  padding: 16px 20px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.12);
  display: flex;
  align-items: center;
  gap: 12px;
}
.hero-badge-icon { font-size: 28px; }
.hero-badge-text strong { display: block; font-size: 15px; font-weight: 700; color: var(--navy); }
.hero-badge-text span { font-size: 12px; color: var(--gray); }

/* ── FOR SECTION ── */
.for-section { padding: 100px 0; background: var(--white); }
.for-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.for-text .section-title { margin-bottom: 24px; }
.for-list { list-style: none; margin-bottom: 36px; }
.for-list li {
  padding: 12px 0;
  border-bottom: 1px solid var(--light-gray);
  font-size: 16px;
  color: var(--text);
  padding-left: 28px;
  position: relative;
}
.for-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--copper);
  font-weight: 700;
}
.for-image img { border-radius: var(--radius); box-shadow: var(--shadow); width: 100%; height: 480px; object-fit: cover; object-position: center 25%; }

/* ── HOW IT WORKS ── */
.how-section { padding: 100px 0; background: var(--off-white); }
.steps-grid {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-top: 16px;
}
.step {
  flex: 1;
  background: var(--white);
  border-radius: var(--radius);
  padding: 40px 32px;
  box-shadow: var(--shadow);
  border-top: 3px solid var(--copper);
}
.step-num {
  font-size: 48px;
  font-weight: 800;
  color: var(--light-gray);
  line-height: 1;
  margin-bottom: 16px;
}
.step h3 { font-size: 20px; font-weight: 700; color: var(--navy); margin-bottom: 12px; }
.step p { color: var(--gray); font-size: 15px; line-height: 1.7; }
.step-arrow { font-size: 28px; color: var(--copper); margin-top: 60px; flex-shrink: 0; }

/* ── WHY US ── */
.why-section { padding: 100px 0; background: var(--white); }
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.why-card {
  padding: 36px 28px;
  border: 1px solid var(--light-gray);
  border-radius: var(--radius);
  transition: all 0.2s ease;
}
.why-card:hover { border-color: var(--copper); box-shadow: 0 8px 32px rgba(192,106,45,0.12); transform: translateY(-2px); }
.why-icon { font-size: 32px; margin-bottom: 16px; }
.why-card h3 { font-size: 18px; font-weight: 700; color: var(--navy); margin-bottom: 10px; }
.why-card p { color: var(--gray); font-size: 15px; line-height: 1.7; }

/* ── FAQ ── */
.faq-section { padding: 100px 0; background: var(--off-white); }
.faq-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 28px; }
.faq-item { background: var(--white); border-radius: var(--radius); padding: 32px; border: 1px solid var(--light-gray); }
.faq-item h3 { font-size: 17px; font-weight: 700; color: var(--navy); margin-bottom: 12px; }
.faq-item p { font-size: 15px; color: var(--gray); line-height: 1.7; }
@media (max-width: 768px) { .faq-grid { grid-template-columns: 1fr; } }

/* ── COMPARE ── */
.compare-section { padding: 100px 0; background: var(--cream); }
.compare-table { max-width: 800px; margin: 0 auto; border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); }
.compare-header, .compare-row {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
}
.compare-header {
  background: var(--navy);
  color: var(--white);
  font-weight: 700;
  font-size: 14px;
}
.compare-header .compare-col, .compare-header .compare-col-label { padding: 16px 20px; }
.compare-row { border-bottom: 1px solid var(--light-gray); background: var(--white); font-size: 14px; }
.compare-row:last-child { border-bottom: none; }
.compare-row .compare-col, .compare-row .compare-col-label { padding: 14px 20px; }
.compare-col-label { font-weight: 600; color: var(--text); }
.compare-col { color: var(--gray); }
.toles-col { background: rgba(192,106,45,0.08); color: var(--navy) !important; font-weight: 600; }
.compare-header .toles-col { background: rgba(255,255,255,0.1); color: var(--white) !important; }
.check { color: var(--copper); margin-right: 6px; font-weight: 700; }

/* ── SERVICE AREAS ── */
.areas-section { padding: 100px 0; background: var(--white); }
.areas-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-bottom: 32px;
}
.area-card {
  text-align: center;
  padding: 36px 20px;
  border: 1px solid var(--light-gray);
  border-radius: var(--radius);
  transition: all 0.2s;
}
.area-card:hover { border-color: var(--copper); box-shadow: var(--shadow); }
.area-icon { font-size: 28px; margin-bottom: 12px; }
.area-card h3 { font-size: 17px; font-weight: 700; color: var(--navy); margin-bottom: 8px; }
.area-card p { font-size: 13px; color: var(--gray); }
.areas-note { text-align: center; font-size: 15px; color: var(--gray); }
.areas-note a { color: var(--copper); font-weight: 600; }

/* ── CTA ── */
.cta-section { background: var(--navy); padding: 100px 0; }
.cta-inner { text-align: center; }
.cta-inner h2 { font-size: clamp(28px, 4vw, 44px); font-weight: 800; color: var(--white); margin-bottom: 16px; }
.cta-inner > p { font-size: 18px; color: rgba(255,255,255,0.7); margin-bottom: 40px; }
.cta-actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; margin-bottom: 24px; }
.cta-sub { font-size: 14px; color: rgba(255,255,255,0.45); }
.cta-sub a { color: var(--copper); }
.form-wrapper { max-width: 620px; margin: 0 auto; background: #fff; border-radius: 12px; overflow: hidden; }

/* ── FOOTER ── */
.footer { background: #080f18; padding: 64px 0 32px; }
.footer-inner { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 48px; margin-bottom: 48px; }
.footer-brand .logo-text { font-size: 18px; display: block; margin-bottom: 16px; }
.footer-brand p { font-size: 14px; color: rgba(255,255,255,0.45); line-height: 1.7; max-width: 280px; }
.footer-logo { height: 52px; width: auto; margin-bottom: 16px; filter: brightness(0) invert(1); opacity: 0.85; }
.footer .logo-text { color: rgba(255,255,255,0.85); }
.footer .logo-accent { color: var(--copper); }
.footer-links h4, .footer-contact h4 { font-size: 12px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--copper); margin-bottom: 20px; }
.footer-links ul { list-style: none; }
.footer-links li { margin-bottom: 10px; }
.footer-links a { font-size: 14px; color: rgba(255,255,255,0.55); transition: color 0.2s; }
.footer-links a:hover { color: var(--white); }
.footer-contact p { font-size: 14px; color: rgba(255,255,255,0.55); margin-bottom: 8px; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.08); padding-top: 24px; text-align: center; }
.footer-bottom p { font-size: 13px; color: rgba(255,255,255,0.3); }

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .hero-content { grid-template-columns: 1fr; gap: 40px; }
  .hero::before { width: 100%; opacity: 0.07; }
  .hero-image { display: none; }
}

@media (max-width: 900px) {
  .for-grid { grid-template-columns: 1fr; gap: 48px; }
  .for-image { order: -1; }
  .for-image img { height: 300px; }
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .areas-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
}

@media (max-width: 768px) {
  .nav-links { display: none; flex-direction: column; position: absolute; top: 72px; left: 0; right: 0; background: var(--white); padding: 24px; gap: 20px; border-top: 1px solid var(--light-gray); box-shadow: 0 8px 24px rgba(0,0,0,0.08); }
  .nav-links.open { display: flex; }
  .nav-cta { display: none; }
  .nav-toggle { display: block; }
  .steps-grid { flex-direction: column; }
  .step-arrow { transform: rotate(90deg); margin: 0 auto; }
  .compare-header, .compare-row { grid-template-columns: 1fr 1fr; }
  .compare-col-label { display: none; }
  .compare-header .compare-col:first-of-type { grid-column: 1; }
  .why-grid { grid-template-columns: 1fr; }
  .hero-actions { flex-direction: column; align-items: flex-start; }
  .hero-trust { gap: 20px; }
}

@media (max-width: 480px) {
  .areas-grid { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; }
  .cta-actions { flex-direction: column; align-items: center; }
  .trust-divider { display: none; }
}
