/* ============================================================
   RESET & BASE
============================================================ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Open Sans', sans-serif;
  color: #222;
  background: #fff;
  line-height: 1.7;
}
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* ============================================================
   CSS VARIABLES
============================================================ */
:root {
  --blue:       #1A3A5C;
  --blue-dark:  #122840;
  --orange:     #E8491D;
  --orange-dk:  #c73a12;
  --white:      #ffffff;
  --light-bg:   #f4f8fc;
  --text:       #222222;
  --text-light: #555;
  --radius:     8px;
  --shadow:     0 4px 20px rgba(26,58,92,0.12);
  --transition: 0.3s ease;
}

/* ============================================================
   UTILITIES
============================================================ */
.container { max-width: 1180px; margin: 0 auto; padding: 0 20px; }
.section-pad { padding: 80px 0; }
.section-pad-sm { padding: 52px 0; }
.text-center { text-align: center; }
.btn {
  display: inline-block;
  padding: 14px 32px;
  border-radius: var(--radius);
  font-family: 'Oswald', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  cursor: pointer;
  transition: background var(--transition), transform var(--transition), box-shadow var(--transition);
  border: none;
}
.btn-primary {
  background: var(--orange);
  color: var(--white);
}
.btn-primary:hover {
  background: var(--orange-dk);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(232,73,29,0.4);
}
.btn-outline {
  background: transparent;
  color: var(--white);
  border: 2px solid var(--white);
}
.btn-outline:hover {
  background: var(--white);
  color: var(--blue);
  transform: translateY(-2px);
}
.section-label {
  font-family: 'Oswald', sans-serif;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 12px;
}
.section-title {
  font-family: 'Oswald', sans-serif;
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 700;
  color: var(--blue);
  line-height: 1.2;
  margin-bottom: 16px;
}
.section-title--white { color: var(--white); }
.section-subtitle {
  font-size: 1rem;
  color: var(--text-light);
  max-width: 650px;
  margin: 0 auto 48px;
  line-height: 1.75;
}
.stars { color: var(--orange); letter-spacing: 2px; }

/* ============================================================
   TOP BAR
============================================================ */
.top-bar {
  background: var(--blue-dark);
  color: rgba(255,255,255,0.85);
  font-size: 0.82rem;
  padding: 8px 0;
}
.top-bar__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
}
.top-bar a { color: rgba(255,255,255,0.85); transition: color var(--transition); }
.top-bar a:hover { color: var(--orange); }
.top-bar__item { display: flex; align-items: center; gap: 7px; }
.top-bar__item i { color: var(--orange); }
.top-bar__right { display: flex; gap: 24px; }

/* ============================================================
   HEADER / NAV
============================================================ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--blue);
  box-shadow: 0 2px 14px rgba(0,0,0,0.15);
}
.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 0;
  gap: 20px;
}
.logo {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}
.logo__main {
  font-family: 'Oswald', sans-serif;
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: 0.3px;
}
.logo__sub {
  font-size: 0.7rem;
  color: var(--orange);
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
}
.nav { display: flex; align-items: center; gap: 8px; }
.nav a {
  color: rgba(255,255,255,0.88);
  font-size: 0.88rem;
  font-weight: 600;
  padding: 8px 14px;
  border-radius: var(--radius);
  transition: background var(--transition), color var(--transition);
}
.nav a:hover, .nav a.active {
  background: rgba(255,255,255,0.12);
  color: var(--white);
}
.header__cta {
  display: flex;
  align-items: center;
  gap: 8px;
  background: var(--orange);
  color: var(--white);
  font-family: 'Oswald', sans-serif;
  font-size: 1.05rem;
  font-weight: 700;
  padding: 10px 22px;
  border-radius: var(--radius);
  transition: background var(--transition), transform var(--transition), box-shadow var(--transition);
  white-space: nowrap;
}
.header__cta:hover { 
  background: var(--orange-dk); 
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(232,73,29,0.3);
}
.header__cta i { font-size: 1rem; }
.nav-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--white);
  font-size: 1.5rem;
  cursor: pointer;
  transition: color var(--transition);
}
.nav-toggle:hover { color: var(--orange); }

/* ============================================================
   PAGE HERO
============================================================ */
.page-hero {
  position: relative;
  min-height: 400px;
  display: flex;
  align-items: center;
  background: linear-gradient(135deg, var(--blue-dark) 0%, var(--blue) 100%);
  overflow: hidden;
}
.page-hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: url('images/hero-bg.jpg') center/cover no-repeat;
  opacity: 0.12;
  pointer-events: none;
}
.page-hero__inner {
  position: relative;
  z-index: 1;
  padding: 70px 0;
}
.page-hero h1 {
  font-family: 'Oswald', sans-serif;
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1.15;
  margin-bottom: 18px;
}
.page-hero h1 span { color: var(--orange); }
.page-hero p {
  color: rgba(255,255,255,0.87);
  font-size: 1.05rem;
  max-width: 660px;
  line-height: 1.75;
}

