/* ============================================================
   StormCrest Roofing — Brandon FL
   Design System & Global Styles
   ============================================================ */

/* --- CSS Variables --- */
:root {
  --primary: #1a2744;
  --primary-dark: #0f1929;
  --primary-light: #243560;
  --secondary: #4a5568;
  --accent: #f59e0b;
  --accent-dark: #d97706;
  --accent-light: #fbbf24;
  --emergency: #dc2626;
  --emergency-dark: #b91c1c;
  --success: #10b981;
  --text: #1f2937;
  --text-light: #6b7280;
  --text-muted: #9ca3af;
  --bg: #f8fafc;
  --bg-white: #ffffff;
  --bg-dark: #0f1929;
  --border: #e2e8f0;
  --border-light: #f1f5f9;
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.1);
  --shadow-md: 0 4px 12px rgba(0,0,0,0.12);
  --shadow-lg: 0 10px 30px rgba(0,0,0,0.15);
  --radius: 8px;
  --radius-lg: 12px;
  --radius-xl: 20px;
  --transition: 0.25s ease;
  --container: 1200px;
  --font: 'Georgia', 'Times New Roman', serif;
  --font-sans: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

/* --- Reset --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-sans);
  color: var(--text);
  background: var(--bg-white);
  line-height: 1.7;
  font-size: 16px;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--primary); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--accent-dark); }
ul, ol { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

/* --- Typography --- */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-sans);
  font-weight: 700;
  line-height: 1.25;
  color: var(--primary);
}
h1 { font-size: clamp(1.75rem, 4vw, 2.75rem); }
h2 { font-size: clamp(1.4rem, 3vw, 2.1rem); }
h3 { font-size: clamp(1.1rem, 2vw, 1.4rem); }
h4 { font-size: 1.1rem; }
p { margin-bottom: 1rem; }
p:last-child { margin-bottom: 0; }
strong { font-weight: 700; }

