/*
 * WATER DAMAGE RESTORATION TEMPLATE — Master Stylesheet
 * Design: "First Responder" — Bold emergency services branding
 * Typography: Montserrat (display) + Roboto (body)
 *
 * CSS Custom Properties for easy client theming:
 * Change --brand-* variables to rebrand the entire site.
 */

/* ═══════════════════════════════════════════
   CSS CUSTOM PROPERTIES (THEMING)
   ═══════════════════════════════════════════ */
:root {
  --brand-blue: #0D47A1;
  --brand-blue-dark: #0A1628;
  --brand-blue-light: #1565C0;
  --brand-orange: #EF6C00;
  --brand-red: #B71C1C;
  --brand-white: #FFFFFF;
  --brand-gray: #F5F5F5;
  --brand-charcoal: #1B1B1B;
  --brand-text: #333333;
  --brand-border: #E0E0E0;

  --font-display: 'Montserrat', sans-serif;
  --font-body: 'Roboto', sans-serif;
}

/* ═══════════════════════════════════════════
   RESET & BASE
   ═══════════════════════════════════════════ */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}
body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  color: var(--brand-text);
  background: var(--brand-white);
  -webkit-font-smoothing: antialiased;
}
img {
  max-width: 100%;
  height: auto;
  display: block;
}
a {
  color: var(--brand-blue);
  text-decoration: none;
  transition: color 0.2s;
}
a:hover {
  color: var(--brand-blue-light);
}
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.15;
  color: var(--brand-charcoal);
}
ul, ol {
  list-style: none;
}
button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
}

/* ═══════════════════════════════════════════
   LAYOUT
   ═══════════════════════════════════════════ */
.container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1rem;
}
@media (min-width: 768px) {
  .container { padding: 0 1.5rem; }
}
@media (min-width: 1024px) {
  .container { padding: 0 2rem; }
}

.grid-2 { display: grid; grid-template-columns: 1fr; gap: 2rem; }
.grid-3 { display: grid; grid-template-columns: 1fr; gap: 1.5rem; }
.grid-4 { display: grid; grid-template-columns: 1fr; gap: 1.5rem; }

@media (min-width: 768px) {
  .grid-2 { grid-template-columns: 1fr 1fr; }
  .grid-3 { grid-template-columns: 1fr 1fr; }
  .grid-4 { grid-template-columns: 1fr 1fr; }
}
@media (min-width: 1024px) {
  .grid-3 { grid-template-columns: 1fr 1fr 1fr; }
  .grid-4 { grid-template-columns: 1fr 1fr 1fr 1fr; }
}

/* ═══════════════════════════════════════════
   TOP BAR (Emergency CTA)
   ═══════════════════════════════════════════ */
.top-bar {
  background: var(--brand-red);
  color: var(--brand-white);
  font-size: 0.85rem;
  padding: 0.4rem 0;
}
.top-bar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.5rem;
}
.top-bar__text {
  font-family: var(--font-display);
  font-weight: 600;
}
.top-bar__phone {
  color: var(--brand-white);
  font-family: var(--font-display);
  font-weight: 700;
  letter-spacing: 0.02em;
  display: flex;
  align-items: center;
  gap: 0.35rem;
}
.top-bar__phone:hover { color: var(--brand-white); text-decoration: underline; }

/* ═══════════════════════════════════════════
   MAIN NAVIGATION
   ═══════════════════════════════════════════ */
.main-nav {
  background: var(--brand-blue);
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 2px 12px rgba(0,0,0,0.15);
}
.main-nav .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 0.75rem;
  padding-bottom: 0.75rem;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  color: var(--brand-white);
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.15rem;
  text-decoration: none;
}
.nav-logo:hover { color: var(--brand-white); }
.nav-logo__icon {
  width: 40px;
  height: 40px;
  background: var(--brand-orange);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  font-weight: 800;
  border-radius: 3px;
}