.section-pad { padding: 72px 0; }
.section-pad-sm { padding: 48px 0; }

.company-services-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 24px;
      margin-top: 20px;
    }
    .company-service-card {
      background: var(--white);
      border-radius: 10px;
      padding: 32px 28px;
      box-shadow: var(--shadow);
      transition: transform var(--transition), box-shadow var(--transition);
      border-top: 4px solid transparent;
    }
    .company-service-card:hover {
      transform: translateY(-4px);
      box-shadow: 0 12px 32px rgba(26,58,92,0.14);
      border-top-color: var(--orange);
    }
    .company-service-card__icon {
      width: 58px;
      height: 58px;
      background: var(--light-bg);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      color: var(--blue);
      font-size: 1.4rem;
      margin-bottom: 18px;
      transition: background var(--transition), color var(--transition);
    }
    .company-service-card:hover .company-service-card__icon {
      background: var(--orange);
      color: var(--white);
    }
    .company-service-card h3 {
      font-family: 'Oswald', sans-serif;
      font-size: 1.1rem;
      font-weight: 700;
      color: var(--blue);
      margin-bottom: 10px;
    }
    .company-service-card p {
      font-size: 0.88rem;
      color: var(--text-light);
      line-height: 1.65;
      margin-bottom: 18px;
    }

    @media (max-width: 1024px) {
      .company-services-grid { grid-template-columns: repeat(2, 1fr); }
    }

     @media (max-width: 768px) {
      
      .company-services-grid { grid-template-columns: 1fr; }
    }

/* ============================================================
   ARTICLE / CONTENT
============================================================ */
.article-section { background: var(--white); }
.article-wrap {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 52px;
  align-items: start;
}
.article-body h2 {
  font-family: 'Oswald', sans-serif;
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  font-weight: 700;
  color: var(--blue);
  margin: 36px 0 16px;
  line-height: 1.2;
}
.article-body h2:first-child { margin-top: 0; }
.article-body h3 {
  font-family: 'Oswald', sans-serif;
  font-size: 1.18rem;
  font-weight: 600;
  color: var(--blue);
  margin: 24px 0 12px;
}
.article-body p {
  color: var(--text-light);
  font-size: 0.98rem;
  margin-bottom: 18px;
  line-height: 1.8;
}
.article-body ul {
  list-style: disc;
  padding-left: 24px;
  margin-bottom: 18px;
}
.article-body ul li {
  color: var(--text-light);
  font-size: 0.96rem;
  margin-bottom: 8px;
  line-height: 1.75;
}
.article-body ul li strong { color: var(--blue); }
.article-img {
  border-radius: var(--radius);
  overflow: hidden;
  margin: 28px 0;
  box-shadow: 0 6px 24px rgba(0,0,0,0.1);
}
.article-img img { width: 100%; height: 280px; object-fit: cover; }

/* Sidebar */
.sidebar { position: sticky; top: 120px; }
.sidebar-card {
  background: var(--light-bg);
  border-radius: var(--radius);
  padding: 32px;
  margin-bottom: 28px;
  border-left: 5px solid var(--orange);
}
.sidebar-card h4 {
  font-family: 'Oswald', sans-serif;
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--blue);
  margin-bottom: 16px;
}
.sidebar-card ul li {
  font-size: 0.9rem;
  color: var(--text-light);
  padding: 6px 0;
  border-bottom: 1px solid rgba(0,0,0,0.07);
  display: flex;
  align-items: center;
  gap: 10px;
}
.sidebar-card ul li:last-child { border-bottom: none; }
.sidebar-card ul li i { color: var(--orange); font-size: 0.85rem; }
.sidebar-cta {
  background: var(--blue);
  border-radius: var(--radius);
  padding: 32px;
  text-align: center;
  margin-bottom: 28px;
  box-shadow: 0 8px 28px rgba(18,40,64,0.18);
}
.sidebar-cta h4 {
  font-family: 'Oswald', sans-serif;
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 10px;
}
.sidebar-cta p { 
  font-size: 0.87rem; 
  color: rgba(255,255,255,0.75); 
  margin-bottom: 18px; 
}
.sidebar-cta a {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: var(--orange);
  color: var(--white);
  font-family: 'Oswald', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  padding: 14px;
  border-radius: var(--radius);
  transition: background var(--transition), box-shadow var(--transition);
}
.sidebar-cta a:hover { 
  background: var(--orange-dk);
  box-shadow: 0 4px 12px rgba(232,73,29,0.3);
}

