/* ── RESET & BASE ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --black: #0a0a0a;
  --dark: #111827;
  --dark2: #1f2937;
  --gray: #374151;
  --gray-light: #f3f4f6;
  --white: #ffffff;
  --red: #dc2626;
  --red-dark: #b91c1c;
  --red-light: #fee2e2;
  --yellow: #f59e0b;
  --text: #1f2937;
  --text-light: #6b7280;
  --border: #e5e7eb;
  --radius: 12px;
  --shadow: 0 4px 24px rgba(0,0,0,0.08);
  --shadow-lg: 0 20px 60px rgba(0,0,0,0.15);
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  color: var(--text);
  background: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
}

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

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

/* ── BUTTONS ── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 24px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 15px;
  cursor: pointer;
  transition: all 0.2s;
  border: 2px solid transparent;
  white-space: nowrap;
}
.btn-primary {
  background: var(--red);
  color: var(--white);
  border-color: var(--red);
}
.btn-primary:hover { background: var(--red-dark); border-color: var(--red-dark); transform: translateY(-1px); }
.btn-outline {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.6);
}
.btn-outline:hover { background: rgba(255,255,255,0.1); border-color: var(--white); }
.btn-lg { padding: 16px 32px; font-size: 16px; border-radius: 10px; }
.btn-full { width: 100%; }

/* ── HEADER ── */
#header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(10,10,10,0.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255,255,255,0.08);
  transition: all 0.3s;
}
#header.scrolled {
  background: var(--black);
  box-shadow: 0 4px 20px rgba(0,0,0,0.3);
}
.header-inner {
  display: flex;
  align-items: center;
  gap: 24px;
  padding-top: 14px;
  padding-bottom: 14px;
}
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}
.logo-icon { font-size: 28px; }
.logo-main {
  display: block;
  font-size: 18px;
  font-weight: 800;
  color: var(--white);
  line-height: 1.2;
}
.logo-sub {
  display: block;
  font-size: 11px;
  color: rgba(255,255,255,0.5);
  font-weight: 500;
}
.desktop-nav {
  display: flex;
  gap: 4px;
  margin-left: auto;
}
.desktop-nav a {
  color: rgba(255,255,255,0.75);
  font-size: 14px;
  font-weight: 500;
  padding: 8px 14px;
  border-radius: 6px;
  transition: all 0.2s;
}
.desktop-nav a:hover { color: var(--white); background: rgba(255,255,255,0.08); }
.header-cta { display: flex; gap: 10px; }
.header-cta .btn-outline { font-size: 14px; padding: 10px 18px; }
.header-cta .btn-primary { font-size: 14px; padding: 10px 18px; }

.mobile-menu-btn {
  display: none;
  background: none;
  border: none;
  color: var(--white);
  font-size: 24px;
  cursor: pointer;
  margin-left: auto;
  padding: 4px 8px;
}
.mobile-nav {
  display: none;
  flex-direction: column;
  padding: 12px 24px 20px;
  border-top: 1px solid rgba(255,255,255,0.08);
}
.mobile-nav a {
  color: rgba(255,255,255,0.8);
  padding: 12px 0;
  font-weight: 500;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  transition: color 0.2s;
}
.mobile-nav a:hover { color: var(--white); }
.mobile-nav.open { display: flex; }