/* Desktop nav links */
.nav-links {
  display: none;
  align-items: center;
  gap: 0.25rem;
}
@media (min-width: 1024px) {
  .nav-links { display: flex; }
}
.nav-links a,
.nav-links .nav-dropdown > button {
  color: var(--brand-white);
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 0.5rem 0.75rem;
  transition: color 0.2s;
  white-space: nowrap;
}
.nav-links a:hover,
.nav-links .nav-dropdown > button:hover {
  color: #FFB74D;
}
.nav-links a.active { color: #FFB74D; }

/* Services dropdown */
.nav-dropdown {
  position: relative;
}
.nav-dropdown > button {
  display: flex;
  align-items: center;
  gap: 0.3rem;
}
.nav-dropdown > button svg {
  transition: transform 0.2s;
}
.nav-dropdown:hover > button svg {
  transform: rotate(180deg);
}
.nav-dropdown__menu {
  position: absolute;
  top: 100%;
  left: 0;
  background: var(--brand-white);
  min-width: 260px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.15);
  border-radius: 3px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(4px);
  transition: all 0.2s;
  z-index: 200;
}
.nav-dropdown:hover .nav-dropdown__menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.nav-dropdown__menu a {
  display: block;
  padding: 0.75rem 1rem;
  color: var(--brand-charcoal);
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 500;
  text-transform: none;
  letter-spacing: 0;
  border-bottom: 1px solid #f0f0f0;
}
.nav-dropdown__menu a:last-child { border-bottom: none; }
.nav-dropdown__menu a:hover { background: #f0f4ff; color: var(--brand-blue); }

/* Nav CTA button */
.nav-cta {
  display: none;
  align-items: center;
  gap: 0.4rem;
  padding: 0.6rem 1.25rem;
  background: var(--brand-orange);
  color: var(--brand-white);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  border-radius: 3px;
  transition: filter 0.2s;
}
.nav-cta:hover { filter: brightness(1.1); color: var(--brand-white); }
@media (min-width: 1024px) {
  .nav-cta { display: flex; }
}

/* Mobile hamburger */
.nav-hamburger {
  display: flex;
  color: var(--brand-white);
  padding: 0.5rem;
  font-size: 1.5rem;
}
@media (min-width: 1024px) {
  .nav-hamburger { display: none; }
}

/* Mobile menu */
.mobile-menu {
  display: none;
  background: var(--brand-blue);
  border-top: 1px solid rgba(255,255,255,0.15);
  padding: 1rem;
}
.mobile-menu.open { display: block; }
.mobile-menu a {
  display: block;
  color: var(--brand-white);
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  padding: 0.75rem 0.5rem;
}
.mobile-menu a:hover { color: #FFB74D; }
.mobile-menu__sub {
  padding-left: 1rem;
}
.mobile-menu__sub a {
  font-weight: 400;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.8);
}
.mobile-menu__cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  margin-top: 0.75rem;
  padding: 0.75rem;
  background: var(--brand-orange);
  color: var(--brand-white);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.85rem;
  text-transform: uppercase;
  border-radius: 3px;
  text-align: center;
}

/* ═══════════════════════════════════════════
   HERO SECTION
   ═══════════════════════════════════════════ */