/* ============================================================
   TESTIMONIALS (mini)
============================================================ */
.testimonials-mini {
  background: var(--light-bg);
  padding: 52px 0;
}
.testimonials-mini__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
}
.testi-mini {
  background: var(--white);
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: var(--shadow);
  transition: transform var(--transition), box-shadow var(--transition);
}
.testi-mini:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 32px rgba(26,58,92,0.15);
}
.testi-mini .stars { margin-bottom: 10px; font-size: 0.9rem; }
.testi-mini blockquote {
  font-size: 0.93rem;
  color: var(--text-light);
  font-style: italic;
  line-height: 1.75;
  margin-bottom: 14px;
}
.testi-mini blockquote::before { content: '\201C'; color: var(--orange); font-size: 1.4rem; margin-right: 4px; }
.testi-mini__author {
  font-size: 0.84rem;
  color: var(--blue);
  font-weight: 600;
}
.testi-mini__author span { color: var(--text-light); font-weight: 400; }

/* ============================================================
   EMERGENCY CTA
============================================================ */
.emergency-cta {
  background: linear-gradient(135deg, var(--orange) 0%, #d63a0a 100%);
  padding: 72px 0;
  color: var(--white);
}
.emergency-cta__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 48px;
  flex-wrap: wrap;
}
.emergency-cta h2 {
  font-family: 'Oswald', sans-serif;
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  font-weight: 700;
  color: var(--white);
  margin-bottom: 14px;
  line-height: 1.2;
}
.emergency-cta p { 
  color: rgba(255,255,255,0.92); 
  font-size: 1.05rem; 
  max-width: 580px;
  line-height: 1.75;
}
.emergency-cta__actions { 
  display: flex; 
  gap: 14px; 
  flex-wrap: wrap; 
  flex-shrink: 0;
  justify-content: flex-end;
}
.btn-white {
  background: var(--white);
  color: var(--orange);
  font-family: 'Oswald', sans-serif;
  font-weight: 700;
  padding: 14px 28px;
}
.btn-white:hover { 
  background: rgba(255,255,255,0.95); 
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.2);
}
.btn-white-outline {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255,255,255,0.8);
  font-family: 'Oswald', sans-serif;
  font-weight: 600;
}
.btn-white-outline:hover { 
  background: rgba(255,255,255,0.1); 
  border-color: var(--white);
  transform: translateY(-2px);
}

/* ============================================================
   FOOTER
============================================================ */
.footer { 
  background: var(--blue-dark); 
  padding: 60px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 36px;
  margin-bottom: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.footer-col h4 {
  font-family: 'Oswald', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 18px;
  letter-spacing: 0.5px;
}
.footer-logo {
  font-family: 'Oswald', sans-serif;
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 14px;
}
.footer-logo span { color: var(--orange); }
.footer-desc {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.75);
  line-height: 1.75;
  margin-bottom: 16px;
}
.footer-rating {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.7);
}
.footer-rating i { color: #f39c12; font-size: 0.9rem; }
.footer-links li { margin-bottom: 12px; }
.footer-links a {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.75);
  display: flex;
  align-items: center;
  gap: 8px;
  transition: color var(--transition), gap var(--transition);
}
.footer-links a:hover { 
  color: var(--orange);
  gap: 12px;
}
.footer-links a i { color: var(--orange); font-size: 0.75rem; }
.footer-contact-item {
  display: flex;
  gap: 12px;
  margin-bottom: 16px;
  font-size: 0.9rem;
}
.footer-contact-item i {
  color: var(--orange);
  font-size: 1.1rem;
  flex-shrink: 0;
  margin-top: 2px;
}
.footer-contact-item span {
  color: rgba(255,255,255,0.75);
  line-height: 1.6;
}
.footer-contact-item a {
  color: rgba(255,255,255,0.75);
  transition: color var(--transition);
}
.footer-contact-item a:hover { color: var(--orange); }
.footer-contact-item small {
  display: block;
  color: rgba(255,255,255,0.6);
  font-size: 0.78rem;
  margin-top: 2px;
}
.social-links {
  display: flex;
  gap: 12px;
  margin-top: 16px;
}
.social-links a {
  width: 36px;
  height: 36px;
  background: rgba(255,255,255,0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--orange);
  font-size: 0.9rem;
  transition: background var(--transition), color var(--transition);
}
.social-links a:hover { 
  background: var(--orange); 
  color: var(--white);
}
.footer-bottom {
  background: rgba(0,0,0,0.2);
  margin-top: 0;
  padding: 24px 0;
}
.footer-bottom__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}
.footer-bottom p { 
  font-size: 0.85rem; 
  color: rgba(255,255,255,0.7);
  margin: 0;
}
.footer-bottom a { 
  color: rgba(255,255,255,0.7); 
  transition: color var(--transition);
  margin: 0 12px;
  display: inline-flex;
  align-items: center;
  gap: 4px;
}
.footer-bottom a:hover { color: var(--orange); }

