
/* ===== RESET & BASE ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif; color: #374151; line-height: 1.7; background: #ffffff; overflow-x: hidden; }
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.sr-only { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0,0,0,0); }

/* ===== REVEAL ===== */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity 0.6s ease, transform 0.6s ease; }
.reveal.revealed { opacity: 1; transform: translateY(0); }

/* ===== TICKER ===== */
.shah-ticker { background: #FE4A00; overflow: hidden; white-space: nowrap; height: 40px; display: flex; align-items: center; position: relative; z-index: 9999; }
.shah-ticker__track { display: flex; width: max-content; animation: ticker-scroll 40s linear infinite; }
.shah-ticker__track:hover { animation-play-state: paused; }
.shah-ticker__content { display: flex; align-items: center; padding-right: 0; }
.shah-ticker__item { font-size: 19px; font-weight: 700; color: #ffffff; padding: 0 32px; text-transform: uppercase; letter-spacing: 0.5px; white-space: nowrap; }
.shah-ticker__dot { width: 5px; height: 5px; background: #FE4A00; border-radius: 50%; flex-shrink: 0; }
@keyframes ticker-scroll { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }

/* ===== HEADER ===== */
.shah-header { background: #234190;
        border-bottom: 3px solid #FE4A00 !important; position: sticky; top: 0; z-index: 1000; box-shadow: 0 2px 12px rgba(0,0,0,0.08); }/* ===== MOBILE MENU ===== */
.shah-mobile-menu { display: none; position: fixed; inset: 0; z-index: 9998; }
.shah-mobile-menu--open { display: block; }
.shah-mobile-menu__overlay { position: absolute; inset: 0; background: rgba(0,0,0,0.5); }
.shah-mobile-menu__panel { position: absolute; top: 0; right: 0; bottom: 0; width: min(380px, 90vw); background: #0a1628; overflow-y: auto; padding-bottom: 40px; }
.shah-mobile-menu__top { display: flex; align-items: center; justify-content: space-between; padding: 20px 24px; border-bottom: 1px solid #f0f2f5; }
.shah-mobile-menu__close { background: none; border: none; color: #fff; font-size: 2rem; cursor: pointer; line-height: 1; padding: 0 4px; }
.shah-mobile-menu__list { list-style: none; padding: 8px 0; }
.shah-mobile-menu__parent-row { display: flex; align-items: center; justify-content: space-between; }
.shah-mobile-menu__link { display: block; padding: 14px 24px; font-size: 1rem; font-weight: 600; color: #ffffff; flex: 1; }
.shah-mobile-menu__toggle { background: none; border: none; color: rgba(255,255,255,0.85); font-size: 1.5rem; cursor: pointer; padding: 14px 20px; line-height: 1; }
.shah-mobile-menu__toggle-icon { display: block; }
.shah-mobile-menu__toggle--open .shah-mobile-menu__toggle-icon { transform: rotate(45deg); }
.shah-mobile-menu__submenu { display: none; background: rgba(255,255,255,0.05); padding: 4px 0; }
.shah-mobile-menu__submenu--open { display: block; }
.shah-mobile-menu__sublink { display: block; padding: 10px 24px 10px 40px; font-size: 0.9rem; color: rgba(255,255,255,0.75); transition: color 0.2s; }
.shah-mobile-menu__sublink:hover { color: #FE4A00; }
body.shah-mobile-open { overflow: hidden; }

/* ===== BREADCRUMB ===== */
.breadcrumb { background: #ffffff; padding: 12px 0; font-size: 0.85rem; color: #234190; border-bottom: 1px solid #ffffff; }
.breadcrumb a { color: #234190; }
.breadcrumb a:hover { text-decoration: underline; }
.breadcrumb span { margin: 0 8px; color: #4b5563; }

/* ===== BLOG HERO — MAGAZINE MASTHEAD STYLE ===== */
.blog-hero {
  background: #234190;
  position: relative;
  overflow: hidden;
  border-bottom: 4px solid #FE4A00;
}
.blog-hero__orange-top {
  height: 8px;
  background: #FE4A00;
  width: 100%;
}
.blog-hero__masthead {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 48px;
  align-items: center;
  padding: 56px 0 52px;
  position: relative;
  z-index: 2;
}
.blog-hero__dots {
  position: absolute;
  top: 0; right: 0; bottom: 0;
  width: 55%;
  pointer-events: none;
  z-index: 1;
  opacity: 0.04;
  background-image: radial-gradient(circle, #ffffff 1px, transparent 1px);
  background-size: 28px 28px;
}
.blog-hero__left {}
.blog-hero__eyebrow {
  font-size: 0.72rem;
  font-weight: 800;
  color: #FE4A00;
  text-transform: uppercase;
  letter-spacing: 3px;
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.blog-hero__eyebrow::before {
  content: '';
  display: block;
  width: 32px;
  height: 2px;
  background: #FE4A00;
  flex-shrink: 0;
}
.blog-hero h1 {
  font-family: 'Oswald', sans-serif;
  font-size: 5.5rem;
  font-weight: 700;
  color: #ffffff;
  text-transform: uppercase;
  letter-spacing: -0.01em;
  line-height: 0.9;
  margin-bottom: 22px;
}
.blog-hero__subtitle {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.65);
  max-width: 520px;
  line-height: 1.65;
  margin-bottom: 28px;
}
.blog-hero__meta {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}
.blog-hero__count-badge {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: #FE4A00;
  color: #fff;
  font-size: 0.82rem;
  font-weight: 700;
  padding: 7px 16px;
  border-radius: 50px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.blog-hero__tag {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.85);
  font-style: italic;
}
.blog-hero__right {
  flex-shrink: 0;
  position: relative;
  z-index: 2;
}
.blog-hero__icon-circle {
  width: 200px;
  height: 200px;
  border-radius: 50%;
  background: rgba(240,79,37,0.12);
  border: 2px solid rgba(240,79,37,0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.blog-hero__icon-circle::before {
  content: '';
  position: absolute;
  inset: -12px;
  border-radius: 50%;
  border: 1px solid rgba(240,79,37,0.12);
}
.blog-hero__icon-circle::after {
  content: '';
  position: absolute;
  inset: -24px;
  border-radius: 50%;
  border: 1px solid rgba(240,79,37,0.06);
}
.blog-hero__quote-text {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.85);
  font-style: italic;
  text-align: center;
  max-width: 160px;
  line-height: 1.5;
  padding: 0 16px;
}
.blog-hero__divider-line {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: rgba(255,255,255,0.08);
  z-index: 2;
}

/* ===== BLOG GRID SECTION ===== */
.blog-grid-section {
  background: #f3f3f3;
  padding: 60px 0 80px;
}
.blog-grid-section__heading-wrap {
  text-align: center;
  margin-bottom: 44px;
}
.blog-grid-section__heading {
  font-family: 'Oswald', sans-serif;
  font-size: 2.2rem;
  font-weight: 700;
  color: #234190;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  margin-bottom: 12px;
}
.blog-grid-section__orange-bar {
  width: 72px;
  height: 4px;
  background: #FE4A00;
  border-radius: 2px;
  margin: 0 auto;
}
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.blog-card {
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(0,0,0,0.07);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
}
.blog-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 36px rgba(0,0,0,0.13);
}
.blog-card__img {
  height: 200px;
  overflow: hidden;
  flex-shrink: 0;
}
.blog-card__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
  display: block;
}
.blog-card:hover .blog-card__img img { transform: scale(1.05); }
.blog-card__body {
  padding: 20px 24px 24px;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.blog-card__date {
  font-size: 0.78rem;
  color: #FE4A00;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 8px;
}
.blog-card__title {
  color: #234190;
  font-weight: 700;
  font-size: 1rem;
  line-height: 1.4;
  margin-bottom: 10px;
}
.blog-card__excerpt {
  font-size: 0.9rem;
  color: #4b5563;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  line-height: 1.55;
  flex: 1;
}
.blog-card__read-more {
  color: #FE4A00;
  font-weight: 600;
  font-size: 0.88rem;
  margin-top: 16px;
  display: inline-block;
  transition: color 0.2s;
}
.blog-card__read-more:hover { color: #e53d22; }

/* ===== CTA BANNER ===== */
.blog-cta {
  background: linear-gradient(135deg, #FE4A00 0%, #234190 60%);
  padding: 70px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.blog-cta::before {
  content: '';
  position: absolute;
  top: -60px; left: -60px;
  width: 280px; height: 280px;
  background: radial-gradient(circle, rgba(255,255,255,0.07) 0%, transparent 70%);
  border-radius: 50%;
}
.blog-cta__inner { position: relative; z-index: 2; }
.blog-cta h2 {
  font-family: 'Oswald', sans-serif;
  font-size: 2.6rem;
  font-weight: 700;
  color: #ffffff;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  margin-bottom: 12px;
}
.blog-cta p {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.8);
  margin-bottom: 32px;
  line-height: 1.65;
}
.blog-cta__btns {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}
.blog-cta__btn-white {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #ffffff;
  color: #234190;
  padding: 14px 32px;
  border-radius: 8px;
  font-weight: 700;
  font-size: 1rem;
  transition: all 0.2s;
  box-shadow: 0 4px 20px rgba(0,0,0,0.2);
}
.blog-cta__btn-white:hover { background: #f3f3f3; transform: translateY(-2px); }
.blog-cta__btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: transparent;
  color: #fff;
  padding: 14px 32px;
  border-radius: 8px;
  font-weight: 700;
  font-size: 1rem;
  border: 2px solid rgba(255,255,255,0.5);
  transition: all 0.2s;
}
.blog-cta__btn-outline:hover { border-color: #fff; background: rgba(255,255,255,0.1); }

/* ===== FOOTER ===== */
.shah-footer { background: #234190; font-family: 'Inter', sans-serif; }
.shah-footer__container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.shah-footer__service-areas { background: #ffffff !important; padding: 32px 0; border-bottom: 1px solid #f0f2f5; }
.shah-footer__areas-heading { font-size: 0.85rem; font-weight: 700; color: #FE4A00; text-transform: uppercase; letter-spacing: 2px; margin-bottom: 16px; }
.shah-footer__city-grid { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 16px; }
.shah-footer__areas-tagline { font-size: 0.8rem; color: #374151; line-height: 1.7; max-width: 900px; margin-top: 12px; }
.shah-footer__city-link { font-size: 0.82rem; color: rgba(255,255,255,0.65); padding: 4px 12px; background: rgba(255,255,255,0.07); border-radius: 20px; transition: all 0.2s; text-decoration: none; }
.shah-footer__city-link:hover { background: rgba(255,255,255,0.15); color: #fff; }
.shah-footer__main { background: #234190 !important; padding: 32px 0 !important; border-bottom: 1px solid #f0f2f5; }
.shah-footer__columns { display: grid; grid-template-columns: 2fr 1fr 1fr 1.5fr; gap: 48px; }
.shah-footer__col--logo img { height: 52px; width: auto; margin-bottom: 16px; }
.shah-footer__tagline { font-size: 0.88rem; color: rgba(255,255,255,0.70); margin-bottom: 20px; line-height: 1.6; }
.shah-footer__col-heading { font-size: 19px; font-weight: 700; color: rgba(255,255,255,0.85); text-transform: uppercase; letter-spacing: 1.5px; margin-bottom: 14px; }
.shah-footer__links { list-style: none; }
.shah-footer__links li { margin-bottom: 8px; }
.shah-footer__links li a { font-size: 0.9rem; color: rgba(255,255,255,0.75); transition: color 0.2s; text-decoration: none; }
.shah-footer__links li a:hover { color: #FE4A00; }
.shah-footer__contact-item { margin-bottom: 14px; }
.shah-footer__contact-label { font-size: 0.72rem; font-weight: 700; color: rgba(255,255,255,0.75); text-transform: uppercase; letter-spacing: 1px; display: block; margin-bottom: 3px; }
.shah-footer__contact-phone { font-size: 1.2rem; font-weight: 700; color: #ffffff; transition: color 0.2s; text-decoration: none; display: block; }
.shah-footer__contact-phone:hover { color: #FE4A00; }
.shah-footer__address { font-size: 0.88rem; color: rgba(255,255,255,0.7); font-style: normal; line-height: 1.5; }
.shah-footer__license { font-size: 0.88rem; color: rgba(255,255,255,0.7); }
.shah-footer__emergency { font-size: 0.88rem; color: #FE4A00; font-weight: 600; text-decoration: none; display: block; }
.shah-footer__emergency:hover { text-decoration: underline; }
.shah-footer__social-icons { display: flex; gap: 10px; flex-wrap: wrap; margin-top: 4px; }
.shah-footer__social-icons a { display: flex; align-items: center; justify-content: center; width: 38px; height: 38px; background: #FE4A00; border-radius: 6px; transition: all 0.2s; color: #fff; }
.shah-footer__social-icons a:hover { background: #e53d22; transform: translateY(-2px); }
.shah-footer__social-icons a svg {
  fill: #ffffff !important; width: 18px; height: 18px; fill: #fff; }
.shah-footer__copyright { background: #FE4A00; padding: 14px 0; }
.shah-footer__copyright-text { font-size: 0.82rem; color: rgba(255,255,255,0.9); text-align: center; }
.shah-footer__copyright-text a { color: #fff; text-decoration: underline; }

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .shah-header__nav { display: none; }
  .shah-header__location { display: none; }
  .shah-header__open-badge { display: none; }
  .shah-header__hamburger { display: flex; }
  .blog-hero h1 { font-size: 4rem; }
  .blog-grid { grid-template-columns: repeat(2, 1fr); }
  .shah-footer__columns { grid-template-columns: 1fr 1fr; gap: 32px; }
}
@media (max-width: 768px) {
  .blog-hero__masthead { grid-template-columns: 1fr; gap: 32px; }
  .blog-hero h1 { font-size: 3rem; }
  .blog-hero__right { display: none; }
  .blog-grid { grid-template-columns: 1fr; }
  .blog-grid-section__heading { font-size: 1.7rem; }
  .blog-cta h2 { font-size: 1.9rem; }
  .shah-footer__columns { grid-template-columns: 1fr; }
}


/* ── Blog post layout (extracted from inline) ── */

    *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
    body { font-family: 'Inter', sans-serif; color: #374151; background: #fff; }

    /* ── Blog post hero ── */
    .bp-hero {
      background: linear-gradient(135deg, #234190 0%, #234190 100%);
      padding: 64px 24px 48px;
      text-align: center;
    }
    .bp-hero__breadcrumb {
      font-size: 0.85rem;
      color: rgba(255,255,255,0.65);
      margin-bottom: 16px;
    }
    .bp-hero__breadcrumb a { color: rgba(255,255,255,0.65); text-decoration: none; }
    .bp-hero__breadcrumb a:hover { color: #FE4A00; }
    .bp-hero__breadcrumb span { color: rgba(255,255,255,0.65); margin: 0 6px; }
    .bp-hero__category {
      display: inline-block;
      background: #FE4A00;
      color: #fff;
      font-size: 0.75rem;
      font-weight: 700;
      letter-spacing: 0.08em;
      text-transform: uppercase;
      padding: 4px 12px;
      border-radius: 20px;
      margin-bottom: 20px;
    }
    .bp-hero__title {
      font-size: clamp(1.6rem, 4vw, 2.6rem);
      font-weight: 800;
      color: #fff;
      line-height: 1.2;
      max-width: 820px;
      margin: 0 auto 20px;
    }
    .bp-hero__meta {
      font-size: 0.9rem;
      color: rgba(255,255,255,0.70);
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 20px;
      flex-wrap: wrap;
    }
    .bp-hero__meta-item { display: flex; align-items: center; gap: 6px; }

    /* ── Article layout ── */
    .bp-wrap {
      max-width: 820px;
      margin: 0 auto;
      padding: 48px 24px 64px;
    }

    /* ── Content styles ── */
    .bp-content h2 {
      font-size: 1.55rem;
      font-weight: 800;
      color: #234190;
      margin: 40px 0 14px;
      line-height: 1.25;
    }
    .bp-content h3 {
      font-size: 1.2rem;
      font-weight: 700;
      color: #234190;
      margin: 28px 0 10px;
      line-height: 1.3;
    }
    .bp-content h4 {
      font-size: 1rem;
      font-weight: 700;
      color: #374151;
      margin: 20px 0 8px;
    }
    .bp-content p {
      font-size: 1.05rem;
      line-height: 1.75;
      color: #374151;
      margin-bottom: 18px;
    }
    .bp-content ul, .bp-content ol {
      padding-left: 24px;
      margin-bottom: 18px;
    }
    .bp-content li {
      font-size: 1.05rem;
      line-height: 1.7;
      margin-bottom: 6px;
      color: #374151;
    }
    .bp-content strong { color: #234190; }
    .bp-content a { color: #234190; font-weight: 600; }
    .bp-content a:hover { color: #FE4A00; }
    .bp-content blockquote {
      border-left: 4px solid #FE4A00;
      padding: 14px 20px;
      margin: 24px 0;
      background: #f3f3f3;
      border-radius: 0 8px 8px 0;
      font-style: italic;
      color: #4b5563;
    }
    .bp-content table {
      width: 100%;
      border-collapse: collapse;
      margin: 24px 0;
      font-size: 0.95rem;
    }
    .bp-content th {
      background: #234190;
      color: #fff;
      padding: 10px 14px;
      text-align: left;
      font-weight: 700;
    }
    .bp-content td {
      padding: 10px 14px;
      border-bottom: 1px solid #ffffff;
    }
    .bp-content tr:nth-child(even) td { background: #f3f3f3; }
    .bp-content img {
      max-width: 100%;
      height: auto;
      border-radius: 8px;
      margin: 20px 0;
    }
    /* WP callout boxes */
    .bp-content div[style*="border-left"] {
      border-radius: 0 8px 8px 0;
      margin: 24px 0;
    }

    /* ── CTA box ── */
    .bp-cta {
      background: linear-gradient(135deg, #234190, #234190);
      border-radius: 12px;
      padding: 40px 32px;
      text-align: center;
      margin: 48px 0 0;
    }
    .bp-cta__heading {
      font-size: 1.4rem;
      font-weight: 800;
      color: #fff;
      margin-bottom: 10px;
    }
    .bp-cta__sub {
      color: rgba(255,255,255,0.75);
      font-size: 1rem;
      margin-bottom: 24px;
    }
    .bp-cta__buttons { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
    .bp-cta__btn-orange {
      background: #FE4A00; color: #fff; font-weight: 700;
      padding: 14px 28px; border-radius: 6px; text-decoration: none;
      font-size: 1rem; transition: background .2s;
    }
    .bp-cta__btn-orange:hover { background: #e53d22; }
    .bp-cta__btn-white {
      background: rgba(255,255,255,0.12); color: #fff; font-weight: 600;
      padding: 14px 28px; border-radius: 6px; text-decoration: none;
      font-size: 1rem; border: 1px solid rgba(255,255,255,0.3);
      transition: background .2s;
    }
    .bp-cta__btn-white:hover { background: rgba(255,255,255,0.2); }

    /* ── Back to blog ── */
    .bp-back {
      display: inline-flex; align-items: center; gap: 8px;
      color: #234190; font-weight: 600; text-decoration: none;
      font-size: 0.95rem; margin-bottom: 32px;
    }
    .bp-back:hover { color: #FE4A00; }
    .bp-back svg { flex-shrink: 0; }

    @media (max-width: 600px) {
      .bp-wrap { padding: 32px 16px 48px; }
      .bp-hero { padding: 48px 16px 36px; }
      .bp-cta { padding: 28px 20px; }
    }
  
@media (max-width: 360px) {
  body { font-size: 15px; }
}


/* ── Skip nav + area pills + footer social (injections) ── */
.skip-nav:focus{left:4px!important;outline:3px solid #FE4A00;border-radius:4px;}
/* INJECTION: area-pill */
.shah-area-pill { display: flex; align-items: center; gap: 8px; padding: 10px 14px; background: linear-gradient(to right, #ffffff 0%, #ffffff 25%, rgba(254,74,0,0.12) 50%, rgba(254,74,0,0.5) 75%, #FE4A00 100%); border: 2px solid #FE4A00; border-radius: 8px; color: #0a1628; font-size: 14px; font-weight: 600; text-decoration: none; transition: all 0.2s; }
.shah-area-pill:hover { background: linear-gradient(to right, #fff 0%, rgba(254,74,0,0.35) 40%, #FE4A00 100%); }
.area-pill__pin { flex-shrink: 0; }
.shah-area-pill-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px; }
@media (max-width: 900px) { .shah-area-pill-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px) { .shah-area-pill-grid { grid-template-columns: 1fr; } }

/* Social icons — orange square */
.shah-footer__social-icons { display: flex !important; align-items: center !important; gap: 10px !important; margin-top: 20px !important; }
.shah-footer__social-icons a { display: flex !important; align-items: center !important; justify-content: center !important; width: 38px !important; height: 38px !important; border-radius: 6px !important; background: #FE4A00 !important; transition: transform 0.2s, opacity 0.2s !important; text-decoration: none !important; }
.shah-footer__social-icons a:hover { transform: translateY(-2px) !important; opacity: 0.85 !important; background: #FE4A00 !important; }
.shah-footer__social-icons a svg { width: 17px !important; height: 17px !important; }