.hero {
  background: var(--brand-blue);
  position: relative;
  overflow: hidden;
  padding: 3rem 0 4rem;
}
@media (min-width: 768px) {
  .hero { padding: 4rem 0 5rem; }
}
@media (min-width: 1024px) {
  .hero { padding: 5rem 0 6rem; }
}
.hero .container {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  align-items: center;
}
@media (min-width: 1024px) {
  .hero .container { grid-template-columns: 1fr 1fr; }
}
.hero__content { color: var(--brand-white); }
.hero__badge {
  display: inline-block;
  background: var(--brand-red);
  color: var(--brand-white);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 0.4rem 0.75rem;
  margin-bottom: 1rem;
}
.hero__title {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 2.25rem;
  text-transform: uppercase;
  line-height: 1.1;
  color: var(--brand-white);
  margin-bottom: 1.25rem;
}
@media (min-width: 768px) {
  .hero__title { font-size: 3rem; }
}
@media (min-width: 1024px) {
  .hero__title { font-size: 3.5rem; }
}
.hero__text {
  font-size: 1rem;
  color: rgba(255,255,255,0.9);
  max-width: 520px;
  margin-bottom: 2rem;
  line-height: 1.7;
}
.hero__buttons {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
@media (min-width: 480px) {
  .hero__buttons { flex-direction: row; }
}
.hero__image {
  display: none;
}
@media (min-width: 1024px) {
  .hero__image {
    display: block;
  }
  .hero__image img {
    width: 100%;
    border-radius: 3px;
    box-shadow: 0 12px 40px rgba(0,0,0,0.3);
  }
}

/* ═══════════════════════════════════════════
   BUTTONS
   ═══════════════════════════════════════════ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.85rem 1.75rem;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  border-radius: 3px;
  transition: filter 0.2s, transform 0.1s;
  text-decoration: none;
  white-space: nowrap;
}
.btn:hover { filter: brightness(1.1); }
.btn:active { transform: scale(0.98); }
.btn-orange { background: var(--brand-orange); color: var(--brand-white); }
.btn-orange:hover { color: var(--brand-white); }
.btn-red { background: var(--brand-red); color: var(--brand-white); }
.btn-red:hover { color: var(--brand-white); }
.btn-blue { background: var(--brand-blue); color: var(--brand-white); }
.btn-blue:hover { color: var(--brand-white); }
.btn-white { background: var(--brand-white); color: var(--brand-blue); }
.btn-white:hover { color: var(--brand-blue); }

/* ═══════════════════════════════════════════
   SECTION BANNERS (Oregon-style colored bars)
   ═══════════════════════════════════════════ */
.section-banner {
  padding: 1.25rem 0;
  text-align: center;
}
.section-banner h2 {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.25rem;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  color: var(--brand-white);
}
@media (min-width: 768px) {
  .section-banner h2 { font-size: 1.5rem; }
}
@media (min-width: 1024px) {
  .section-banner h2 { font-size: 1.75rem; }
}
.section-banner .highlight { color: var(--brand-orange); }
.banner-blue { background: var(--brand-blue); }
.banner-red { background: var(--brand-red); }
.banner-navy { background: var(--brand-blue-dark); }

/* ═══════════════════════════════════════════
   TRUST BADGES BAR
   ═══════════════════════════════════════════ */
.trust-bar {
  background: var(--brand-blue-dark);
  padding: 1.5rem 0;
  text-align: center;
}
.trust-bar__title {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.15rem;
  text-transform: uppercase;
  color: var(--brand-white);
  margin-bottom: 1.25rem;
}
@media (min-width: 768px) {
  .trust-bar__title { font-size: 1.5rem; }
}
.trust-bar__title .highlight { color: var(--brand-orange); }
.trust-badges {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
}
@media (min-width: 768px) {
  .trust-badges { gap: 2.5rem; }
}
.trust-badge {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.4rem;
  color: rgba(255,255,255,0.8);
}
.trust-badge__icon {
  color: var(--brand-orange);
  font-size: 1.5rem;
}
.trust-badge__label {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

/* ═══════════════════════════════════════════
   CONTENT SECTIONS
   ═══════════════════════════════════════════ */
.section {
  padding: 3.5rem 0;
}
@media (min-width: 768px) {
  .section { padding: 4.5rem 0; }
}
.section-gray { background: var(--brand-gray); }
.section-blue { background: var(--brand-blue); color: var(--brand-white); }
.section-navy { background: var(--brand-blue-dark); color: var(--brand-white); }

.section__title {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.5rem;
  text-transform: uppercase;
  text-align: center;
  margin-bottom: 0.75rem;
}
@media (min-width: 768px) {
  .section__title { font-size: 1.85rem; }
}
.section__title .highlight { color: var(--brand-blue); }
.section-blue .section__title .highlight,
.section-navy .section__title .highlight { color: var(--brand-orange); }
.section__subtitle {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 2.5rem;
  color: #666;
  line-height: 1.7;
}
.section-blue .section__subtitle { color: rgba(255,255,255,0.85); }

/* ═══════════════════════════════════════════
   CARDS
   ═══════════════════════════════════════════ */
.card {
  background: var(--brand-white);
  box-shadow: 0 2px 12px rgba(0,0,0,0.08);
  border-top: 4px solid var(--brand-blue);
  padding: 1.75rem;
  transition: box-shadow 0.2s;
}
.card:hover { box-shadow: 0 6px 24px rgba(0,0,0,0.12); }
.card__icon {
  font-size: 2rem;
  margin-bottom: 0.75rem;
}
.card__title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1rem;
  text-transform: uppercase;
  margin-bottom: 0.75rem;
  color: var(--brand-charcoal);
}
.card__text {
  font-size: 0.9rem;
  color: #666;
  line-height: 1.7;
}

/* Service cards with images */
.service-card {
  background: var(--brand-white);
  box-shadow: 0 2px 12px rgba(0,0,0,0.08);
  border-bottom: 4px solid var(--brand-blue);
  overflow: hidden;
  transition: box-shadow 0.2s, transform 0.2s;
  text-decoration: none;
  display: block;
  color: inherit;
}
.service-card:hover {
  box-shadow: 0 8px 32px rgba(0,0,0,0.15);
  transform: translateY(-2px);
  color: inherit;
}
.service-card__image {
  aspect-ratio: 16/10;
  overflow: hidden;
}
.service-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s;
}
.service-card:hover .service-card__image img {
  transform: scale(1.05);
}
.service-card__body {
  padding: 1.5rem;
}
.service-card__icon { font-size: 1.75rem; margin-bottom: 0.5rem; }
.service-card__title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1rem;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
  color: var(--brand-charcoal);
  transition: color 0.2s;
}
.service-card:hover .service-card__title { color: var(--brand-blue); }
.service-card__text {
  font-size: 0.9rem;
  color: #666;
  line-height: 1.6;
}