/* ============================================================
   MOBILE NAV OVERLAY
============================================================ */
.mobile-nav {
  display: none;
  flex-direction: column;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: var(--blue);
  padding: 16px 20px;
  box-shadow: 0 6px 20px rgba(0,0,0,0.15);
  z-index: 999;
}
.mobile-nav.open { display: flex; }
.mobile-nav a {
  color: rgba(255,255,255,0.88);
  font-size: 0.95rem;
  font-weight: 600;
  padding: 10px 0;
  border-bottom: 1px solid rgba(255,255,255,0.1);
  display: block;
  transition: color var(--transition);
}
.mobile-nav a:last-child { border-bottom: none; }
.mobile-nav a:hover { color: var(--orange); }
.mobile-nav a.active { color: var(--orange); }

/* ============================================================
   RESPONSIVE
============================================================ */
@media (max-width: 1024px) {
  .section-pad { padding: 60px 0; }
  .footer-grid { grid-template-columns: repeat(2, 1fr); gap: 28px; }
  .article-wrap { grid-template-columns: 1fr; gap: 40px; }
  .sidebar { position: static; top: auto; }
  .testimonials-mini__grid { grid-template-columns: 1fr; }
  .emergency-cta__inner { flex-direction: column; text-align: center; }
  .emergency-cta__actions { justify-content: center; }
}

@media (max-width: 768px) {
  .section-pad { padding: 50px 0; }
  .container { padding: 0 16px; }
  .top-bar__right { display: none; }
  .nav { display: none; }
  .nav-toggle { display: block; }
  .header__cta { padding: 9px 16px; font-size: 1rem; }
  .page-hero { min-height: 320px; }
  .page-hero__inner { padding: 50px 0; }
  .page-hero h1 { font-size: 1.8rem; margin-bottom: 12px; }
  .page-hero p { font-size: 0.95rem; }
  .emergency-cta { padding: 50px 0; }
  .emergency-cta h2 { font-size: 1.6rem; }
  .emergency-cta p { font-size: 0.95rem; }
  .emergency-cta__actions { width: 100%; flex-direction: column; }
  .emergency-cta__actions .btn { width: 100%; }
  .footer-grid { grid-template-columns: 1fr; gap: 24px; margin-bottom: 32px; padding-bottom: 32px; }
  .footer-bottom__inner { flex-direction: column; text-align: center; }
  .footer-bottom a { margin: 4px 0; display: block; }
}

@media (max-width: 480px) {
  .section-title { font-size: 1.4rem; }
  .section-subtitle { font-size: 0.9rem; margin-bottom: 28px; }
  .page-hero__inner { padding: 40px 0; }
  .page-hero h1 { font-size: 1.5rem; }
  .page-hero p { font-size: 0.9rem; }
  .article-body h2 { font-size: 1.3rem; margin: 28px 0 12px; }
  .article-img img { height: 200px; }
  .sidebar-card { padding: 24px; margin-bottom: 20px; }
  .sidebar-cta { padding: 24px; margin-bottom: 20px; }
  .btn { padding: 12px 24px; font-size: 0.95rem; }
  .section-pad { padding: 40px 0; }
  .emergency-cta { padding: 40px 0; }
  .emergency-cta h2 { font-size: 1.4rem; }
  .footer-desc { font-size: 0.82rem; }
  .footer-links a { font-size: 0.84rem; }
  .footer-contact-item { font-size: 0.84rem; }
}