/* --- Layout --- */
.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 1.5rem;
}
.section { padding: 4rem 0; }
.section-lg { padding: 5.5rem 0; }
.section-sm { padding: 2.5rem 0; }
.section-dark {
  background: var(--primary);
  color: #fff;
}
.section-dark h1, .section-dark h2, .section-dark h3, .section-dark h4 { color: #fff; }
.section-gray { background: var(--bg); }
.section-navy { background: var(--primary-dark); color: #fff; }
.section-navy h2, .section-navy h3 { color: #fff; }
.text-center { text-align: center; }
.text-white { color: #fff !important; }
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.75rem; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; }
.flex { display: flex; }
.flex-center { display: flex; align-items: center; justify-content: center; }
.flex-between { display: flex; align-items: center; justify-content: space-between; }
.gap-1 { gap: 1rem; }
.gap-2 { gap: 2rem; }
.mt-1 { margin-top: 1rem; }
.mt-2 { margin-top: 2rem; }
.mb-1 { margin-bottom: 1rem; }
.mb-2 { margin-bottom: 2rem; }

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.875rem 1.75rem;
  border-radius: var(--radius);
  font-weight: 700;
  font-size: 1rem;
  text-decoration: none;
  transition: all var(--transition);
  white-space: nowrap;
}
.btn-primary {
  background: var(--accent);
  color: var(--primary-dark);
  border: 2px solid var(--accent);
}
.btn-primary:hover {
  background: var(--accent-dark);
  border-color: var(--accent-dark);
  color: var(--primary-dark);
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
}
.btn-outline {
  background: transparent;
  color: #fff;
  border: 2px solid rgba(255,255,255,0.6);
}
.btn-outline:hover {
  background: rgba(255,255,255,0.1);
  border-color: #fff;
  color: #fff;
}
.btn-emergency {
  background: var(--emergency);
  color: #fff;
  border: 2px solid var(--emergency);
}
.btn-emergency:hover {
  background: var(--emergency-dark);
  border-color: var(--emergency-dark);
  color: #fff;
}
.btn-lg {
  padding: 1.1rem 2.25rem;
  font-size: 1.1rem;
}
.btn-sm {
  padding: 0.6rem 1.25rem;
  font-size: 0.9rem;
}
.cta-group {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  align-items: center;
  margin-top: 1.75rem;
}

/* ============================================================
   NAVIGATION
   ============================================================ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--primary);
  box-shadow: 0 2px 12px rgba(0,0,0,0.2);
}
.header-top {
  background: var(--primary-dark);
  padding: 0.4rem 0;
  font-size: 0.875rem;
}
.header-top .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.header-top a { color: rgba(255,255,255,0.85); font-size: 0.875rem; }
.header-top a:hover { color: var(--accent); }
.license-bar {
  color: rgba(255,255,255,0.6);
  font-size: 0.8rem;
}
.header-main {
  padding: 0.75rem 0;
}
.header-main .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}
.logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
  flex-shrink: 0;
}
.logo-icon {
  width: 48px;
  height: 48px;
  background: var(--accent);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
}
.logo-text {
  line-height: 1.2;
}
.logo-name {
  display: block;
  font-size: 1.25rem;
  font-weight: 800;
  color: #fff;
  letter-spacing: -0.02em;
}
.logo-tagline {
  display: block;
  font-size: 0.75rem;
  color: var(--accent);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.main-nav {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}
.main-nav a {
  color: rgba(255,255,255,0.85);
  font-weight: 600;
  font-size: 0.9rem;
  padding: 0.5rem 0.75rem;
  border-radius: var(--radius);
  transition: all var(--transition);
  white-space: nowrap;
}
.main-nav a:hover, .main-nav a.active {
  color: var(--accent);
  background: rgba(255,255,255,0.08);
}
.nav-dropdown {
  position: relative;
}
.nav-dropdown > a::after {
  content: ' ▾';
  font-size: 0.75rem;
  opacity: 0.7;
}
.dropdown-menu {
  position: absolute;
  top: calc(100% + 4px);
  left: 0;
  background: var(--primary-dark);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius);
  min-width: 240px;
  box-shadow: var(--shadow-lg);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-6px);
  transition: all var(--transition);
  z-index: 100;
}
.nav-dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.dropdown-menu a {
  display: block;
  padding: 0.65rem 1rem;
  font-size: 0.875rem;
  border-radius: 0;
  color: rgba(255,255,255,0.8) !important;
}
.dropdown-menu a:first-child { border-radius: var(--radius) var(--radius) 0 0; }
.dropdown-menu a:last-child { border-radius: 0 0 var(--radius) var(--radius); }
.dropdown-menu a:hover {
  background: rgba(255,255,255,0.08) !important;
  color: var(--accent) !important;
}
.header-cta .btn { padding: 0.65rem 1.25rem; font-size: 0.875rem; }
.mobile-toggle {
  display: none;
  color: #fff;
  font-size: 1.5rem;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.25rem;
}

/* ============================================================
   HERO SECTION
   ============================================================ */
.hero {
  background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 50%, var(--primary-light) 100%);
  position: relative;
  overflow: hidden;
  padding: 5rem 0 4.5rem;
  color: #fff;
}
.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-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 4rem;
  align-items: center;
}
.hero-content { max-width: 720px; }
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(245,158,11,0.15);
  border: 1px solid rgba(245,158,11,0.4);
  color: var(--accent-light);
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 0.4rem 0.9rem;
  border-radius: 100px;
  margin-bottom: 1.25rem;
}
.hero h1 {
  color: #fff;
  font-size: clamp(2rem, 4.5vw, 3rem);
  line-height: 1.15;
  margin-bottom: 1.25rem;
  font-weight: 800;
}
.hero h1 span { color: var(--accent-light); }
.hero-sub {
  color: rgba(255,255,255,0.85);
  font-size: 1.05rem;
  line-height: 1.75;
  margin-bottom: 0;
}
.hero-sub p { margin-bottom: 0.85rem; }
.hero-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius-lg);
  padding: 2rem;
  min-width: 280px;
  flex-shrink: 0;
}
.hero-card-title {
  color: var(--accent-light);
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 1rem;
}
.hero-credentials {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}
.cred-item {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  color: rgba(255,255,255,0.9);
  font-size: 0.9rem;
}
.cred-dot {
  width: 8px;
  height: 8px;
  background: var(--accent);
  border-radius: 50%;
  flex-shrink: 0;
}
.hero-emergency {
  margin-top: 1.5rem;
  padding-top: 1.25rem;
  border-top: 1px solid rgba(255,255,255,0.12);
}
.emergency-label {
  color: var(--accent-light);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 700;
  margin-bottom: 0.35rem;
}
.emergency-phone {
  font-size: 1.3rem;
  font-weight: 800;
  color: #fff;
}

