/* Reset & Base */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --blue: #1a3a5c;
  --blue-mid: #1e4d7b;
  --blue-light: #2980b9;
  --gold: #c9940a;
  --gold-light: #e6b000;
  --cream: #fdf8ef;
  --dark: #1c1c1c;
  --gray: #555;
  --light: #f7f7f7;
  --radius: 8px;
}

body {
  font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
  color: var(--dark);
  line-height: 1.6;
}

.container { max-width: 1120px; margin: 0 auto; padding: 0 24px; }
a { color: inherit; }

/* Header */
.header {
  background: var(--blue);
  padding: 14px 0;
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 2px 8px rgba(0,0,0,0.15);
}
.header .container { display: flex; justify-content: space-between; align-items: center; }
.header-nav { display: flex; gap: 4px; align-items: center; }
.header-nav a { color: rgba(255,255,255,0.85); text-decoration: none; font-size: 0.9rem; font-weight: 500; transition: color 0.15s; padding: 6px 10px; border-radius: 6px; }
.header-nav a:hover { color: #fff; background: rgba(255,255,255,0.08); }
.header-nav .dropbtn { cursor: pointer; position: relative; padding-right: 20px; }
.header-nav .dropbtn::after { content: '▾'; position: absolute; right: 4px; top: 50%; transform: translateY(-50%); font-size: 0.75em; opacity: 0.7; }
.header-nav .dropdown { position: relative; }
.header-nav .dropdown-content { display: none; position: absolute; top: 100%; left: 0; background: var(--blue); border-radius: 8px; box-shadow: 0 6px 20px rgba(0,0,0,0.3); min-width: 200px; z-index: 200; overflow: hidden; padding: 6px 0; }
.header-nav .dropdown-content a { display: block; padding: 10px 16px; border-radius: 0; font-size: 0.88rem; color: rgba(255,255,255,0.85); }
.header-nav .dropdown-content a:hover { background: rgba(255,255,255,0.1); color: #fff; }
.header-nav .dropdown:hover .dropdown-content { display: block; }
.logo { color: #fff; font-size: 1.3rem; font-weight: 700; text-decoration: none; }
.logo span { color: var(--gold); font-weight: 400; }
.header-phone { color: var(--gold-light); font-weight: 600; text-decoration: none; font-size: 1.05rem; white-space: nowrap; }

/* Hero */
.hero {
  background: linear-gradient(135deg, var(--blue) 0%, var(--blue-mid) 100%);
  color: #fff;
  padding: 64px 0 48px;
}
.hero-inner { display: flex; align-items: center; gap: 48px; }
.hero-text { flex: 1; }
.hero-image { flex: 1; text-align: center; }
.hero-image img { max-width: 100%; border-radius: var(--radius); box-shadow: 0 8px 30px rgba(0,0,0,0.25); height: auto; }
.hero h1 { font-size: 2.3rem; margin-bottom: 14px; line-height: 1.2; }
.hero-sub { font-size: 1.05rem; opacity: 0.9; margin-bottom: 28px; line-height: 1.6; }
.hero-ctas { display: flex; gap: 14px; flex-wrap: wrap; }

/* Buttons */
.btn {
  display: inline-block; padding: 14px 30px; border-radius: var(--radius);
  font-size: 1rem; font-weight: 600; text-decoration: none; cursor: pointer; border: none;
  transition: transform 0.15s, box-shadow 0.15s;
}
.btn:hover { transform: translateY(-2px); box-shadow: 0 4px 12px rgba(0,0,0,0.2); }
.btn-primary { background: var(--gold); color: #fff; }
.btn-secondary { background: #fff; color: var(--blue); }
.btn-full { width: 100%; text-align: center; }

/* Trust Bar */
.trust-bar { background: var(--cream); padding: 20px 0; border-bottom: 1px solid #eee; }
.trust-bar ul { display: flex; justify-content: center; gap: 36px; flex-wrap: wrap; list-style: none; font-weight: 600; font-size: 0.95rem; }

/* Lead Form Section */
.lead-section { padding: 56px 0; background: var(--light); }
.lead-section .container { display: flex; gap: 48px; align-items: flex-start; }
.lead-left { flex: 1; }
.lead-left h2 { color: var(--blue); font-size: 1.8rem; margin-bottom: 12px; }
.lead-left p { color: var(--gray); margin-bottom: 20px; line-height: 1.7; }
.lead-benefits { list-style: none; }
.lead-benefits li { margin-bottom: 10px; padding-left: 24px; position: relative; }
.lead-benefits li::before { content: '✓'; position: absolute; left: 0; color: var(--gold); font-weight: 700; }
.lead-right { flex: 1; }
.lead-right h3 { color: var(--blue); margin-bottom: 16px; font-size: 1.2rem; }
.form-card { background: #fff; border-radius: var(--radius); padding: 28px; box-shadow: 0 4px 20px rgba(0,0,0,0.08); }
.form-row { display: flex; gap: 12px; }
.form-group { margin-bottom: 14px; flex: 1; }
.form-group label { display: block; margin-bottom: 4px; font-weight: 600; font-size: 0.88rem; }
.form-group input, .form-group select, .form-group textarea {
  width: 100%; padding: 11px; border: 2px solid #ddd; border-radius: var(--radius);
  font-size: 1rem; font-family: inherit;
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
  outline: none; border-color: var(--blue-light);
}
.form-note { font-size: 0.78rem; color: var(--gray); margin-top: 8px; text-align: center; }

/* Services */
.services { padding: 64px 0; }
.services h2 { text-align: center; margin-bottom: 40px; font-size: 1.8rem; color: var(--blue); }
.services-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 24px; }
.service-card { background: var(--light); border-radius: var(--radius); padding: 28px; border-left: 4px solid var(--gold); }
.service-card h3 { margin-bottom: 10px; color: var(--blue); }
.service-img { width: 100%; border-radius: var(--radius); margin-bottom: 16px; height: auto; }

/* 3 Steps */
.steps { padding: 64px 0; background: var(--blue); color: #fff; }
.steps h2 { text-align: center; margin-bottom: 48px; font-size: 1.8rem; }
.steps-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 40px; }
.step { text-align: center; }
.step-num { font-size: 3rem; font-weight: 800; color: var(--gold); line-height: 1; margin-bottom: 12px; }
.step h3 { font-size: 1.2rem; margin-bottom: 8px; }
.step p { opacity: 0.85; font-size: 0.95rem; line-height: 1.6; }

/* About */
.about { padding: 64px 0; background: var(--cream); }
.about-inner { display: flex; gap: 40px; align-items: center; }
.about-img { max-width: 360px; border-radius: var(--radius); flex-shrink: 0; height: auto; width: 100%; }
.about h2 { color: var(--blue); margin-bottom: 20px; font-size: 1.8rem; }
.about p { max-width: 660px; margin-bottom: 14px; }

/* Testimonials */
.testimonials { padding: 64px 0; }
.testimonials h2 { text-align: center; color: var(--blue); margin-bottom: 40px; font-size: 1.8rem; }
.testi-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 24px; }
.testi-card { background: var(--light); border-radius: var(--radius); padding: 28px; border-left: 4px solid var(--gold); }
.testi-card blockquote { font-size: 1rem; font-style: italic; line-height: 1.7; margin-bottom: 14px; }
.testi-card cite { font-size: 0.88rem; color: var(--gray); }

/* FAQ */
.faq { padding: 64px 0; background: var(--light); }
.faq h2 { text-align: center; color: var(--blue); margin-bottom: 32px; font-size: 1.8rem; }
.faq details { background: #fff; margin-bottom: 12px; border-radius: var(--radius); padding: 16px 20px; cursor: pointer; border-left: 3px solid var(--blue-light); }
.faq summary { font-weight: 600; color: var(--blue); }
.faq details p { margin-top: 12px; color: var(--gray); line-height: 1.6; }

/* Footer */
.footer { background: var(--dark); color: #aaa; padding: 48px 0 32px; font-size: 0.9rem; }
.footer-links { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; margin-bottom: 32px; }
.footer-links h4 { color: #fff; margin-bottom: 12px; }
.footer-links a { display: block; color: #aaa; text-decoration: none; margin-bottom: 6px; }
.footer-links a:hover { color: var(--gold-light); }
.footer-address { color: #888; font-size: 0.85rem; }

/* Content Pages (area pages, service pages) */
.content { padding: 56px 0; }
.content h2 { color: var(--blue); margin: 28px 0 14px; font-size: 1.5rem; }
.content h2:first-child { margin-top: 0; }
.content p { margin-bottom: 14px; max-width: 740px; }
.hero-sm { padding: 48px 0; }
.benefit-list { margin-bottom: 20px; padding-left: 22px; }
.benefit-list li { margin-bottom: 8px; }
.internal-link { text-align: center; padding: 16px 0; font-size: 0.95rem; }
.internal-link a { color: var(--blue); font-weight: 600; }

/* CTA Banner */
.cta-banner { background: linear-gradient(135deg, var(--blue), var(--blue-mid)); color: #fff; padding: 56px 0; text-align: center; }
.cta-banner h2 { margin-bottom: 12px; }
.cta-banner p { opacity: 0.85; margin-bottom: 20px; }

/* Contact Page */
.contact-page { padding: 56px 0; }
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; }
.contact-info h3 { color: var(--blue); margin: 20px 0 10px; }
.contact-info h3:first-child { margin-top: 0; }
.contact-info p { margin-bottom: 8px; }
.contact-page form { background: var(--cream); border-radius: var(--radius); padding: 32px; }

/* Legal Pages */
.legal { padding: 56px 0; max-width: 740px; margin: 0 auto; }
.legal h1 { color: var(--blue); margin-bottom: 8px; }
.legal h2 { color: var(--blue); margin: 28px 0 12px; font-size: 1.3rem; }
.legal p { margin-bottom: 14px; line-height: 1.7; }
.legal a { color: var(--blue); font-weight: 600; }
.back-link { color: var(--blue); font-weight: 600; text-decoration: none; margin-bottom: 24px; display: inline-block; }

/* Mobile nav */
.hamburger { display: none; cursor: pointer; flex-direction: column; gap: 5px; padding: 6px; background: none; border: none; }
.hamburger span { display: block; width: 24px; height: 2px; background: rgba(255,255,255,0.85); border-radius: 2px; transition: all 0.2s; }
.hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

@media (max-width: 900px) {
  .header .container { flex-wrap: wrap; gap: 10px; }
  .hamburger { display: flex; }
  .header-nav { display: none; flex-direction: column; width: 100%; gap: 2px; padding-top: 10px; border-top: 1px solid rgba(255,255,255,0.15); margin-top: 8px; }
  .header-nav.open { display: flex; }
  .header-nav a, .header-nav .dropbtn { display: block; padding: 10px 14px; border-radius: 6px; }
  .header-nav .dropdown { width: 100%; }
  .header-nav .dropdown-content { position: static; display: none; box-shadow: none; background: rgba(0,0,0,0.15); padding: 4px 0; }
  .header-nav .dropdown.open .dropdown-content { display: block; }
  .header-nav .dropdown-content a { padding: 9px 24px; }
}

/* Mobile */
@media (max-width: 768px) {
  .lead-section .container { flex-direction: column; }
  .contact-grid { grid-template-columns: 1fr; }
  .about-inner { flex-direction: column; }
  .hero-inner { flex-direction: column; text-align: center; }
  .hero-image { order: -1; }
  .hero-image img { max-width: 320px; }
  .form-row { flex-direction: column; gap: 0; }
  .trust-bar ul { gap: 16px; font-size: 0.85rem; }
  .footer-links { grid-template-columns: 1fr; }
}