/* ============================================================
       CSS VARIABLES
    ============================================================ */
    :root {
      --primary: #0B2A45;
      --primary-dark: #081F33;
      --secondary: #F4F6F8;
      --white: #FFFFFF;
      --accent: #FFC107;
      --accent-hover: #E0A800;
      --text-dark: #212529;
      --text-gray: #6C757D;
      --border: #E5E7EB;
      --highlight-orange: #F57C00;
      --red: #DC3545;
      --nav-height: 72px;
    }

    /* ============================================================
       RESET & BASE
    ============================================================ */
    *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
    html { scroll-behavior: smooth; font-size: 16px; }
    body {
      font-family: 'Nunito', sans-serif;
      color: var(--text-dark);
      background: var(--white);
      overflow-x: hidden;
    }
    img { max-width: 100%; height: auto; display: block; }
    a { text-decoration: none; color: inherit; }
    ul { list-style: none; }

    /* ============================================================
       TYPOGRAPHY
    ============================================================ */
    .display { font-family: 'Barlow Condensed', sans-serif; }
    h1,h2,h3,h4 { font-family: 'Barlow Condensed', sans-serif; line-height: 1.1; }
    h1 { font-size: clamp(2.4rem, 6vw, 4.5rem); font-weight: 600; }
    h2 { font-size: clamp(1.9rem, 4vw, 3rem); font-weight: 700; }
    h3 { font-size: clamp(1.3rem, 2.5vw, 1.8rem); font-weight: 600; }
    p { line-height: 1.75; font-size: 1rem; color: var(--text-gray); }

    /* ============================================================
       UTILITIES
    ============================================================ */
    .container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }
    .section-pad { padding: 50px 0; }
    .section-pad-sm { padding: 60px 0; }
    .text-center { text-align: center; }
    .text-white { color: var(--white) !important; }
    .text-accent { color: var(--accent) !important; }
    .text-red { color: var(--red) !important; }
    .bg-primary { background: var(--primary); }
    .bg-dark { background: var(--primary-dark); }
    .bg-secondary { background: var(--secondary); }
    .bg-accent { background: var(--accent); }
    .fw-900 { font-weight: 900; }

    .section-label {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      background: rgba(255,193,7,0.15);
      color: var(--accent);
      font-family: 'Barlow Condensed', sans-serif;
      font-weight: 700;
      font-size: 0.9rem;
      letter-spacing: 2px;
      text-transform: uppercase;
      padding: 6px 16px;
      border-radius: 30px;
      margin-bottom: 12px;
    }
    .section-label.dark {
      background: rgba(11,42,69,0.1);
      color: var(--primary);
    }

    .btn {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      font-family: 'Barlow Condensed', sans-serif;
      font-weight: 700;
      font-size: 1.05rem;
      letter-spacing: 1px;
      padding: 14px 28px;
      border-radius: 6px;
      border: 2px solid transparent;
      cursor: pointer;
      transition: all 0.25s;
      white-space: nowrap;
    }
    .btn-accent {
      background: var(--accent);
      color: var(--primary-dark);
      border-color: var(--accent);
    }
    .btn-accent:hover { background: var(--accent-hover); border-color: var(--accent-hover); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(255,193,7,0.4); }
    .btn-outline-white {
      background: transparent;
      color: var(--white);
      border-color: var(--white);
    }
    .btn-outline-white:hover { background: var(--white); color: var(--primary); transform: translateY(-2px); }
    .btn-red { background: var(--red); color: var(--white); border-color: var(--red); }
    .btn-red:hover { background: #b02a37; border-color: #b02a37; transform: translateY(-2px); box-shadow: 0 8px 24px rgba(220,53,69,0.4); }
    .btn-primary { background: var(--primary); color: var(--white); border-color: var(--primary); }
    .btn-primary:hover { background: var(--primary-dark); border-color: var(--primary-dark); transform: translateY(-2px); }
    .btn-lg { padding: 17px 36px; font-size: 1.2rem; }

    /* Divider */
    .divider-accent {
      width: 60px; height: 4px;
      background: var(--accent);
      border-radius: 2px;
      margin: 14px auto 24px;
    }
    .divider-accent.left { margin-left: 0; }

    /* ============================================================
       TOP ANNOUNCEMENT BAR
    ============================================================ */
    #topbar {
      background: var(--red);
      color: var(--white);
      font-family: 'Barlow Condensed', sans-serif;
      font-size: 0.95rem;
      font-weight: 600;
      letter-spacing: 0.5px;
      padding: 8px 0;
      text-align: center;
    }
    #topbar a { color: var(--accent); font-weight: 800; }
    #topbar a:hover { text-decoration: underline; }

    /* ============================================================
       NAVBAR
    ============================================================ */
    #navbar {
      position: sticky;
      top: 0;
      z-index: 1000;
      background: var(--primary-dark);
      height: var(--nav-height);
      display: flex;
      align-items: center;
      box-shadow: 0 2px 20px rgba(0,0,0,0.3);
      transition: all 0.3s;
      padding: 0 16px;
    }
    #navbar.scrolled {
      background: rgba(8,31,51,0.97);
      backdrop-filter: blur(10px);
      box-shadow: 0 4px 30px rgba(0,0,0,0.4);
    }
    #navbar .container {
      width: 100%;
      padding: 0;
    }
    .nav-inner {
      display: flex;
      align-items: center;
      justify-content: space-between;
      width: 100%;
      gap: 20px;
      padding: 0 8px;
    }
    .nav-logo {
      display: flex;
      align-items: center;
      gap: 12px;
      flex-shrink: 0;
      text-decoration: none;
      color: inherit;
      transition: opacity 0.25s;
    }
    .nav-logo:hover { opacity: 0.8; }
    .nav-logo-img {
      width: 52px;
      height: 52px;
      border-radius: 50%;
      object-fit: cover;
      border: 2px solid var(--accent);
      flex-shrink: 0;
    }
    .nav-logo-text {
      display: flex;
      flex-direction: column;
      gap: 2px;
    }
    .nav-logo-text .brand { font-family: 'Barlow Condensed', sans-serif; font-weight: 900; font-size: 1.4rem; color: var(--white); letter-spacing: 0.5px; line-height: 1; }
    .nav-logo-text .tagline { font-size: 0.7rem; color: var(--accent); font-weight: 600; letter-spacing: 1px; text-transform: uppercase; }
    .nav-links { display: flex; align-items: center; gap: 8px; flex: 1; justify-content: center; }
    .nav-links a {
      color: rgba(255,255,255,0.85);
      font-family: 'Barlow Condensed', sans-serif;
      font-weight: 600;
      font-size: 1rem;
      letter-spacing: 0.5px;
      padding: 8px 14px;
      border-radius: 4px;
      transition: all 0.2s;
      white-space: nowrap;
    }
    .nav-links a:hover, .nav-links a.active { color: var(--accent); background: rgba(255,193,7,0.1); }
    .nav-cta {
      display: flex;
      align-items: center;
      gap: 10px;
      flex-shrink: 0;
    }
    .nav-call {
      display: flex;
      align-items: center;
      gap: 8px;
      background: var(--accent);
      color: var(--primary-dark);
      font-family: 'Barlow Condensed', sans-serif;
      font-weight: 800;
      font-size: 1rem;
      padding: 9px 18px;
      border-radius: 6px;
      transition: all 0.25s;
      text-decoration: none;
      white-space: nowrap;
    }
    .nav-call:hover { background: var(--accent-hover); transform: translateY(-1px); box-shadow: 0 4px 12px rgba(255,193,7,0.3); }

    /* Hamburger */
    .hamburger {
      display: none;
      flex-direction: column;
      gap: 5px;
      cursor: pointer;
      padding: 6px;
    }
    .hamburger span { display: block; width: 26px; height: 3px; background: var(--white); border-radius: 2px; transition: all 0.3s; }
    .hamburger.open span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
    .hamburger.open span:nth-child(2) { opacity: 0; }
    .hamburger.open span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

    /* Mobile Nav */
    .mobile-nav {
      display: none;
      position: fixed;
      top: var(--nav-height);
      left: 0; right: 0;
      background: var(--primary-dark);
      z-index: 999;
      padding: 20px;
      border-top: 2px solid var(--accent);
      box-shadow: 0 8px 24px rgba(0,0,0,0.4);
    }
    .mobile-nav.open { display: block; }
    .mobile-nav a {
      display: block;
      color: var(--white);
      font-family: 'Barlow Condensed', sans-serif;
      font-size: 1.2rem;
      font-weight: 700;
      padding: 12px 0;
      border-bottom: 1px solid rgba(255,255,255,0.08);
      transition: color 0.2s;
    }
    .mobile-nav a:hover { color: var(--accent); }
    .mobile-nav .mobile-btns { display: flex; flex-direction: column; gap: 10px; margin-top: 16px; }

    /* ============================================================
       HERO
    ============================================================ */
    #home {
      position: relative;
      min-height: calc(100vh - var(--nav-height));
      background: linear-gradient(135deg, var(--primary-dark) 0%, #0d3459 60%, #0a2236 100%);
      display: flex;
      align-items: center;
      overflow: hidden;
    }
    .hero-bg-pattern {
      position: absolute;
      inset: 0;
      background-image:
        repeating-linear-gradient(45deg, rgba(255,193,7,0.03) 0px, rgba(255,193,7,0.03) 1px, transparent 1px, transparent 60px),
        repeating-linear-gradient(-45deg, rgba(255,193,7,0.03) 0px, rgba(255,193,7,0.03) 1px, transparent 1px, transparent 60px);
      pointer-events: none;
    }
    .hero-glow {
      position: absolute;
      width: 600px; height: 600px;
      background: radial-gradient(circle, rgba(255,193,7,0.08) 0%, transparent 70%);
      top: -100px; right: -100px;
      pointer-events: none;
    }
    .hero-inner {
      position: relative;
      z-index: 2;
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 60px;
      align-items: center;
      padding: 80px 0;
    }
    .hero-badge {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      background: rgba(220,53,69,0.15);
      border: 1px solid var(--red);
      color: #ff6b7a;
      font-family: 'Barlow Condensed', sans-serif;
      font-size: 0.85rem;
      font-weight: 700;
      letter-spacing: 2px;
      text-transform: uppercase;
      padding: 6px 16px;
      border-radius: 30px;
      margin-bottom: 20px;
      animation: pulse-badge 2s infinite;
    }
    @keyframes pulse-badge {
      0%,100% { box-shadow: 0 0 0 0 rgba(220,53,69,0.4); }
      50% { box-shadow: 0 0 0 8px rgba(220,53,69,0); }
    }
    .hero-title { color: var(--white); margin-bottom: 10px; }
    .hero-title span { color: var(--accent); display: block; }
    .hero-sub {
      font-size: 1.15rem;
      color: rgba(255,255,255,0.75);
      margin: 18px 0 32px;
      max-width: 520px;
      line-height: 1.7;
    }
    .hero-btns { display: flex; flex-wrap: wrap; gap: 12px; margin-bottom: 40px; }
    .hero-trust {
      display: flex;
      flex-wrap: wrap;
      gap: 20px;
      margin-top: 10px;
    }
    .trust-badge {
      display: flex;
      align-items: center;
      gap: 8px;
      color: rgba(255,255,255,0.8);
      font-size: 0.88rem;
      font-weight: 600;
    }
    .trust-badge i { color: var(--accent); font-size: 1rem; }

    .hero-image-block { position: relative; }
    .hero-img-main {
      border-radius: 16px;
      width: 100%;
      max-height: 480px;
      object-fit: cover;
      box-shadow: 0 30px 60px rgba(0,0,0,0.5);
      border: 3px solid rgba(255,193,7,0.3);
    }
    .hero-stat-card {
      position: absolute;
      background: var(--accent);
      color: var(--primary-dark);
      padding: 14px 20px;
      border-radius: 12px;
      font-family: 'Barlow Condensed', sans-serif;
      box-shadow: 0 8px 24px rgba(0,0,0,0.3);
    }
    .hero-stat-card .num { font-size: 2rem; font-weight: 900; line-height: 1; }
    .hero-stat-card .label { font-size: 0.8rem; font-weight: 700; letter-spacing: 1px; text-transform: uppercase; }
    .hero-stat-card.card1 { bottom: -20px; left: -20px; }
    .hero-stat-card.card2 { top: -20px; right: -20px; background: var(--primary); color: var(--white); }
    .hero-stat-card.card2 .num { color: var(--accent); }

    /* ============================================================
       EMERGENCY STRIP
    ============================================================ */
    .emergency-strip {
      background: var(--red);
      padding: 18px 0;
    }
    .emergency-strip .inner {
      display: flex;
      flex-wrap: wrap;
      align-items: center;
      justify-content: space-between;
      gap: 16px;
    }
    .emergency-strip .msg {
      font-family: 'Barlow Condensed', sans-serif;
      font-size: 1.3rem;
      font-weight: 800;
      color: var(--white);
      letter-spacing: 0.5px;
    }
    .emergency-strip .msg i { margin-right: 8px; animation: ring 1.5s infinite; }
    @keyframes ring {
      0%,100% { transform: rotate(0); }
      10%,30% { transform: rotate(-15deg); }
      20%,40% { transform: rotate(15deg); }
      50% { transform: rotate(0); }
    }
    .emergency-strip .btns { display: flex; flex-wrap: wrap; gap: 10px; }

    /* ============================================================
       ABOUT
    ============================================================ */
    #about .about-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 40px;
      align-items: center;
    }
    .about-img-wrap { position: relative; }
    .about-img {
      border-radius: 16px;
      width: 100%;
      max-height: 480px;
      object-fit: cover;
      box-shadow: 0 20px 50px rgba(0,0,0,0.15);
    }
    .about-badge {
      position: absolute;
      bottom: -24px;
      right: -24px;
      background: var(--primary);
      color: var(--white);
      padding: 20px 24px;
      border-radius: 12px;
      text-align: center;
      font-family: 'Barlow Condensed', sans-serif;
      box-shadow: 0 8px 24px rgba(0,0,0,0.2);
      border: 3px solid var(--accent);
    }
    .about-badge .num { font-size: 2.4rem; font-weight: 900; color: var(--accent); }
    .about-badge .lbl { font-size: 0.8rem; text-transform: uppercase; letter-spacing: 1px; font-weight: 700; color: rgba(255,255,255,0.8); }

    .about-content .subtitle { color: var(--text-gray); font-size: 1.05rem; margin: 16px 0 24px; }
    .about-highlights { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin: 20px 0; }
    .about-item {
      display: flex;
      align-items: flex-start;
      gap: 12px;
      padding: 14px 16px;
      background: var(--secondary);
      border-radius: 10px;
      border-left: 4px solid var(--accent);
    }
    .about-item i { color: var(--accent); font-size: 1.2rem; margin-top: 2px; flex-shrink: 0; }
    .about-item strong { font-size: 0.95rem; color: var(--text-dark); display: block; font-weight: 700; }
    .about-item span { font-size: 0.82rem; color: var(--text-gray); }

    /* ============================================================
       SERVICES
    ============================================================ */
    #services { background: var(--secondary); }
    .services-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 24px;
      margin-top: 48px;
    }
    .service-card {
      background: var(--white);
      border-radius: 16px;
      overflow: hidden;
      box-shadow: 0 4px 20px rgba(0,0,0,0.06);
      transition: all 0.3s;
      border: 1px solid var(--border);
      cursor: pointer;
    }
    .service-card:hover {
      transform: translateY(-8px);
      box-shadow: 0 20px 50px rgba(0,0,0,0.12);
      border-color: var(--accent);
    }
    .service-card:hover .sc-icon { background: var(--primary); color: var(--accent); }
    .sc-img { height: 180px; overflow: hidden; position: relative; }
    .sc-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s; }
    .service-card:hover .sc-img img { transform: scale(1.05); }
    .sc-body { padding: 20px; }
    .sc-icon {
      width: 48px; height: 48px;
      background: rgba(255,193,7,0.12);
      color: var(--accent);
      border-radius: 12px;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1.3rem;
      margin-bottom: 12px;
      transition: all 0.3s;
    }
    .sc-body h3 { font-size: 1.15rem; color: var(--text-dark); margin-bottom: 8px; }
    .sc-body p { font-size: 0.88rem; color: var(--text-gray); line-height: 1.6; }
    .sc-link {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      color: var(--primary);
      font-weight: 700;
      font-size: 0.88rem;
      margin-top: 12px;
      font-family: 'Barlow Condensed', sans-serif;
      letter-spacing: 0.5px;
      transition: color 0.2s;
    }
    .sc-link:hover { color: var(--accent); }

    /* ============================================================
       WHY CHOOSE US
    ============================================================ */
    #why { background: var(--primary); }
    .why-grid {
      display: grid;
      grid-template-columns: repeat(5, 1fr);
      gap: 24px;
      margin-top: 48px;
    }
    .why-card {
      text-align: center;
      padding: 32px 20px;
      border-radius: 16px;
      border: 1px solid rgba(255,255,255,0.08);
      background: rgba(255,255,255,0.04);
      transition: all 0.3s;
    }
    .why-card:hover {
      background: rgba(255,193,7,0.08);
      border-color: var(--accent);
      transform: translateY(-6px);
    }
    .why-icon {
      width: 70px; height: 70px;
      background: rgba(255,193,7,0.1);
      border: 2px solid rgba(255,193,7,0.3);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1.7rem;
      color: var(--accent);
      margin: 0 auto 18px;
      transition: all 0.3s;
    }
    .why-card:hover .why-icon { background: var(--accent); color: var(--primary-dark); border-color: var(--accent); }
    .why-card h3 { color: var(--white); font-size: 1.1rem; margin-bottom: 8px; }
    .why-card p { font-size: 0.85rem; color: rgba(255,255,255,0.6); }

    /* ============================================================
       EMERGENCY CTA BANNER
    ============================================================ */
    .cta-banner {
      background: linear-gradient(135deg, var(--highlight-orange) 0%, #e65100 100%);
      position: relative;
      overflow: hidden;
      padding: 70px 0;
    }
    .cta-banner::before {
      content: '';
      position: absolute;
      inset: 0;
      background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.04'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    }
    .cta-banner-inner {
      position: relative;
      z-index: 2;
      text-align: center;
    }
    .cta-banner h2 { color: var(--white); font-size: clamp(2rem, 4vw, 3.2rem); margin-bottom: 12px; }
    .cta-banner p { color: rgba(255,255,255,0.9); font-size: 1.1rem; max-width: 600px; margin: 0 auto 32px; }
    .cta-banner-btns { display: flex; flex-wrap: wrap; justify-content: center; gap: 14px; }

    /* ============================================================
       GALLERY
    ============================================================ */
    #gallery .gallery-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      grid-auto-rows: 220px;
      gap: 16px;
      margin-top: 48px;
    }
    .gallery-item {
      border-radius: 12px;
      overflow: hidden;
      position: relative;
      cursor: pointer;
    }
    .gallery-item.span2 { grid-column: span 2; grid-row: span 2; }
    .gallery-item img {
      width: 100%; height: 100%;
      object-fit: cover;
      transition: transform 0.4s;
    }
    .gallery-item:hover img { transform: scale(1.06); }
    .gallery-overlay {
      position: absolute;
      inset: 0;
      background: linear-gradient(to top, rgba(8,31,51,0.8) 0%, transparent 60%);
      opacity: 0;
      transition: opacity 0.3s;
      display: flex;
      align-items: flex-end;
      padding: 16px;
    }
    .gallery-item:hover .gallery-overlay { opacity: 1; }
    .gallery-overlay span {
      color: var(--white);
      font-family: 'Barlow Condensed', sans-serif;
      font-weight: 700;
      font-size: 1rem;
    }

    /* Lightbox */
    .lightbox {
      display: none;
      position: fixed;
      inset: 0;
      background: rgba(0,0,0,0.92);
      z-index: 9999;
      align-items: center;
      justify-content: center;
    }
    .lightbox.open { display: flex; }
    .lightbox img { max-width: 90vw; max-height: 85vh; border-radius: 8px; box-shadow: 0 0 60px rgba(0,0,0,0.5); }
    .lightbox-close {
      position: absolute;
      top: 20px; right: 28px;
      color: var(--white);
      font-size: 2rem;
      cursor: pointer;
      background: none;
      border: none;
      line-height: 1;
    }

    /* ============================================================
       TESTIMONIALS
    ============================================================ */
    #testimonials { background: var(--secondary); }
    .testimonials-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 24px;
      margin-top: 48px;
    }
    .testimonial-card {
      background: var(--white);
      border-radius: 16px;
      padding: 28px;
      box-shadow: 0 4px 20px rgba(0,0,0,0.06);
      border: 1px solid var(--border);
      transition: all 0.3s;
      position: relative;
    }
    .testimonial-card:hover { transform: translateY(-4px); box-shadow: 0 16px 40px rgba(0,0,0,0.1); }
    .testimonial-card::before {
      content: '\201C';
      font-size: 5rem;
      color: var(--accent);
      font-family: Georgia, serif;
      line-height: 1;
      position: absolute;
      top: 10px; left: 20px;
      opacity: 0.3;
    }
    .stars { color: var(--accent); font-size: 1rem; margin-bottom: 14px; }
    .testimonial-card p { font-size: 0.95rem; color: var(--text-gray); font-style: italic; margin-bottom: 20px; position: relative; z-index: 1; }
    .reviewer { display: flex; align-items: center; gap: 12px; }
    .reviewer-avatar {
      width: 46px; height: 46px;
      border-radius: 50%;
      background: var(--primary);
      display: flex;
      align-items: center;
      justify-content: center;
      color: var(--accent);
      font-family: 'Barlow Condensed', sans-serif;
      font-size: 1.2rem;
      font-weight: 800;
      flex-shrink: 0;
    }
    .reviewer-info strong { color: var(--text-dark); font-size: 0.95rem; display: block; }
    .reviewer-info span { color: var(--text-gray); font-size: 0.82rem; }

    /* ============================================================
       FAQ
    ============================================================ */
    /* FAQ & Map Grid Layout */
    .faq-map-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 40px;
      align-items: start;
      margin-top: 40px;
    }
    .faq-column { flex: 1; }
    #faq .faq-grid {
      display: flex;
      flex-direction: column;
      gap: 10px;
    }
    .faq-item {
      border: 1px solid var(--border);
      border-radius: 10px;
      overflow: hidden;
      transition: box-shadow 0.2s;
      background: var(--white);
    }
    .faq-item.open { box-shadow: 0 4px 16px rgba(0,0,0,0.1); }
    .faq-question {
      width: 100%;
      text-align: left;
      background: var(--white);
      border: none;
      padding: 16px 20px;
      font-family: 'Barlow Condensed', sans-serif;
      font-size: 1rem;
      font-weight: 700;
      color: var(--text-dark);
      cursor: pointer;
      display: flex;
      justify-content: space-between;
      align-items: center;
      gap: 12px;
      transition: background 0.2s;
    }
    .faq-item.open .faq-question { background: var(--primary); color: var(--white); }
    .faq-question i { transition: transform 0.3s; flex-shrink: 0; font-size: 0.9rem; }
    .faq-item.open .faq-question i { transform: rotate(45deg); }
    .faq-answer {
      display: none;
      padding: 14px 20px 16px;
      background: var(--secondary);
      font-size: 0.9rem;
      color: var(--text-gray);
      line-height: 1.6;
    }
    .faq-item.open .faq-answer { display: block; }
    .map-column { flex: 1; }
    .map-wrap {
      border-radius: 12px;
      overflow: hidden;
      box-shadow: 0 8px 24px rgba(0,0,0,0.1);
      border: 1px solid var(--border);
      height: 100%;
      min-height: 500px;
    }
    .map-wrap iframe { display: block; width: 100%; height: 100%; border: none; }

    /* ============================================================
       EMERGENCY PAGE SECTION
    ============================================================ */
    #emergency {
      background: linear-gradient(135deg, #1a0a0a 0%, #2d0d0d 50%, #1a0a0a 100%);
      padding: 50px 0;
      position: relative;
      overflow: hidden;
    }
    #emergency::before {
      content: '';
      position: absolute;
      inset: 0;
      background: repeating-linear-gradient(
        0deg, transparent, transparent 48px,
        rgba(220,53,69,0.04) 48px, rgba(220,53,69,0.04) 50px
      );
    }
    .emergency-inner { position: relative; z-index: 2; }
    .emergency-header { text-align: center; margin-bottom: 30px; }
    .emergency-header h2 { color: var(--white); }
    .emergency-header p { color: rgba(255,255,255,0.7); max-width: 600px; margin: 16px auto 0; }
    .emergency-steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-bottom: 30px; }
    .estep {
      background: rgba(255,255,255,0.04);
      border: 1px solid rgba(220,53,69,0.3);
      border-radius: 16px;
      padding: 32px 24px;
      text-align: center;
    }
    .estep-num {
      width: 56px; height: 56px;
      background: var(--red);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-family: 'Barlow Condensed', sans-serif;
      font-size: 1.6rem;
      font-weight: 900;
      color: var(--white);
      margin: 0 auto 18px;
    }
    .estep h3 { color: var(--white); font-size: 1.15rem; margin-bottom: 10px; }
    .estep p { font-size: 0.88rem; color: rgba(255,255,255,0.6); }
    .emergency-contact-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 28px;
    }
    .emergency-contact-card {
      background: rgba(220,53,69,0.1);
      border: 2px solid var(--red);
      border-radius: 16px;
      padding: 32px;
      text-align: center;
    }
    .emergency-contact-card i { font-size: 2.4rem; color: var(--red); margin-bottom: 16px; }
    .emergency-contact-card h3 { color: var(--white); font-size: 1.3rem; margin-bottom: 8px; }
    .emergency-contact-card .phone-num {
      font-family: 'Barlow Condensed', sans-serif;
      font-size: 2rem;
      font-weight: 900;
      color: var(--accent);
      display: block;
      margin: 8px 0 20px;
    }

    /* ============================================================
       CONTACT
    ============================================================ */
    #contact .contact-grid {
      display: grid;
      grid-template-columns: 1fr 1.4fr;
      gap: 60px;
      align-items: start;
    }
    .contact-info h3 { color: var(--text-dark); margin-bottom: 24px; }
    .contact-item {
      display: flex;
      align-items: flex-start;
      gap: 16px;
      margin-bottom: 24px;
      padding: 18px;
      background: var(--secondary);
      border-radius: 12px;
      border-left: 4px solid var(--accent);
    }
    .contact-item-icon {
      width: 44px; height: 44px;
      background: var(--primary);
      color: var(--accent);
      border-radius: 10px;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1.1rem;
      flex-shrink: 0;
    }
    .contact-item strong { color: var(--text-dark); display: block; font-size: 0.9rem; font-weight: 700; margin-bottom: 4px; }
    .contact-item a, .contact-item span { color: var(--text-gray); font-size: 0.92rem; display: block; }
    .contact-item a:hover { color: var(--primary); }

    .contact-form-wrap {
      background: var(--white);
      border-radius: 16px;
      padding: 30px;
      box-shadow: 0 8px 24px rgba(0,0,0,0.08);
      border: 1px solid var(--border);
    }
    .contact-form-wrap h3 { color: var(--text-dark); margin-bottom: 24px; }
    .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
    .form-group { margin-bottom: 18px; }
    .form-group label {
      display: block;
      font-size: 0.88rem;
      font-weight: 700;
      color: var(--text-dark);
      margin-bottom: 6px;
    }
    .form-group input,
    .form-group select,
    .form-group textarea {
      width: 100%;
      padding: 12px 16px;
      border: 1.5px solid var(--border);
      border-radius: 8px;
      font-family: 'Nunito', sans-serif;
      font-size: 0.95rem;
      color: var(--text-dark);
      background: var(--secondary);
      transition: border-color 0.2s, box-shadow 0.2s;
      outline: none;
    }
    .form-group input:focus,
    .form-group select:focus,
    .form-group textarea:focus {
      border-color: var(--primary);
      box-shadow: 0 0 0 3px rgba(11,42,69,0.08);
      background: var(--white);
    }
    .form-group textarea { resize: vertical; min-height: 110px; }
    .form-submit { width: 100%; justify-content: center; font-size: 1.1rem; padding: 16px; }

    .map-wrap {
      margin-top: 60px;
      border-radius: 16px;
      overflow: hidden;
      box-shadow: 0 8px 30px rgba(0,0,0,0.1);
      border: 2px solid var(--border);
    }
    .map-wrap iframe { display: block; width: 100%; height: 350px; border: none; }

    /* ============================================================
       FOOTER
    ============================================================ */
    footer {
      background: var(--primary-dark);
      color: rgba(255,255,255,0.75);
      padding: 40px 0 0;
    }
    .footer-grid {
      display: grid;
      grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
      gap: 40px;
      padding-bottom: 50px;
      border-bottom: 1px solid rgba(255,255,255,0.08);
    }
    .footer-brand .brand-name {
      font-family: 'Barlow Condensed', sans-serif;
      font-size: 1.5rem;
      font-weight: 900;
      color: var(--white);
      margin-bottom: 12px;
    }
    .footer-brand p { font-size: 0.9rem; line-height: 1.7; color: rgba(255,255,255,0.6); }
    .footer-social { display: flex; gap: 10px; margin-top: 20px; }
    .social-btn {
      width: 38px; height: 38px;
      background: rgba(255,255,255,0.07);
      border-radius: 8px;
      display: flex;
      align-items: center;
      justify-content: center;
      color: rgba(255,255,255,0.7);
      font-size: 0.95rem;
      transition: all 0.2s;
    }
    .social-btn:hover { background: var(--accent); color: var(--primary-dark); }
    .footer-col h4 {
      font-family: 'Barlow Condensed', sans-serif;
      font-size: 1.1rem;
      font-weight: 800;
      color: var(--white);
      margin-bottom: 18px;
      padding-bottom: 10px;
      border-bottom: 2px solid var(--accent);
      display: inline-block;
    }
    .footer-links li { margin-bottom: 10px; }
    .footer-links a {
      color: rgba(255,255,255,0.6);
      font-size: 0.9rem;
      transition: color 0.2s;
      display: flex;
      align-items: center;
      gap: 8px;
    }
    .footer-links a:hover { color: var(--accent); }
    .footer-links a i { font-size: 0.7rem; color: var(--accent); }
    .footer-contact-item {
      display: flex;
      align-items: flex-start;
      gap: 12px;
      margin-bottom: 14px;
      font-size: 0.88rem;
      color: rgba(255,255,255,0.6);
    }
    .footer-contact-item i { color: var(--accent); font-size: 1rem; margin-top: 2px; flex-shrink: 0; }
    .footer-contact-item a { color: rgba(255,255,255,0.8); }
    .footer-contact-item a:hover { color: var(--accent); }
    .footer-bottom {
      padding: 20px 0;
      display: flex;
      flex-wrap: wrap;
      justify-content: space-between;
      align-items: center;
      gap: 10px;
      font-size: 0.85rem;
      color: rgba(255,255,255,0.4);
    }
    .footer-bottom a { color: rgba(255,255,255,0.6); }
    .footer-bottom a:hover { color: var(--accent); }

    /* ============================================================
       FLOATING BUTTONS
    ============================================================ */
    .floating-whatsapp {
      position: fixed;
      bottom: 28px; right: 28px;
      z-index: 998;
      width: 58px; height: 58px;
      background: #25D366;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1.7rem;
      color: var(--white);
      box-shadow: 0 4px 20px rgba(37,211,102,0.5);
      transition: all 0.25s;
      animation: float-wa 3s ease-in-out infinite;
    }
    .floating-whatsapp:hover { background: #128C7E; transform: scale(1.1); }
    @keyframes float-wa {
      0%,100% { transform: translateY(0); }
      50% { transform: translateY(-6px); }
    }

    .floating-call {
      position: fixed;
      bottom: 100px; right: 28px;
      z-index: 998;
      width: 58px; height: 58px;
      background: var(--red);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1.5rem;
      color: var(--white);
      box-shadow: 0 4px 20px rgba(220,53,69,0.5);
      transition: all 0.25s;
    }
    .floating-call:hover { background: #b02a37; transform: scale(1.1); }

    /* ============================================================
       STATS SECTION
    ============================================================ */
    .stats-section {
      background: var(--primary);
      padding: 40px 0;
    }
    .stats-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 24px;
      text-align: center;
    }
    .stat-item { padding: 24px; }
    .stat-num {
      font-family: 'Barlow Condensed', sans-serif;
      font-size: 3rem;
      font-weight: 900;
      color: var(--accent);
      line-height: 1;
    }
    .stat-label { font-size: 0.9rem; color: rgba(255,255,255,0.7); margin-top: 8px; font-weight: 600; letter-spacing: 0.5px; }

    /* ============================================================
       SCROLL ANIMATIONS
    ============================================================ */
    .fade-up { opacity: 0; transform: translateY(30px); transition: all 0.6s ease; }
    .fade-up.visible { opacity: 1; transform: none; }
    .fade-left { opacity: 0; transform: translateX(-30px); transition: all 0.6s ease; }
    .fade-left.visible { opacity: 1; transform: none; }
    .fade-right { opacity: 0; transform: translateX(30px); transition: all 0.6s ease; }
    .fade-right.visible { opacity: 1; transform: none; }
    .delay-1 { transition-delay: 0.1s; }
    .delay-2 { transition-delay: 0.2s; }
    .delay-3 { transition-delay: 0.3s; }
    .delay-4 { transition-delay: 0.4s; }
    .delay-5 { transition-delay: 0.5s; }

    /* Back to top */
    #backToTop {
      position: fixed;
      bottom: 172px; right: 28px;
      z-index: 997;
      width: 44px; height: 44px;
      background: var(--primary);
      color: var(--white);
      border-radius: 50%;
      display: none;
      align-items: center;
      justify-content: center;
      font-size: 1rem;
      border: 2px solid rgba(255,193,7,0.4);
      cursor: pointer;
      transition: all 0.25s;
      box-shadow: 0 4px 16px rgba(0,0,0,0.3);
    }
    #backToTop.show { display: flex; }
    #backToTop:hover { background: var(--accent); color: var(--primary-dark); }

    /* Success message */
    .form-success {
      display: none;
      background: #d1fae5;
      color: #065f46;
      padding: 14px 20px;
      border-radius: 8px;
      font-weight: 600;
      margin-top: 10px;
      border: 1px solid #a7f3d0;
    }

    /* ============================================================
       RESPONSIVE
    ============================================================ */
    @media (max-width: 1100px) {
      .services-grid { grid-template-columns: repeat(2, 1fr); }
      .why-grid { grid-template-columns: repeat(3, 1fr); }
      .gallery-grid { grid-template-columns: repeat(3, 1fr); }
    }
    @media (max-width: 900px) {
      .hero-inner { grid-template-columns: 1fr; gap: 40px; padding: 60px 0; }
      .hero-image-block { display: none; }
      #about .about-grid { grid-template-columns: 1fr; gap: 30px; }
      .about-img-wrap { display: none; }
      .about-content { padding: 0; }
      .about-highlights { gap: 8px; margin: 16px 0; }
      .about-item { padding: 12px 14px; gap: 10px; }
      .about-item i { font-size: 1rem; }
      .about-item strong { font-size: 0.9rem; }
      .about-item span { font-size: 0.78rem; }
      .about-content h2 { font-size: 1.8rem; }
      .about-content .subtitle { font-size: 0.95rem; margin: 12px 0 16px; }
      .contact-grid { grid-template-columns: 1fr; }
      .footer-grid { grid-template-columns: 1fr 1fr; }
      .stats-grid { grid-template-columns: repeat(2, 1fr); }
      .emergency-steps { grid-template-columns: 1fr; }
      .emergency-contact-grid { grid-template-columns: 1fr; }
      .testimonials-grid { grid-template-columns: 1fr; }
      .faq-map-grid { grid-template-columns: 1fr; gap: 30px; }
    }
    @media (max-width: 768px) {
      .nav-links, .nav-cta { display: none; }
      .hamburger { display: flex; }
      .services-grid { grid-template-columns: 1fr; }
      .why-grid { grid-template-columns: 1fr 1fr; }
      .gallery-grid { grid-template-columns: repeat(2, 1fr); }
      .gallery-item.span2 { grid-column: span 1; grid-row: span 1; }
      .footer-grid { grid-template-columns: 1fr; }
      .form-row { grid-template-columns: 1fr; }
      .about-highlights { grid-template-columns: 1fr; gap: 8px; margin: 12px 0; }
      .about-item { padding: 10px 12px; }
      .about-content h2 { font-size: 1.6rem; line-height: 1.3; }
      .faq-map-grid { grid-template-columns: 1fr; gap: 20px; }
      .map-wrap { min-height: 350px; }
    }
    @media (max-width: 480px) {
      .hero-btns { flex-direction: column; }
      .why-grid { grid-template-columns: 1fr; }
      .emergency-strip .inner { flex-direction: column; text-align: center; }
      .cta-banner-btns { flex-direction: column; align-items: center; }
      .about-content { padding: 0; }
      .about-content h2 { font-size: 1.4rem; line-height: 1.2; }
      .about-content .subtitle { font-size: 0.9rem; margin: 10px 0 12px; }
      .about-item { padding: 10px; font-size: 0.85rem; }
      .about-item i { font-size: 0.95rem; }
    }  
    .inner-hero {
  background: linear-gradient(
      rgba(11, 42, 69, 0.85),
      rgba(8, 31, 51, 0.9)
    ),
    url('assets/images/inner-banner.jpg') center/cover no-repeat;
    
  padding: 120px 0 80px;
  /* margin-top: var(--nav-height); */
  color: var(--white);
  position: relative;
}

.inner-hero .page-title {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--white);
}

.inner-hero .breadcrumb {
  background: transparent;
  margin-bottom: 0;
}

.inner-hero .breadcrumb-item a {
  color: var(--accent);
  text-decoration: none;
  font-weight: 500;
}

.inner-hero .breadcrumb-item a:hover {
  color: var(--accent-hover);
}

.inner-hero .breadcrumb-item.active {
  color: var(--secondary);
  font-weight: 500;
}

/* Responsive */
@media (max-width: 768px) {
 

  .inner-hero .page-title {
    font-size: 1.8rem;
  }
}