/* ============================================================
   TRUST BAR
   ============================================================ */
.trust-bar {
  background: var(--primary-dark);
  padding: 1.25rem 0;
  border-bottom: 3px solid var(--accent);
}
.trust-bar-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0;
}
.trust-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.2rem;
  padding: 0.5rem 2rem;
  border-right: 1px solid rgba(255,255,255,0.12);
  text-align: center;
}
.trust-item:last-child { border-right: none; }
.trust-value {
  font-size: 1rem;
  font-weight: 800;
  color: var(--accent-light);
  line-height: 1.2;
  white-space: nowrap;
}
.trust-label {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.65);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  white-space: nowrap;
}
.trust-sub {
  background: rgba(0,0,0,0.2);
  text-align: center;
  padding: 0.6rem 1rem;
  font-size: 0.775rem;
  color: rgba(255,255,255,0.55);
  letter-spacing: 0.05em;
}

/* ============================================================
   SECTION HEADERS
   ============================================================ */
.section-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 3rem;
}
.section-label {
  display: inline-block;
  color: var(--accent-dark);
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-bottom: 0.75rem;
}
.section-header h2 {
  margin-bottom: 0.75rem;
}
.section-header p {
  color: var(--text-light);
  font-size: 1.05rem;
  margin: 0;
}

/* ============================================================
   SERVICE CARDS
   ============================================================ */
