/* === RESET & BASE === */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { font-size: 16px; scroll-behavior: smooth; }
body { font-family: 'Titillium Web', Arial, sans-serif; color: #333; background: #fff; line-height: 1.7; }
img { max-width: 100%; height: auto; display: block; }
a { color: #D6000A; text-decoration: none; }
a:hover { text-decoration: underline; }
ul { list-style: none; }

/* === VARIABLES === */
:root {
  --navy: #00134B;
  --blue: #043877;
  --red: #D6000A;
  --red-dark: #b00008;
  --gray-light: #f5f7fa;
  --gray-border: #e0e4ea;
  --text: #333;
  --text-muted: #555;
}

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

/* === TYPOGRAPHY === */
h1, h2, h3, h4 { font-family: 'Raleway', Arial, sans-serif; color: var(--navy); line-height: 1.25; }
h1 { font-size: clamp(1.8rem, 4vw, 2.8rem); font-weight: 800; }
h2 { font-size: clamp(1.5rem, 3vw, 2.1rem); font-weight: 700; }
h3 { font-size: clamp(1.1rem, 2vw, 1.4rem); font-weight: 700; }
h4 { font-size: 1rem; font-weight: 700; }
p { margin-bottom: 1rem; color: var(--text); }
p:last-child { margin-bottom: 0; }
strong { font-weight: 700; }

/* === BUTTONS === */
.btn { display: inline-block; padding: 14px 32px; border-radius: 50px; font-family: 'Titillium Web', sans-serif; font-weight: 700; font-size: 1rem; cursor: pointer; transition: background 0.2s, transform 0.15s; border: none; }
.btn-red { background: var(--red); color: #fff; }
.btn-red:hover { background: var(--blue); color: #fff; text-decoration: none; transform: translateY(-2px); }
.btn-outline { background: transparent; color: #fff; border: 2px solid #fff; }
.btn-outline:hover { background: rgba(255,255,255,0.15); text-decoration: none; }

/* === LOGO === */
.logo, .footer-logo { display: flex; flex-direction: column; line-height: 1; text-decoration: none; }
.logo-plumbers { font-family: 'Raleway', sans-serif; font-weight: 800; font-size: 1.5rem; color: var(--navy); letter-spacing: 1px; }
.logo-corona { font-family: 'Raleway', sans-serif; font-weight: 800; font-size: 2rem; color: var(--navy); letter-spacing: 2px; line-height: 1; }
.logo-sub { font-family: 'Titillium Web', sans-serif; font-size: 0.6rem; color: #888; letter-spacing: 2px; text-transform: uppercase; margin-top: 2px; border-top: 1px solid var(--red); padding-top: 3px; }
.logo:hover, .footer-logo:hover { text-decoration: none; }

/* === LOGO IMAGE === */
.site-logo-img { height: 140px; width: auto; display: block; max-width: 320px; }

/* === HEADER TOP ROW === */
.header-top { background: #fff; border-bottom: 1px solid var(--gray-border); padding: 14px 0; }
.header-top-inner { display: flex; align-items: center; justify-content: space-between; }
.header-phone-wrap { text-align: right; }
.header-phone-label { display: block; font-size: 0.8rem; color: #888; font-family: 'Titillium Web', sans-serif; margin-bottom: 2px; }
.header-phone-num { font-family: 'Titillium Web', sans-serif; font-size: 1.3rem; font-weight: 700; color: var(--navy); }
.header-phone-num:hover { color: var(--red); text-decoration: none; }

/* === NAV BAR === */
.header-nav { background: var(--blue); }
.nav-inner { display: flex; align-items: center; gap: 8px; padding: 0 24px; position: relative; }
.nav-toggle { display: none; }
.nav-burger { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 14px 0; }
.nav-burger span { display: block; width: 24px; height: 2px; background: #fff; border-radius: 2px; }
.nav-links { display: flex; align-items: center; flex: 1; gap: 2px; }
.nav-links > li { position: relative; }
.nav-links > li > a { display: block; padding: 16px 14px; color: #fff; font-family: 'Titillium Web', sans-serif; font-weight: 600; font-size: 0.95rem; white-space: nowrap; transition: background 0.2s; }
.nav-links > li > a:hover { background: rgba(255,255,255,0.1); text-decoration: none; }
.nav-links > li > a .arrow { font-size: 0.65rem; margin-left: 4px; }
.nav-cta-btn { display: inline-block; margin-left: auto; padding: 10px 24px; background: var(--red); color: #fff; font-family: 'Titillium Web', sans-serif; font-weight: 700; font-size: 0.95rem; border-radius: 50px; white-space: nowrap; transition: background 0.2s; }
.nav-cta-btn:hover { background: var(--red-dark); text-decoration: none; }

/* Dropdown */
.has-dropdown .dropdown { display: none; position: absolute; top: 100%; left: 0; background: #fff; border-top: 3px solid var(--red); min-width: 240px; box-shadow: 0 6px 24px rgba(0,0,0,0.12); z-index: 300; }
.has-dropdown:hover .dropdown { display: block; }
.dropdown li a { display: block; padding: 10px 20px; color: var(--navy); font-family: 'Titillium Web', sans-serif; font-size: 0.92rem; font-weight: 600; border-bottom: 1px solid var(--gray-border); }
.dropdown li:last-child a { border-bottom: none; }
.dropdown li a:hover { background: var(--gray-light); color: var(--red); text-decoration: none; }

/* === HERO === */
.hero { position: relative; background: linear-gradient(to right, rgba(0,19,75,0.65) 40%, rgba(4,56,119,0.3) 100%), url('/assets/images/corona-plumber-working.webp') center center / cover no-repeat; color: #fff; padding: 90px 0 80px; }
.hero-content { max-width: 720px; }
.hero h1 { color: #fff; margin-bottom: 20px; }
.hero p { color: rgba(255,255,255,0.9); font-size: 1.05rem; margin-bottom: 32px; max-width: 620px; }
.hero-btns { display: flex; gap: 16px; flex-wrap: wrap; }

/* === TRUST BAR === */
.trust-bar { background: var(--navy); padding: 18px 0; }
.trust-bar-inner { display: flex; align-items: center; justify-content: center; gap: 0; flex-wrap: wrap; }
.trust-item { display: flex; align-items: center; gap: 8px; color: #fff; font-family: 'Titillium Web', sans-serif; font-weight: 600; font-size: 0.88rem; padding: 8px 20px; border-right: 1px solid rgba(255,255,255,0.2); white-space: nowrap; }
.trust-item:last-child { border-right: none; }
.trust-icon { color: var(--red); font-size: 1.1rem; flex-shrink: 0; }

/* === SECTIONS === */
.section { padding: 72px 0; }
.section-alt { background: var(--gray-light); }
.section-center { text-align: center; }
.section-center h2 { margin-bottom: 12px; }
.section-center .section-lead { max-width: 680px; margin: 0 auto 48px; color: var(--text-muted); font-size: 1.05rem; }
.section h2 { margin-bottom: 16px; }
.section-lead { color: var(--text-muted); font-size: 1.05rem; margin-bottom: 36px; }

/* === TWO COLUMN === */
.two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; }
@media (max-width: 768px) { .two-col { grid-template-columns: 1fr; gap: 32px; } }

/* === IMAGE PLACEHOLDER === */
.img-placeholder { background: #dce3ed; border-radius: 12px; width: 100%; aspect-ratio: 4/3; display: flex; align-items: center; justify-content: center; color: #7a8ea8; font-family: 'Titillium Web', sans-serif; font-size: 0.9rem; }
.section-img { width: 100%; border-radius: 12px; object-fit: cover; max-height: 400px; }

/* Red keyword highlights */
.red { color: var(--red); }

/* === SERVICES GRID === */
.services-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
@media (max-width: 1024px) { .services-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .services-grid { grid-template-columns: 1fr; } }

.service-card { border-radius: 8px; padding: 28px 22px; background: #fff; transition: box-shadow 0.2s; border: 1px solid var(--gray-border); }
.service-card:hover { box-shadow: 0 6px 24px rgba(0,0,0,0.08); }
.service-card.border-red { border-left: 4px solid var(--red); border-top: 1px dashed var(--red); border-right: 1px dashed var(--red); border-bottom: 1px dashed var(--red); }
.service-card.border-blue { border-left: 4px solid var(--blue); border-top: 1px dashed var(--blue); border-right: 1px dashed var(--blue); border-bottom: 1px dashed var(--blue); }
.service-card-icon { font-size: 2rem; margin-bottom: 14px; color: var(--red); }
.service-card h3 { font-size: 1.1rem; color: var(--navy); margin-bottom: 14px; border-bottom: 2px solid var(--red); padding-bottom: 8px; display: inline-block; }
.service-card p { font-size: 0.9rem; color: var(--text-muted); line-height: 1.6; margin-bottom: 16px; }
.service-card .read-more { color: var(--red); font-weight: 700; font-size: 0.92rem; }
.service-card .read-more:hover { text-decoration: underline; }

/* === CTA BAND (gradient) === */
.cta-band-gradient { background: linear-gradient(135deg, #8fa8c4 0%, #5a7fa8 50%, #3d6490 100%); padding: 64px 0; text-align: center; }
.cta-band-gradient h2 { color: #fff; font-size: clamp(1.3rem, 2.5vw, 1.9rem); max-width: 780px; margin: 0 auto 28px; line-height: 1.4; }

/* === CTA BAND (solid blue) === */
.cta-band-blue { background: var(--blue); padding: 28px 0; text-align: center; }
.cta-band-blue p { color: #fff; font-family: 'Raleway', sans-serif; font-weight: 700; font-size: clamp(1rem, 2vw, 1.4rem); margin: 0; }

/* === WHY CHOOSE US === */
.why-intro { font-style: italic; color: var(--text-muted); margin-bottom: 40px; font-size: 1.02rem; }
.why-items { display: flex; flex-direction: column; gap: 36px; }
.why-item h3 { color: var(--navy); margin-bottom: 10px; }
.why-item p { color: var(--text-muted); }

/* === WARNING SIGNS === */
.warning-box { background: var(--gray-light); border-left: 4px solid var(--red); border-radius: 0 8px 8px 0; padding: 20px 24px; margin: 16px 0 20px; }
.warning-box strong { display: block; font-family: 'Raleway', sans-serif; color: var(--navy); margin-bottom: 10px; font-size: 0.88rem; letter-spacing: 0.5px; }
.warning-box ul { list-style: none; display: flex; flex-direction: column; gap: 6px; }
.warning-box ul li { font-size: 0.92rem; color: var(--text-muted); padding-left: 18px; position: relative; }
.warning-box ul li::before { content: "•"; color: var(--red); position: absolute; left: 0; font-weight: 700; }

/* === COST TABLE === */
.cost-table-wrap { overflow-x: auto; }
.cost-table { width: 100%; border-collapse: collapse; margin: 24px 0; font-size: 0.95rem; }
.cost-table th { background: var(--navy); color: #fff; font-family: 'Raleway', sans-serif; padding: 12px 16px; text-align: left; }
.cost-table td { padding: 12px 16px; border-bottom: 1px solid var(--gray-border); color: var(--text); }
.cost-table tr:nth-child(even) td { background: var(--gray-light); }
.cost-table tr:hover td { background: #edf1f8; }

.cost-tips { margin-top: 32px; }
.cost-tips h3 { margin-bottom: 14px; }
.cost-tips ul { list-style: none; display: flex; flex-direction: column; gap: 8px; }
.cost-tips ul li { padding-left: 22px; position: relative; color: var(--text-muted); font-size: 0.95rem; }
.cost-tips ul li::before { content: "✓"; color: var(--red); font-weight: 700; position: absolute; left: 0; }

/* === PROCESS STEPS === */
.steps { display: flex; flex-direction: column; gap: 28px; max-width: 800px; }
.step { display: flex; gap: 22px; align-items: flex-start; }
.step-num { background: var(--red); color: #fff; width: 46px; height: 46px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-family: 'Raleway', sans-serif; font-weight: 800; font-size: 1.2rem; flex-shrink: 0; }
.step-body h3 { color: var(--navy); margin-bottom: 6px; font-size: 1.1rem; }
.step-body p { color: var(--text-muted); font-size: 0.95rem; margin-bottom: 12px; }
.process-checklist { list-style: none; padding: 0; margin: 12px 0 0; }
.process-checklist li { padding: 6px 0 6px 24px; position: relative; font-size: 0.9rem; color: var(--text-muted); border-bottom: 1px solid var(--gray-border); }
.process-checklist li:last-child { border-bottom: none; }
.process-checklist li::before { content: "✔"; position: absolute; left: 0; color: var(--red); font-weight: 700; font-size: 0.8rem; }

/* === WHO WE SERVE === */
.who-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
@media (max-width: 768px) { .who-grid { grid-template-columns: 1fr; } }
.who-card { background: #fff; border: 1px solid var(--gray-border); border-top: 4px solid var(--red); border-radius: 0 0 10px 10px; padding: 28px 24px; }
.who-card h3 { color: var(--navy); margin-bottom: 12px; font-size: 1.1rem; }
.who-card p { color: var(--text-muted); font-size: 0.93rem; }
.who-card h4 { color: var(--red); font-size: 0.85rem; letter-spacing: 0.5px; margin: 16px 0 8px; }

/* === SEASONS === */
.seasons-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
@media (max-width: 640px) { .seasons-grid { grid-template-columns: 1fr; } }
.season-card { background: #fff; border: 1px solid var(--gray-border); border-radius: 10px; padding: 28px 24px; }
.season-card h3 { color: var(--navy); margin-bottom: 10px; font-size: 1.05rem; }
.season-card p { color: var(--text-muted); font-size: 0.93rem; margin: 0; }
.season-label { display: inline-block; background: var(--navy); color: #fff; font-family: 'Raleway', sans-serif; font-size: 0.75rem; font-weight: 700; letter-spacing: 1px; padding: 3px 10px; border-radius: 50px; margin-bottom: 12px; }

/* === SERVICE AREAS === */
.areas-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: start; }
@media (max-width: 768px) { .areas-grid { grid-template-columns: 1fr; } }
.map-wrap { border-radius: 12px; overflow: hidden; border: 1px solid var(--gray-border); }
.map-wrap iframe { display: block; width: 100%; height: 400px; border: none; }

/* === FAQ ACCORDION === */
.faq-list { max-width: 860px; }
details.faq-item { border-bottom: 1px solid var(--gray-border); }
details.faq-item:first-of-type { border-top: 1px solid var(--gray-border); }
details.faq-item summary { cursor: pointer; padding: 20px 4px; list-style: none; display: flex; justify-content: space-between; align-items: center; gap: 16px; }
details.faq-item summary::-webkit-details-marker { display: none; }
details.faq-item summary h3 { color: var(--navy); font-size: 1rem; margin: 0; flex: 1; }
details.faq-item summary::after { content: "+"; color: var(--red); font-size: 1.5rem; font-weight: 700; line-height: 1; flex-shrink: 0; }
details.faq-item[open] summary::after { content: "−"; }
details.faq-item summary:hover h3 { color: var(--red); }
.faq-answer { padding: 0 4px 20px; }
.faq-answer p { color: var(--text-muted); font-size: 0.93rem; margin: 0; }

/* === INLINE CTA === */
.cta-inline { padding: 40px 0; text-align: center; }
.cta-inline p { color: var(--text-muted); margin-bottom: 16px; font-size: 1.02rem; }
.cta-inline-band { background: var(--navy); padding: 48px 0; text-align: center; }
.cta-inline-band h3 { color: #fff; font-size: clamp(1.1rem, 2vw, 1.5rem); margin-bottom: 8px; }
.cta-inline-band p { color: rgba(255,255,255,0.85); margin-bottom: 24px; }
.cta-inline-band .btn { margin: 0 8px; }

/* === UTILITIES === */
.bg-light { background: var(--gray-light); }
.section-intro { font-size: 1.05rem; margin-bottom: 2rem; color: var(--text); max-width: 860px; }
.mt-40 { margin-top: 40px; }
.check-list { list-style: none; padding: 0; }
.check-list li { padding: 10px 0 10px 28px; position: relative; border-bottom: 1px solid var(--gray-border); }
.check-list li::before { content: "✓"; position: absolute; left: 0; color: var(--red); font-weight: 700; }

/* === BREADCRUMB === */
.breadcrumb { background: var(--gray-light); border-bottom: 1px solid var(--gray-border); padding: 10px 0; font-size: 0.85rem; }
.breadcrumb ol { display: flex; gap: 8px; align-items: center; flex-wrap: wrap; list-style: none; padding: 0; margin: 0; }
.breadcrumb li:not(:last-child)::after { content: "›"; margin-left: 8px; color: #999; }
.breadcrumb a { color: var(--blue); }
.breadcrumb li:last-child { color: var(--text-muted); }

/* === PAGE HERO (inner pages) === */
.page-hero { background: linear-gradient(135deg, var(--navy) 0%, var(--blue) 100%); color: #fff; padding: 60px 0; }
.page-hero h1 { color: #fff; margin-bottom: 12px; }
.page-hero p { color: rgba(255,255,255,0.88); font-size: 1.05rem; max-width: 600px; margin: 0; }

/* === ABOUT PAGE === */
.about-highlight { background: var(--gray-light); border-left: 4px solid var(--red); padding: 20px 24px; border-radius: 0 8px 8px 0; margin-top: 28px; }
.about-highlight-main { font-family: 'Raleway', sans-serif; font-size: 1.4rem; font-weight: 800; color: var(--navy); margin: 8px 0; }
.about-diff-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 32px; }
.about-diff-item { background: #fff; border-radius: 8px; padding: 28px 22px; border: 1px solid var(--gray-border); border-top: 3px solid var(--red); }
.about-diff-icon { font-size: 1.8rem; margin-bottom: 12px; }
.about-diff-item h3 { font-size: 1rem; color: var(--navy); margin-bottom: 10px; }
.about-diff-item p { font-size: 0.9rem; color: var(--text-muted); line-height: 1.65; }
.expect-list { list-style: none; padding: 0; }
.expect-list li { padding: 12px 0 12px 32px; position: relative; border-bottom: 1px solid var(--gray-border); font-size: 0.95rem; line-height: 1.6; }
.expect-list li::before { content: "✔"; position: absolute; left: 0; color: var(--red); font-weight: 700; }
.license-box { background: var(--gray-light); border: 1px solid var(--gray-border); border-left: 4px solid var(--navy); border-radius: 0 8px 8px 0; padding: 24px 28px; margin-top: 24px; }
.license-box h3 { color: var(--navy); font-size: 1rem; margin-bottom: 16px; }
.license-box ul { list-style: none; padding: 0; }
.license-box li { padding: 6px 0; font-size: 0.92rem; border-bottom: 1px solid var(--gray-border); }
.license-box li:last-child { border-bottom: none; }
.service-area-tables { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; margin-top: 20px; }
.area-list { list-style: none; padding: 0; }
.area-list li { padding: 6px 0 6px 20px; position: relative; border-bottom: 1px solid var(--gray-border); font-size: 0.92rem; }
.area-list li::before { content: "›"; position: absolute; left: 0; color: var(--red); font-weight: 700; }
@media (max-width: 768px) { .about-diff-grid { grid-template-columns: 1fr; } .service-area-tables { grid-template-columns: 1fr; } }

/* === CASE STUDIES === */
.case-study-header { margin-bottom: 28px; }
.case-study-label { display: inline-block; background: var(--red); color: #fff; font-size: 0.78rem; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase; padding: 4px 12px; border-radius: 4px; margin-bottom: 12px; }
.case-meta { display: flex; flex-wrap: wrap; gap: 12px 32px; margin-bottom: 36px; padding: 16px 20px; background: var(--gray-light); border-left: 4px solid var(--red); border-radius: 0 8px 8px 0; }
.case-meta-item { display: flex; flex-direction: column; }
.case-meta-label { font-size: 0.72rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.06em; color: var(--text-muted); margin-bottom: 2px; }
.case-stats { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.case-stat { background: var(--navy); color: #fff; border-radius: 8px; padding: 20px 16px; text-align: center; }
.stat-number { display: block; font-family: 'Raleway', sans-serif; font-size: 2rem; font-weight: 800; color: #fff; line-height: 1; }
.stat-label { display: block; font-size: 0.78rem; color: rgba(255,255,255,0.75); margin-top: 6px; line-height: 1.3; }
.case-quote { border-left: 4px solid var(--red); padding: 16px 20px; margin: 24px 0; background: var(--gray-light); font-style: italic; font-size: 1rem; color: var(--navy); border-radius: 0 8px 8px 0; }

/* === CONTACT PAGE === */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: start; }
.contact-divider { display: flex; align-items: center; gap: 16px; margin-bottom: 36px; }
.contact-divider::before { content: ''; flex: 0 0 80px; height: 3px; background: var(--navy); }
.contact-label { color: var(--red); font-family: 'Raleway', sans-serif; font-weight: 700; font-size: 1rem; text-transform: uppercase; letter-spacing: 0.08em; white-space: nowrap; }
.contact-blocks { display: flex; flex-direction: column; gap: 32px; }
.contact-block h3 { font-family: 'Raleway', sans-serif; color: var(--navy); font-size: 1rem; font-weight: 700; margin-bottom: 6px; }
.contact-value { font-size: 1.15rem; font-weight: 600; color: var(--navy); display: block; line-height: 1.5; }
a.contact-value { color: var(--navy); }
a.contact-value:hover { color: var(--red); text-decoration: none; }
.contact-note { font-size: 0.88rem; color: #666; margin-top: 4px; }
.contact-map { height: 480px; border-radius: 8px; overflow: hidden; box-shadow: 0 2px 12px rgba(0,0,0,0.1); }
.contact-map iframe { width: 100%; height: 100%; border: 0; }
.contact-social { display: flex; flex-direction: column; gap: 12px; margin-top: 4px; }
.contact-social a { display: flex; align-items: center; gap: 10px; color: var(--navy); font-weight: 600; font-size: 0.95rem; }
.contact-social a:hover { color: var(--red); text-decoration: none; }
.contact-social svg { flex-shrink: 0; }
@media (max-width: 768px) {
  .contact-grid { grid-template-columns: 1fr; gap: 32px; }
  .contact-map { height: 300px; }
}

/* === FOOTER === */
.site-footer { background: #fff; border-top: 1px solid var(--gray-border); padding: 56px 0 0; }
.footer-inner { display: grid; grid-template-columns: 1.6fr 1fr 1.4fr 1fr; gap: 40px; padding-bottom: 48px; }
@media (max-width: 960px) { .footer-inner { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .footer-inner { grid-template-columns: 1fr; } }

.footer-logo-img { height: 70px; width: auto; display: block; }
.footer-tagline { font-size: 0.88rem; color: #666; margin-top: 14px; line-height: 1.6; }

.footer-social { display: flex; gap: 10px; margin-top: 18px; }
.social-icon { display: flex; align-items: center; justify-content: center; width: 36px; height: 36px; background: var(--red); color: #fff; border-radius: 50%; transition: background 0.2s; }
.social-icon:hover { background: var(--navy); text-decoration: none; }

.footer-col h4 { font-family: 'Raleway', sans-serif; color: var(--navy); font-size: 1rem; font-weight: 700; margin-bottom: 16px; }
.footer-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-col ul li a { color: #444; font-size: 0.9rem; font-weight: 600; display: flex; align-items: center; gap: 8px; }
.footer-col ul li a::before { content: "→"; color: var(--red); font-size: 0.85rem; }
.footer-col ul li a:hover { color: var(--red); text-decoration: none; }
.footer-col p { font-size: 0.9rem; color: #444; margin-bottom: 8px; }
.footer-col a { color: var(--navy); font-weight: 700; }
.footer-col a:hover { color: var(--red); text-decoration: none; }

/* === MOBILE NAV === */
@media (max-width: 900px) {
  .nav-burger { display: flex; }
  .nav-links { display: none; flex-direction: column; position: absolute; top: 100%; left: 0; right: 0; background: var(--blue); z-index: 200; padding: 8px 0; gap: 0; }
  .nav-toggle:checked ~ .nav-links { display: flex; }
  .nav-links > li > a { padding: 12px 24px; border-bottom: 1px solid rgba(255,255,255,0.08); }
  .has-dropdown .dropdown { position: static; border: none; box-shadow: none; background: rgba(0,0,0,0.15); }
  .has-dropdown:hover .dropdown { display: block; }
  .dropdown li a { color: rgba(255,255,255,0.85); border-bottom-color: rgba(255,255,255,0.06); padding-left: 36px; }
  .nav-inner { flex-wrap: wrap; padding: 12px 24px; }
  .nav-cta-btn { display: none; }
}

/* === EMERGENCY LIST === */
.emergency-list { display: flex; flex-direction: column; gap: 0; }
.emergency-item { padding: 28px 0; border-bottom: 1px solid var(--gray-border); }
.emergency-item:first-child { border-top: 1px solid var(--gray-border); }
.emergency-item h3 { color: var(--navy); margin-bottom: 10px; padding-left: 16px; border-left: 4px solid var(--red); }
.emergency-item p { color: var(--text-muted); font-size: 0.95rem; }

/* === UTILITY === */
.mt-8 { margin-top: 8px; }
.mt-16 { margin-top: 16px; }
.mt-24 { margin-top: 24px; }
.mt-32 { margin-top: 32px; }
.mb-0 { margin-bottom: 0; }
.text-muted { color: var(--text-muted); }