/* Process step cards */
.process-card {
  background: var(--brand-white);
  box-shadow: 0 2px 12px rgba(0,0,0,0.08);
  border-top: 4px solid var(--brand-blue);
  padding: 1.75rem;
  position: relative;
}
.process-card__number {
  position: absolute;
  top: -1.25rem;
  left: 1.5rem;
  width: 2.5rem;
  height: 2.5rem;
  background: var(--brand-orange);
  color: var(--brand-white);
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 3px;
}
.process-card__title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.95rem;
  text-transform: uppercase;
  margin-top: 1rem;
  margin-bottom: 0.75rem;
  color: var(--brand-charcoal);
}
.process-card__text {
  font-size: 0.9rem;
  color: #666;
  line-height: 1.7;
}

/* ═══════════════════════════════════════════
   TESTIMONIALS
   ═══════════════════════════════════════════ */
.testimonial-card {
  background: var(--brand-white);
  border-top: 4px solid var(--brand-blue);
  box-shadow: 0 2px 16px rgba(0,0,0,0.08);
  padding: 2rem 2.5rem;
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
}
.testimonial-stars {
  display: flex;
  justify-content: center;
  gap: 0.2rem;
  margin-bottom: 1rem;
  color: var(--brand-orange);
  font-size: 1.1rem;
}
.testimonial-text {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.1rem;
  font-style: italic;
  color: var(--brand-charcoal);
  margin-bottom: 1rem;
  line-height: 1.6;
}
.testimonial-author {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--brand-blue);
}
.testimonial-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-top: 1.5rem;
}
.testimonial-nav button {
  width: 2rem;
  height: 2rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  color: #666;
  transition: background 0.2s;
}
.testimonial-nav button:hover { background: #f0f0f0; }
.testimonial-dots {
  display: flex;
  gap: 0.4rem;
}
.testimonial-dot {
  width: 0.6rem;
  height: 0.6rem;
  border-radius: 50%;
  background: #ccc;
  transition: background 0.2s;
  cursor: pointer;
  border: none;
}
.testimonial-dot.active { background: var(--brand-blue); }

/* Review cards (Reviews page grid) */
.review-card {
  background: var(--brand-white);
  border-top: 4px solid var(--brand-blue);
  box-shadow: 0 2px 12px rgba(0,0,0,0.08);
  padding: 1.5rem;
}
.review-card__stars {
  display: flex;
  gap: 0.15rem;
  margin-bottom: 0.75rem;
  color: var(--brand-orange);
}
.review-card__text {
  font-style: italic;
  color: #555;
  line-height: 1.7;
  margin-bottom: 1rem;
}
.review-card__author {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.85rem;
  color: var(--brand-blue);
}

/* ═══════════════════════════════════════════
   FAQ ACCORDION
   ═══════════════════════════════════════════ */
.faq-list {
  max-width: 800px;
  margin: 0 auto;
}
.faq-item {
  margin-bottom: 0.5rem;
}
.faq-item summary {
  cursor: pointer;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.1rem 1.25rem;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.95rem;
  background: var(--brand-white);
  border: 1px solid var(--brand-border);
  transition: background 0.2s;
  color: var(--brand-charcoal);
}
.faq-item summary:hover { background: #f0f4ff; }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: '▾';
  font-size: 1rem;
  transition: transform 0.2s;
  margin-left: 0.75rem;
  flex-shrink: 0;
}
.faq-item[open] summary::after {
  transform: rotate(180deg);
}
.faq-answer {
  padding: 1.1rem 1.25rem;
  border: 1px solid var(--brand-border);
  border-top: 0;
  background: #fafafa;
  font-size: 0.9rem;
  color: #555;
  line-height: 1.7;
}

/* ═══════════════════════════════════════════
   CONTACT FORM
   ═══════════════════════════════════════════ */
.contact-form {
  padding: 2rem;
}
@media (min-width: 768px) {
  .contact-form { padding: 2.5rem; }
}
.contact-form--dark {
  background: var(--brand-blue);
  color: var(--brand-white);
  border-radius: 3px;
}
.contact-form--light {
  background: var(--brand-white);
  border: 1px solid var(--brand-border);
  border-radius: 3px;
}
.contact-form__title {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.5rem;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
}
.contact-form__title .highlight { color: var(--brand-orange); }
.contact-form--dark .contact-form__title .highlight { color: var(--brand-orange); }
.contact-form--light .contact-form__title .highlight { color: var(--brand-red); }
.contact-form__subtitle {
  font-size: 0.85rem;
  opacity: 0.8;
  margin-bottom: 1.5rem;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
}
@media (min-width: 480px) {
  .form-row--2 { grid-template-columns: 1fr 1fr; }
}
.form-input,
.form-select,
.form-textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  font-family: var(--font-body);
  font-size: 0.9rem;
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 3px;
  transition: border-color 0.2s;
}
.contact-form--dark .form-input,
.contact-form--dark .form-select,
.contact-form--dark .form-textarea {
  background: rgba(255,255,255,0.1);
  color: var(--brand-white);
  border-color: rgba(255,255,255,0.2);
}
.contact-form--dark .form-input::placeholder,
.contact-form--dark .form-textarea::placeholder {
  color: rgba(255,255,255,0.5);
}
.contact-form--light .form-input,
.contact-form--light .form-select,
.contact-form--light .form-textarea {
  background: var(--brand-white);
  color: var(--brand-charcoal);
  border-color: #ddd;
}
.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  outline: none;
  border-color: var(--brand-orange);
}
.form-textarea { resize: vertical; min-height: 80px; }
.form-submit {
  width: 100%;
  padding: 0.85rem;
  background: var(--brand-orange);
  color: var(--brand-white);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  border: none;
  border-radius: 3px;
  transition: filter 0.2s;
  margin-top: 0.5rem;
}
.form-submit:hover { filter: brightness(1.1); }
.form-disclaimer {
  font-size: 0.7rem;
  opacity: 0.5;
  text-align: center;
  margin-top: 0.75rem;
}