.service-card {
  background: var(--bg-white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  transition: all var(--transition);
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.service-card:hover {
  box-shadow: var(--shadow-lg);
  border-color: var(--accent);
  transform: translateY(-3px);
}
.service-icon {
  width: 52px;
  height: 52px;
  background: rgba(26, 39, 68, 0.06);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
}
.service-card h3 {
  font-size: 1.1rem;
  color: var(--primary);
}
.service-card p {
  color: var(--text-light);
  font-size: 0.925rem;
  flex: 1;
}
.service-card a {
  color: var(--accent-dark);
  font-weight: 700;
  font-size: 0.875rem;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
}
.service-card a:hover { gap: 0.6rem; }
.service-card-link {
  text-decoration: none;
  color: inherit;
  display: block;
}

/* Service detail cards (for service pages) */
.service-detail-card {
  background: var(--bg-white);
  border: 1px solid var(--border);
  border-left: 4px solid var(--accent);
  border-radius: 0 var(--radius) var(--radius) 0;
  padding: 1.5rem 1.75rem;
  margin-bottom: 1.5rem;
}
.service-detail-card h3 {
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
}
.service-detail-card p { color: var(--text-light); font-size: 0.925rem; }
.service-detail-card a { color: var(--accent-dark); font-weight: 700; }

/* ============================================================
   COMMUNITY CARDS
   ============================================================ */
.community-card {
  background: var(--bg-white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  transition: all var(--transition);
}
.community-card:hover {
  box-shadow: var(--shadow-md);
  border-color: var(--primary-light);
  transform: translateY(-2px);
}
.community-card h3 { font-size: 1.05rem; margin-bottom: 0.4rem; }
.community-card .zip-badge {
  display: inline-block;
  background: var(--bg);
  border: 1px solid var(--border);
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--text-light);
  padding: 0.2rem 0.6rem;
  border-radius: 100px;
  margin-bottom: 0.75rem;
}
.community-card p { font-size: 0.875rem; color: var(--text-light); margin-bottom: 0.75rem; }
.community-card a { color: var(--accent-dark); font-weight: 700; font-size: 0.875rem; }

/* ============================================================
   PROCESS STEPS
   ============================================================ */
.process-steps { display: flex; flex-direction: column; gap: 1.25rem; }
.process-step {
  display: flex;
  gap: 1.25rem;
  align-items: flex-start;
  background: var(--bg-white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.25rem 1.5rem;
}
.step-num {
  width: 40px;
  height: 40px;
  background: var(--primary);
  color: #fff;
  font-weight: 800;
  font-size: 1rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.step-content h4 { color: var(--primary); margin-bottom: 0.35rem; font-size: 1rem; }
.step-content p { color: var(--text-light); font-size: 0.9rem; margin: 0; }

/* ============================================================
   WARNING SIGNS LIST
   ============================================================ */
.signs-list { display: flex; flex-direction: column; gap: 1.25rem; }
.sign-item {
  display: flex;
  gap: 1rem;
  padding: 1.25rem 1.5rem;
  background: var(--bg-white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  border-left: 4px solid var(--emergency);
}
.sign-icon {
  font-size: 1.5rem;
  flex-shrink: 0;
  line-height: 1;
  margin-top: 0.1rem;
}
.sign-content h4 { color: var(--primary); margin-bottom: 0.4rem; }
.sign-content p { color: var(--text-light); font-size: 0.9rem; margin: 0; }

/* ============================================================
   BENEFIT CARDS (Why Choose)
   ============================================================ */
.benefit-cards { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; }
.benefit-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
}
.benefit-card h4 { color: var(--accent-light); margin-bottom: 0.65rem; font-size: 1rem; }
.benefit-card p { color: rgba(255,255,255,0.8); font-size: 0.9rem; margin: 0; }

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.testimonial-card {
  background: var(--bg-white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.testimonial-stars { color: #f59e0b; font-size: 1.1rem; letter-spacing: 2px; }
.testimonial-text {
  color: var(--text);
  font-size: 0.95rem;
  line-height: 1.7;
  font-style: italic;
  flex: 1;
}
.testimonial-author { font-weight: 700; color: var(--primary); font-size: 0.875rem; }
.testimonial-location { color: var(--text-muted); font-size: 0.8rem; }
.verified-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  font-size: 0.75rem;
  color: var(--success);
  font-weight: 600;
  margin-top: 0.25rem;
}

/* ============================================================
   FAQ ACCORDION
   ============================================================ */
.faq-list { display: flex; flex-direction: column; gap: 0.75rem; }
.faq-item {
  background: var(--bg-white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
}
.faq-question {
  width: 100%;
  text-align: left;
  padding: 1.1rem 1.5rem;
  font-size: 0.975rem;
  font-weight: 700;
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  background: none;
  cursor: pointer;
  transition: background var(--transition);
  font-family: var(--font-sans);
}
.faq-question:hover { background: var(--bg); }
.faq-question.active { background: var(--bg); color: var(--accent-dark); }
.faq-icon {
  width: 22px;
  height: 22px;
  border: 2px solid currentColor;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  flex-shrink: 0;
  transition: transform var(--transition);
}
.faq-question.active .faq-icon { transform: rotate(45deg); }
.faq-answer {
  display: none;
  padding: 0 1.5rem 1.25rem;
  color: var(--text-light);
  font-size: 0.925rem;
  line-height: 1.75;
}
.faq-answer.open { display: block; }

/* ============================================================
   AREAS SERVED SECTION
   ============================================================ */
.areas-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 1rem;
}
.area-item {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  padding: 0.75rem 1rem;
  background: var(--bg-white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--primary);
  text-decoration: none;
  transition: all var(--transition);
}
.area-item:hover {
  border-color: var(--accent);
  color: var(--accent-dark);
  box-shadow: var(--shadow-sm);
}
.area-item::before {
  content: '📍';
  font-size: 1rem;
}

/* ============================================================
   CTA SECTIONS
   ============================================================ */
.cta-section {
  background: linear-gradient(135deg, var(--primary-dark), var(--primary));
  padding: 4.5rem 0;
  color: #fff;
  text-align: center;
}
.cta-section h2 { color: #fff; margin-bottom: 1rem; }
.cta-section p { color: rgba(255,255,255,0.8); max-width: 640px; margin: 0 auto 0.75rem; font-size: 1.05rem; }
.cta-section .cta-group { justify-content: center; }
.cta-divider { color: rgba(255,255,255,0.4); font-weight: 700; }
.cta-bold { font-weight: 800; color: var(--accent-light); font-size: 1.1rem; margin-top: 1.5rem; margin-bottom: 0; }

.emergency-banner {
  background: var(--emergency);
  padding: 1rem 0;
  text-align: center;
}
.emergency-banner .container {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}
.emergency-banner p {
  color: #fff;
  font-weight: 700;
  margin: 0;
  font-size: 1rem;
}
.emergency-banner a {
  color: #fff;
  font-weight: 800;
  text-decoration: underline;
  font-size: 1.1rem;
}

/* ============================================================
   FLORIDA CONTEXT SECTION
   ============================================================ */
.florida-facts {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  margin-top: 2.5rem;
}
.florida-fact {
  text-align: center;
  padding: 1.5rem;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius);
}
.fact-number {
  font-size: 2rem;
  font-weight: 800;
  color: var(--accent-light);
  line-height: 1;
  margin-bottom: 0.4rem;
}
.fact-label { color: rgba(255,255,255,0.7); font-size: 0.875rem; }

/* ============================================================
   INTRO TWO-COLUMN
   ============================================================ */
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}
.two-col-content h2 { margin-bottom: 1rem; }
.two-col-content p { color: var(--text-light); margin-bottom: 1rem; }
.check-list {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  margin: 1.25rem 0;
}
.check-item {
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
  font-size: 0.925rem;
}
.check-item::before {
  content: '✓';
  color: var(--success);
  font-weight: 800;
  font-size: 1rem;
  flex-shrink: 0;
  margin-top: 0.1rem;
}
.info-box {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
}
.info-box-title {
  font-weight: 700;
  color: var(--primary);
  font-size: 1rem;
  margin-bottom: 1rem;
  padding-bottom: 0.75rem;
  border-bottom: 2px solid var(--accent);
}
.info-stat {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.65rem 0;
  border-bottom: 1px solid var(--border);
  font-size: 0.9rem;
}
.info-stat:last-child { border-bottom: none; }
.info-stat-label { color: var(--text-light); }
.info-stat-value { font-weight: 700; color: var(--primary); }

/* ============================================================
   PAGE HERO (inner pages)
   ============================================================ */
.page-hero {
  background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 100%);
  padding: 3.5rem 0 3rem;
  color: #fff;
  position: relative;
  overflow: hidden;
}
.page-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");
}
.page-hero-inner { position: relative; z-index: 1; }
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.55);
  margin-bottom: 1rem;
}
.breadcrumb a { color: rgba(255,255,255,0.55); }
.breadcrumb a:hover { color: var(--accent); }
.breadcrumb-sep { opacity: 0.4; }
.page-hero h1 {
  color: #fff;
  font-size: clamp(1.6rem, 3.5vw, 2.5rem);
  margin-bottom: 1rem;
  line-height: 1.2;
}
.page-hero-sub {
  color: rgba(255,255,255,0.82);
  font-size: 1rem;
  max-width: 720px;
  line-height: 1.7;
}
.page-trust-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.75rem;
}
.trust-chip {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  color: rgba(255,255,255,0.9);
  font-size: 0.8rem;
  font-weight: 700;
  padding: 0.4rem 0.85rem;
  border-radius: 100px;
  white-space: nowrap;
}
.trust-chip .dot { color: var(--accent-light); }
.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 2rem;
}