/* ── HERO ── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: var(--black);
  overflow: hidden;
  padding-top: 80px;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, rgba(220,38,38,0.15) 0%, transparent 50%),
    linear-gradient(to bottom, rgba(0,0,0,0.3) 0%, rgba(0,0,0,0.7) 100%),
    url('https://images.unsplash.com/photo-1558618666-fcd25c85cd64?w=1600&auto=format&fit=crop&q=80') center/cover no-repeat;
}
.hero-content {
  position: relative;
  z-index: 1;
  padding: 80px 0;
  max-width: 760px;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(220,38,38,0.15);
  border: 1px solid rgba(220,38,38,0.4);
  color: #fca5a5;
  font-size: 13px;
  font-weight: 600;
  padding: 8px 16px;
  border-radius: 100px;
  margin-bottom: 24px;
  letter-spacing: 0.3px;
}
.hero h1 {
  font-size: clamp(36px, 6vw, 68px);
  font-weight: 900;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 20px;
  letter-spacing: -1px;
}
.hero h1 .highlight { color: var(--red); }
.hero-sub {
  font-size: clamp(16px, 2vw, 20px);
  color: rgba(255,255,255,0.7);
  max-width: 600px;
  margin-bottom: 36px;
  line-height: 1.7;
}
.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 60px;
}
.hero-stats {
  display: flex;
  align-items: center;
  gap: 32px;
  flex-wrap: wrap;
}
.stat { text-align: center; }
.stat-num {
  display: block;
  font-size: 28px;
  font-weight: 800;
  color: var(--white);
  line-height: 1;
}
.stat-label {
  font-size: 12px;
  color: rgba(255,255,255,0.5);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-top: 4px;
}
.stat-divider {
  width: 1px;
  height: 40px;
  background: rgba(255,255,255,0.15);
}

/* ── TRUST BAR ── */
.trust-bar {
  background: var(--red);
  padding: 14px 0;
}
.trust-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 32px;
  flex-wrap: wrap;
}
.trust-item {
  color: var(--white);
  font-size: 14px;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 6px;
}

/* ── SECTIONS ── */
.section { padding: 96px 0; }
.section-dark {
  background: var(--dark);
  color: var(--white);
}
.section-gray { background: var(--gray-light); }

.section-header {
  text-align: center;
  margin-bottom: 56px;
}
.section-tag {
  display: inline-block;
  background: var(--red-light);
  color: var(--red-dark);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 6px 14px;
  border-radius: 100px;
  margin-bottom: 14px;
}
.section-tag.light {
  background: rgba(255,255,255,0.1);
  color: rgba(255,255,255,0.8);
}
.section-header h2 {
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 800;
  margin-bottom: 14px;
  letter-spacing: -0.5px;
}
.section-header p {
  font-size: 18px;
  color: var(--text-light);
  max-width: 560px;
  margin: 0 auto;
}
.section-dark .section-header p { color: rgba(255,255,255,0.6); }

