
/* ===== 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 33s 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.5); 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.45);
  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.5);
  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.5); 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.45); 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; }
}

@media (max-width: 360px) {
  body { font-size: 15px; }
}