/* ============================================================
   RELATED SERVICES
   ============================================================ */
.related-services { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.25rem; }
.related-service {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem 1.25rem;
  background: var(--bg-white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  text-decoration: none;
  transition: all var(--transition);
}
.related-service:hover {
  border-color: var(--accent);
  box-shadow: var(--shadow-sm);
  transform: translateY(-1px);
}
.related-service-icon { font-size: 1.25rem; }
.related-service-text strong { display: block; font-size: 0.9rem; color: var(--primary); }
.related-service-text span { font-size: 0.8rem; color: var(--text-muted); }

/* ============================================================
   NAP + MAP SECTION
   ============================================================ */
.nap-map-grid {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 2.5rem;
  align-items: start;
}
.map-embed iframe {
  width: 100%;
  height: 400px;
  border: 0;
  border-radius: var(--radius-lg);
  display: block;
  box-shadow: var(--shadow-md);
}
.nap-box {
  background: var(--bg-white);
  border: 2px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  box-shadow: var(--shadow-sm);
}
.nap-box .info-box-title {
  font-size: 1rem;
  font-weight: 800;
  color: var(--primary);
  margin-bottom: 1.25rem;
  padding-bottom: 0.75rem;
  border-bottom: 2px solid var(--accent);
}
.nap-list {
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
}
.nap-item {
  display: flex;
  gap: 0.85rem;
  align-items: flex-start;
  font-size: 0.9rem;
  line-height: 1.65;
  color: var(--text-light);
}
.nap-item strong { color: var(--text); display: block; }
.nap-item a { color: var(--primary); }
.nap-item a:hover { color: var(--accent-dark); }
.nap-icon {
  font-size: 1.15rem;
  flex-shrink: 0;
  margin-top: 0.1rem;
  width: 22px;
  text-align: center;
}

@media (max-width: 900px) {
  .nap-map-grid { grid-template-columns: 1fr; }
  .map-embed iframe { height: 280px; }
}

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  background: var(--primary-dark);
  color: rgba(255,255,255,0.7);
  padding: 4rem 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 3rem;
  margin-bottom: 3rem;
}
.footer-brand .logo-name { font-size: 1.4rem; }
.footer-desc {
  color: rgba(255,255,255,0.6);
  font-size: 0.9rem;
  margin: 1rem 0;
  line-height: 1.7;
}
.footer-license {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.45);
}
.footer-heading {
  color: #fff;
  font-weight: 700;
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 1.25rem;
}
.footer-links { display: flex; flex-direction: column; gap: 0.6rem; }
.footer-links a {
  color: rgba(255,255,255,0.6);
  font-size: 0.875rem;
  transition: color var(--transition);
}
.footer-links a:hover { color: var(--accent-light); }
.footer-contact { display: flex; flex-direction: column; gap: 0.85rem; }
.footer-contact-item { display: flex; gap: 0.65rem; align-items: flex-start; }
.footer-contact-icon { color: var(--accent); flex-shrink: 0; margin-top: 0.15rem; }
.footer-contact-text { font-size: 0.875rem; color: rgba(255,255,255,0.7); line-height: 1.5; }
.footer-contact-text a { color: rgba(255,255,255,0.7); }
.footer-contact-text a:hover { color: var(--accent-light); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 1.5rem 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}
.footer-bottom p { font-size: 0.8rem; color: rgba(255,255,255,0.4); margin: 0; }
.footer-certs {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  align-items: center;
}
.cert-badge {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  color: rgba(255,255,255,0.6);
  font-size: 0.75rem;
  font-weight: 700;
  padding: 0.3rem 0.7rem;
  border-radius: var(--radius);
}