/* ═══════════════════════════════════════════
   BLOG CARDS
   ═══════════════════════════════════════════ */
.blog-card {
  background: var(--brand-white);
  box-shadow: 0 2px 12px rgba(0,0,0,0.08);
  overflow: hidden;
  transition: box-shadow 0.2s, transform 0.2s;
  text-decoration: none;
  display: block;
  color: inherit;
  border-radius: 3px;
}
.blog-card:hover {
  box-shadow: 0 8px 32px rgba(0,0,0,0.15);
  transform: translateY(-2px);
  color: inherit;
}
.blog-card__image {
  aspect-ratio: 3/2;
  overflow: hidden;
}
.blog-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s;
}
.blog-card:hover .blog-card__image img {
  transform: scale(1.05);
}
.blog-card__body { padding: 1.25rem; }
.blog-card__category {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--brand-orange);
  margin-bottom: 0.4rem;
}
.blog-card__title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1rem;
  color: var(--brand-charcoal);
  margin-bottom: 0.5rem;
  transition: color 0.2s;
  line-height: 1.3;
}
.blog-card:hover .blog-card__title { color: var(--brand-blue); }
.blog-card__desc {
  font-size: 0.85rem;
  color: #666;
  line-height: 1.6;
  margin-bottom: 0.75rem;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.blog-card__meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.75rem;
}
.blog-card__date { color: #999; }
.blog-card__readmore {
  font-family: var(--font-display);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--brand-blue);
}