/* ── SERVICES GRID ── */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 20px;
}
.service-card {
  background: var(--white);
  border: 2px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
  transition: all 0.25s;
}
.service-card:hover {
  border-color: var(--red);
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}
.service-card.featured {
  border-color: var(--red);
  background: linear-gradient(135deg, #fff5f5 0%, #fff 100%);
}
.service-icon { font-size: 36px; margin-bottom: 14px; }
.service-card h3 { font-size: 18px; font-weight: 700; margin-bottom: 8px; }
.service-card p { color: var(--text-light); font-size: 14px; line-height: 1.6; margin-bottom: 16px; }
.service-link { color: var(--red); font-weight: 600; font-size: 14px; }
.service-link:hover { text-decoration: underline; }

/* ── INSURANCE ── */
.insurance-inner {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 64px;
  align-items: center;
}
.insurance-text h2 {
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 800;
  color: var(--white);
  margin-bottom: 16px;
  margin-top: 12px;
}
.insurance-text > p {
  color: rgba(255,255,255,0.7);
  font-size: 17px;
  line-height: 1.7;
  margin-bottom: 24px;
}
.insurance-list {
  list-style: none;
  margin-bottom: 32px;
}
.insurance-list li {
  color: rgba(255,255,255,0.85);
  padding: 8px 0;
  font-size: 16px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.insurance-note {
  font-size: 12px;
  color: rgba(255,255,255,0.4);
  margin-bottom: 28px;
  font-style: italic;
}
.insurance-card-inner {
  background: var(--white);
  border-radius: 16px;
  padding: 36px;
  text-align: center;
}
.insurance-icon { font-size: 48px; margin-bottom: 16px; }
.insurance-card-inner h3 { font-size: 22px; font-weight: 800; margin-bottom: 12px; color: var(--dark); }
.insurance-card-inner p { color: var(--text-light); font-size: 15px; line-height: 1.7; margin-bottom: 12px; }

/* ── ABOUT ── */
.about-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}
.about-image { position: relative; }
.about-img-placeholder {
  background: linear-gradient(135deg, var(--dark) 0%, var(--dark2) 100%);
  border-radius: 20px;
  height: 420px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 18px;
  font-weight: 600;
  gap: 8px;
}
.about-img-placeholder span { font-size: 64px; }
.about-badge-float {
  position: absolute;
  bottom: -20px;
  right: -20px;
  background: var(--red);
  color: var(--white);
  border-radius: 14px;
  padding: 16px 22px;
  text-align: center;
  box-shadow: var(--shadow-lg);
}
.about-badge-float .big { display: block; font-size: 28px; font-weight: 900; }
.about-badge-float span:last-child { font-size: 12px; opacity: 0.85; }

.about-text { padding-left: 20px; }
.about-text h2 { font-size: clamp(26px, 3vw, 40px); font-weight: 800; margin-bottom: 16px; margin-top: 12px; }
.about-text > p { color: var(--text-light); font-size: 16px; line-height: 1.75; margin-bottom: 16px; }

.about-highlights { display: flex; flex-direction: column; gap: 16px; margin: 28px 0; }
.highlight-item { display: flex; align-items: flex-start; gap: 14px; }
.h-icon { font-size: 22px; flex-shrink: 0; }
.highlight-item strong { display: block; font-size: 15px; font-weight: 700; margin-bottom: 2px; }
.highlight-item p { color: var(--text-light); font-size: 14px; margin: 0; }

.service-areas {
  background: var(--gray-light);
  border-radius: 10px;
  padding: 14px 18px;
  font-size: 14px;
  color: var(--text-light);
}
.service-areas strong { color: var(--text); }

/* ── REVIEWS ── */
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 20px;
}
.review-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
}
.review-card.review-cta {
  background: var(--dark);
  color: var(--white);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.review-card.review-cta p { color: rgba(255,255,255,0.7); }
.review-card.review-cta .btn-outline { border-color: rgba(255,255,255,0.4); color: var(--white); }
.review-stars { font-size: 18px; margin-bottom: 12px; }
.review-card > p { color: var(--text-light); font-size: 15px; line-height: 1.7; margin-bottom: 20px; font-style: italic; }
.reviewer { display: flex; align-items: center; gap: 12px; margin-top: auto; }
.reviewer-avatar {
  width: 40px; height: 40px;
  background: var(--red);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 16px;
  flex-shrink: 0;
}
.reviewer strong { display: block; font-size: 14px; }
.reviewer span { font-size: 12px; color: var(--text-light); }

/* ── CONTACT ── */
.contact-inner {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 56px;
  align-items: start;
}
.contact-info h3, .contact-form-wrap h3 {
  font-size: 22px; font-weight: 700; margin-bottom: 24px;
}
.contact-items { display: flex; flex-direction: column; gap: 4px; margin-bottom: 24px; }
.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 14px;
  border-radius: 10px;
  transition: background 0.2s;
}
a.contact-item:hover { background: var(--gray-light); }
.c-icon { font-size: 22px; flex-shrink: 0; }
.contact-item strong { display: block; font-size: 13px; font-weight: 600; color: var(--text-light); text-transform: uppercase; letter-spacing: 0.5px; }
.contact-item span { font-size: 15px; font-weight: 600; color: var(--text); }

.contact-social { display: flex; gap: 10px; margin-bottom: 20px; }
.social-btn {
  padding: 10px 18px;
  background: var(--gray-light);
  border-radius: 8px;
  font-size: 14px;
  font-weight: 600;
  color: var(--text);
  transition: all 0.2s;
}
.social-btn:hover { background: var(--dark); color: var(--white); }

.license-box {
  background: var(--gray-light);
  border-radius: 10px;
  padding: 16px;
  font-size: 13px;
}
.license-box strong { display: block; margin-bottom: 4px; font-size: 14px; }
.license-box p { color: var(--text-light); margin: 0; }