/* ============================================================
   SPECIFIC LAYOUT HELPERS
   ============================================================ */
.page-layout {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 3rem;
  align-items: start;
}
.sticky-cta-box {
  position: sticky;
  top: 90px;
  background: var(--bg-white);
  border: 2px solid var(--primary);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  box-shadow: var(--shadow-md);
}
.sticky-cta-box h3 { font-size: 1.1rem; margin-bottom: 0.75rem; }
.sticky-cta-box p { font-size: 0.875rem; color: var(--text-light); margin-bottom: 1.25rem; }
.sticky-phone {
  display: block;
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--primary);
  margin-bottom: 0.75rem;
}
.cta-dividers { height: 1px; background: var(--border); margin: 1rem 0; }
.cta-credentials {
  font-size: 0.75rem;
  color: var(--text-muted);
  line-height: 1.7;
  text-align: center;
}

/* ============================================================
   FORM
   ============================================================ */
.contact-form {
  background: var(--bg-white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2rem;
}
.form-group { margin-bottom: 1.25rem; }
.form-group label {
  display: block;
  font-weight: 700;
  font-size: 0.875rem;
  color: var(--primary);
  margin-bottom: 0.4rem;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  font-size: 0.95rem;
  font-family: var(--font-sans);
  color: var(--text);
  background: var(--bg);
  transition: border-color var(--transition);
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--primary);
  background: var(--bg-white);
}
.form-group textarea { height: 120px; resize: vertical; }