/* Blog filter buttons */
.blog-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  justify-content: center;
  padding: 1.25rem 0;
  border-bottom: 1px solid var(--brand-border);
}
.blog-filter-btn {
  padding: 0.5rem 1rem;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: #666;
  border-radius: 3px;
  transition: all 0.2s;
}
.blog-filter-btn:hover { background: #f0f0f0; }
.blog-filter-btn.active {
  background: var(--brand-blue);
  color: var(--brand-white);
}

/* ═══════════════════════════════════════════
   BLOG POST ARTICLE
   ═══════════════════════════════════════════ */
.article-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
}
@media (min-width: 1024px) {
  .article-layout { grid-template-columns: 2fr 1fr; }
}
.article-content h2 {
  font-size: 1.25rem;
  margin-top: 2rem;
  margin-bottom: 0.75rem;
}
.article-content p {
  color: #555;
  line-height: 1.8;
  margin-bottom: 1rem;
}
.article-sidebar {
  position: sticky;
  top: 6rem;
  align-self: start;
}
.sidebar-cta {
  background: var(--brand-blue);
  color: var(--brand-white);
  padding: 1.5rem;
  border-radius: 3px;
}
.sidebar-cta h3 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.1rem;
  text-transform: uppercase;
  color: var(--brand-white);
  margin-bottom: 0.75rem;
}
.sidebar-cta p {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.8);
  margin-bottom: 1rem;
  line-height: 1.6;
}

/* ═══════════════════════════════════════════
   CONTACT INFO BLOCKS
   ═══════════════════════════════════════════ */
.contact-info-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1.25rem;
}
.contact-info-icon {
  width: 2.5rem;
  height: 2.5rem;
  background: var(--brand-blue);
  color: var(--brand-white);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 3px;
  flex-shrink: 0;
  font-size: 1rem;
}
.contact-info-label {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.8rem;
  text-transform: uppercase;
  color: var(--brand-charcoal);
  margin-bottom: 0.15rem;
}
.contact-info-value {
  font-size: 0.9rem;
  color: #555;
}
.contact-info-value a { color: #555; }
.contact-info-value a:hover { color: var(--brand-blue); }

/* ═══════════════════════════════════════════
   EDUCATIONAL CONTENT
   ═══════════════════════════════════════════ */
.edu-content {
  max-width: 900px;
  margin: 0 auto;
}
.edu-content h2 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
}
.edu-content h3 {
  font-size: 1.15rem;
  margin-top: 2rem;
  margin-bottom: 0.75rem;
}
.edu-content p {
  color: #555;
  line-height: 1.8;
  margin-bottom: 1rem;
}
.edu-list {
  margin-top: 0.5rem;
}
.edu-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  margin-bottom: 0.6rem;
  color: #555;
  line-height: 1.6;
}
.edu-list li::before {
  content: '✓';
  color: var(--brand-blue);
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 0.1rem;
}
.edu-list--orange li::before {
  content: '▸';
  color: var(--brand-orange);
}

/* ═══════════════════════════════════════════
   FOOTER
   ═══════════════════════════════════════════ */
.footer-cta {
  background: var(--brand-blue);
  padding: 2rem 0;
  text-align: center;
}
.footer-cta h3 {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.5rem;
  text-transform: uppercase;
  color: var(--brand-white);
  margin-bottom: 1rem;
}
@media (min-width: 768px) {
  .footer-cta h3 { font-size: 1.75rem; }
}
.footer {
  background: var(--brand-blue-dark);
  color: var(--brand-white);
  padding: 3rem 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}
@media (min-width: 768px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (min-width: 1024px) {
  .footer-grid { grid-template-columns: 1fr 1fr 1fr 1fr; }
}
.footer h4 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1rem;
  text-transform: uppercase;
  color: var(--brand-orange);
  margin-bottom: 1rem;
}
.footer ul li { margin-bottom: 0.4rem; }
.footer a {
  color: #b0b0b0;
  font-size: 0.85rem;
  transition: color 0.2s;
}
.footer a:hover { color: var(--brand-white); }
.footer p {
  color: #b0b0b0;
  font-size: 0.85rem;
  line-height: 1.6;
}
.footer-cert {
  margin-top: 1rem;
  padding: 0.75rem;
  background: rgba(255,255,255,0.05);
  border-radius: 3px;
}
.footer-cert__label {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.65rem;
  text-transform: uppercase;
  color: #888;
  margin-bottom: 0.25rem;
}
.footer-cert__value {
  font-size: 0.85rem;
  color: #b0b0b0;
}
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  margin-top: 2rem;
  padding-top: 1rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.75rem;
  color: #888;
}
@media (min-width: 768px) {
  .footer-bottom { flex-direction: row; justify-content: space-between; }
}
.footer-bottom a { color: #888; }
.footer-bottom a:hover { color: var(--brand-white); }

/* ═══════════════════════════════════════════
   UTILITY CLASSES
   ═══════════════════════════════════════════ */
.text-center { text-align: center; }
.text-left { text-align: left; }
.mb-0 { margin-bottom: 0; }
.mb-1 { margin-bottom: 0.5rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }
.mb-4 { margin-bottom: 2rem; }
.mt-2 { margin-top: 1rem; }
.mt-4 { margin-top: 2rem; }
.mx-auto { margin-left: auto; margin-right: auto; }
.max-w-lg { max-width: 520px; }
.max-w-2xl { max-width: 720px; }
.max-w-3xl { max-width: 900px; }
.hidden { display: none; }
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  border: 0;
}