/* ── FORM ── */
.contact-form-wrap {
  background: var(--white);
  border: 2px solid var(--border);
  border-radius: 16px;
  padding: 36px;
  box-shadow: var(--shadow);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.form-group { margin-bottom: 16px; }
.form-group label { display: block; font-size: 13px; font-weight: 600; color: var(--text); margin-bottom: 6px; }
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 14px;
  border: 2px solid var(--border);
  border-radius: 8px;
  font-size: 15px;
  font-family: inherit;
  color: var(--text);
  background: var(--white);
  transition: border-color 0.2s;
  outline: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-color: var(--red); }
.form-group textarea { resize: vertical; }
.form-note { font-size: 12px; color: var(--text-light); text-align: center; margin-top: 10px; }

.form-success {
  text-align: center;
  padding: 32px;
}
.success-icon { font-size: 48px; margin-bottom: 14px; }
.form-success h3 { font-size: 22px; font-weight: 700; margin-bottom: 10px; }
.form-success p { color: var(--text-light); }
.form-success a { color: var(--red); font-weight: 600; }

/* ── FOOTER ── */
.footer {
  background: var(--black);
  padding: 56px 0 24px;
}
.footer-inner {
  display: flex;
  gap: 48px;
  align-items: flex-start;
  justify-content: space-between;
  padding-bottom: 32px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  flex-wrap: wrap;
}
.footer-brand { display: flex; align-items: center; gap: 10px; }
.footer-name { font-size: 16px; font-weight: 700; color: var(--white); }
.footer-sub { font-size: 12px; color: rgba(255,255,255,0.4); }
.footer-links { display: flex; gap: 20px; flex-wrap: wrap; }
.footer-links a { color: rgba(255,255,255,0.55); font-size: 14px; font-weight: 500; transition: color 0.2s; }
.footer-links a:hover { color: var(--white); }
.footer-contact { display: flex; flex-direction: column; gap: 6px; }
.footer-contact a { color: rgba(255,255,255,0.8); font-size: 15px; font-weight: 600; }
.footer-contact a:hover { color: var(--white); }
.footer-contact span { color: rgba(255,255,255,0.4); font-size: 13px; }
.footer-bottom { display: flex; justify-content: space-between; padding-top: 20px; flex-wrap: wrap; gap: 8px; }
.footer-bottom p { color: rgba(255,255,255,0.3); font-size: 13px; }

/* ── FLOATING CALL BUTTON ── */
.float-call {
  display: none;
  position: fixed;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--red);
  color: var(--white);
  padding: 14px 32px;
  border-radius: 100px;
  font-weight: 700;
  font-size: 15px;
  box-shadow: 0 8px 24px rgba(220,38,38,0.4);
  z-index: 50;
  white-space: nowrap;
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%, 100% { box-shadow: 0 8px 24px rgba(220,38,38,0.4); }
  50% { box-shadow: 0 8px 32px rgba(220,38,38,0.7); }
}

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .insurance-inner { grid-template-columns: 1fr; }
  .insurance-card { display: none; }
  .about-inner { grid-template-columns: 1fr; gap: 48px; }
  .about-image { display: none; }
  .about-text { padding-left: 0; }
  .contact-inner { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .desktop-nav { display: none; }
  .header-cta { display: none; }
  .mobile-menu-btn { display: block; }
  .section { padding: 64px 0; }
  .hero { min-height: auto; padding-top: 70px; }
  .hero-content { padding: 60px 0; }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { width: 100%; }
  .hero-stats { gap: 20px; }
  .stat-divider { display: none; }
  .trust-inner { gap: 16px; justify-content: flex-start; overflow-x: auto; }
  .services-grid { grid-template-columns: 1fr; }
  .reviews-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .contact-form-wrap { padding: 24px; }
  .footer-inner { flex-direction: column; gap: 24px; }
  .footer-bottom { flex-direction: column; }
  .float-call { display: flex; }
}

@media (max-width: 480px) {
  .container { padding: 0 16px; }
  .hero h1 { font-size: 32px; }
}