/* ============================================================
   HIGHLIGHTS / CALLOUTS
   ============================================================ */
.highlight-box {
  background: rgba(245, 158, 11, 0.06);
  border: 1px solid rgba(245, 158, 11, 0.25);
  border-left: 4px solid var(--accent);
  border-radius: var(--radius);
  padding: 1.25rem 1.5rem;
  margin: 1.5rem 0;
}
.highlight-box p { margin: 0; font-size: 0.95rem; color: var(--text); }
.highlight-box strong { color: var(--primary); }

.warning-box {
  background: rgba(220, 38, 38, 0.04);
  border: 1px solid rgba(220, 38, 38, 0.2);
  border-left: 4px solid var(--emergency);
  border-radius: var(--radius);
  padding: 1.25rem 1.5rem;
  margin: 1.5rem 0;
}
.warning-box p { margin: 0; font-size: 0.95rem; }

/* ============================================================
   MOBILE RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .hero-inner { grid-template-columns: 1fr; }
  .hero-card { min-width: 100%; max-width: 480px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .page-layout { grid-template-columns: 1fr; }
  .sticky-cta-box { position: static; }
  .florida-facts { grid-template-columns: repeat(2, 1fr); }
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .main-nav { display: none; }
  .mobile-toggle { display: block; }
  .header-cta { display: none; }
  .main-nav.mobile-open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--primary-dark);
    padding: 1rem;
    border-top: 1px solid rgba(255,255,255,0.1);
  }
  .main-nav.mobile-open .dropdown-menu {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    background: rgba(0,0,0,0.2);
    margin-top: 0.25rem;
    min-width: auto;
  }
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
  .two-col { grid-template-columns: 1fr; gap: 2rem; }
  .benefit-cards { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .related-services { grid-template-columns: 1fr; }
  .trust-bar-inner { flex-direction: column; gap: 0.25rem; }
  .trust-item { border-right: none; padding: 0.4rem 1rem; }
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .hero { padding: 3rem 0; }
  .section { padding: 3rem 0; }
  .cta-group { flex-direction: column; align-items: stretch; }
  .cta-group .btn { text-align: center; justify-content: center; }
  .hero-ctas { flex-direction: column; }
}

@media (max-width: 480px) {
  .trust-item { padding: 0.3rem 0.5rem; }
  .page-trust-bar { gap: 0.5rem; }
  .trust-chip { font-size: 0.75rem; }
}

/* ============================================================
   UTILITY
   ============================================================ */
.sr-only { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0,0,0,0); }
.visually-hidden { visibility: hidden; }
.no-list { list-style: none; padding: 0; }
.fw-700 { font-weight: 700; }
.fw-800 { font-weight: 800; }
.text-accent { color: var(--accent-dark); }
.text-muted { color: var(--text-muted); }
.divider { height: 1px; background: var(--border); margin: 2.5rem 0; }

/* Print styles */
@media print { .site-header, .site-footer, .cta-section, .emergency-banner { display: none; } }
