   
      /* ══════════════════════════════════════════
       DARK MODE (default)
    ══════════════════════════════════════════ */
      /* ─── TOKENS ─────────────────────────────────────── */

      :root {
        --primary-light: rgba(232, 50, 10, 0.1);
        --primary-glow: rgba(232, 50, 10, 0.18);

        /* Dark palette */
        --bg: #111111;
        --surface: #1c1c1c;
        --surface-2: #252525;
        --border: #2e2e2e;
        --text-h: #ffffff;
        --text-b: #cccccc;
        --text-m: #888888;
        --badge-bg: rgba(232, 50, 10, 0.14);
        --badge-border: rgba(232, 50, 10, 0.35);
        --icon-ring: rgba(232, 50, 10, 0.12);
        --tag-bg: #252525;
        --tag-color: #aaaaaa;
        --divider: #2a2a2a;
        --counter-bg: #1c1c1c;
        --counter-border: #2e2e2e;
        --primary: #e8320a;
        --dark: #111111;
        --mid: #1c1c1c;
        --light: #f4f4f4;
        --accent: #ffc107;
        --text: #e0e0e0;
        --card-bg: #1c1c1c;
        --card-border: #2a2a2a;
        --nav-bg: rgba(17, 17, 17, 0.97);
        --section-title-color: #fff;
        --sub-text: #999;
        --muted-text: #888;
        --footer-bg: #0a0a0a;
        --gallery-bg: #0e0e0e;
        --form-bg: #111;
        --form-border: #333;
        --form-text: #eee;
        --contact-form-bg: #1c1c1c;
        --why-item-bg: #1c1c1c;
        --testi-card-bg: #111111;
        --step-card-bg: #111111;
        --body-bg: #111111;
        --toggle-track: #333;
        --toggle-icon-moon: block;
        --toggle-icon-sun: none;
      }

      /* ══════════════════════════════════════════
       LIGHT MODE overrides
    ══════════════════════════════════════════ */
      body.light-mode {
        --bg: #f4f6f9;
        --surface: #ffffff;
        --surface-2: #f0f2f5;
        --border: #e0e4ea;
        --text-h: #111111;
        --text-b: #3a3a3a;
        --text-m: #777777;
        --badge-bg: rgba(232, 50, 10, 0.09);
        --badge-border: rgba(232, 50, 10, 0.25);
        --icon-ring: rgba(232, 50, 10, 0.1);
        --tag-bg: #eef0f4;
        --tag-color: #555555;
        --divider: #e0e4ea;
        --counter-bg: #ffffff;
        --counter-border: #e0e4ea;
        --dark: #ffffff;
        --mid: #f0f2f5;
        --text: #1a1a1a;
        --card-bg: #ffffff;
        --card-border: #e0e0e0;
        --nav-bg: rgba(255, 255, 255, 0.97);
        --section-title-color: #111;
        --sub-text: #555;
        --muted-text: #666;
        --footer-bg: #1a1a1a;
        --gallery-bg: #e8eaed;
        --form-bg: #ffffff;
        --form-border: #d0d0d0;
        --form-text: #111;
        --contact-form-bg: #f8f9fa;
        --why-item-bg: #ffffff;
        --testi-card-bg: #ffffff;
        --step-card-bg: #ffffff;
        --body-bg: #f5f6f8;
        --toggle-track: var(--primary);
      }

      * {
        box-sizing: border-box;
      }
      html {
        scroll-behavior: smooth;
      }
      body {
        font-family: "Barlow", sans-serif;
        background: var(--body-bg);
        color: var(--text);
        overflow-x: hidden;
        transition:
          background 0.35s ease,
          color 0.35s ease;
      }
      h1,
      h2,
      h3,
      h4,
      h5 {
        font-family: "Bebas Neue", sans-serif;
        letter-spacing: 1px;
      }

      /* ── THEME TOGGLE ── */
      .theme-toggle-wrap {
        display: flex;
        align-items: center;
        gap: 8px;
      }
      .toggle-label {
        font-size: 0.75rem;
        font-weight: 700;
        text-transform: uppercase;
        letter-spacing: 1px;
        color: #aaa;
        transition: color 0.3s;
        white-space: nowrap;
      }
      body.light-mode .toggle-label {
        color: #555;
      }

      .toggle-switch {
        position: relative;
        width: 52px;
        height: 28px;
        cursor: pointer;
      }
      .toggle-switch input {
        opacity: 0;
        width: 0;
        height: 0;
      }
      .toggle-track {
        position: absolute;
        inset: 0;
        background: #333;
        border-radius: 28px;
        transition: background 0.35s;
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 0 6px;
        font-size: 0.75rem;
      }
      .toggle-track .t-sun {
        color: #ffc107;
      }
      .toggle-track .t-moon {
        color: #90caf9;
      }

      .toggle-knob {
        position: absolute;
        top: 3px;
        left: 3px;
        width: 22px;
        height: 22px;
        border-radius: 50%;
        background: #fff;
        transition:
          left 0.35s cubic-bezier(0.4, 0, 0.2, 1),
          box-shadow 0.35s;
        box-shadow: 0 2px 6px rgba(0, 0, 0, 0.4);
        z-index: 2;
      }
      input:checked ~ .toggle-track {
        background: var(--primary);
      }
      input:checked ~ .toggle-knob {
        left: 27px;
      }

      /* ── NAVBAR ── */
      .navbar {
        background: var(--nav-bg);
        backdrop-filter: blur(8px);
        border-bottom: 2px solid var(--primary);
        position: sticky;
        top: 0;
        z-index: 1050;
        transition: background 0.35s;
      }
      .navbar-brand {
        color: var(--text) !important;
      }
      .navbar-brand span {
        color: var(--primary);
      }
      .nav-link {
        color: var(--sub-text) !important;
        font-weight: 600;
        text-transform: uppercase;
        font-size: 0.85rem;
        letter-spacing: 0.5px;
        transition: color 0.2s;
      }
      .nav-link:hover {
        color: var(--primary) !important;
      }
      .btn-cta {
        background: var(--primary);
        color: #fff !important;
        border-radius: 4px;
        padding: 6px 18px !important;
        font-weight: 700;
      }
      .btn-cta:hover {
        background: #c4270a;
      }

      /* ── HERO ── */
      #hero {
        position: relative;
        min-height: 100vh;
        display: flex;
        align-items: center;
        overflow: hidden;
      }
      #heroBg {
        position: absolute;
        inset: 0;
        width: 100%;
        height: 100%;
        object-fit: cover;
        filter: brightness(0.35);
        transition: filter 0.35s;
      }
      body.light-mode #heroBg {
        filter: brightness(0.55);
      }
      .hero-content {
        position: relative;
        z-index: 2;
      }
      .hero-tag {
        display: inline-block;
        background: var(--primary);
        color: #fff;
        font-size: 0.78rem;
        font-weight: 700;
        letter-spacing: 2px;
        text-transform: uppercase;
        padding: 4px 14px;
        border-radius: 2px;
        margin-bottom: 16px;
      }
      #hero h1 {
        font-size: clamp(3rem, 8vw, 6.5rem);
        line-height: 1;
        color: #fff;
      }
      #hero h1 span {
        color: var(--primary);
      }
      #hero p {
        font-size: 1.15rem;
        color: #ddd;
        max-width: 560px;
      }
      .btn-primary-red {
        background: var(--primary);
        color: #fff;
        border: none;
        border-radius: 4px;
        padding: 14px 36px;
        font-weight: 700;
        font-size: 1rem;
        text-decoration: none;
        display: inline-block;
        transition: background 0.2s;
      }
      .btn-primary-red:hover {
        background: #c4270a;
        color: #fff;
      }
      .btn-outline-light-custom {
        border: 2px solid #fff;
        color: #fff;
        background: transparent;
        border-radius: 4px;
        padding: 12px 32px;
        font-weight: 700;
        font-size: 1rem;
        text-decoration: none;
        display: inline-block;
        transition: all 0.2s;
      }
      .btn-outline-light-custom:hover {
        background: #fff;
        color: #111;
      }

      .stat-box {
        background: rgba(232, 50, 10, 0.12);
        border: 1px solid var(--primary);
        border-radius: 8px;
        padding: 20px 28px;
        text-align: center;
        transition: background 0.35s;
      }
      body.light-mode .stat-box {
        background: rgba(232, 50, 10, 0.08);
      }
      .stat-box h3 {
        color: var(--primary);
        font-size: 2.6rem;
        margin: 0;
      }
      .stat-box p {
        margin: 0;
        font-size: 0.85rem;
        color: var(--muted-text);
      }

      /* ── SECTION COMMONS ── */
      section {
        padding: 90px 0;
        transition: background 0.35s;
      }
      .section-tag {
        display: inline-block;
        background: var(--primary);
        color: #fff;
        font-size: 0.72rem;
        font-weight: 700;
        letter-spacing: 2px;
        text-transform: uppercase;
        padding: 3px 12px;
        border-radius: 2px;
        margin-bottom: 10px;
      }
      .section-title {
        font-size: clamp(2.2rem, 5vw, 3.8rem);
        color: var(--section-title-color);
        margin-bottom: 6px;
        transition: color 0.35s;
      }
      .section-title span {
        color: var(--primary);
      }
      .section-sub {
        color: var(--sub-text);
        max-width: 560px;
        transition: color 0.35s;
      }
      .divider {
        width: 60px;
        height: 4px;
        background: var(--primary);
        border-radius: 2px;
        margin: 12px 0 24px;
      }

      /* ── ABOUT ── */
      #about {
        background: var(--dark);
      }

      /* ── PROCESS ── */
      #process {
        background: var(--mid);
      }
      .step-card {
        background: var(--step-card-bg);
        border-radius: 10px;
        padding: 32px 24px;
        border: 1px solid var(--card-border);
        transition:
          border-color 0.25s,
          transform 0.25s,
          background 0.35s;
        height: 100%;
      }
      .step-card:hover {
        border-color: var(--primary);
        transform: translateY(-4px);
      }
      .step-num {
        font-family: "Bebas Neue", sans-serif;
        font-size: 3.5rem;
        color: rgba(232, 50, 10, 0.18);
        line-height: 1;
      }
      body.light-mode .step-num {
        color: rgba(232, 50, 10, 0.12);
      }
      .step-icon {
        width: 52px;
        height: 52px;
        border-radius: 50%;
        background: var(--primary);
        color: #fff;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 1.4rem;
        margin-bottom: 16px;
      }
      .step-card h5 {
        color: var(--section-title-color);
      }
      .step-card p {
        color: var(--muted-text);
        font-size: 0.88rem;
      }

      /* ── SERVICES ── */
      #services {
        background: var(--dark);
      }
      .service-card {
        position: relative;
        border-radius: 10px;
        overflow: hidden;
        height: 260px;
        cursor: pointer;
        box-shadow: 0 4px 18px rgba(0, 0, 0, 0.12);
      }
      body.light-mode .service-card {
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
      }
      .service-card img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform 0.4s;
      }
      .service-card:hover img {
        transform: scale(1.07);
      }
      .service-overlay {
        position: absolute;
        inset: 0;
        background: linear-gradient(
          to top,
          rgba(0, 0, 0, 0.85) 40%,
          transparent
        );
        display: flex;
        flex-direction: column;
        justify-content: flex-end;
        padding: 20px;
      }
      .service-overlay h5 {
        color: #fff;
        margin: 0 0 4px;
        font-size: 1.1rem;
      }
      .service-overlay p {
        color: #bbb;
        font-size: 0.82rem;
        margin: 0;
      }
      .service-badge {
        position: absolute;
        top: 12px;
        right: 12px;
        background: var(--primary);
        color: #fff;
        font-size: 0.7rem;
        font-weight: 700;
        letter-spacing: 1px;
        text-transform: uppercase;
        padding: 3px 10px;
        border-radius: 2px;
      }

      /* ── SLIDER (IMAGE GALLERY) ── */
      #gallery {
        background: var(--gallery-bg);
      }
      .gallery-slide {
        border-radius: 10px;
        overflow: hidden;
      }
      .gallery-slide img {
        width: 100%;
        height: 320px;
        object-fit: cover;
      }
      .carousel-control-prev-icon,
      .carousel-control-next-icon {
        filter: none;
      }
      .carousel-control-prev,
      .carousel-control-next {
        width: 44px;
        height: 44px;
        background: var(--primary);
        border-radius: 50%;
        top: 50%;
        transform: translateY(-50%);
        opacity: 1;
      }
      .carousel-indicators [data-bs-target] {
        background-color: var(--primary);
      }

      /* ── VIDEO ── */
      #video-section {
        background: var(--mid);
      }
      #video-section p,
      #video-section li {
        color: var(--sub-text);
      }
      .video-wrapper {
        border-radius: 12px;
        overflow: hidden;
        border: 3px solid var(--primary);
        box-shadow: 0 0 40px rgba(232, 50, 10, 0.25);
        position: relative;
        padding-bottom: 56.25%;
        height: 0;
      }
      .video-wrapper iframe {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        border: 0;
      }

      /* ── WHY US ── */
      #why-us {
        background: var(--dark);
      }
      .why-item {
        display: flex;
        gap: 18px;
        align-items: flex-start;
        background: var(--why-item-bg);
        border-radius: 10px;
        padding: 22px 20px;
        border: 1px solid var(--card-border);
        transition:
          border-color 0.2s,
          background 0.35s;
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.06);
      }
      body.light-mode .why-item {
        box-shadow: 0 2px 14px rgba(0, 0, 0, 0.08);
      }
      .why-item:hover {
        border-color: var(--primary);
      }
      .why-icon {
        flex-shrink: 0;
        width: 48px;
        height: 48px;
        background: var(--primary);
        color: #fff;
        border-radius: 8px;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 1.3rem;
      }
      .why-item h6 {
        color: var(--section-title-color);
        margin: 0 0 4px;
        font-size: 1rem;
        font-weight: 700;
      }
      .why-item p {
        color: var(--sub-text);
        margin: 0;
        font-size: 0.85rem;
      }

      /* ── TESTIMONIALS ── */
      #testimonials {
        background: var(--mid);
      }
      .testi-card {
        background: var(--testi-card-bg);
        border-radius: 12px;
        padding: 28px 24px;
        border: 1px solid var(--card-border);
        height: 100%;
        transition:
          background 0.35s,
          border-color 0.35s;
        box-shadow: 0 2px 12px rgba(0, 0, 0, 0.07);
      }
      body.light-mode .testi-card {
        box-shadow: 0 2px 16px rgba(0, 0, 0, 0.09);
      }
      .testi-stars {
        color: #ffc107;
        font-size: 0.9rem;
        margin-bottom: 12px;
      }
      .testi-card p {
        color: var(--sub-text);
        font-style: italic;
        font-size: 0.92rem;
      }
      .testi-author {
        display: flex;
        align-items: center;
        gap: 12px;
        margin-top: 16px;
      }
      .testi-avatar {
        width: 44px;
        height: 44px;
        border-radius: 50%;
        background: var(--primary);
        color: #fff;
        font-weight: 700;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 1rem;
      }
      .testi-author h6 {
        color: var(--section-title-color);
        margin: 0;
        font-size: 0.95rem;
      }
      .testi-author span {
        color: var(--muted-text);
        font-size: 0.78rem;
      }

      /* ── CONTACT ── */
      #contact {
        background: var(--dark);
      }
      .contact-form {
        background: var(--contact-form-bg);
        border-radius: 12px;
        padding: 36px;
        transition: background 0.35s;
        border: 1px solid var(--card-border);
      }
      .form-control,
      .form-select {
        background: var(--form-bg);
        border: 1px solid var(--form-border);
        color: var(--form-text);
        border-radius: 6px;
        transition:
          background 0.35s,
          border-color 0.2s,
          color 0.35s;
      }
      .form-control:focus,
      .form-select:focus {
        background: var(--form-bg);
        border-color: var(--primary);
        color: var(--form-text);
        box-shadow: 0 0 0 3px rgba(232, 50, 10, 0.2);
      }
      .form-label {
        color: var(--sub-text);
        font-size: 0.88rem;
        font-weight: 600;
      }
      .form-control::placeholder {
        color: var(--muted-text);
      }
      .contact-info-box {
        background: var(--primary);
        border-radius: 12px;
        padding: 36px;
        height: 100%;
      }
      .contact-info-box h4 {
        color: #fff;
      }
      .contact-info-box p {
        color: rgba(255, 255, 255, 0.8);
      }
      .info-row {
        display: flex;
        gap: 14px;
        align-items: flex-start;
        margin-bottom: 20px;
      }
      .info-row i {
        color: #fff;
        font-size: 1.2rem;
        margin-top: 2px;
      }
      .info-row span {
        color: rgba(255, 255, 255, 0.9);
        font-size: 0.92rem;
      }

      /* ── FOOTER ── */
      footer {
        background: var(--footer-bg);
        border-top: 2px solid var(--primary);
        padding: 50px 0 24px;
        transition: background 0.35s;
      }
      footer .brand-name {
        font-family: "Bebas Neue", sans-serif;
        font-size: 2rem;
        color: #fff;
      }
      footer .brand-name span {
        color: var(--primary);
      }
      footer p {
        color: #888;
        font-size: 0.85rem;
      }
      footer h6 {
        color: #fff;
        font-weight: 700;
        margin-bottom: 14px;
        text-transform: uppercase;
        letter-spacing: 1px;
        font-size: 0.85rem;
      }
      footer a {
        color: #777;
        text-decoration: none;
        display: block;
        margin-bottom: 7px;
        font-size: 0.85rem;
        transition: color 0.2s;
      }
      footer a:hover {
        color: var(--primary);
      }
      .footer-bottom {
        border-top: 1px solid rgba(255, 255, 255, 0.08);
        margin-top: 30px;
        padding-top: 20px;
      }
      .social-btn {
        width: 36px;
        height: 36px;
        border-radius: 50%;
        background: #2a2a2a;
        color: #aaa;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        font-size: 1rem;
        text-decoration: none;
        transition:
          background 0.2s,
          color 0.2s;
        margin-right: 8px;
      }
      .social-btn:hover {
        background: var(--primary);
        color: #fff;
      }

      /* ── FLOAT BTN ── */
      .float-wa {
        position: fixed;
        bottom: 28px;
        right: 28px;
        z-index: 999;
        width: 56px;
        height: 56px;
        border-radius: 50%;
        background: #25d366;
        color: #fff;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 1.7rem;
        text-decoration: none;
        box-shadow: 0 4px 20px rgba(37, 211, 102, 0.45);
        transition: transform 0.2s;
      }
      .float-wa:hover {
        transform: scale(1.1);
        color: #fff;
      }

      /* ── LIGHT MODE – about section image caption ── */
      body.light-mode .about-badge {
        background: var(--primary);
      }
      body.light-mode #about ul li {
        color: #444;
      }

      /* ── LIGHT MODE – CTA banner ── */
      body.light-mode .cta-banner {
        background: linear-gradient(135deg, var(--primary), #8b0000) !important;
      }
      body.light-mode .cta-banner h3 {
        color: #fff !important;
      }
      body.light-mode .cta-banner p {
        color: rgba(255, 255, 255, 0.85) !important;
      }

      /* ── LIGHT MODE – video caption ── */
      body.light-mode .vid-caption {
        color: #aaa !important;
      }

      /* ── ANIMATIONS ── */
      .fade-up {
        opacity: 0;
        transform: translateY(28px);
        transition:
          opacity 0.55s ease,
          transform 0.55s ease;
      }
      .fade-up.visible {
        opacity: 1;
        transform: translateY(0);
      }

      @media (max-width: 768px) {
        section {
          padding: 60px 0;
        }
        #hero h1 {
          font-size: 3rem;
        }
        .theme-toggle-wrap .toggle-label {
          display: none;
        }
      }
      /* ─── WELCOME SECTION ───────────────────────────── */
      #welcome {
        padding: 100px 0 80px;
        background: var(--bg);
        transition: background 0.38s;
        overflow: hidden;
        position: relative;
      }

      /* subtle radial glow behind the title */
      #welcome::before {
        content: "";
        position: absolute;
        top: -80px;
        left: 50%;
        transform: translateX(-50%);
        width: 700px;
        height: 400px;
        background: radial-gradient(
          ellipse at center,
          rgba(232, 50, 10, 0.07) 0%,
          transparent 70%
        );
        pointer-events: none;
      }
      body.light #welcome::before {
        background: radial-gradient(
          ellipse at center,
          rgba(232, 50, 10, 0.05) 0%,
          transparent 70%
        );
      }

      /* ── Eye-brow badge ── */
      .eyebrow {
        display: inline-flex;
        align-items: center;
        gap: 8px;
        background: var(--badge-bg);
        border: 1px solid var(--badge-border);
        border-radius: 50px;
        padding: 5px 16px 5px 10px;
        font-size: 0.78rem;
        font-weight: 700;
        letter-spacing: 1.5px;
        text-transform: uppercase;
        color: var(--primary);
        margin-bottom: 22px;
        transition:
          background 0.38s,
          border-color 0.38s;
      }
      .eyebrow .dot {
        width: 7px;
        height: 7px;
        border-radius: 50%;
        background: var(--primary);
        animation: pulse 1.8s ease-in-out infinite;
      }
      @keyframes pulse {
        0%,
        100% {
          opacity: 1;
          transform: scale(1);
        }
        50% {
          opacity: 0.4;
          transform: scale(0.6);
        }
      }

      /* ── Main heading ── */
      .welcome-title {
        font-size: clamp(2.6rem, 6vw, 3rem);
        line-height: 1.05;
        color: var(--text-h);
        margin-bottom: 18px;
      }
      .welcome-title .highlight {
        color: var(--primary);
      }
      .welcome-title .underline-red {
        position: relative;
        display: inline-block;
      }
      .welcome-title .underline-red::after {
        content: "";
        position: absolute;
        left: 0;
        bottom: -4px;
        width: 100%;
        height: 4px;
        background: var(--primary);
        border-radius: 2px;
      }

      /* ── Description ── */
      .welcome-desc {
        font-size: 1.05rem;
        line-height: 1.75;
        color: var(--text-b);
        max-width: 500px;
        margin-bottom: 28px;
        transition: color 0.38s;
      }

      /* ── CTA buttons ── */
      .cta-group {
        display: flex;
        flex-wrap: wrap;
        gap: 14px;
        margin-bottom: 40px;
      }

      .btn-red {
        display: inline-flex;
        align-items: center;
        gap: 8px;
        background: var(--primary);
        color: #fff;
        border: none;
        border-radius: 6px;
        padding: 13px 30px;
        font-size: 0.95rem;
        font-weight: 700;
        text-decoration: none;
        transition:
          background 0.2s,
          transform 0.2s;
      }
      .btn-red:hover {
        background: #c4270a;
        color: #fff;
        transform: translateY(-1px);
      }
      .btn-red:active {
        transform: translateY(0);
      }

      .btn-ghost {
        display: inline-flex;
        align-items: center;
        gap: 8px;
        background: transparent;
        border: 2px solid var(--border);
        color: var(--text-h);
        border-radius: 6px;
        padding: 11px 28px;
        font-size: 0.95rem;
        font-weight: 700;
        text-decoration: none;
        transition:
          border-color 0.2s,
          color 0.2s,
          transform 0.2s,
          background 0.38s;
      }
      .btn-ghost:hover {
        border-color: var(--primary);
        color: var(--primary);
        transform: translateY(-1px);
      }
      .btn-ghost:active {
        transform: translateY(0);
      }

      /* ── Phone strip ── */
      .phone-strip {
        display: inline-flex;
        align-items: center;
        gap: 12px;
        padding: 12px 20px;
        background: var(--surface);
        border: 1px solid var(--border);
        border-radius: 8px;
        transition:
          background 0.38s,
          border-color 0.38s;
      }
      .phone-strip .ph-icon {
        width: 38px;
        height: 38px;
        border-radius: 50%;
        background: var(--primary);
        display: flex;
        align-items: center;
        justify-content: center;
        color: #fff;
        font-size: 1rem;
        flex-shrink: 0;
      }
      .phone-strip .ph-label {
        font-size: 0.72rem;
        color: var(--text-m);
        text-transform: uppercase;
        letter-spacing: 1px;
      }
      .phone-strip .ph-num {
        font-size: 1.05rem;
        font-weight: 700;
        color: var(--text-h);
        font-family: "Barlow", sans-serif;
        transition: color 0.38s;
      }

      /* ── Divider line ── */
      .h-divider {
        width: 100%;
        height: 1px;
        background: var(--divider);
        margin: 36px 0;
        transition: background 0.38s;
      }

      /* ── Trust tags ── */
      .trust-tags {
        display: flex;
        flex-wrap: wrap;
        gap: 10px;
      }
      .trust-tag {
        display: inline-flex;
        align-items: center;
        gap: 6px;
        background: var(--tag-bg);
        border: 1px solid var(--border);
        border-radius: 50px;
        padding: 5px 14px;
        font-size: 0.8rem;
        font-weight: 600;
        color: var(--tag-color);
        transition:
          background 0.38s,
          border-color 0.38s,
          color 0.38s;
      }
      .trust-tag i {
        color: var(--primary);
        font-size: 0.85rem;
      }

      /* ── RIGHT COLUMN ── */
      /* Stats grid */
      .stats-grid {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 14px;
        margin-bottom: 22px;
      }
      .stat-card {
        background: var(--counter-bg);
        border: 1px solid var(--counter-border);
        border-radius: 12px;
        padding: 22px 18px;
        text-align: center;
        transition:
          background 0.38s,
          border-color 0.38s,
          transform 0.22s;
        position: relative;
        overflow: hidden;
      }
      .stat-card::before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 3px;
        background: var(--primary);
        transform: scaleX(0);
        transform-origin: left;
        transition: transform 0.3s ease;
      }
      .stat-card:hover::before {
        transform: scaleX(1);
      }
      .stat-card:hover {
        transform: translateY(-3px);
        border-color: rgba(232, 50, 10, 0.3);
      }
      .stat-card .s-num {
        font-family: "Bebas Neue", sans-serif;
        font-size: 2.6rem;
        color: var(--primary);
        line-height: 1;
        margin-bottom: 4px;
      }
      .stat-card .s-label {
        font-size: 0.78rem;
        color: var(--text-m);
        text-transform: uppercase;
        letter-spacing: 1px;
        transition: color 0.38s;
      }

      /* Image card */
      .img-card {
        border-radius: 14px;
        overflow: hidden;
        position: relative;
        background: var(--surface);
        border: 1px solid var(--border);
        transition:
          background 0.38s,
          border-color 0.38s;
      }
      .img-card img {
        width: 100%;
        height: 220px;
        object-fit: cover;
        display: block;
        transition: transform 0.4s ease;
      }
      .img-card:hover img {
        transform: scale(1.04);
      }
      .img-overlay {
        position: absolute;
        inset: 0;
        background: linear-gradient(
          to top,
          rgba(0, 0, 0, 0.7) 35%,
          transparent
        );
        display: flex;
        flex-direction: column;
        justify-content: flex-end;
        padding: 20px;
      }
      .img-overlay .ov-tag {
        display: inline-block;
        background: var(--primary);
        color: #fff;
        font-size: 0.7rem;
        font-weight: 700;
        letter-spacing: 1.2px;
        text-transform: uppercase;
        padding: 3px 10px;
        border-radius: 3px;
        margin-bottom: 6px;
        width: fit-content;
      }
      .img-overlay h5 {
        color: #fff;
        font-size: 1.15rem;
        margin: 0;
      }

      /* Feature list */
      .feature-list {
        list-style: none;
        margin: 22px 0 0;
      }
      .feature-list li {
        display: flex;
        align-items: flex-start;
        gap: 12px;
        padding: 12px 0;
        border-bottom: 1px solid var(--divider);
        transition: border-color 0.38s;
      }
      .feature-list li:last-child {
        border-bottom: none;
      }
      .feat-icon {
        flex-shrink: 0;
        width: 36px;
        height: 36px;
        border-radius: 8px;
        background: var(--icon-ring);
        display: flex;
        align-items: center;
        justify-content: center;
        color: var(--primary);
        font-size: 0.95rem;
        transition: background 0.38s;
      }
      .feat-title {
        font-size: 0.9rem;
        font-weight: 700;
        color: var(--text-h);
        margin-bottom: 2px;
        transition: color 0.38s;
      }
      .feat-desc {
        font-size: 0.8rem;
        color: var(--text-m);
        transition: color 0.38s;
      }

      /* ─── ANIMATIONS ─────────────────────────────────── */
      .reveal {
        opacity: 0;
        transform: translateY(22px);
        transition:
          opacity 0.55s ease,
          transform 0.55s ease;
      }
      .reveal.in {
        opacity: 1;
        transform: translateY(0);
      }
      .fade-up {
        opacity: 0;
        transform: translateX(-24px);
        transition:
          opacity 0.55s ease,
          transform 0.55s ease;
      }
      .fade-up.in {
        opacity: 1;
        transform: translateX(0);
      }
      .fade-up {
        opacity: 0;
        transform: translateX(24px);
        transition:
          opacity 0.55s ease,
          transform 0.55s ease;
      }
      .fade-up.in {
        opacity: 1;
        transform: translateX(0);
      }

      .hours-container {
        cursor: pointer;
      }

      .top-row {
        display: flex;
        align-items: center;
        gap: 8px;
      }

      #toggle-icon {
        transition: transform 0.3s ease;
      }

      #toggle-icon.rotate {
        transform: rotate(180deg);
      }

      .dropdown {
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.4s ease;
        color: rgba(255, 255, 255, 0.9);
      }

      .dropdown.open {
        max-height: 200px;
        margin-top: 6px;
      }

      .hours-container #status {
        color: rgba(255, 255, 255, 0.9);
      }
      .status-dot {
        display: inline-block;
        width: 8px;
        height: 8px;
        border-radius: 50%;
        margin-right: 6px;
        animation: blink 1.2s infinite;
      }

      .green {
        background: #84ffb2;
      }
      .red {
        background: #ffd262;
      }

      @keyframes blink {
        0%,
        100% {
          opacity: 1;
        }
        50% {
          opacity: 0.3;
        }
      }

      /* ─── RESPONSIVE ─────────────────────────────────── */
      @media (max-width: 991px) {
        #welcome {
          padding: 80px 0 60px;
        }
        .welcome-title {
          font-size: clamp(2.2rem, 8vw, 3.4rem);
        }
        .stats-grid {
          grid-template-columns: repeat(4, 1fr);
        }
      }
      @media (max-width: 767px) {
        #welcome {
          padding: 70px 0 50px;
        }
        .welcome-title {
          font-size: 2.4rem;
        }
        .stats-grid {
          grid-template-columns: 1fr 1fr;
        }
        .cta-group {
          flex-direction: column;
        }
        .btn-red,
        .btn-ghost {
          width: 100%;
          justify-content: center;
        }
        .phone-strip {
          width: 100%;
        }
        .trust-tags {
          gap: 8px;
        }
        .toggle-label {
          display: none;
        }
      }
      @media (max-width: 400px) {
        .welcome-title {
          font-size: 2rem;
        }
      }
   
    