    :root {
      /* Theme Strategy: High-Contrast White with Red & Charcoal Accents */
      --white:       #FFFFFF;
      --bg-alt:      #F8F9FA;
      --charcoal:    #121212;
      --charcoal-soft:#1A1A1A;
      
      --red:         #E31B23; /* Consistent Logo Red */
      --red-dark:    #C41230;
      
      --silver:      #ADB5BD;
      --silver-light:#DEE2E6;
      --silver-deep: #6C757D;
      
      /* Transparency Tokens */
      --white-90:    rgba(255,255,255,0.9);
      --white-80:    rgba(255,255,255,0.8);
      --black-80:    rgba(18,18,18,0.8);
      --black-10:    rgba(18,18,18,0.1);
      --black-05:    rgba(18,18,18,0.05);
      
      /* UI Elements */
      --text-main:   #2D3436;
      --text-heading:#111111;
      --text-muted:  #636E72;
      --border:      #E0E0E0;
      --border-soft: #F1F1F1;
      
      /* Legacy support/Keep for Reference */
      --ice:         #5BA8D8; 
      --navy-dark:   var(--charcoal);
    }

    * { margin: 0; padding: 0; box-sizing: border-box; }
    html { scroll-behavior: smooth; }

    body {
      font-family: 'Barlow', sans-serif;
      background: var(--white);
      color: var(--text-main);
      overflow-x: hidden;
    }

    h1, h2, h3, h4, h5 {
      font-family: 'Oswald', sans-serif;
      letter-spacing: 0.5px;
    }

    /* ─── TOP BAR ─── */
    .top-bar {
      background: var(--charcoal);
      border-bottom: 1px solid rgba(255,255,255,0.1);
      padding: 0.45rem 0;
      font-family: 'Barlow Condensed', sans-serif;
      font-size: 0.88rem;
      letter-spacing: 0.4px;
      color: var(--silver-light);
    }
    .top-bar a { color: var(--silver-light); text-decoration: none; transition: color 0.2s; }
    .top-bar a:hover { color: var(--white); }
    .top-bar .top-bar-icon { color: var(--red); margin-right: 0.35rem; }

    /* ─── NAVBAR ─── */
    #mainNav {
      background: var(--white-90);
      backdrop-filter: blur(12px);
      -webkit-backdrop-filter: blur(12px);
      border-bottom: 1px solid var(--border);
      padding: 0.6rem 0;
      transition: all 0.3s ease;
      z-index: 1050;
    }
    #mainNav.scrolled {
      padding: 0.4rem 0;
      background: var(--white);
      box-shadow: 0 4px 30px rgba(0,0,0,0.08);
    }
    #mainNav .navbar-brand {
      background: transparent;
      border: none;
      border-radius: 0;
      padding: 0;
      display: inline-flex;
      align-items: center;
      transition: all 0.3s ease;
      box-shadow: none;
    }
    #mainNav .navbar-brand:hover {
      transform: translateY(-1px);
    }
    #mainNav .navbar-brand img { 
      height: 58px; 
      transition: transform 0.3s ease;
      filter: drop-shadow(0 2px 4px rgba(0,0,0,0.1));
    }
    #mainNav .nav-link {
      font-family: 'Barlow Condensed', sans-serif;
      font-size: 0.95rem;
      font-weight: 700;
      letter-spacing: 1px;
      text-transform: uppercase;
      color: var(--text-main) !important;
      padding: 0.5rem 1rem !important;
      position: relative;
      transition: color 0.2s;
    }
    #mainNav .nav-link::after {
      content: '';
      position: absolute;
      bottom: 0px; 
      left: 50%;
      width: 0;
      height: 2px;
      background: var(--red);
      transition: all 0.3s ease;
      transform: translateX(-50%);
    }
    #mainNav .nav-link:hover::after { width: 24px; }
    #mainNav .nav-link:hover { color: var(--red) !important; }

    .btn-call {
      background: var(--red);
      color: #fff !important;
      font-family: 'Barlow Condensed', sans-serif;
      font-weight: 700;
      font-size: 0.92rem;
      letter-spacing: 1.5px;
      text-transform: uppercase;
      border-radius: 4px;
      padding: 0.5rem 1.2rem !important;
      border: 2px solid var(--red);
      transition: all 0.3s;
      text-decoration: none;
    }
    .btn-call:hover {
      background: var(--red-dark);
      border-color: var(--red-dark);
      transform: translateY(-1px);
    }
    /* ─── NAVBAR FULL SCREEN MOBILE ─── */
    @media (max-width: 991px) {
      body.nav-active { overflow: hidden; }
      #navMenu.collapsing { display: none; } /* Disable default bootstrap transition */
      #navMenu.show {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh !important;
        background: var(--white);
        z-index: 2000;
        display: flex !important;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        text-align: center;
        padding: 2rem;
        margin: 0;
        animation: fadeIn 0.4s ease forwards;
        overflow-y: auto;
      }
      #navMenu .navbar-nav { width: 100%; gap: 1.5rem !important; }
      #navMenu .nav-link {
        font-size: 2.2rem !important;
        font-family: 'Oswald', sans-serif;
        font-weight: 600;
        color: var(--text-heading) !important;
        padding: 0.5rem 0 !important;
        transition: all 0.3s ease;
      }
      #navMenu .nav-link:hover {
        color: var(--red) !important;
        transform: scale(1.02);
      }
      #navMenu .nav-link.active {
        color: var(--red) !important;
        text-shadow: 0 0 15px rgba(227,27,35,0.1);
        transform: scale(1.05);
      }
      #mainNav .navbar-toggler {
        position: relative;
        z-index: 2001;
        border: none;
        padding: 0;
        width: 40px;
        height: 40px;
        display: flex;
        align-items: center;
        justify-content: center;
      }
      .navbar-toggler:focus { box-shadow: none; }
      
      /* Morphing Hamburger */
      .navbar-toggler-icon { 
        background-image: none !important;
        width: 24px; height: 2px;
        background: var(--charcoal);
        position: relative;
        transition: all 0.3s;
      }
      .navbar-toggler-icon::before, .navbar-toggler-icon::after {
        content: '';
        position: absolute;
        width: 24px; height: 2px;
        background: var(--charcoal);
        left: 0;
        transition: all 0.3s;
      }
      .navbar-toggler-icon::before { top: -8px; }
      .navbar-toggler-icon::after { top: 8px; }
      
      body.nav-active .navbar-toggler-icon { background: transparent; }
      body.nav-active .navbar-toggler-icon::before { top: 0; transform: rotate(45deg); background: var(--charcoal); }
      body.nav-active .navbar-toggler-icon::after { top: 0; transform: rotate(-45deg); background: var(--charcoal); }

      #navMenu .btn-call {
        margin-top: 2rem;
        font-size: 1.4rem !important;
        padding: 1rem 3rem !important;
        width: 100%;
        max-width: 300px;
      }
    }
    @keyframes fadeIn {
      from { opacity: 0; transform: translateY(10px); }
      to { opacity: 1; transform: translateY(0); }
    }

    /* ─── HERO ─── */
    #hero {
      min-height: 100vh;
      background: var(--white);
      position: relative;
      display: flex;
      align-items: center;
      overflow: hidden;
    }
    .hero-grid-pattern {
      position: absolute;
      inset: 0;
      background-image:
        linear-gradient(rgba(18,18,18,0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(18,18,18,0.03) 1px, transparent 1px);
      background-size: 60px 60px;
    }
    .hero-glow {
      position: absolute;
      top: -200px; right: -100px;
      width: 600px; height: 600px;
      background: radial-gradient(circle, rgba(227,27,35,0.05) 0%, transparent 70%);
      pointer-events: none;
    }
    .hero-accent-line {
      position: absolute;
      left: 0; top: 0;
      width: 4px;
      height: 100%;
      background: linear-gradient(to bottom, var(--red), transparent);
    }
    .hero-content { position: relative; z-index: 2; }

    .hero-badge {
      display: inline-flex;
      align-items: center;
      gap: 0.5rem;
      background: rgba(18,18,18,0.05);
      border: 1px solid rgba(18,18,18,0.1);
      color: var(--text-heading);
      font-family: 'Barlow Condensed', sans-serif;
      font-size: 0.82rem;
      font-weight: 700;
      letter-spacing: 2px;
      text-transform: uppercase;
      padding: 0.35rem 1rem;
      border-radius: 2px;
      margin-bottom: 1.5rem;
      animation: fadeInDown 0.8s ease both;
    }
    .hero-badge .dot {
      width: 7px; height: 7px;
      background: var(--red);
      border-radius: 50%;
      animation: pulse 2s infinite;
    }
    @keyframes pulse {
      0%, 100% { opacity: 1; transform: scale(1); }
      50% { opacity: 0.4; transform: scale(1.5); }
    }

    .hero-title {
      font-family: 'Oswald', sans-serif;
      font-size: clamp(1.0rem, 7vw, 2.3rem);
      font-weight: 700;
      line-height: 1.0;
      color: var(--text-heading);
      text-transform: uppercase;
      animation: fadeInUp 0.9s ease 0.2s both;
    }
    .hero-title .accent { color: var(--red); }

    .hero-sub {
      font-size: clamp(1rem, 2.2vw, 1.15rem);
      color: var(--text-main);
      font-weight: 400;
      max-width: 500px;
      margin: 1.2rem 0 2rem;
      animation: fadeInUp 0.9s ease 0.4s both;
      line-height: 1.7;
    }
    .hero-btns { animation: fadeInUp 0.9s ease 0.6s both; }

    .btn-primary-red {
      background: var(--red);
      color: #fff;
      font-family: 'Barlow Condensed', sans-serif;
      font-weight: 700;
      font-size: 1rem;
      letter-spacing: 1.5px;
      text-transform: uppercase;
      padding: 0.9rem 2rem;
      border: 2px solid var(--red);
      border-radius: 4px;
      text-decoration: none;
      display: inline-flex;
      align-items: center;
      gap: 0.5rem;
      transition: all 0.3s;
    }
    .btn-primary-red:hover {
      background: var(--red-dark);
      border-color: var(--red-dark);
      color: #fff;
      transform: translateY(-2px);
      box-shadow: 0 8px 25px rgba(185,28,44,0.35);
    }
    .btn-outline-white {
      background: transparent;
      color: var(--text-heading);
      font-family: 'Barlow Condensed', sans-serif;
      font-weight: 700;
      font-size: 1rem;
      letter-spacing: 1.5px;
      text-transform: uppercase;
      padding: 0.9rem 2rem;
      border: 2px solid var(--charcoal);
      border-radius: 4px;
      text-decoration: none;
      display: inline-flex;
      align-items: center;
      gap: 0.5rem;
      transition: all 0.3s;
    }
    .btn-outline-white:hover {
      background: var(--charcoal);
      color: var(--white);
      transform: translateY(-2px);
    }

    .hero-image-col { animation: fadeInRight 1s ease 0.3s both; }

    .hero-stats {
      display: flex;
      gap: 2rem;
      margin-top: 2.5rem;
      animation: fadeInUp 0.9s ease 0.8s both;
    }
    .hero-stat-item { text-align: center; }
    .hero-stat-number {
      font-family: 'Oswald', sans-serif;
      font-size: 2rem;
      font-weight: 700;
      color: var(--red);
      line-height: 1;
    }
    .hero-stat-label {
      font-size: 0.72rem;
      color: var(--text-muted);
      text-transform: uppercase;
      letter-spacing: 1px;
      font-weight: 600;
    }
    .hero-stat-divider {
      width: 1px;
      background: var(--border);
      align-self: stretch;
    }

    /* ─── HERO CAROUSEL CUSTOM ─── */
    #heroCarousel .carousel-indicators [data-bs-target] {
      width: 10px;
      height: 10px;
      border-radius: 50%;
      background-color: var(--charcoal);
      border: 2px solid transparent;
      opacity: 0.3;
      transition: all 0.3s ease;
      margin: 0 5px;
    }
    #heroCarousel .carousel-indicators .active {
      opacity: 1;
      background-color: var(--red);
      transform: scale(1.2);
    }
    #heroCarousel .carousel-control-prev,
    #heroCarousel .carousel-control-next {
      width: 50px;
      height: 50px;
      background: rgba(18, 18, 18, 0.4);
      border-radius: 50%;
      top: 50%;
      transform: translateY(-50%);
      margin: 0 15px;
      opacity: 1;
      transition: all 0.3s ease;
    }
    #heroCarousel .carousel-control-prev:hover,
    #heroCarousel .carousel-control-next:hover {
      background: var(--red);
    }
    #heroCarousel .carousel-control-prev-icon,
    #heroCarousel .carousel-control-next-icon {
      width: 20px;
      height: 20px;
    }

    /* ─── TRUST BAR ─── */
    .trust-bar {
      background: var(--charcoal);
      border-top: 1px solid rgba(255,255,255,0.1);
      border-bottom: 1px solid rgba(255,255,255,0.1);
      padding: 0.85rem 0;
    }
    .trust-bar-inner {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 0.5rem 2rem;
    }
    .trust-item {
      display: flex;
      align-items: center;
      gap: 0.5rem;
      color: var(--silver-light);
      font-family: 'Barlow Condensed', sans-serif;
      font-size: 0.95rem;
      font-weight: 700;
      letter-spacing: 1px;
      text-transform: uppercase;
    }
    .trust-item i { color: var(--red); font-size: 1rem; }
    .trust-divider { color: rgba(255,255,255,0.2); font-size: 1.1rem; }

    /* ─── SECTION COMMON ─── */
    .section-label {
      font-family: 'Barlow Condensed', sans-serif;
      font-size: 0.78rem;
      font-weight: 700;
      letter-spacing: 3px;
      text-transform: uppercase;
      color: var(--red);
      margin-bottom: 0.5rem;
      display: flex;
      align-items: center;
      gap: 0.75rem;
    }
    .section-label::before {
      content: '';
      width: 24px; height: 2px;
      background: var(--red);
      display: inline-block;
    }
    .section-title {
      font-family: 'Oswald', sans-serif;
      font-size: clamp(1.8rem, 4vw, 2.6rem);
      font-weight: 700;
      text-transform: uppercase;
      line-height: 1.1;
      color: var(--text-heading);
    }
    .section-title span { color: var(--red); }
    .section-title span.red { color: var(--red); }

    /* ─── ABOUT ─── */
    #about { padding: 6rem 0; background: var(--white); }
    .about-img-wrap { position: relative; }
    .about-accent-box {
      position: absolute;
      bottom: -16px; right: -16px;
      width: 100px; height: 100px;
      background: var(--red);
      border-radius: 4px;
      z-index: -1;
      opacity: 0.1;
    }
    .about-text p {
      font-size: 1.02rem;
      line-height: 1.8;
      color: var(--text-main);
      margin-bottom: 1rem;
    }
    .about-checklist { list-style: none; padding: 0; margin: 1.5rem 0; }
    .about-checklist li {
      display: flex;
      align-items: center;
      gap: 0.75rem;
      padding: 0.5rem 0;
      font-size: 1rem;
      font-weight: 500;
      color: var(--text-heading);
      border-bottom: 1px solid var(--border-soft);
    }
    .about-checklist li i { color: var(--red); font-size: 1rem; }

    /* ─── PROMISE ─── */
    #promise { padding: 5rem 0; background: var(--bg-alt); }
    .promise-card {
      text-align: center;
      padding: 2.5rem 1.5rem;
      border: 1px solid var(--border);
      border-radius: 8px;
      background: var(--white);
      transition: all 0.3s;
      height: 100%;
      box-shadow: 0 4px 20px rgba(0,0,0,0.03);
    }
    .promise-card:hover {
      border-color: var(--red);
      transform: translateY(-4px);
      box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    }
    .promise-icon {
      width: 66px; height: 66px;
      background: rgba(227,27,35,0.05);
      border: 1px solid rgba(227,27,35,0.1);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      margin: 0 auto 1.5rem;
      font-size: 1.7rem;
      color: var(--red);
      transition: all 0.3s;
    }
    .promise-card:hover .promise-icon {
      background: var(--red);
      color: var(--white);
      border-color: var(--red);
    }
    .promise-card h4 {
      font-family: 'Oswald', sans-serif;
      font-size: 1.25rem;
      color: var(--text-heading);
      text-transform: uppercase;
      margin-bottom: 0.75rem;
    }
    .promise-card p {
      font-size: 0.93rem;
      color: var(--text-main);
      line-height: 1.7;
    }

    /* ─── SERVICES ─── */
    #services { padding: 6rem 0; background: var(--white); }
    .service-card {
      background: var(--white);
      border-radius: 8px;
      padding: 1.4rem 1.2rem;
      display: flex;
      align-items: center;
      gap: 1rem;
      border: 1px solid var(--border);
      border-left: 4px solid var(--silver-light);
      transition: all 0.3s;
      height: 100%;
      box-shadow: 0 2px 10px rgba(0,0,0,0.02);
    }
    .service-card:hover {
      border-color: var(--red);
      border-left-color: var(--red);
      transform: translateY(-3px);
      box-shadow: 0 10px 25px rgba(0,0,0,0.06);
    }
    .service-icon {
      width: 50px; height: 50px;
      background: var(--bg-alt);
      border: 1px solid var(--border);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
      color: var(--red);
      font-size: 1.25rem;
      transition: all 0.3s;
    }
    .service-card:hover .service-icon {
      background: var(--red);
      color: var(--white);
      border-color: var(--red);
    }
    .service-card h5 {
      font-family: 'Oswald', sans-serif;
      font-size: 1rem;
      text-transform: uppercase;
      margin: 0;
      color: var(--text-heading);
    }
    .service-card p {
      font-size: 0.8rem;
      color: var(--text-muted);
      margin: 0;
      line-height: 1.4;
    }

    /* ─── GALLERY ─── */
    #gallery { padding: 6rem 0; background: var(--bg-alt); }
    .gallery-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; }
    @media (max-width: 767px) { .gallery-grid { grid-template-columns: repeat(2, 1fr); } }
    @media (max-width: 480px) { .gallery-grid { grid-template-columns: 1fr; } }
    .gallery-item {
      aspect-ratio: 4/3;
      background: var(--white);
      border-radius: 6px;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      color: var(--silver);
      font-size: 2.5rem;
      border: 1px solid var(--border);
      transition: all 0.3s;
      cursor: pointer;
      overflow: hidden;
      box-shadow: 0 4px 15px rgba(0,0,0,0.03);
    }
    .gallery-item:hover {
      border-color: var(--red);
      transform: translateY(-5px);
      box-shadow: 0 15px 40px rgba(0,0,0,0.1);
    }
    .gallery-item span {
      font-family: 'Barlow Condensed', sans-serif;
      font-size: 0.72rem;
      letter-spacing: 2px;
      text-transform: uppercase;
      margin-top: 0.5rem;
    }
    .gallery-item.featured {
      grid-column: span 2;
      aspect-ratio: 8/3;
      font-size: 3rem;
    }
    @media (max-width: 480px) { .gallery-item.featured { grid-column: span 1; aspect-ratio: 4/3; } }

    /* ─── TESTIMONIALS ─── */
    #testimonials { padding: 6rem 0; background: var(--white); }
    .google-rating-badge {
      display: inline-flex;
      align-items: center;
      gap: 0.75rem;
      background: var(--bg-alt);
      border: 1px solid var(--border);
      border-radius: 50px;
      padding: 0.5rem 1.2rem 0.5rem 0.8rem;
      margin-bottom: 1rem;
    }
    .google-g {
      width: 28px; height: 28px;
      background: white;
      border-radius: 50%;
      display: flex; align-items: center; justify-content: center;
      font-weight: 700; font-size: 0.9rem; color: #4285F4;
      font-family: 'Barlow', sans-serif;
      flex-shrink: 0;
      box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    }
    .google-rating-text { font-size: 0.85rem; color: var(--text-muted); }
    .google-rating-text strong { color: var(--text-heading); font-size: 1rem; }

    .g-review-card {
      background: #fff;
      border-radius: 12px;
      padding: 1.5rem;
      height: 100%;
      box-shadow: 0 2px 16px rgba(0,0,0,0.2);
      display: flex;
      flex-direction: column;
      gap: 0.75rem;
      transition: transform 0.3s, box-shadow 0.3s;
    }
    .g-review-card:hover {
      transform: translateY(-4px);
      box-shadow: 0 12px 40px rgba(0,0,0,0.3);
    }
    .g-review-header { display: flex; align-items: center; gap: 0.75rem; }
    .g-avatar {
      width: 42px; height: 42px;
      border-radius: 50%;
      display: flex; align-items: center; justify-content: center;
      font-family: 'Oswald', sans-serif;
      font-size: 1rem; font-weight: 600;
      color: #fff;
      flex-shrink: 0;
    }
    .g-avatar.c1 { background: #4285F4; }
    .g-avatar.c2 { background: #34A853; }
    .g-avatar.c3 { background: #EA4335; }
    .g-avatar.c4 { background: #FBBC04; color: #333; }
    .g-avatar.c5 { background: #9C27B0; }
    .g-reviewer-name { font-family: 'Barlow', sans-serif; font-weight: 600; font-size: 0.95rem; color: #1a1a1a; line-height: 1.2; }
    .g-reviewer-meta { font-size: 0.78rem; color: #888; }
    .g-stars { color: #FBBC04; font-size: 0.95rem; letter-spacing: 1px; }
    .g-review-date { font-size: 0.78rem; color: #aaa; margin-left: auto; white-space: nowrap; }
    .g-review-text { font-size: 0.92rem; color: #444; line-height: 1.65; flex: 1; }
    .g-review-footer {
      display: flex;
      align-items: center;
      gap: 0.5rem;
      padding-top: 0.75rem;
      border-top: 1px solid #f0f0f0;
    }
    .g-google-logo { font-size: 0.75rem; color: #aaa; display: flex; align-items: center; gap: 0.3rem; }
    .g-dot { width: 14px; height: 14px; background: white; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 0.6rem; font-weight: 800; color: #4285F4; border: 1px solid #e0e0e0; }
    .g-helpful { margin-left: auto; font-size: 0.78rem; color: #aaa; }

    .btn-google-reviews {
      display: inline-flex;
      align-items: center;
      gap: 0.6rem;
      background: white;
      color: #333;
      font-family: 'Barlow Condensed', sans-serif;
      font-weight: 700;
      font-size: 0.95rem;
      letter-spacing: 1px;
      text-transform: uppercase;
      padding: 0.75rem 1.75rem;
      border-radius: 50px;
      text-decoration: none;
      border: 1px solid #e0e0e0;
      transition: all 0.3s;
      box-shadow: 0 2px 8px rgba(0,0,0,0.15);
    }
    .btn-google-reviews:hover {
      box-shadow: 0 6px 24px rgba(0,0,0,0.25);
      transform: translateY(-2px);
      color: #333;
    }
    .btn-google-reviews .g-icon { display: flex; gap: 1px; }
    .btn-google-reviews .g-icon span { width: 8px; height: 8px; border-radius: 50%; }
    .btn-google-reviews .g-icon span:nth-child(1) { background: #4285F4; }
    .btn-google-reviews .g-icon span:nth-child(2) { background: #EA4335; }
    .btn-google-reviews .g-icon span:nth-child(3) { background: #FBBC04; }
    .btn-google-reviews .g-icon span:nth-child(4) { background: #34A853; }

    /* ─── EMERGENCY CTA ─── */
    #emergency {
      padding: 5rem 0;
      background: var(--red);
      position: relative;
      overflow: hidden;
    }
    #emergency::before {
      content: '';
      position: absolute;
      inset: 0;
      background: repeating-linear-gradient(
        -45deg,
        transparent, transparent 24px,
        rgba(0,0,0,0.06) 24px, rgba(0,0,0,0.06) 48px
      );
    }
    .emergency-content { position: relative; z-index: 2; }
    #emergency h2 {
      font-family: 'Oswald', sans-serif;
      font-size: clamp(2rem, 5vw, 3.2rem);
      font-weight: 700;
      text-transform: uppercase;
      color: #fff;
    }
    #emergency p { font-size: 1.05rem; color: rgba(255,255,255,0.85); }

    .btn-emergency {
      background: #fff;
      color: var(--red);
      font-family: 'Barlow Condensed', sans-serif;
      font-weight: 700;
      font-size: 1.1rem;
      letter-spacing: 1.5px;
      text-transform: uppercase;
      padding: 1rem 2.5rem;
      border: 2px solid #fff;
      border-radius: 4px;
      text-decoration: none;
      display: inline-flex;
      align-items: center;
      gap: 0.5rem;
      transition: all 0.3s;
    }
    .btn-emergency:hover {
      background: transparent;
      color: #fff;
      transform: translateY(-2px);
      box-shadow: 0 8px 24px rgba(0,0,0,0.2);
    }
    .btn-emergency-outline {
      background: transparent;
      color: #fff;
      font-family: 'Barlow Condensed', sans-serif;
      font-weight: 700;
      font-size: 1.1rem;
      letter-spacing: 1.5px;
      text-transform: uppercase;
      padding: 1rem 2.5rem;
      border: 2px solid rgba(255,255,255,0.5);
      border-radius: 4px;
      text-decoration: none;
      display: inline-flex;
      align-items: center;
      gap: 0.5rem;
      transition: all 0.3s;
    }
    .btn-emergency-outline:hover {
      border-color: #fff;
      background: rgba(255,255,255,0.1);
      color: #fff;
    }

    /* ─── CONTACT ─── */
    #contact { padding: 6rem 0; background: var(--white); }
    .contact-info-card {
      background: var(--bg-alt);
      border: 1px solid var(--border);
      border-radius: 8px;
      padding: 2rem;
    }
    .contact-item {
      display: flex;
      align-items: flex-start;
      gap: 1rem;
      padding: 1rem 0;
      border-bottom: 1px solid var(--border);
    }
    .contact-item:last-child { border-bottom: none; }
    .contact-item-icon {
      width: 42px; height: 42px;
      background: var(--white);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      color: var(--red);
      font-size: 1rem;
      flex-shrink: 0;
      box-shadow: 0 4px 10px rgba(0,0,0,0.04);
    }
    .contact-item h6 {
      font-family: 'Barlow Condensed', sans-serif;
      font-weight: 700;
      letter-spacing: 1px;
      text-transform: uppercase;
      font-size: 0.78rem;
      color: var(--text-muted);
      margin-bottom: 0.2rem;
    }
    .contact-item a, .contact-item p {
      color: var(--text-heading);
      font-size: 0.98rem;
      text-decoration: none;
      margin: 0;
      line-height: 1.5;
    }
    .contact-item a:hover { color: var(--red); }

    .contact-form-card {
      background: var(--white);
      border: 1px solid var(--border);
      border-radius: 8px;
      padding: 2rem;
      box-shadow: 0 10px 40px rgba(0,0,0,0.03);
    }
    .contact-form-card h4 {
      font-family: 'Oswald', sans-serif;
      color: var(--text-heading);
      text-transform: uppercase;
      margin-bottom: 1.5rem;
      font-size: 1.4rem;
    }
    .form-control, .form-select {
      background: var(--bg-alt) !important;
      border: 1px solid var(--border) !important;
      color: var(--text-main) !important;
      border-radius: 4px !important;
      font-size: 0.95rem;
      padding: 0.75rem 1rem;
      transition: all 0.3s;
    }
    .form-control::placeholder { color: var(--silver-deep) !important; }
    .form-control:focus, .form-select:focus {
      outline: none !important;
      box-shadow: 0 0 0 3px rgba(227,27,35,0.1) !important;
      border-color: var(--red) !important;
      background: var(--white) !important;
    }
    .form-select option { background: var(--white); color: var(--text-main); }
    .form-label { color: var(--text-main); font-size: 0.85rem; font-weight: 600; margin-bottom: 0.4rem; }

    .btn-submit {
      background: var(--red);
      color: #fff;
      font-family: 'Barlow Condensed', sans-serif;
      font-weight: 700;
      font-size: 1rem;
      letter-spacing: 1.5px;
      text-transform: uppercase;
      padding: 0.9rem 2rem;
      border: 2px solid var(--red);
      border-radius: 4px;
      width: 100%;
      transition: all 0.3s;
      cursor: pointer;
    }
    .btn-submit:hover {
      background: var(--red-dark);
      border-color: var(--red-dark);
      transform: translateY(-2px);
    }

    .map-wrap {
      border-radius: 8px;
      overflow: hidden;
      border: 1px solid var(--border);
      margin-top: 1.5rem;
    }

    /* ─── FOOTER ─── */
    footer {
      background: var(--charcoal);
      padding: 4rem 0 2rem;
      color: var(--silver-light);
    }
    footer .footer-logo img { 
      height: 56px; 
      margin-bottom: 1rem; 
      background: rgba(255,255,255,0.9);
      padding: 0.5rem;
      border-radius: 6px;
    }
    footer .footer-desc {
      font-size: 0.9rem;
      color: var(--silver);
      line-height: 1.7;
      max-width: 300px;
    }
    .footer-heading {
      font-family: 'Barlow Condensed', sans-serif;
      font-size: 0.78rem;
      font-weight: 700;
      letter-spacing: 2px;
      text-transform: uppercase;
      color: var(--white);
      margin-bottom: 1.25rem;
      padding-bottom: 0.5rem;
      border-bottom: 1px solid rgba(255,255,255,0.1);
    }
    .footer-links { list-style: none; padding: 0; }
    .footer-links li { margin-bottom: 0.5rem; }
    .footer-links a {
      color: var(--silver);
      text-decoration: none;
      font-size: 0.9rem;
      transition: color 0.2s;
      display: flex;
      align-items: center;
      gap: 0.5rem;
    }
    .footer-links a:hover { color: var(--red); }
    .footer-links a i { font-size: 0.72rem; }
    .footer-bottom {
      border-top: 1px solid rgba(255,255,255,0.05);
      padding-top: 1.5rem;
      margin-top: 2.5rem;
    }
    .footer-bottom p { font-size: 0.82rem; color: var(--silver-deep); margin: 0; }
    .footer-bottom a { color: var(--silver); text-decoration: none; transition: color 0.2s; }
    .footer-bottom a:hover { color: var(--red); }
    .footer-contact-item {
      display: flex;
      align-items: flex-start;
      gap: 0.75rem;
      margin-bottom: 0.75rem;
    }
    .footer-contact-item i { color: var(--red); font-size: 0.9rem; margin-top: 0.2rem; }
    .footer-contact-item a, .footer-contact-item span {
      color: var(--silver);
      font-size: 0.9rem;
      text-decoration: none;
      line-height: 1.5;
    }
    .footer-contact-item a:hover { color: var(--red); }

    /* ─── BACK TO TOP ─── */
    #backToTop {
      position: fixed;
      bottom: 2rem; right: 2rem;
      width: 44px; height: 44px;
      background: var(--charcoal);
      color: var(--white);
      border: 1px solid rgba(255,255,255,0.1);
      border-radius: 4px;
      font-size: 1.1rem;
      cursor: pointer;
      z-index: 999;
      display: flex;
      align-items: center;
      justify-content: center;
      opacity: 0;
      transform: translateY(20px);
      transition: all 0.3s;
    }
    #backToTop.visible { opacity: 1; transform: translateY(0); }
    #backToTop:hover { background: var(--red); color: var(--white); transform: translateY(-3px); }

    /* ─── ANIMATIONS ─── */
    @keyframes fadeInUp {
      from { opacity: 0; transform: translateY(30px); }
      to   { opacity: 1; transform: translateY(0); }
    }
    @keyframes fadeInDown {
      from { opacity: 0; transform: translateY(-20px); }
      to   { opacity: 1; transform: translateY(0); }
    }
    @keyframes fadeInRight {
      from { opacity: 0; transform: translateX(40px); }
      to   { opacity: 1; transform: translateX(0); }
    }
    .reveal {
      opacity: 0;
      transform: translateY(28px);
      transition: opacity 0.6s ease, transform 0.6s ease;
    }
    .reveal.visible { opacity: 1; transform: translateY(0); }

    /* ─── MISC ─── */
    ::-webkit-scrollbar { width: 6px; }
    ::-webkit-scrollbar-track { background: var(--white); }
    ::-webkit-scrollbar-thumb { background: var(--silver); border-radius: 10px; }
    ::-webkit-scrollbar-thumb:hover { background: var(--red); }

    @media (max-width: 991px) {
      .hero-stats { gap: 1.2rem; }
      .about-accent-box { display: none; }
    }
    @media (max-width: 767px) {
      #hero { padding-top: 1.5rem; min-height: 80vh; }
      .hero-stats { flex-wrap: wrap; gap: 1rem; }
      .hero-stat-divider { display: none; }
    }