/* SVG icons inline sizing */
.icon-sm { width: 16px; height: 16px; }
.icon-md { width: 20px; height: 20px; }
.icon-lg { width: 28px; height: 28px; }

/* Map placeholder */
.map-placeholder {
  background: #e0e0e0;
  height: 300px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #999;
  border-radius: 3px;
}

/* ═══════════════════════════════════════════
   HIGHLIGHT (non-banner contexts)
   ═══════════════════════════════════════════ */
.highlight { color: var(--brand-orange); }
.section__title .highlight { color: var(--brand-blue); }

/* ═══════════════════════════════════════════
   BLOG POST ARTICLE STYLES
   ═══════════════════════════════════════════ */
.article-hero {
  background: var(--brand-blue);
  padding: 2rem 0 2.5rem;
}
.article-hero__breadcrumb {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.6);
  margin-bottom: 1rem;
}
.article-hero__breadcrumb a {
  color: rgba(255,255,255,0.6);
}
.article-hero__breadcrumb a:hover {
  color: var(--brand-white);
}
.article-hero__category {
  display: inline-block;
  background: var(--brand-orange);
  color: var(--brand-white);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 0.3rem 0.6rem;
  margin-bottom: 0.75rem;
}
.article-hero__title {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.75rem;
  color: var(--brand-white);
  text-transform: uppercase;
  margin-bottom: 0.75rem;
  line-height: 1.15;
}
@media (min-width: 768px) {
  .article-hero__title { font-size: 2.25rem; }
}
.article-hero__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.7);
}

/* Article content typography */
.article-content {
  font-size: 1rem;
  line-height: 1.8;
}
.article-content h2 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.25rem;
  text-transform: uppercase;
  color: var(--brand-charcoal);
  margin-top: 2.5rem;
  margin-bottom: 0.75rem;
  padding-bottom: 0.5rem;
  border-bottom: 2px solid var(--brand-blue);
}
.article-content h3 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--brand-charcoal);
  margin-top: 1.5rem;
  margin-bottom: 0.5rem;
}
.article-content p {
  color: #555;
  margin-bottom: 1rem;
}
.article-content ul,
.article-content ol {
  margin: 0.75rem 0 1rem 1.5rem;
  color: #555;
}
.article-content ul li {
  list-style: disc;
  margin-bottom: 0.4rem;
  line-height: 1.7;
}
.article-content ol li {
  list-style: decimal;
  margin-bottom: 0.4rem;
  line-height: 1.7;
}
.article-content blockquote {
  border-left: 4px solid var(--brand-blue);
  padding: 1rem 1.25rem;
  margin: 1.5rem 0;
  background: #f5f8ff;
  font-style: italic;
  color: #444;
}
.article-content img {
  border-radius: 3px;
  margin: 1.5rem 0;
  box-shadow: 0 2px 12px rgba(0,0,0,0.1);
}

/* Article sidebar */
.article-sidebar {
  position: sticky;
  top: 6rem;
  align-self: start;
}
.sidebar-toc {
  background: var(--brand-gray);
  padding: 1.25rem;
  border-radius: 3px;
  margin-bottom: 1.5rem;
}
.sidebar-toc h4 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.8rem;
  text-transform: uppercase;
  color: var(--brand-charcoal);
  margin-bottom: 0.75rem;
}
.sidebar-toc ul {
  margin: 0;
}
.sidebar-toc li {
  margin-bottom: 0.4rem;
}
.sidebar-toc a {
  font-size: 0.85rem;
  color: #666;
}
.sidebar-toc a:hover {
  color: var(--brand-blue);
}
