    *,
    *::before,
    *::after {
      box-sizing: border-box;
      margin: 0;
      padding: 0
    }

    :root {
      --black: #0A2540;
      --white: #FFFFFF;
      --mid: #4A5568;
      --light: #F0F4F8;
      --border: rgba(10, 37, 64, 0.08);
      --glass-bg: rgba(255, 255, 255, 0.7);
      --glass-border: rgba(255, 255, 255, 0.5);
      --primary: #009FE3;
      --secondary: #0A2540;
      --accent: #22C55E;
      --primary-grad: linear-gradient(135deg, #009FE3 0%, #0A2540 100%);
      --ff-sans: 'Poppins', 'Inter', system-ui, sans-serif;
    }

    html {
      font-size: 16px;
      scroll-behavior: smooth
    }

    body {
      font-family: var(--ff-sans);
      background: var(--white);
      color: var(--black);
      -webkit-font-smoothing: antialiased;
      overflow-x: hidden
    }

    img {
      display: block;
      max-width: 100%
    }

    a {
      text-decoration: none;
      color: inherit
    }

    button {
      cursor: pointer;
      font-family: var(--ff-sans);
      border: none;
      background: none
    }

    /* â”€â”€ HEADER & NAV â”€â”€ */
    .nav {
      position: fixed;
      top: 0;
      left: 0;
      right: 0;
      z-index: 999;
      background: var(--white);
      border-bottom: 1px solid var(--border);
      transition: all 0.3s ease;
      display: flex;
      align-items: center;
      justify-content: center;
      padding: 0 64px;
      height: 76px;
    }

    .nav.scrolled {
      box-shadow: 0 4px 30px rgba(0, 0, 0, 0.03)
    }

    .nav-brand img {
      height: 72px;
      width: auto
    }

    .nav-links {
      display: flex;
      gap: 40px;
      list-style: none;
      align-items: center
    }

    .nav-links a {
      font-size: 16px;
      font-weight: 600;
      color: var(--mid);
      letter-spacing: 0.01em;
      transition: color 0.2s
    }

    .nav-links a:hover {
      color: var(--black)
    }

    .nav-call {
      background: var(--black);
      color: var(--white);
      padding: 12px 24px;
      border-radius: 100px;
      font-size: 16px;
      font-weight: 600;
      transition: all 0.2s ease;
    }

    .nav-call:hover {
      background: var(--mid);
      transform: translateY(-1px)
    }

    /* Mobile Header Icons */
    .nav-mobile-actions {
      display: none;
      align-items: center;
      gap: 8px
    }

    .nav-icon-btn {
      width: 40px;
      height: 40px;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      transition: background 0.2s;
    }

    .nav-icon-btn svg {
      width: 20px;
      height: 20px
    }

    .nav-icon-call {
      background: var(--black)
    }

    .nav-icon-call svg {
      fill: var(--white);
      stroke: none
    }

    .nav-icon-wa {
      background: var(--accent);
    }

    .nav-icon-wa svg {
      fill: var(--white)
    }

    /* Mobile Drawer Hack */
    .nav-toggle {
      display: none
    }

    .nav-toggle-label {
      display: none;
      flex-direction: column;
      justify-content: space-between;
      width: 24px;
      height: 16px;
      cursor: pointer;
      z-index: 1001;
    }

    .nav-toggle-label span {
      display: block;
      width: 100%;
      height: 2px;
      background: var(--black);
      transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    }


    .global-container {
      max-width: 1100px;
      margin: 0 auto;
      width: 100%;
    }

    /* â”€â”€ HERO â”€â”€ */
    .hero {
      padding: 140px 64px 80px;
      display: flex;
      flex-direction: column;
      align-items: center;
      text-align: center;
      background-color: var(--light);
      background-image: url('images/img/hero.png');
      background-size: cover;
      background-position: center top;
      background-repeat: no-repeat;
      position: relative;
    }

    .hero::before {
      content: "";
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      background: rgba(255, 255, 255, 0.7);
      pointer-events: none;
      z-index: 0;
    }

    .hero>* {
      position: relative;
      z-index: 1
    }

    .hero-subtag {
      border: 1px solid rgba(0, 0, 0, 0.1);
      color: var(--black);
      background: rgba(255, 255, 255, 0.8);
      padding: 6px 18px;
      border-radius: 100px;
      font-size: 12px;
      font-weight: 700;
      letter-spacing: 0.04em;
      margin-bottom: 24px;
      display: inline-block;
      backdrop-filter: blur(4px);
    }

    .hero h1 {
      font-size: clamp(40px, 5.8vw, 68px);
      line-height: 1.1;
      font-weight: 900;
      color: var(--black);
      letter-spacing: -0.03em;
      max-width: 1100px;
      margin-bottom: 20px;
    }

    .text-gradient {
      background: var(--primary-grad);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
      color: transparent;
      display: inline-block;
    }

    .hero-desc {
      font-size: 16px;
      font-weight: 500;
      color: var(--black);
      line-height: 1.6;
      max-width: 1100px;
      margin-bottom: 36px;
    }

    .hero-cta {
      display: inline-flex;
      align-items: center;
      background: var(--primary-grad);
      color: var(--white);
      padding: 18px 42px;
      border-radius: 100px;
      font-size: 16px;
      font-weight: 600;
      transition: all 0.4s cubic-bezier(0.25, 1, 0.5, 1);
      box-shadow: 0 8px 24px rgba(13, 110, 253, 0.25);
    }

    .hero-cta:hover {
      box-shadow: 0 16px 36px rgba(13, 110, 253, 0.35);
      transform: translateY(-3px);
    }

    /* Hero Image Layout */
    .hero-gallery {
      margin-top: 64px;
      width: 100%;
      max-width: 1100px;
      display: grid;
      grid-template-columns: 1fr 1.1fr 1fr;
      gap: 24px;
      align-items: center;
    }

    .gallery-item {
      border-radius: 32px;
      overflow: hidden;
      box-shadow: 0 20px 40px rgba(31, 41, 55, 0.04);
      position: relative;
      border: 1px solid rgba(255, 255, 255, 0.6);
    }

    .gallery-item img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: transform 0.6s ease;
      position: absolute;
      top: 0;
      left: 0;
    }

    .gallery-overlay {
      position: absolute;
      bottom: 0;
      left: 0;
      right: 0;
      background: rgba(15, 23, 42, 0.6);
      backdrop-filter: blur(8px);
      -webkit-backdrop-filter: blur(8px);
      padding: 30px 24px 24px;
      color: var(--white);
      transform: translateY(100%);
      transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
      z-index: 2;
      text-align: left;
    }

    .gallery-item:hover img {
      transform: scale(1.05)
    }

    .gallery-item:hover .gallery-overlay {
      transform: translateY(0)
    }

    .gallery-overlay h3 {
      font-size: 16px;
      font-weight: 700;
      margin-bottom: 6px;
      color: var(--white)
    }

    .gallery-overlay p {
      font-size: 13px;
      color: rgba(255, 255, 255, 0.85);
      line-height: 1.4
    }

    .gallery-side {
      aspect-ratio: 3/4;
      height: 380px;
      margin-top: 40px;
    }

    .gallery-center {
      aspect-ratio: 4/5;
      height: 450px;
    }

    /* â”€â”€ MARQUEE STRIP â”€â”€ */
    .marquee-section {
      padding: 40px 64px;
      text-align: center;
    }

    .marquee-title {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 16px;
      font-size: 13px;
      font-weight: 700;
      color: var(--mid);
      text-transform: uppercase;
      letter-spacing: 0.1em;
      margin-bottom: 12px;
    }

    .marquee-title::before,
    .marquee-title::after {
      content: '';
      height: 1px;
      width: 60px;
      background: var(--border);
    }

    .marquee-subtitle {
      font-size: 15px;
      color: var(--mid);
      max-width: 650px;
      margin: 0 auto 40px;
      line-height: 1.6;
    }

    .marquee-row {
      display: flex;
      justify-content: center;
      align-items: center;
      gap: 64px;
      flex-wrap: wrap;


    }

    .brand-logo {
      height: 52px;
      width: auto;
      max-width: 160px;
      object-fit: contain;
      user-select: none;
      transition: transform 0.2s ease;
    }

    .brand-logo:hover {
      transform: scale(1.05);
    }

    /* â”€â”€ WHY US (PASSIOANTE PAINTERS) â”€â”€ */
    .why-section {
      background-color: var(--white);
      background-image: linear-gradient(rgba(255, 255, 255, 0.85), rgba(255, 255, 255, 0.85)), url('images/why_bg_cleaning.png');
      background-size: cover;
      background-position: center;
      padding: 120px 64px;
      position: relative;
    }

    .section-header {
      text-align: center;
      margin: 0 auto 60px;
      max-width: 1100px;
    }

    .section-header h2 {
      font-size: clamp(32px, 3.8vw, 44px);
      line-height: 1.3;
      font-weight: 900;
      color: var(--black);
      margin-bottom: 16px;
      letter-spacing: -0.02em;
    }

    .section-header p {
      font-size: 16px;
      color: var(--mid);
      max-width: 540px;
      margin: 0 auto;
    }

    .why-grid {
      display: grid;
      grid-template-columns: 1fr 1fr 1fr;
      gap: 24px;


    }

    .why-card {
      background: var(--white);
      border: 1px solid transparent;
      border-radius: 28px;
      padding: 48px 40px;
      display: flex;
      flex-direction: column;
      justify-content: space-between;
      min-height: 360px;
      transition: all 0.4s cubic-bezier(0.25, 1, 0.5, 1);
      box-shadow: 0 4px 20px rgba(31, 41, 55, 0.02);
    }

    .why-card:hover {
      transform: translateY(-8px);
      box-shadow: 0 24px 48px rgba(31, 41, 55, 0.06);
    }

    .why-card-top h3 {
      font-size: 20px;
      font-weight: 800;
      line-height: 1.4;
      margin-bottom: 14px;
      letter-spacing: -0.01em;
    }

    .why-card-top p {
      font-size: 15px;
      color: var(--mid);
      line-height: 1.6;
    }

    .why-card-bottom {
      font-size: 15px;
      font-weight: 700;
      color: var(--black);
    }

    .why-img-card {
      border-radius: 24px;
      overflow: hidden;
      height: 100%;
    }

    .why-img-card img {
      width: 100%;
      height: 100%;
      object-fit: cover;
    }

    .why-dark-card {
      background: var(--black);
      color: var(--white);
      border: none;
    }

    .why-dark-card .why-card-bottom {
      color: var(--white);
    }

    /* ── FOUNDER PROMISE ── */
    .founder-promise {
      background-color: #F8FAFC;
      border-radius: 32px;
      padding: 48px;
      margin-top: 64px;
      display: flex;
      gap: 48px;
      align-items: center;
      border: 1px solid #E2E8F0;
    }

    .founder-profile {
      display: flex;
      flex-direction: column;
      align-items: center;
      text-align: center;
      min-width: 180px;
    }

    .founder-avatar {
      width: 100px;
      height: 100px;
      background-color: #0F172A;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      color: #3B82F6;
      font-size: 36px;
      font-weight: 800;
      position: relative;
      margin-bottom: 16px;
      box-shadow: 0 10px 25px rgba(15, 23, 42, 0.1);
    }

    .founder-badge-check {
      position: absolute;
      bottom: 0;
      right: 0;
      width: 28px;
      height: 28px;
      background-color: #10B981;
      color: white;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 14px;
      border: 3px solid #F8FAFC;
    }

    .founder-details h4 {
      font-size: 16px;
      font-weight: 800;
      color: #0F172A;
      margin-bottom: 4px;
    }

    .founder-details span {
      font-size: 13px;
      color: #64748B;
      font-weight: 600;
    }

    .founder-content {
      flex: 1;
    }

    .promise-badge {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      background-color: rgba(59, 130, 246, 0.1);
      color: #3B82F6;
      padding: 6px 12px;
      border-radius: 100px;
      font-size: 11px;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: 0.05em;
      margin-bottom: 20px;
    }

    .promise-quote {
      font-size: 24px;
      font-weight: 800;
      color: #0F172A;
      margin-bottom: 16px;
      line-height: 1.3;
    }

    .promise-text {
      font-size: 15px;
      color: #475569;
      line-height: 1.7;
      font-style: italic;
      margin-bottom: 32px;
    }

    .promise-meta {
      display: flex;
      flex-wrap: wrap;
      gap: 32px;
      align-items: center;
    }

    .meta-label {
      font-size: 13px;
      color: #94A3B8;
      font-weight: 600;
      margin-right: 8px;
    }

    .guarantee-tag {
      background-color: rgba(16, 185, 129, 0.1);
      color: #10B981;
      padding: 4px 10px;
      border-radius: 6px;
      font-size: 12px;
      font-weight: 700;
    }

    .promise-contact a {
      font-size: 13px;
      color: #3B82F6;
      font-weight: 600;
      text-decoration: none;
      display: inline-flex;
      align-items: center;
      gap: 6px;
    }
    
    @media (max-width: 768px) {
      .founder-promise {
        flex-direction: column;
        text-align: center;
        padding: 32px 24px;
        gap: 32px;
      }
      .promise-meta {
        flex-direction: column;
        gap: 16px;
        align-items: center;
      }
      .promise-quote {
        font-size: 20px;
      }
    }

    /* â”€â”€ SERVICES (TRANSFORMING WALLS) â”€â”€ */
    .services-section {
      background-color: var(--light);
      background-image: linear-gradient(rgba(248, 250, 252, 0.7), rgba(248, 250, 252, 0.7)), url('images/services_bg_cleaning.png');
      background-size: cover;
      background-position: center;
      background-attachment: fixed;
      padding: 120px 64px;
      position: relative;
    }

    .services-list {
      max-width: 1100px;
      margin: 0 auto;
      display: flex;
      flex-direction: column;
      gap: 80px;
    }

    .service-row {
      display: grid;
      grid-template-columns: 1fr 1.1fr;
      gap: 64px;
      align-items: center;
    }

    .service-row:nth-child(even) .service-img-container {
      order: 2;
    }

    .service-info {
      display: flex;
      flex-direction: column;
      justify-content: center;
    }

    .service-info h3 {
      font-size: 32px;
      font-weight: 800;
      margin-bottom: 16px;
      letter-spacing: -0.02em;
      color: var(--black);
    }

    .service-info p {
      font-size: 16px;
      color: var(--mid);
      line-height: 1.7;
      margin-bottom: 32px;
    }

    .service-link {
      font-size: 15px;
      font-weight: 700;
      display: inline-flex;
      align-items: center;
      gap: 8px;
      padding: 16px 32px;
      background: var(--primary);
      color: var(--white);
      border-radius: 100px;
      text-decoration: none;
      width: fit-content;
      transition: all 0.3s ease;
      box-shadow: 0 8px 24px rgba(13, 110, 253, 0.25);
    }

    .service-link:hover {
      background: var(--black);
      color: var(--white);
      transform: translateY(-2px);
      box-shadow: 0 12px 30px rgba(1, 25, 65, 0.25);
    }

    .service-img-container {
      border-radius: 24px;
      overflow: hidden;
      box-shadow: 0 20px 40px rgba(1, 25, 65, 0.08);
      border: 1px solid rgba(1, 25, 65, 0.05);
    }

    .service-img-container img {
      width: 100%;
    }

    /* ── DETAILED SERVICES GRID ── */
    .detailed-services-section {
      background-color: #F8FAFC;
      background-image: linear-gradient(rgba(248, 250, 252, 0.9), rgba(248, 250, 252, 0.9)), url('images/services_bg_cleaning.png');
      background-size: cover;
      background-position: center;
      padding: 100px 64px;
      position: relative;
    }

    .detailed-services-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 24px;
      max-width: 1200px;
      margin: 0 auto;
    }

    .d-service-card {
      background: var(--white);
      border: 2px solid transparent;
      border-radius: 24px;
      padding: 32px 20px;
      text-align: center;
      position: relative;
      display: flex;
      flex-direction: column;
      align-items: center;
      transition: all 0.3s cubic-bezier(0.25, 1, 0.5, 1);
      box-shadow: 0 8px 30px rgba(0, 0, 0, 0.04);
      cursor: pointer;
    }

    .d-service-card.active, .d-service-card:hover {
      border: 2px solid var(--primary);
      box-shadow: 0 12px 30px rgba(1, 107, 213, 0.08);
      transform: translateY(-4px);
    }

    .card-badge {
      font-size: 9px;
      font-weight: 800;
      padding: 4px 10px;
      border-radius: 100px;
      position: absolute;
      top: 16px;
      left: 16px;
      text-transform: uppercase;
      letter-spacing: 0.05em;
    }

    /* Badge Color Variations */
    .badge-blue { background: rgba(1, 107, 213, 0.08); color: #016BD5; }
    .badge-gray { background: rgba(100, 116, 139, 0.08); color: #64748B; }
    .badge-orange { background: rgba(249, 115, 22, 0.08); color: #F97316; }
    .badge-green { background: rgba(34, 197, 94, 0.08); color: #22C55E; }
    .badge-purple { background: rgba(168, 85, 247, 0.08); color: #A855F7; }
    .badge-pink { background: rgba(236, 72, 153, 0.08); color: #EC4899; }
    .badge-cyan { background: rgba(6, 182, 212, 0.08); color: #06B6D4; }
    .badge-teal { background: rgba(20, 184, 166, 0.08); color: #14B8A6; }
    .badge-lightgreen { background: rgba(132, 204, 22, 0.08); color: #84CC16; }
    .badge-violet { background: rgba(99, 102, 241, 0.08); color: #6366F1; }

    .d-icon-box {
      width: 64px;
      height: 64px;
      background: #F8FAFC;
      border-radius: 18px;
      display: flex;
      align-items: center;
      justify-content: center;
      margin-top: 20px;
      margin-bottom: 16px;
      font-size: 24px;
      color: var(--primary);
      transition: all 0.3s ease;
    }
    .d-icon-box img {
      width: 32px;
      height: 32px;
      object-fit: contain;
    }

    .d-service-card.active .d-icon-box, .d-service-card:hover .d-icon-box {
      background: rgba(1, 107, 213, 0.08);
      color: var(--primary);
    }

    .d-service-card h3 {
      font-size: 15px;
      font-weight: 700;
      color: var(--black);
      margin-bottom: 6px;
      line-height: 1.3;
    }

    .d-service-card p {
      font-size: 12px;
      color: var(--mid);
      margin-bottom: 20px;
      line-height: 1.4;
    }

    .d-view-info {
      font-size: 11px;
      font-weight: 700;
      color: var(--mid);
      text-decoration: none;
      text-transform: uppercase;
      letter-spacing: 0.05em;
      display: inline-flex;
      align-items: center;
      gap: 4px;
      margin-top: auto;
      transition: all 0.2s ease;
    }

    .d-service-card.active .d-view-info, .d-service-card:hover .d-view-info {
      color: var(--primary);
    }

    @media (max-width: 1200px) {
      .detailed-services-grid {
        grid-template-columns: repeat(4, 1fr);
      }
    }
    @media (max-width: 992px) {
      .detailed-services-grid {
        grid-template-columns: repeat(3, 1fr);
      }
      .detailed-services-section {
        padding: 80px 24px;
      }
    }
    @media (max-width: 768px) {
      .detailed-services-grid {
        grid-template-columns: repeat(2, 1fr);
      }
    }
    @media (max-width: 480px) {
      .detailed-services-grid {
        grid-template-columns: 1fr;
      }
    }

    /* ── PROCESS (HASSLE-FREE PAINTING) ── */
    .process-section {
      background-color: var(--white);
      background-image: linear-gradient(rgba(255, 255, 255, 0.8), rgba(255, 255, 255, 0.8)), url('images/process_bg_cleaning.png');
      background-size: cover;
      background-position: center;
      padding: 120px 64px;
      position: relative;
    }

    .process-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 24px;


    }

    .process-card {
      background: var(--white);
      border: 1px solid transparent;
      border-radius: 28px;
      padding: 40px 32px;
      transition: all 0.4s cubic-bezier(0.25, 1, 0.5, 1);
      box-shadow: 0 4px 20px rgba(31, 41, 55, 0.02);
    }

    .process-card:hover {
      transform: translateY(-8px);
      box-shadow: 0 24px 48px rgba(31, 41, 55, 0.06);
    }

    .process-icon {
      font-size: 24px;
      color: var(--black);
      margin-bottom: 24px;
      display: block;
    }

    .process-card h3 {
      font-size: 18px;
      font-weight: 800;
      margin-bottom: 10px;
      letter-spacing: -0.015em;
    }

    .process-card p {
      font-size: 14px;
      color: var(--mid);
      line-height: 1.6;
    }

    /* â”€â”€ MILESTONES / STATS â”€â”€ */
    .milestones-section {
      background-color: #0f172a;
      background-image: linear-gradient(rgba(15, 23, 42, 0.7), rgba(15, 23, 42, 0.7)), url('images/milestones_bg_cleaning.png');
      background-size: cover;
      background-position: center;
      background-attachment: fixed;
      color: var(--white);
      padding: 120px 64px;
      position: relative;
    }

    .milestones-container {
      max-width: 1100px;
      margin: 0 auto;
      display: grid;
      grid-template-columns: 1fr 1.2fr;
      gap: 64px;
      align-items: center;
    }

    .milestones-left h2 {
      font-size: clamp(32px, 3.8vw, 44px);
      line-height: 1.15;
      font-weight: 900;
      margin-bottom: 20px;
      letter-spacing: -0.02em;
    }

    .milestones-left p {
      font-size: 16px;
      color: rgba(255, 255, 255, 0.7);
      line-height: 1.6;
      max-width: 420px;
    }

    .stats-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      position: relative;
    }

    /* Grid lines styling */
    .stats-grid::before {
      content: '';
      position: absolute;
      left: 50%;
      top: 0;
      bottom: 0;
      width: 1px;
      background: rgba(255, 255, 255, 0.12);
    }

    .stats-grid::after {
      content: '';
      position: absolute;
      top: 50%;
      left: 0;
      right: 0;
      height: 1px;
      background: rgba(255, 255, 255, 0.12);
    }

    .stat-box {
      padding: 40px;
      text-align: center;
    }

    .stat-num {
      font-size: 54px;
      font-weight: 900;
      color: var(--white);
      margin-bottom: 8px;
      line-height: 1;
      letter-spacing: -0.02em;
    }

    .stat-label {
      font-size: 14px;
      color: rgba(255, 255, 255, 0.6);
      font-weight: 500;
      letter-spacing: 0.02em;
    }

    /* â”€â”€ OUR WORK / PORTFOLIO â”€â”€ */
    .portfolio-section {
      background-color: var(--light);
      background-image: linear-gradient(rgba(248, 250, 252, 0.8), rgba(248, 250, 252, 0.8)), url('images/portfolio_bg_cleaning.png');
      background-size: cover;
      background-position: center;
      padding: 120px 64px;
      position: relative;
    }

    .portfolio-grid {
      max-width: 1100px;
      margin: 0 auto 48px;
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 20px;
    }

    .portfolio-item {
      border-radius: 20px;
      overflow: hidden;
      box-shadow: 0 8px 24px rgba(0, 0, 0, 0.03);
    }

    .portfolio-item img {
      width: 100%;
      height: 100%;
      object-fit: cover;
    }

    .portfolio-tall-1 {
      grid-row: span 2;
      height: 520px
    }

    .portfolio-wide-1 {
      grid-column: span 1;
      height: 250px
    }

    .portfolio-tall-2 {
      grid-row: span 2;
      height: 520px
    }

    .portfolio-wide-2 {
      grid-column: span 1;
      height: 250px
    }

    .portfolio-action {
      text-align: center;
    }

    /* ── REVIEWS SECTION ── */
    .reviews-section {
      background-color: #F8FAFC;
      background-image: linear-gradient(rgba(248, 250, 252, 0.9), rgba(248, 250, 252, 0.9)), url('images/faq_bg_cleaning.png');
      background-size: cover;
      background-position: center;
      padding: 100px 64px;
      position: relative;
    }

    .reviews-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 32px;
      max-width: 1100px;
      margin: 0 auto;
      align-items: stretch;
    }

    .review-card {
      background: var(--white);
      border-radius: 32px;
      padding: 48px 40px;
      box-shadow: 0 4px 24px rgba(0, 0, 0, 0.04);
      display: flex;
      flex-direction: column;
      justify-content: space-between;
      transition: all 0.3s cubic-bezier(0.25, 1, 0.5, 1);
    }

    .review-card:hover {
      transform: translateY(-5px);
      box-shadow: 0 12px 32px rgba(0, 0, 0, 0.08);
    }

    .review-stars {
      color: #F59E0B;
      font-size: 16px;
      margin-bottom: 24px;
      display: flex;
      gap: 4px;
    }

    .review-text {
      font-size: 15px;
      line-height: 1.7;
      color: #4B5563;
      font-style: italic;
      margin-bottom: 32px;
      flex-grow: 1;
    }

    .review-author h4 {
      font-size: 16px;
      font-weight: 700;
      color: #011941;
      margin-bottom: 4px;
    }

    .review-author span {
      font-size: 12px;
      color: var(--mid);
      display: block;
    }

    @media (max-width: 992px) {
      .reviews-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
      }
      .reviews-section {
        padding: 80px 32px;
      }
    }
    @media (max-width: 768px) {
      .reviews-grid {
        grid-template-columns: 1fr;
      }
      .reviews-section {
        padding: 60px 20px;
      }
      .review-card {
        padding: 32px 24px;
      }
    }

    /* â”€â”€ FAQ SECTION â”€â”€ */
    .faq-section {
      background-color: var(--white);
      background-image: linear-gradient(rgba(255, 255, 255, 0.85), rgba(255, 255, 255, 0.85)), url('images/faq_bg_cleaning.png');
      background-size: cover;
      background-position: center;
      padding: 120px 64px;
      border-top: 1px solid transparent;
      position: relative;
    }

    .faq-container {
      max-width: 1100px;
      margin: 0 auto;
    }

    .faq-list {
      margin-top: 40px;
      display: flex;
      flex-direction: column;
      gap: 0;
    }

    .faq-item {
      background: transparent;
      border-bottom: 1px solid rgba(31, 41, 55, 0.05);
      overflow: hidden;
    }

    .faq-item:first-child {
      border-top: 1px solid var(--border)
    }

    .faq-question {
      width: 100%;
      padding: 22px 0;
      display: flex;
      justify-content: space-between;
      align-items: center;
      font-size: 17px;
      font-weight: 600;
      text-align: left;
      color: var(--black);
      transition: color 0.2s;
    }

    .faq-question:hover {
      color: var(--mid)
    }

    .faq-question span:first-child {
      flex-grow: 1;
      padding-right: 20px
    }

    .faq-icon {
      width: 28px;
      height: 28px;
      min-width: 28px;
      flex-shrink: 0;
      border-radius: 50%;
      background: var(--light);
      display: flex;
      align-items: center;
      justify-content: center;
      margin-left: auto;
      transition: all 0.3s ease;
      font-size: 14px;
      color: var(--black);
      line-height: 1;
    }

    .faq-answer {
      max-height: 0;
      overflow: hidden;
      transition: max-height 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
      will-change: max-height;
    }

    .faq-answer p {
      padding: 0 0 22px;
      font-size: 15px;
      color: var(--mid);
      line-height: 1.7;
    }

    .faq-item.active .faq-icon {
      background: var(--black);
      color: var(--white);
      transform: rotate(45deg);
    }

    .faq-item.active .faq-answer {
      max-height: 250px;
    }

    /* â”€â”€ COVERAGE â”€â”€ */
    .coverage-strip {
      background-color: var(--white);
      background-image: linear-gradient(rgba(255, 255, 255, 0.85), rgba(255, 255, 255, 0.85)), url('images/coverage_bg_cleaning.png');
      background-size: cover;
      background-position: center;
      padding: 80px 64px;
      border-bottom: 1px solid transparent;
      text-align: center;
      position: relative;
    }

    .coverage-label {
      font-size: 12px;
      font-weight: 700;
      color: var(--black);
      text-transform: uppercase;
      letter-spacing: 0.1em;
      margin-bottom: 16px;
      display: block;
    }

    .coverage-areas {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 12px;
      max-width: 1100px;
      margin: 0 auto;
    }

    .area-tag {
      background: var(--light);
      padding: 8px 16px;
      border-radius: 100px;
      font-size: 13px;
      font-weight: 500;
      color: var(--mid);
    }

    /* â”€â”€ FOOTER & CTA WRAPPER â”€â”€ */
    .footer-wrapper {
      background-color: var(--black);
      background-image: linear-gradient(rgba(1, 25, 65, 0.7), rgba(1, 25, 65, 0.7)), url('images/footer_bg_cleaning.png');
      background-size: cover;
      background-position: bottom;
      position: relative;
    }

    /* â”€â”€ FINAL CTA â”€â”€ */
    .final-cta {
      background: transparent;
      color: var(--white);
      padding: 120px 64px;
      text-align: center;
      position: relative;
    }

    .cta-container {
      max-width: 1100px;
      margin: 0 auto;
    }

    .final-cta h2 {
      font-size: clamp(36px, 5vw, 56px);
      line-height: 1.15;
      font-weight: 900;
      margin-bottom: 24px;
      letter-spacing: -0.03em;
    }

    .final-cta p {
      font-size: 17px;
      color: rgba(255, 255, 255, 0.7);
      margin-bottom: 40px;
      line-height: 1.6;
    }

    .cta-group {
      display: flex;
      justify-content: center;
      gap: 16px;
    }

    footer {
      background: transparent;
      border-top: 1px solid rgba(255, 255, 255, 0.05);
      position: relative;
    }

    .cta-btn-primary {
      background: var(--white);
      color: var(--black);
      padding: 16px 36px;
      border-radius: 100px;
      font-size: 15px;
      font-weight: 600;
    }

    .cta-btn-secondary {
      border: 1.5px solid rgba(255, 255, 255, 0.25);
      color: var(--white);
      padding: 16px 36px;
      border-radius: 100px;
      font-size: 15px;
      font-weight: 600;
      transition: all 0.2s ease;
    }

    .cta-btn-secondary:hover {
      background: rgba(255, 255, 255, 0.08);
    }

    /* â”€â”€ FOOTER â”€â”€ */
    footer {
      background-color: var(--black);
      color: rgba(255, 255, 255, 0.5);
      border-top: 1px solid rgba(255, 255, 255, 0.08);
      position: relative;
    }

    .footer-grid {
      max-width: 1100px;
      margin: 0 auto 60px;
      display: grid;
      grid-template-columns: 1.5fr 1fr 1fr 1fr;
      gap: 48px;
    }

    /* â”€â”€ FLOATING ACTIONS â”€â”€ */
    .floating-actions {
      position: fixed;
      bottom: 30px;
      right: 30px;
      display: flex;
      flex-direction: column;
      gap: 16px;
      z-index: 1000;
    }

    .float-btn {
      width: 56px;
      height: 56px;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      color: var(--white);
      font-size: 24px;
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
      transition: all 0.3s ease;
      cursor: pointer;
      text-decoration: none;
      border: none;
      outline: none;
    }

    .float-btn:hover {
      transform: translateY(-5px);
      box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
      color: var(--white);
    }

    .float-wa {
      background-color: var(--accent);
    }

    .float-call {
      background-color: var(--primary);
    }

    .float-top {
      background-color: #f59e0b;
      /* Brand color */
      opacity: 0;
      pointer-events: none;
      transform: translateY(20px);
      border: 2px solid #ffffff;
      box-shadow: 0 4px 15px rgba(245, 158, 11, 0.4);
    }

    .float-top.visible {
      opacity: 1;
      pointer-events: auto;
      transform: translateY(0);
    }

    @media (max-width: 768px) {

      .float-wa,
      .float-call {
        display: none !important;
      }

      .floating-actions {
        bottom: 20px;
        right: 20px;
        gap: 12px;
      }

      .float-btn {
        width: 48px;
        height: 48px;
        font-size: 20px;
      }
    }

    .footer-info img {
      height: 70px;
      margin-bottom: 20px;
      filter: brightness(0) invert(1)
    }

    .footer-info p {
      font-size: 14px;
      line-height: 1.6;
      max-width: 280px;
    }

    .footer-col h4 {
      color: var(--white);
      font-size: 15px;
      font-weight: 600;
      margin-bottom: 20px;
      letter-spacing: 0.02em;
    }

    .footer-col ul {
      list-style: none;
      display: flex;
      flex-direction: column;
      gap: 12px;
    }

    .footer-col ul a {
      font-size: 14px;
      transition: color 0.2s;
    }

    .footer-col ul a:hover {
      color: var(--white)
    }

    .footer-bottom {
      max-width: 1100px;
      margin: 0 auto;
      border-top: 1px solid rgba(255, 255, 255, 0.08);
      padding-top: 30px;
      display: flex;
      justify-content: space-between;
      align-items: center;
      font-size: 13px;
    }

    .footer-credit {
      display: flex;
      flex-direction: column;
      align-items: flex-end;
      gap: 8px;
      font-size: 12px;
      color: rgba(255, 255, 255, 0.7);
      text-align: right;
    }

    /* â”€â”€ RESPONSIVE â”€â”€ */
    @media(max-width:992px) {
      .nav {
        padding: 0 24px;
        height: 68px
      }

      .hero {
        padding: 110px 24px 48px
      }

      .hero-gallery {
        grid-template-columns: 1fr;
        gap: 24px;
      }

      .gallery-side {
        height: auto;
        margin-top: 0;
      }

      .gallery-center {
        height: auto;
      }

      .why-section {
        padding: 64px 24px
      }

      .why-grid {
        grid-template-columns: 1fr;
        gap: 20px
      }

      .why-card {
        min-height: auto;
        padding: 32px
      }

      .services-section {
        padding: 64px 24px
      }

      .services-list {
        gap: 56px;
      }

      .service-row {
        grid-template-columns: 1fr;
        gap: 32px;
      }
      
      .service-row:nth-child(even) .service-img-container {
        order: unset;
      }
      
      .service-img-container {
        order: -1;
      }

      .process-section {
        padding: 64px 24px
      }

      .process-grid {
        grid-template-columns: 1fr 1fr;
        gap: 16px
      }

      .milestones-section {
        padding: 64px 24px
      }

      .milestones-container {
        grid-template-columns: 1fr;
        gap: 32px;
        text-align: center
      }

      .milestones-left p {
        margin: 0 auto
      }

      .portfolio-section {
        padding: 64px 24px
      }

      .portfolio-grid {
        grid-template-columns: 1fr 1fr;
        gap: 14px
      }

      .portfolio-tall-1,
      .portfolio-tall-2 {
        height: 280px
      }

      .faq-section {
        padding: 64px 24px
      }

      .faq-question {
        padding: 20px 24px;
        font-size: 15px
      }

      .faq-answer p {
        padding: 0 24px 20px;
        font-size: 14px
      }

      .final-cta {
        padding: 64px 24px
      }

      .coverage-strip {
        padding: 32px 24px
      }

      footer {
        padding: 48px 24px 24px
      }

      .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 28px
      }

      .section-header {
        margin-bottom: 40px
      }

      .section-header h2 {
        font-size: 28px;
        line-height: 1.35;
      }

      .section-header p {
        font-size: 14px
      }

      .marquee-section {
        padding: 28px 24px
      }

      .brand-logo {
        height: 36px;
        max-width: 120px;
      }

      .marquee-row {
        gap: 32px
      }
    }

    @media(max-width:1100px) {
      .nav {
        padding: 0 32px
      }

      .nav-links {
        gap: 20px
      }

      .nav-brand img {
        height: 56px
      }
    }

    @media(max-width:768px) {
      .nav {
        padding: 0 16px;
        height: 60px
      }

      .nav-brand {
        order: 1
      }

      .nav-brand img {
        height: 50px
      }

      .nav-call {
        display: none
      }

      .nav-mobile-actions {
        display: flex;
        order: 2;
        margin-left: auto;
        gap: 12px
      }

      .nav-icon-btn {
        width: 34px;
        height: 34px;
        background: var(--light);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        fill: var(--primary);
      }

      .nav-icon-btn svg {
        width: 16px;
        height: 16px;
        fill: var(--primary);
      }

      .nav-icon-btn.nav-icon-call {
        background: var(--primary);
      }
      .nav-icon-btn.nav-icon-call svg {
        fill: var(--white);
      }

      .nav-icon-btn.nav-icon-wa {
        background: var(--accent);
      }
      .nav-icon-btn.nav-icon-wa svg {
        fill: var(--white);
      }

      .nav-toggle-label {
        display: flex;
        order: 3;
        margin-left: 16px
      }

      .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 280px;
        height: 100vh;
        background: var(--black);
        flex-direction: column;
        padding: 90px 32px;
        align-items: flex-start;
        box-shadow: -10px 0 40px rgba(1, 25, 65, 0.3);
        transition: right 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
        z-index: 1000;
        will-change: right;
      }

      .nav-links a {
        font-size: 20px;
        font-weight: 600;
        color: var(--white);
        margin-bottom: 24px;
        display: block;
      }

      .nav-toggle:checked~.nav-links {
        right: 0
      }

      .nav-toggle:checked~.nav-toggle-label span:nth-child(1) {
        transform: translateY(7px) rotate(45deg);
        background: var(--white);
      }

      .nav-toggle:checked~.nav-toggle-label span:nth-child(2) {
        opacity: 0
      }

      .nav-toggle:checked~.nav-toggle-label span:nth-child(3) {
        transform: translateY(-7px) rotate(-45deg);
        background: var(--white);
      }

      .hero {
        padding: 100px 20px 48px;
        background-image: url('images/img/hero-phone.png');
      }

      .hero-subtag {
        font-size: 11px;
        padding: 5px 14px;
        margin-bottom: 16px
      }

      .hero h1 {
        font-size: 32px;
        margin-bottom: 16px;
        letter-spacing: -0.02em
      }

      .hero-desc {
        font-size: 14px;
        margin-bottom: 24px;
        line-height: 1.5
      }

      .hero-cta {
        padding: 14px 28px;
        font-size: 14px
      }

      .hero-gallery {
        margin-top: 36px;
        grid-template-columns: 1fr;
        gap: 20px;
        max-width: 100%;
      }

      .gallery-item {
        border-radius: 24px;
        width: 100%;
        height: auto;
      }

      .gallery-overlay {
        display: flex;
        padding: 24px;
      }

      .gallery-side {
        margin-top: 0;
        aspect-ratio: auto;
      }

      .gallery-center {
        transform: none;
        aspect-ratio: auto;
      }

      .marquee-section {
        padding: 20px 16px
      }

      .marquee-title {
        font-size: 10px;
        margin-bottom: 16px;
        gap: 10px
      }

      .marquee-title::before,
      .marquee-title::after {
        width: 40px
      }

      .brand-logo {
        height: 28px;
        max-width: 90px;
      }

      .marquee-row {
        gap: 24px
      }

      .why-section {
        padding: 64px 20px
      }

      .why-card {
        padding: 32px 24px;
        min-height: auto;
        border-radius: 24px
      }

      .why-card-top h3 {
        font-size: 16px
      }

      .why-card-top p {
        font-size: 13px
      }

      .why-img-card {
        border-radius: 18px;
        height: 220px
      }

      .why-dark-card {
        border-radius: 18px
      }

      .services-section {
        padding: 64px 20px
      }

      .service-row {
        gap: 24px;
      }

      .service-info h3 {
        font-size: 24px;
        margin-bottom: 12px;
      }

      .service-info p {
        font-size: 14px;
        margin-bottom: 24px;
      }

      .service-img-container {
        border-radius: 16px;
        width: 100%;
      }

      .process-section {
        padding: 64px 20px
      }

      .process-grid {
        grid-template-columns: 1fr 1fr;
        gap: 16px
      }

      .process-card {
        padding: 24px 20px;
        border-radius: 20px
      }

      .process-icon {
        font-size: 20px;
        margin-bottom: 16px
      }

      .process-card h3 {
        font-size: 15px;
        margin-bottom: 6px
      }

      .process-card p {
        font-size: 12px
      }

      .milestones-section {
        padding: 64px 20px
      }

      .milestones-container {
        text-align: center
      }

      .milestones-left h2 {
        font-size: 26px
      }

      .milestones-left p {
        font-size: 14px;
        margin: 0 auto
      }

      .stat-box {
        padding: 16px
      }

      .stat-num {
        font-size: 32px
      }

      .stat-label {
        font-size: 12px
      }

      .portfolio-section {
        padding: 64px 20px
      }

      .portfolio-grid {
        grid-template-columns: 1fr 1fr;
        gap: 12px
      }

      .portfolio-item {
        border-radius: 20px
      }

      .portfolio-tall-1,
      .portfolio-tall-2 {
        grid-row: auto;
        height: 180px
      }

      .portfolio-wide-1,
      .portfolio-wide-2 {
        grid-column: auto;
        height: 160px
      }

      .portfolio-action .hero-cta {
        padding: 12px 24px;
        font-size: 13px
      }

      .faq-section {
        padding: 64px 20px
      }

      .faq-question {
        padding: 20px 0;
        font-size: 16px
      }

      .faq-answer p {
        padding: 0 0 18px;
        font-size: 14px
      }

      .coverage-strip {
        padding: 64px 20px
      }

      .coverage-label {
        font-size: 13px;
        margin-bottom: 24px
      }

      .area-chip {
        padding: 12px 18px;
        font-size: 13px;
        white-space: normal;
        text-align: center;
      }

      .coverage-areas {
        gap: 12px;
        justify-content: center;
        display: flex;
        flex-wrap: wrap;
      }

      .final-cta {
        padding: 56px 16px
      }

      .final-cta h2 {
        font-size: 28px
      }

      .final-cta p {
        font-size: 14px;
        margin-bottom: 28px
      }

      .cta-group {
        flex-direction: column;
        align-items: center;
        width: 100%;
        gap: 12px
      }

      .cta-btn-primary,
      .cta-btn-secondary {
        width: 100%;
        max-width: 300px;
        text-align: center;
        padding: 14px 28px;
        font-size: 14px
      }

      footer {
        padding: 40px 16px 20px
      }

      .footer-grid {
        grid-template-columns: 1fr;
        gap: 24px;
        margin-bottom: 32px
      }

      .footer-info p {
        font-size: 13px
      }

      .footer-col h4 {
        font-size: 14px;
        margin-bottom: 14px
      }

      .footer-col ul {
        gap: 10px
      }

      .footer-col ul a {
        font-size: 13px
      }

      .footer-bottom {
        flex-direction: column;
        gap: 20px;
        text-align: center;
        font-size: 12px;
        padding-top: 20px
      }

      .footer-credit {
        align-items: center;
        text-align: center;
      }

      .section-header {
        margin-bottom: 32px
      }

      .section-header h2 {
        font-size: 24px;
        margin-bottom: 10px;
        line-height: 1.4;
      }

      .section-header p {
        font-size: 13px
      }
    }

    /* ─── AREAS SECTION ─── */
    .areas-section {
      padding: 80px 64px;
      background: #f8fafc;
      border-top: 1px solid #e2e8f0;
    }

    @media (max-width: 768px) {
      .areas-section {
        padding: 60px 24px;
      }
    }

    .areas-section .section-header {
      text-align: center;
    }

    .areas-section .section-eyebrow {
      display: inline-block;
      font-size: 11px;
      font-weight: 700;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      color: #6b7280;
      background: #e0e7ff;
      padding: 4px 14px;
      border-radius: 100px;
      margin-bottom: 12px;
    }

    .areas-section h2 {
      font-size: clamp(28px, 4vw, 44px);
      font-weight: 900;
      color: #0f172a;
      letter-spacing: -0.03em;
      margin-bottom: 8px;
    }

    .areas-section .areas-desc {
      color: #64748b;
      max-width: 580px;
      margin: 0 auto;
      font-size: 15px;
      line-height: 1.6;
    }

    .areas-grid {
      display: flex;
      flex-wrap: wrap;
      gap: 10px;
      margin-top: 36px;
      justify-content: center;
    }

    .area-chip {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      padding: 9px 18px;
      background: #ffffff;
      border: 1.5px solid #e2e8f0;
      border-radius: 100px;
      font-size: 13px;
      font-weight: 600;
      color: #1e293b;
      cursor: pointer;
      transition: all 0.2s ease;
      white-space: nowrap;
      font-family: inherit;
    }

    .area-chip:hover {
      background: #1e293b;
      color: #fff;
      border-color: #1e293b;
      transform: translateY(-2px);
      box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    }

    .area-chip i {
      font-size: 11px;
      opacity: 0.6;
    }

    /* ─── AREA MODAL ─── */
    .area-modal-overlay {
      position: fixed;
      inset: 0;
      background: rgba(0, 0, 0, 0.55);
      backdrop-filter: blur(4px);
      z-index: 99999;
      display: none;
      align-items: center;
      justify-content: center;
      padding: 20px;
    }

    .area-modal-overlay.open {
      display: flex;
    }

    .area-modal {
      background: #fff;
      border-radius: 24px;
      max-width: 560px;
      width: 100%;
      max-height: 88vh;
      overflow-y: auto;
      padding: 36px;
      position: relative;
      box-shadow: 0 20px 60px rgba(0, 0, 0, 0.25);
      animation: modalIn 0.25s ease;
    }

    @keyframes modalIn {
      from {
        opacity: 0;
        transform: scale(0.92) translateY(20px);
      }

      to {
        opacity: 1;
        transform: scale(1) translateY(0);
      }
    }

    .area-modal-close {
      position: absolute;
      top: 16px;
      right: 16px;
      width: 32px;
      height: 32px;
      border-radius: 50%;
      border: none;
      background: #f1f5f9;
      cursor: pointer;
      font-size: 18px;
      display: flex;
      align-items: center;
      justify-content: center;
      transition: background 0.2s;
      line-height: 1;
    }

    .area-modal-close:hover {
      background: #e2e8f0;
    }

    .area-modal-badge {
      display: inline-block;
      background: #fef9c3;
      color: #92400e;
      font-size: 11px;
      font-weight: 700;
      padding: 3px 10px;
      border-radius: 100px;
      margin-bottom: 10px;
      letter-spacing: 0.05em;
      text-transform: uppercase;
    }

    .area-modal h2 {
      font-size: 24px;
      font-weight: 900;
      color: #0f172a;
      margin-bottom: 6px;
      letter-spacing: -0.02em;
    }

    .area-modal-subtitle {
      font-size: 14px;
      color: #64748b;
      margin-bottom: 20px;
      line-height: 1.6;
    }

    .area-modal-kw-label {
      font-size: 11px;
      font-weight: 700;
      letter-spacing: 0.08em;
      text-transform: uppercase;
      color: #64748b;
      margin-bottom: 8px;
    }

    .area-modal-keywords {
      display: flex;
      flex-wrap: wrap;
      gap: 7px;
      margin-bottom: 24px;
    }

    .area-kw-tag {
      font-size: 12px;
      background: #f0fdf4;
      color: #166534;
      border: 1px solid #bbf7d0;
      padding: 4px 10px;
      border-radius: 100px;
      font-weight: 500;
    }

    .area-modal-sections {
      display: flex;
      flex-direction: column;
      gap: 16px;
    }

    .area-modal-block {
      padding: 14px 16px;
      background: #f8fafc;
      border-radius: 12px;
      border-left: 3px solid #f59e0b;
    }

    .area-modal-block h4 {
      font-size: 13px;
      font-weight: 700;
      color: #0f172a;
      margin-bottom: 6px;
      display: flex;
      align-items: center;
      gap: 6px;
    }

    .area-modal-block h4 i {
      color: #f59e0b;
    }

    .area-modal-block p {
      font-size: 13px;
      color: #64748b;
      line-height: 1.6;
      margin: 0;
    }

    .area-modal-cta {
      display: flex;
      gap: 10px;
      margin-top: 24px;
      flex-wrap: wrap;
    }

    .area-modal-cta a {
      flex: 1;
      min-width: 130px;
      text-align: center;
      padding: 12px 20px;
      border-radius: 100px;
      font-size: 13px;
      font-weight: 700;
      text-decoration: none;
      transition: all 0.2s;
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 6px;
    }

    .area-cta-primary {
      background: #1e293b;
      color: #fff;
    }

    .area-cta-primary:hover {
      background: #0f172a;
      color: #fff;
    }

    .area-cta-wa {
      background: var(--accent);
      color: #fff;
    }

    .area-cta-wa:hover {
      background: #1da851;
      color: #fff;
    }

    @media (max-width: 768px) {
      .area-modal {
        padding: 24px;
        border-radius: 16px;
      }

      .area-modal h2 {
        font-size: 20px;
      }
    }

    /* ── CONTACT SECTION ── */
    .contact-grid {
      grid-template-columns: 1fr 1fr;
    }

    @media (max-width: 991px) {
      .contact-grid {
        grid-template-columns: 1fr;
      }
    }

