    :root {
      --green: #1a7a3c;
      --green-mid: #22a050;
      --green-light: #2ecc6e;
      --green-pale: #e8f7ee;
      --orange: #f4720b;
      --orange-light: #ff8c2a;
      --orange-pale: #fff4eb;
      --white: #ffffff;
      --off-white: #f9fafb;
      --text: #1a1a2e;
      --muted: #6b7280;
      --border: #e5e7eb;
    }

    * { margin: 0; padding: 0; box-sizing: border-box; }
    html { scroll-behavior: smooth; }
    body {
      font-family: 'Plus Jakarta Sans', sans-serif;
      background: var(--white);
      color: var(--text);
      overflow-x: hidden;
    }

    /* ===================== TOP BAR ===================== */
    .topbar {
      background: var(--green);
      padding: 0.55rem 3rem;
      display: flex;
      justify-content: space-between;
      align-items: center;
      flex-wrap: wrap;
      gap: 0.5rem;
      position: sticky;
      top: 0;
      z-index: 101;
    }
    .topbar-left {
      display: flex;
      align-items: center;
      gap: 1.5rem;
    }
    .topbar a {
      color: rgba(255,255,255,0.9);
      text-decoration: none;
      font-size: 0.82rem;
      font-weight: 500;
      display: flex;
      align-items: center;
      gap: 0.4rem;
      transition: color 0.2s;
    }
    .topbar a:hover { color: white; }
    .topbar a i { font-size: 0.75rem; }
    .topbar-right {
      display: flex;
      align-items: center;
      gap: 1rem;
    }
    .topbar-phone {
      background: var(--orange);
      color: white !important;
      padding: 0.35rem 1rem;
      border-radius: 100px;
      font-weight: 700 !important;
      font-size: 0.85rem !important;
    }
    .topbar-phone:hover { background: var(--orange-light) !important; }

    /* ===================== NAV ===================== */
    nav {
      position: sticky;
      top: 43px;
      z-index: 100;
      background: white;
      border-bottom: 2px solid var(--border);
      padding: 0 3rem;
      display: flex;
      align-items: center;
      justify-content: space-between;
      height: 68px;
      box-shadow: 0 2px 12px rgba(0,0,0,0.06);
    }
    .nav-logo {
      display: flex;
      align-items: center;
      gap: 0.75rem;
      text-decoration: none;
    }
    .nav-logo-icon {
      width: 42px; height: 42px;
      background: white;
      border-radius: 10px;
      display: flex; align-items: center; justify-content: center;
      color: white;
      font-size: 1.1rem;
    }
    .nav-logo-text {
      display: flex;
      flex-direction: column;
      line-height: 1.1;
    }
    .nav-logo-text strong {
      font-family: 'Nunito', sans-serif;
      font-size: 1rem;
      font-weight: 900;
      color: var(--text);
      letter-spacing: -0.3px;
    }
    .nav-logo-text span {
      font-size: 0.68rem;
      color: var(--muted);
      font-weight: 500;
      text-transform: uppercase;
      letter-spacing: 0.5px;
    }
    .nav-links {
      display: flex;
      align-items: center;
      gap: 0.25rem;
      list-style: none;
    }
    .nav-links a {
      color: var(--text);
      text-decoration: none;
      font-size: 0.88rem;
      font-weight: 600;
      padding: 0.5rem 0.8rem;
      border-radius: 6px;
      transition: all 0.2s;
      display: flex;
      align-items: center;
      gap: 0.35rem;
    }
    .nav-links a:hover { background: var(--green-pale); color: var(--green); }
    .nav-cta-btn {
      background: var(--orange) !important;
      color: white !important;
      padding: 0.6rem 1.4rem !important;
      border-radius: 8px !important;
      font-weight: 700 !important;
      margin-left: 0.5rem;
    }
    .nav-cta-btn:hover { background: var(--orange-light) !important; transform: translateY(-1px); box-shadow: 0 4px 12px rgba(244,114,11,0.3); }

    /* ===== SERVICES TABS ===== */
    .svc-tabs {
      display: flex;
      gap: 0.75rem;
      flex-wrap: wrap;
      margin-bottom: 1.75rem;
    }
    .svc-tab {
      display: flex;
      align-items: center;
      gap: 0.6rem;
      padding: 0.75rem 1.4rem;
      border-radius: 10px;
      border: 1.5px solid var(--border);
      background: white;
      font-family: 'Plus Jakarta Sans', sans-serif;
      font-size: 0.9rem;
      font-weight: 600;
      color: var(--text);
      cursor: pointer;
      transition: all 0.2s;
    }
    .svc-tab i { color: var(--muted); transition: color 0.2s; }
    .svc-tab:hover { border-color: var(--green); color: var(--green); }
    .svc-tab:hover i { color: var(--green); }
    .svc-tab.active {
      background: var(--text);
      border-color: var(--text);
      color: white;
    }
    .svc-tab.active i { color: white; }

    /* PANELS */
    .svc-panel { display: none; }
    .svc-panel.active { display: block; animation: fadeIn 0.25s ease; }

    /* PHOTO GRID */
    .svc-photo-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 1.25rem;
    }
    .svc-photo-card {
      background: white;
      border-radius: 14px;
      overflow: hidden;
      border: 1.5px solid var(--border);
      text-decoration: none;
      color: var(--text);
      transition: all 0.25s;
      box-shadow: 0 2px 10px rgba(0,0,0,0.04);
    }
    .svc-photo-card:hover {
      transform: translateY(-4px);
      box-shadow: 0 12px 32px rgba(0,0,0,0.1);
      border-color: rgba(0,0,0,0.15);
    }
    .svc-photo-img {
      height: 220px;
      position: relative;
      overflow: hidden;
      background: linear-gradient(135deg, var(--green), #0e4423);
    }
    .svc-photo-img img {
      width: 100%; height: 100%;
      object-fit: cover; display: block;
      transition: transform 0.4s ease;
    }
    .svc-photo-card:hover .svc-photo-img img { transform: scale(1.04); }
    .svc-photo-fallback {
      position: absolute; inset: 0;
      display: flex; align-items: center; justify-content: center;
      color: rgba(255,255,255,0.2); font-size: 3rem; z-index: 0;
    }
    .svc-photo-img img { position: relative; z-index: 1; }
    .svc-photo-body {
      padding: 1.1rem 1.4rem;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 1rem;
    }
    .svc-photo-body h4 {
      font-size: 0.95rem;
      font-weight: 700;
      color: var(--text);
      margin-bottom: 0.2rem;
    }
    .svc-photo-body p {
      font-size: 0.8rem;
      color: var(--muted);
      margin: 0;
    }
    .svc-arrow {
      width: 34px; height: 34px;
      border-radius: 50%;
      border: 1.5px solid var(--border);
      display: flex; align-items: center; justify-content: center;
      color: var(--muted); font-size: 0.75rem;
      flex-shrink: 0; transition: all 0.2s;
    }
    .svc-photo-card:hover .svc-arrow {
      background: var(--text);
      border-color: var(--text);
      color: white;
    }

    /* Dropdown */
    .nav-dropdown { position: relative; }
    .dropdown-menu {
      position: absolute;
      top: calc(100% + 8px);
      left: 50%;
      transform: translateX(-50%) translateY(-6px);
      background: white;
      border-radius: 12px;
      box-shadow: 0 12px 40px rgba(0,0,0,0.12);
      padding: 0.5rem;
      min-width: 260px;
      list-style: none;
      opacity: 0;
      visibility: hidden;
      transition: all 0.22s;
      z-index: 200;
      border: 1px solid var(--border);
    }
    .nav-dropdown:hover .dropdown-menu {
      opacity: 1;
      visibility: visible;
      transform: translateX(-50%) translateY(0);
    }
    .dropdown-menu::before {
      content: '';
      position: absolute;
      top: -6px; left: 50%;
      width: 12px; height: 12px;
      background: white;
      border-left: 1px solid var(--border);
      border-top: 1px solid var(--border);
      transform: translateX(-50%) rotate(45deg);
    }
    .dropdown-menu li a {
      display: flex;
      align-items: center;
      gap: 0.75rem;
      padding: 0.65rem 1rem;
      border-radius: 8px;
      font-size: 0.87rem;
      color: var(--text) !important;
      font-weight: 500;
      transition: all 0.18s;
      background: none !important;
    }
    .dropdown-menu li a:hover { background: var(--green-pale) !important; color: var(--green) !important; }
    .dropdown-menu li a i { color: var(--green); width: 18px; text-align: center; }

    /* ===================== SEAI BADGE ===================== */
    .seai-badge-float {
      position: absolute;
      top: 20px; left: 20px;
      z-index: 10;
      background: white;
      border-radius: 12px;
      padding: 0.75rem 1.1rem;
      box-shadow: 0 4px 20px rgba(0,0,0,0.15);
      display: flex;
      align-items: center;
      gap: 0.75rem;
      border: 2px solid var(--green-pale);
    }
    .seai-badge-float .seai-icon {
      width: 44px; height: 44px;
      background: var(--green);
      border-radius: 8px;
      display: flex; align-items: center; justify-content: center;
      color: white;
      font-size: 1.1rem;
    }
    .seai-badge-float .seai-text strong {
      display: block;
      font-size: 0.72rem;
      text-transform: uppercase;
      letter-spacing: 1px;
      color: var(--green);
      font-weight: 800;
    }
    .seai-badge-float .seai-text span {
      font-size: 0.78rem;
      color: var(--muted);
      font-weight: 500;
    }

    /* ===================== HERO ===================== */
    .hero {
      position: relative;
      min-height: 88vh;
      display: flex;
      align-items: center;
      overflow: hidden;
      background: var(--off-white);
    }
    .hero-slides {
      position: absolute;
      inset: 0;
    }
    .hero-slide {
      position: absolute;
      inset: 0;
      background-size: cover;
      background-position: center;
      opacity: 0;
      transition: opacity 1.2s ease;
    }
    .hero-slide.active { opacity: 1; }
    .hero-overlay {
      position: absolute;
      inset: 0;
      background: linear-gradient(
        105deg,
        rgba(255,255,255,0.85) 0%,
        rgba(255,255,255,0.75) 35%,
        rgba(255,255,255,0.45) 65%,
        rgba(255,255,255,0.1) 100%
      );
      z-index: 1;
    }
    .hero-content {
      position: relative;
      z-index: 2;
      padding: 4rem 3rem;
      max-width: 640px;
    }
    .hero-eyebrow {
      display: inline-flex;
      align-items: center;
      gap: 0.5rem;
      background: var(--green-pale);
      border: 1.5px solid var(--green-light);
      color: var(--green);
      padding: 0.4rem 1rem;
      border-radius: 100px;
      font-size: 0.78rem;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: 1px;
      margin-bottom: 1.5rem;
      animation: fadeUp 0.5s ease both;
    }
    .hero-eyebrow i { font-size: 0.75rem; }
    .hero h1 {
      font-family: 'Nunito', sans-serif;
      font-size: clamp(2.6rem, 5vw, 4rem);
      font-weight: 900;
      color: var(--text);
      line-height: 1.1;
      margin-bottom: 1rem;
      animation: fadeUp 0.5s 0.1s ease both;
    }
    .hero h1 .highlight-orange { color: var(--orange); }
    .hero h1 .highlight-green { color: var(--green); }
    .hero-grant-line {
      font-size: 1.05rem;
      font-weight: 600;
      color: var(--text);
      margin-bottom: 1.5rem;
      animation: fadeUp 0.5s 0.15s ease both;
    }
    .hero-grant-line strong { color: var(--green); }
    .hero-checks {
      display: flex;
      flex-direction: column;
      gap: 0.6rem;
      margin-bottom: 2rem;
      animation: fadeUp 0.5s 0.2s ease both;
    }
    .hero-check {
      display: flex;
      align-items: center;
      gap: 0.6rem;
      font-size: 0.92rem;
      font-weight: 500;
      color: #3a3a3a;
    }
    .hero-check i { color: var(--green); font-size: 0.9rem; }
    .hero-btns {
      display: flex;
      gap: 1rem;
      flex-wrap: wrap;
      animation: fadeUp 0.5s 0.25s ease both;
    }
    .btn-primary {
      background: var(--orange);
      color: white;
      padding: 0.9rem 2rem;
      border-radius: 10px;
      text-decoration: none;
      font-weight: 700;
      font-size: 0.95rem;
      display: inline-flex;
      align-items: center;
      gap: 0.5rem;
      transition: all 0.22s;
      border: none;
      cursor: pointer;
      font-family: 'Plus Jakarta Sans', sans-serif;
    }
    .btn-primary:hover { background: var(--orange-light); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(244,114,11,0.35); }
    .btn-green {
      background: var(--green);
      color: white;
      padding: 0.9rem 2rem;
      border-radius: 10px;
      text-decoration: none;
      font-weight: 700;
      font-size: 0.95rem;
      display: inline-flex;
      align-items: center;
      gap: 0.5rem;
      transition: all 0.22s;
    }
    .btn-green:hover { background: var(--green-mid); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(26,122,60,0.3); }
    .btn-outline {
      background: transparent;
      color: var(--text);
      padding: 0.9rem 2rem;
      border-radius: 10px;
      text-decoration: none;
      font-weight: 600;
      font-size: 0.95rem;
      display: inline-flex;
      align-items: center;
      gap: 0.5rem;
      transition: all 0.22s;
      border: 2px solid var(--border);
    }
    .btn-outline:hover { border-color: var(--green); color: var(--green); background: var(--green-pale); }

    /* Google rating widget */
    .google-rating {
      position: absolute;
      bottom: 30px;
      right: 30px;
      z-index: 10;
      background: white;
      border-radius: 14px;
      padding: 1rem 1.4rem;
      box-shadow: 0 6px 30px rgba(0,0,0,0.15);
      display: flex;
      align-items: center;
      gap: 1rem;
      border: 1px solid var(--border);
    }
    .google-g {
      width: 44px; height: 44px;
      border-radius: 50%;
      background: white;
      border: 2px solid var(--border);
      display: flex; align-items: center; justify-content: center;
      font-size: 1.4rem;
      font-weight: 900;
      font-family: 'Nunito', sans-serif;
      background: linear-gradient(135deg, #4285F4, #34A853, #FBBC05, #EA4335);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
    }
    .google-rating-info strong {
      display: block;
      font-size: 1.3rem;
      font-weight: 900;
      font-family: 'Nunito', sans-serif;
      color: var(--text);
      line-height: 1;
    }
    .google-stars { color: #f4b400; font-size: 0.85rem; letter-spacing: 1px; }
    .google-rating-info span {
      font-size: 0.75rem;
      color: var(--muted);
      font-weight: 500;
    }

    /* Hero dots */
    .hero-dots {
      position: absolute;
      bottom: 30px;
      left: 3rem;
      z-index: 10;
      display: flex;
      gap: 0.5rem;
    }
    .hero-dot {
      width: 8px; height: 8px;
      border-radius: 50%;
      background: rgba(0,0,0,0.2);
      cursor: pointer;
      transition: all 0.3s;
      border: none;
    }
    .hero-dot.active { background: var(--orange); width: 24px; border-radius: 4px; }

    /* ===================== STATS BAR ===================== */
    .stats-bar {
      background: var(--green);
      padding: 1.4rem 3rem;
      display: flex;
      justify-content: center;
      gap: 4rem;
      flex-wrap: wrap;
    }
    .stat { text-align: center; color: white; }
    .stat-number {
      font-family: 'Nunito', sans-serif;
      font-size: 2rem;
      font-weight: 900;
      display: block;
      line-height: 1;
    }
    .stat-label {
      font-size: 0.75rem;
      text-transform: uppercase;
      letter-spacing: 1px;
      opacity: 0.85;
      font-weight: 500;
      margin-top: 0.2rem;
      display: block;
    }
    /* ===================== INTRO ===================== */
    .heat2-section {
      position: relative;
      font-family: 'DM Sans', sans-serif;
      background: #ffffff;
      color: #0f1f0f;
      overflow: hidden;
      border-radius: 16px;
      border: 1px solid #e8f0e8;
    }

    .heat2-inner {
      display: grid;
      grid-template-columns: 1fr 1fr;
      min-height: 460px;
    }

    .heat2-content {
      padding: 56px 48px;
      display: flex;
      flex-direction: column;
      justify-content: center;
      gap: 20px;
      background: #ffffff;
    }

    .heat2-eyebrow {
      font-size: 11px;
      font-weight: 700;
      letter-spacing: 3px;
      text-transform: uppercase;
      color: #ff6400;
    }

    .heat2-divider {
      width: 48px;
      height: 3px;
      background: linear-gradient(to right, #1e7a1e, #ff6400);
      border-radius: 2px;
    }

    .heat2-headline {
      font-family: 'Playfair Display', serif;
      font-size: 3rem;
      font-weight: 900;
      line-height: 1.15;
      margin: 0;
      color: #0f1f0f;
    }

    .heat2-headline em {
      font-style: italic;
      color: #1e7a1e;
    }

    .heat2-body {
      font-size: 1.1rem;
      line-height: 1.7;
      color: #4a5a4a;
      max-width: 380px;
      margin: 0;
    }

    .heat2-stats {
      display: flex;
      gap: 24px;
      flex-wrap: wrap;
    }

    .heat2-stat {
      display: flex;
      flex-direction: column;
    }

    .heat2-stat-num {
      font-family: 'Playfair Display', serif;
      font-size: 2.4rem;
      font-weight: 900;
      color: #ff6400;
      line-height: 1;
    }

    .heat2-stat-label {
      font-size: 1rem;
      color: #7a8a7a;
      margin-top: 3px;
    }

    .heat2-stat-divider {
      width: 1px;
      background: #dde8dd;
      align-self: stretch;
    }

    .heat2-cta {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      background: #1e7a1e;
      color: white;
      font-weight: 700;
      font-size: 0.9rem;
      padding: 14px 28px;
      border-radius: 8px;
      text-decoration: none;
      width: fit-content;
      border: none;
      cursor: pointer;
      transition: background 0.2s;
    }

    .heat2-cta:hover { background: #155a15; }

    .heat2-image-side {
      position: relative;
      overflow: hidden;
    }

    .heat2-image-side img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
    }

    .heat2-image-overlay {
      position: absolute;
      inset: 0;
      background: linear-gradient(to right, rgba(255,255,255,0.15) 0%, transparent 40%),
                  linear-gradient(to bottom, transparent 70%, rgba(0,0,0,0.25) 100%);
    }

    .heat2-badge {
      position: absolute;
      bottom: 24px;
      left: 24px;
      background: #ff6400;
      color: white;
      font-size: 11px;
      font-weight: 700;
      letter-spacing: 1.5px;
      text-transform: uppercase;
      padding: 8px 16px;
      border-radius: 20px;
    }

    @media (max-width: 700px) {
      .heat2-inner { grid-template-columns: 1fr; }
      .heat2-image-side { height: 240px; order: -1; }
      .heat2-content { padding: 32px 24px; }
      .heat2-headline { font-size: 1.8rem; }
    }

    /* ===================== SERVICES ===================== */
    .services-section {
      padding: 5rem 3rem;
      background: var(--off-white);
    }
    .services-inner { max-width: 1200px; margin: 0 auto; }
    .section-header { text-align: center; margin-bottom: 3rem; }
    .section-header h2 {
      font-family: 'Nunito', sans-serif;
      font-size: clamp(2rem, 3.5vw, 2.8rem);
      font-weight: 900;
      color: var(--text);
      margin-bottom: 0.5rem;
    }
    .section-sub {
      color: var(--muted);
      font-size: 0.95rem;
      max-width: 500px;
      margin: 0 auto;
      line-height: 1.7;
    }
    .services-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
      gap: 1rem;
    }
    .service-card {
      background: white;
      border-radius: 16px;
      padding: 2rem 1.5rem;
      border: 1.5px solid var(--border);
      text-align: center;
      text-decoration: none;
      color: var(--text);
      transition: all 0.25s;
      display: block;
    }
    .service-card:hover {
      border-color: var(--orange);
      transform: translateY(-4px);
      box-shadow: 0 12px 32px rgba(244,114,11,0.12);
    }
    .service-icon {
      width: 60px; height: 60px;
      background: var(--orange-pale);
      border-radius: 14px;
      display: flex; align-items: center; justify-content: center;
      margin: 0 auto 1rem;
      font-size: 1.4rem;
      color: var(--orange);
      transition: all 0.25s;
    }
    .service-card:hover .service-icon {
      background: var(--orange);
      color: white;
    }
    .service-card h3 { font-size: 0.95rem; font-weight: 700; color: var(--text); margin-bottom: 0.4rem; }
    .service-card p { font-size: 0.8rem; color: var(--muted); line-height: 1.6; }

    /* ===================== SEAI GRANTS ===================== */
    .seai-section {
      padding: 5rem 3rem;
      background: linear-gradient(135deg, var(--green) 0%, #145e2f 100%);
      color: white;
      position: relative;
      overflow: hidden;
    }
    .seai-section::before {
      content: '';
      position: absolute;
      top: -60px; right: -60px;
      width: 300px; height: 300px;
      border-radius: 50%;
      background: rgba(255,255,255,0.05);
    }
    .seai-section::after {
      content: '';
      position: absolute;
      bottom: -80px; left: -40px;
      width: 400px; height: 400px;
      border-radius: 50%;
      background: rgba(255,255,255,0.04);
    }
    .seai-inner {
      max-width: 1200px;
      margin: 0 auto;
      display: flex;
      gap: 5rem;
      align-items: flex-start;
      flex-wrap: wrap;
      position: relative;
      z-index: 2;
    }
    .seai-text { flex: 1; min-width: 280px; }
    .seai-text .section-tag { background: rgba(255,255,255,0.15); color: white; border-color: rgba(255,255,255,0.2); }
    .seai-text h2 {
      font-family: 'Nunito', sans-serif;
      font-size: clamp(2rem, 3vw, 2.8rem);
      font-weight: 900;
      color: white;
      margin-bottom: 1rem;
      line-height: 1.1;
    }
    .seai-text p { color: rgba(255,255,255,0.75); font-size: 0.95rem; line-height: 1.75; margin-bottom: 1.5rem; }
    .btn-white {
      background: white;
      color: var(--green);
      padding: 0.9rem 2rem;
      border-radius: 10px;
      text-decoration: none;
      font-weight: 700;
      font-size: 0.95rem;
      display: inline-flex;
      align-items: center;
      gap: 0.5rem;
      transition: all 0.22s;
    }
    .btn-white:hover { background: var(--off-white); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(0,0,0,0.2); }
    .seai-calc { flex: 1; min-width: 280px; }
    .seai-calc-card {
      background: rgba(255,255,255,0.1);
      backdrop-filter: blur(10px);
      border: 1px solid rgba(255,255,255,0.2);
      border-radius: 16px;
      padding: 2rem;
    }
    .seai-calc-card label {
      display: block;
      font-size: 0.8rem;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: 0.5px;
      color: rgba(255,255,255,0.7);
      margin-bottom: 0.4rem;
    }
    .seai-calc-card select {
      width: 100%;
      background: rgba(255,255,255,0.12);
      border: 1.5px solid rgba(255,255,255,0.25);
      color: white;
      padding: 0.75rem 1rem;
      border-radius: 8px;
      font-family: 'Plus Jakarta Sans', sans-serif;
      font-size: 0.9rem;
      margin-bottom: 1.5rem;
      cursor: pointer;
      appearance: none;
      background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23ffffff' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
      background-repeat: no-repeat;
      background-position: right 1rem center;
      background-size: 10px;
      background-color: rgba(255,255,255,0.12);
    }
    .seai-calc-card select:focus { outline: none; border-color: rgba(255,255,255,0.5); }
    .seai-calc-card select option { background: var(--green); }
    .seai-grants-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 0.75rem;
      margin-bottom: 1.25rem;
    }
    .seai-grant-item {
      background: rgba(255,255,255,0.08);
      border: 1px solid rgba(255,255,255,0.15);
      border-radius: 10px;
      padding: 1rem;
    }
    .seai-grant-amount {
      font-family: 'Nunito', sans-serif;
      font-size: 1.6rem;
      font-weight: 900;
      color: #ffff;
    }
    .seai-grant-item p { font-size: 0.78rem; color: rgba(255,255,255,0.65); margin-top: 0.2rem; }
    .seai-grant-item small { font-size: 0.68rem; color: rgba(255,255,255,0.35); }
    .seai-total-row {
      background: rgba(255,255,255,0.12);
      border: 1.5px solid rgba(255,255,255,0.25);
      border-radius: 10px;
      padding: 1rem 1.25rem;
      display: flex;
      justify-content: space-between;
      align-items: center;
    }
    .seai-total-label { font-size: 0.82rem; color: rgba(255, 255, 255, 0.6); }
    .seai-total-amount {
      font-family: 'Nunito', sans-serif;
      font-size: 2rem;
      font-weight: 900;
      color: #ffff;
    }

    /* ===================== WHY US ===================== */
    .why-section {
      padding: 5rem 3rem;
      background: white;
    }
    .why-inner {
      max-width: 1200px;
      margin: 0 auto;
      display: flex;
      gap: 5rem;
      align-items: center;
      flex-wrap: wrap;
    }
    .why-text { flex: 1; min-width: 280px; }
    .why-text h2 {
      font-family: 'Nunito', sans-serif;
      font-size: clamp(2rem, 3vw, 2.8rem);
      font-weight: 900;
      color: var(--text);
      margin-bottom: 0.75rem;
    }
    .why-text p { color: var(--muted); font-size: 0.95rem; line-height: 1.75; margin-bottom: 2rem; }
    .why-items { flex: 1; min-width: 280px; display: flex; flex-direction: column; gap: 1.25rem; }
    .why-item {
      display: flex;
      gap: 1rem;
      align-items: flex-start;
      padding: 1.25rem;
      border-radius: 12px;
      border: 1.5px solid var(--border);
      transition: all 0.22s;
    }
    .why-item:hover { border-color: var(--green-light); background: var(--green-pale); }
    .why-icon {
      width: 44px; height: 44px;
      background: var(--green);
      border-radius: 10px;
      display: flex; align-items: center; justify-content: center;
      color: white;
      font-size: 1rem;
      flex-shrink: 0;
    }
    .why-item h4 { font-size: 0.95rem; font-weight: 700; color: var(--text); margin-bottom: 0.25rem; }
    .why-item p { font-size: 0.84rem; color: var(--muted); line-height: 1.6; margin: 0; }

    /* ===================== REVIEWS ===================== */
    .reviews-section {
      padding: 5rem 3rem;
      background: var(--off-white);
    }
    .reviews-inner { max-width: 1200px; margin: 0 auto; }
    .carousel-wrapper {
      display: flex;
      align-items: center;
      gap: 1rem;
      margin-top: 2.5rem;
    }
    .carousel-track-container { overflow: hidden; flex: 1; }
    .carousel-track {
      display: flex;
      gap: 1.25rem;
      transition: transform 0.45s cubic-bezier(0.25,0.1,0.25,1);
    }
    .review-card {
      width: 380px;       
      min-width: 380px; 
      background: white;
      text-align: center;
      justify-content: space-between;
      min-width: calc(33.333% - 1rem);
      border: 1.5px solid var(--border);
      border-radius: 16px;
      padding: 1.75rem;
      flex-shrink: 0;
      display: flex;
      flex-direction: column;
      justify-content: space-between;
      transition: all 0.25s;
      position: relative;
      overflow: hidden;
      word-wrap: break-word;
      white-space: normal; 
    }
    .review-card:hover {
      border-color: var(--orange);
      transform: translateY(-3px);
      box-shadow: 0 8px 24px rgba(244,114,11,0.1);
    }
    .review-stars { color: #f4b400; font-size: 0.9rem; letter-spacing: 2px; margin-bottom: 1rem; }
    .review-body {
      font-size: 0.9rem;
      color: #3a3a3a;
      line-height: 1.75;
      font-style: italic;
      margin-bottom: 1.25rem;
      flex: 1;
    }
    .reviewer {
      display: flex;
      align-items: center;
      gap: 0.75rem;
      border-top: 1px solid var(--border);
      padding-top: 1rem;
    }
    .avatar {
      width: 38px; height: 38px;
      background: linear-gradient(135deg, var(--green), var(--green-mid));
      color: white;
      border-radius: 50%;
      display: flex; align-items: center; justify-content: center;
      font-size: 0.75rem; font-weight: 700; flex-shrink: 0;
    }
    .reviewer strong { display: block; font-size: 0.88rem; font-weight: 700; color: var(--text); }
    .reviewer span { font-size: 0.75rem; color: var(--muted); }
    .carousel-btn {
      width: 44px; height: 44px;
      border-radius: 50%;
      background: white;
      border: 1.5px solid var(--border);
      color: var(--green);
      font-size: 1.4rem;
      display: flex; align-items: center; justify-content: center;
      cursor: pointer; flex-shrink: 0;
      transition: all 0.2s;
    }
    .carousel-btn:hover { background: var(--green); color: white; border-color: var(--green); }

    /* ===================== ENQUIRY FORM ===================== */
    .enquiry-section {
      padding: 5rem 3rem;
      background: linear-gradient(135deg, var(--orange-pale) 0%, white 60%);
    }
    .enquiry-inner { max-width: 880px; margin: 0 auto; }
    .enquiry-header { text-align: center; margin-bottom: 2.5rem; }
    .enquiry-header h2 {
      font-family: 'Nunito', sans-serif;
      font-size: clamp(2rem, 3vw, 2.8rem);
      font-weight: 900;
      color: var(--text);
      margin-bottom: 0.5rem;
    }
    .commercial-sub {
      display: none !important;
      overflow: hidden;
    }
    .commercial-sub.visible {
      display: block !important;
      animation: slideDown 0.3s ease;
    }
    @keyframes slideDown {
      from { opacity: 0; transform: translateY(-8px); }
      to   { opacity: 1; transform: translateY(0); }
    }
    .option-grid--small .option-btn {
      font-size: 0.85rem;
      padding: 0.6rem 0.5rem;
    }
    .survey-options {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 1rem;
      margin: 1.2rem 0;
    }

    .survey-card {
      cursor: pointer;
      display: block;
    }

    .survey-card input[type="radio"] {
      display: none;
    }

    .survey-card__inner {
      border: 2px solid #e0e0e0;
      border-radius: 12px;
      padding: 1.2rem;
      transition: border-color 0.2s, background 0.2s;
      height: 100%;
      box-sizing: border-box;
    }

    .survey-card input[type="radio"]:checked + .survey-card__inner {
      border-color: var(--orange, #e87722);
      background: #fff8f3;
    }

    .survey-card__header {
      display: flex;
      justify-content: space-between;
      align-items: center;
      margin-bottom: 0.8rem;
    }

    .survey-card__icon {
      font-size: 1.6rem;
      color: var(--orange, #e87722);
    }

    .survey-card__badge {
      font-size: 0.78rem;
      font-weight: 700;
      padding: 0.25rem 0.65rem;
      border-radius: 20px;
    }

    .survey-card__badge.free {
      background: #e6f4ea;
      color: #2e7d32;
    }

    .survey-card__badge.paid {
      background: #fff3e0;
      color: #e65100;
    }

    .survey-card__title {
      font-size: 1.05rem;
      font-weight: 700;
      margin-bottom: 0.15rem;
    }

    .survey-card__sub {
      font-size: 0.82rem;
      color: #888;
      margin-bottom: 0.6rem;
    }

    .survey-card__desc {
      font-size: 0.88rem;
      color: #555;
      line-height: 1.5;
      margin: 0 0 0.8rem;
    }

    .survey-card__note {
      font-size: 0.8rem;
      color: #e65100;
      background: #fff3e0;
      border-radius: 8px;
      padding: 0.5rem 0.75rem;
      display: flex;
      align-items: flex-start;
      gap: 0.4rem;
      line-height: 1.4;
    }

    @media (max-width: 600px) {
      .survey-options {
        grid-template-columns: 1fr;
      }
    }
    .form-steps {
      display: flex;
      justify-content: center;
      gap: 0;
      margin-bottom: 2.5rem;
      position: relative;
    }
    .form-steps::before {
      content: '';
      position: absolute;
      top: 19px; left: 50%;
      transform: translateX(-50%);
      width: 65%;
      height: 2px;
      background: var(--border);
      z-index: 0;
    }
    .step-indicator {
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 0.4rem;
      flex: 1;
      max-width: 110px;
      position: relative;
      z-index: 1;
    }
    .step-dot {
      width: 38px; height: 38px;
      border-radius: 50%;
      background: white;
      border: 2px solid var(--border);
      display: flex; align-items: center; justify-content: center;
      font-weight: 700; font-size: 0.85rem;
      color: var(--muted);
      transition: all 0.3s;
    }
    .step-dot.active { background: var(--orange); color: white; border-color: var(--orange); }
    .step-dot.done { background: var(--green); color: white; border-color: var(--green); }
    .step-label { font-size: 0.7rem; font-weight: 600; color: var(--muted); text-transform: uppercase; letter-spacing: 0.5px; }
    .step-label.active { color: var(--orange); }
    .form-card {
      background: white;
      border-radius: 16px;
      padding: 2.5rem;
      border: 1.5px solid var(--border);
      box-shadow: 0 4px 30px rgba(0,0,0,0.07);
    }
    .form-step { display: none; }
    .form-step.active { display: block; animation: fadeIn 0.3s ease; }
    .step-title {
      font-family: 'Nunito', sans-serif;
      font-size: 1.4rem; font-weight: 900;
      color: var(--text); margin-bottom: 0.3rem;
    }
    .step-desc { font-size: 0.86rem; color: var(--muted); margin-bottom: 1.75rem; }
    .option-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(130px, 1fr));
      gap: 0.85rem;
      margin-bottom: 2rem;
    }
    .option-btn {
      border: 2px solid var(--border);
      background: white;
      border-radius: 12px;
      padding: 1.2rem 1rem;
      text-align: center;
      cursor: pointer;
      transition: all 0.2s;
      font-family: 'Plus Jakarta Sans', sans-serif;
    }
    .option-btn:hover { border-color: var(--orange); background: var(--orange-pale); }
    .option-btn.selected { border-color: var(--orange); background: var(--orange-pale); }
    .option-btn i { display: block; font-size: 1.4rem; color: var(--orange); margin-bottom: 0.5rem; }
    .option-btn span { font-size: 0.82rem; font-weight: 700; color: var(--text); display: block; }
    .checkbox-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(190px, 1fr));
      gap: 0.65rem;
      margin-bottom: 2rem;
    }
    .checkbox-item {
      display: flex;
      align-items: center;
      gap: 0.65rem;
      padding: 0.8rem 1rem;
      border: 2px solid var(--border);
      border-radius: 10px;
      cursor: pointer;
      font-size: 0.86rem;
      font-weight: 600;
      color: var(--text);
      transition: all 0.2s;
    }
    .checkbox-item input { display: none; }
    .checkbox-item i { color: var(--green); font-size: 0.95rem; }
    .checkbox-item:has(input:checked) { border-color: var(--green); background: var(--green-pale); }
    .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; margin-bottom: 1rem; }
    .form-group { margin-bottom: 1rem; }
    .form-group label { display: block; font-size: 0.78rem; font-weight: 700; color: var(--text); margin-bottom: 0.35rem; text-transform: uppercase; letter-spacing: 0.5px; }
    .form-group input, .form-group select, .form-group textarea {
      width: 100%;
      padding: 0.8rem 1rem;
      border: 2px solid var(--border);
      border-radius: 8px;
      font-family: 'Plus Jakarta Sans', sans-serif;
      font-size: 0.9rem;
      color: var(--text);
      transition: border-color 0.2s;
      background: white;
    }
    .form-group input:focus, .form-group select:focus, .form-group textarea:focus {
      outline: none;
      border-color: var(--orange);
    }
    .form-group textarea { resize: vertical; min-height: 90px; }
    .form-nav {
      display: flex;
      justify-content: space-between;
      align-items: center;
      margin-top: 2rem;
      padding-top: 1.5rem;
      border-top: 1px solid var(--border);
    }
    .btn-back {
      background: none;
      border: 2px solid var(--border);
      color: var(--muted);
      padding: 0.75rem 1.75rem;
      border-radius: 8px;
      cursor: pointer;
      font-family: 'Plus Jakarta Sans', sans-serif;
      font-size: 0.9rem; font-weight: 600;
      transition: all 0.2s;
    }
    .btn-back:hover { border-color: var(--text); color: var(--text); }
    .btn-next {
      background: var(--orange);
      border: none;
      color: white;
      padding: 0.85rem 2rem;
      border-radius: 8px;
      cursor: pointer;
      font-family: 'Plus Jakarta Sans', sans-serif;
      font-size: 0.9rem; font-weight: 700;
      transition: all 0.2s;
      display: flex; align-items: center; gap: 0.5rem;
    }
    .btn-next:hover { background: var(--orange-light); transform: translateY(-1px); }
    .success-state { text-align: center; padding: 3rem; display: none; }
    .success-icon {
      width: 80px; height: 80px;
      background: var(--green-pale);
      border-radius: 50%;
      display: flex; align-items: center; justify-content: center;
      margin: 0 auto 1.5rem;
      font-size: 2rem; color: var(--green);
    }
    .success-state h3 { font-family: 'Nunito', sans-serif; font-size: 1.8rem; font-weight: 900; color: var(--text); margin-bottom: 0.75rem; }
    .success-state p { color: var(--muted); line-height: 1.7; max-width: 400px; margin: 0 auto; }

    /* ===================== FOOTER ===================== */
    footer {
      background: rgb(250, 166, 69);
      color: white;
      padding: 4rem 3rem 2rem;
    }
    .footer-grid {
      display: grid;
      grid-template-columns: 2fr 1fr 1fr;
      gap: 4rem;
      margin-bottom: 3rem;
      max-width: 1200px;
      margin-left: auto;
      margin-right: auto;
    }
    .footer-logo {
      display: flex;
      align-items: center;
      gap: 0.75rem;
      text-decoration: none;
      margin-bottom: 0.75rem;
    }
    .footer-logo-icon {
      width: 36px; height: 36px;
      background: rgb(250, 166, 69);
      border-radius: 8px;
      display: flex; align-items: center; justify-content: center;
      color: white; font-size: 1rem;
    }
    .footer-logo strong {
      font-family: 'Nunito', sans-serif;
      font-size: 0.95rem;
      font-weight: 900;
      color: rgb(46, 151, 57);
    }
    .footer-brand p { color: rgb(255, 255, 255); font-size: 0.85rem; line-height: 1.7; max-width: 270px; }
    .footer-col h4 { font-size: 0.75rem; text-transform: uppercase; letter-spacing: 1.5px; color: rgb(46, 151, 57); margin-bottom: 1rem; font-weight: 700; }
    .footer-col ul { list-style: none; }
    .footer-col ul li { margin-bottom: 0.55rem; }
    .footer-col ul li a { color: rgb(255, 255, 255); text-decoration: none; font-size: 0.86rem; transition: color 0.2s; display: flex; align-items: center; gap: 0.4rem; }
    .footer-col ul li a:hover { color: var(--orange); }
    .footer-bottom {
      border-top: 1px solid rgba(255,255,255,0.08);
      padding-top: 1.75rem;
      display: flex;
      justify-content: space-between;
      align-items: center;
      flex-wrap: wrap;
      gap: 1rem;
      max-width: 1200px;
      margin: 0 auto;
    }
    .footer-bottom p { color: rgb(255, 255, 255); font-size: 0.8rem; }
    .footer-socials { display: flex; gap: 0.75rem; }
    .footer-socials a {
      width: 34px; height: 34px;
      background: rgb(255, 106, 0);
      border-radius: 8px;
      display: flex; align-items: center; justify-content: center;
      color: rgb(255, 255, 255);
      text-decoration: none;
      font-size: 0.85rem;
      transition: all 0.2s;
    }
    .footer-socials a:hover { background: var(--orange); color: white; }

    /* ===================== MODAL ===================== */
    .modal-backdrop {
      position: fixed;
      inset: 0;
      background: rgba(19, 15, 15, 0.694);
      backdrop-filter: blur(8px);
      z-index: 1000;
      display: flex;
      align-items: center;
      justify-content: center;
      padding: 1rem;
      opacity: 0;
      visibility: hidden;
      transition: opacity 0.4s ease, visibility 0.4s ease;
    }
    .modal-backdrop.open { opacity: 1; visibility: visible; }

    /* Wide split modal */
    .modal {
      background: white;
      border-radius: 20px;
      width: 100%;
      max-width: 900px;
      max-height: 95vh;
      display: flex;
      overflow: hidden;
      box-shadow: 0 32px 100px rgba(0,0,0,0.35);
      transform: translateY(28px) scale(0.97);
      transition: transform 0.45s cubic-bezier(0.34, 1.4, 0.64, 1);
      position: relative;
    }
    .modal-backdrop.open .modal { transform: translateY(0) scale(1); }

    /* LEFT PANEL */
    .modal-left {
      flex: 0 0 42%;
      position: relative;
      overflow: hidden;
      display: flex;
      flex-direction: column;
      justify-content: flex-end;
      min-height: 520px;
    }
    .modal-left-bg {
      position: absolute;
      inset: 0;
      background: linear-gradient(160deg, #0e4423 0%, #1a7a3c 45%, #2ecc6e 100%);
    }
    .modal-logo-img {
      position: absolute;
      bottom: 500px; /* sits above the text content */
      left: 50%;
      transform: translateX(-50%);
      width: 250px; /* adjust size */
      height: 330px;
      z-index: 1;
      pointer-events: none;
    }
    /* Decorative circles */
    .modal-left-bg::before {
      content: '';
      position: absolute;
      top: -60px; right: -60px;
      width: 220px; height: 220px;
      border-radius: 50%;
      background: rgba(255,255,255,0.06);
    }
    .modal-left-bg::after {
      content: '';
      position: absolute;
      inset: 0;
      background: linear-gradient(
        160deg,
        rgba(14, 68, 35, 0.92) 0%,
        rgba(26, 122, 60, 0.80) 50%,
        rgba(46, 204, 110, 0.50) 100%
      );
    }
    
    .modal-left-content {
      position: relative;
      z-index: 2;
      padding: 2.5rem;
    }
    .modal-left-eyebrow {
      font-size: 0.72rem;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: 1.5px;
      color: #7cffaa;
      margin-bottom: 0.75rem;
      display: flex;
      align-items: center;
      gap: 0.4rem;
    }
    .modal-left h2 {
      font-family: 'Nunito', sans-serif;
      font-size: 1.75rem;
      font-weight: 900;
      color: white;
      line-height: 1.2;
      margin-bottom: 1.5rem;
    }
    .modal-perks {
      display: flex;
      flex-direction: column;
      gap: 0.7rem;
      margin-bottom: 2rem;
    }
    .modal-perk {
      display: flex;
      align-items: center;
      gap: 0.65rem;
      font-size: 0.87rem;
      color: rgba(255,255,255,0.88);
      font-weight: 500;
    }
    .modal-perk-icon {
      width: 24px; height: 24px;
      background: #2ecc6e;
      border-radius: 50%;
      display: flex; align-items: center; justify-content: center;
      flex-shrink: 0;
      font-size: 0.65rem;
      color: white;
    }
    .modal-seai-chip {
      display: inline-flex;
      align-items: center;
      gap: 0.5rem;
      background: rgba(255,255,255,0.12);
      border: 1px solid rgba(255,255,255,0.2);
      color: white;
      font-size: 0.78rem;
      font-weight: 600;
      padding: 0.45rem 1rem;
      border-radius: 100px;
    }

    /* RIGHT PANEL */
    .modal-right {
      flex: 1;
      background: #fffffff4;
      overflow-y: auto;
      padding: 0;
      display: flex;
      flex-direction: column;
    }
    .modal-right::-webkit-scrollbar { width: 4px; }
    .modal-right::-webkit-scrollbar-track { background: transparent; }
    .modal-right::-webkit-scrollbar-thumb { background: rgba(255,255,255,0.2); border-radius: 2px; }

    .modal-close {
      position: absolute;
      top: 1rem; right: 1rem;
      z-index: 10;
      width: 34px; height: 34px;
      border-radius: 50%;
      background: rgba(255,255,255,0.12);
      border: 1px solid rgba(0, 0, 0, 0.732);
      color: rgba(0, 0, 0, 0.796);
      font-size: 1rem;
      display: flex; align-items: center; justify-content: center;
      cursor: pointer;
      transition: all 0.2s;
      line-height: 1;
    }
    .modal-close:hover { background: rgba(255,255,255,0.25); }

    .modal-form-wrap {
      padding: 2.25rem 2rem 2rem;
      flex: 1;
    }

    /* Form field label */
    .mfg { margin-bottom: 0.9rem; }
    .mfg label {
      display: block;
      font-size: 0.75rem;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: 0.5px;
      color: rgba(0, 0, 0, 0.711);
      margin-bottom: 0.35rem;
    }
    .mfg input,
    .mfg select,
    .mfg textarea {
      width: 100%;
      padding: 0.75rem 1rem;
      background: rgba(255,255,255,0.09);
      border: 1.5px solid rgba(0, 0, 0, 0.422);
      border-radius: 10px;
      font-family: 'Plus Jakarta Sans', sans-serif;
      font-size: 0.88rem;
      color: rgb(0, 0, 0);
      transition: border-color 0.2s, background 0.2s;
    }
    .mfg input::placeholder,
    .mfg textarea::placeholder { color: rgba(9, 6, 6, 0.481); }
    .mfg input:focus,
    .mfg select:focus,
    .mfg textarea:focus {
      outline: none;
      border-color: #7cffaa;
      background: rgba(255,255,255,0.13);
    }
    .mfg select {
      appearance: none;
      background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23ffffff' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
      background-repeat: no-repeat;
      background-position: right 1rem center;
      background-size: 10px;
      background-color: rgba(255,255,255,0.09);
      cursor: pointer;
    }
    .mfg select option { background: #0f3460; color: rgb(158, 139, 139); }
    .mfg textarea { resize: none; min-height: 70px; }

    .mfr {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 0.75rem;
      margin-bottom: 0.9rem;
    }
    .mfr .mfg { margin-bottom: 0; }

    .mf3 {
      display: grid;
      grid-template-columns: 1fr 1fr 1fr;
      gap: 0.75rem;
      margin-bottom: 0.9rem;
    }
    .mf3 .mfg { margin-bottom: 0; }

    /* Callback time buttons */
    .callback-btns {
      display: flex;
      gap: 0.6rem;
      flex-wrap: wrap;
    }
    .callback-btn {
      flex: 1;
      min-width: 90px;
      background: rgba(255,255,255,0.08);
      border: 1.5px solid rgba(0, 0, 0, 0.422);
      border-radius: 10px;
      padding: 0.65rem 0.5rem;
      text-align: center;
      cursor: pointer;
      transition: all 0.2s;
      color: rgba(0, 0, 0, 0.787);
      font-family: 'Plus Jakarta Sans', sans-serif;
    }
    .callback-btn:hover { border-color: #7cffaa; color: rgb(0, 0, 0); }
    .callback-btn.selected { background: rgba(46,204,110,0.2); border-color: #7cffaa; color: rgb(0, 0, 0); }
    .callback-btn i { display: block; font-size: 1rem; margin-bottom: 0.25rem; color: #7cffaa; }
    .callback-btn strong { display: block; font-size: 0.82rem; font-weight: 700; }
    .callback-btn small { display: block; color: rgba(0, 0, 0, 0.787); font-size: 0.7rem; opacity: 0.6; }

    /* Photo upload */
    .modal-photo-upload {
      border: 2px dashed rgba(0, 0, 0, 0.422);
      border-radius: 10px;
      padding: 1.1rem 1rem;
      text-align: center;
      cursor: pointer;
      transition: all 0.22s;
      background: rgba(255,255,255,0.05);
      position: relative;
    }
    .modal-photo-upload:hover { border-color: var(--orange); background: rgba(244,114,11,0.1); }
    .modal-photo-upload.has-file { border-color: #7cffaa; background: rgba(46,204,110,0.1); }
    .modal-photo-upload input[type="file"] {
      position: absolute; inset: 0; opacity: 0; cursor: pointer; width: 100%; height: 100%;
    }
    .modal-photo-upload-inner {
      display: flex;
      align-items: center;
      gap: 0.75rem;
      justify-content: center;
    }
    .modal-photo-upload-inner i { font-size: 1.2rem; color: var(--orange); }
    .modal-photo-upload.has-file .modal-photo-upload-inner i { color: #7cffaa; }
    .modal-photo-upload strong { display: block; font-size: 0.84rem; font-weight: 700; color: rgba(0, 0, 0, 0.769); }
    .modal-photo-upload span { font-size: 0.75rem; color: rgba(13, 7, 7, 0.616); }
    .modal-photo-preview { display: none; margin-top: 0.75rem; }
    .modal-photo-preview img { width: 100%; max-height: 110px; object-fit: cover; border-radius: 8px; }
    .modal-photo-upload.has-file .modal-photo-preview { display: block; }

    /* Submit */
    .modal-submit {
      width: 100%;
      background: var(--orange);
      color: white;
      border: none;
      border-radius: 10px;
      padding: 1rem;
      font-family: 'Plus Jakarta Sans', sans-serif;
      font-size: 1rem;
      font-weight: 700;
      cursor: pointer;
      transition: all 0.22s;
      display: flex; align-items: center; justify-content: center;
      gap: 0.5rem;
      margin-top: 1.1rem;
    }
    .modal-submit:hover { background: var(--orange-light); transform: translateY(-1px); box-shadow: 0 6px 20px rgba(244,114,11,0.4); }
    .modal-privacy-note {
      font-size: 0.73rem;
      color: rgba(0, 0, 0, 0.658);
      text-align: center;
      margin-top: 0.75rem;
      line-height: 1.5;
    }
    .modal-skip {
      display: block;
      width: 100%;
      text-align: center;
      margin-top: 0.6rem;
      font-size: 0.78rem;
      color: rgba(0, 0, 0, 0.709);
      cursor: pointer;
      background: none;
      border: none;
      font-family: 'Plus Jakarta Sans', sans-serif;
      transition: color 0.2s;
      text-decoration: underline;
      text-underline-offset: 2px;
    }
    .modal-skip:hover { color: rgb(0, 0, 0); }

    .floating-cta {
      position: fixed;
      right: 0;
      top: 50%;
      transform: translateY(-50%);
      background: var(--orange);
      color: white;
      text-decoration: none;
      display: flex;
      align-items: center;
      gap: 0.5rem;
      padding: 0.85rem 1rem;
      border-radius: 12px 0 0 12px;
      font-family: 'Plus Jakarta Sans', sans-serif;
      font-weight: 700;
      font-size: 0.85rem;
      writing-mode: vertical-rl;  /* makes text run vertically */
      letter-spacing: 1px;
      z-index: 500;
      box-shadow: -4px 4px 20px rgba(244,114,11,0.35);
      transition: all 0.25s;
    }

    .floating-cta:hover {
      padding-right: 1.4rem;
      background: var(--orange-light);
    }

    /* Success state */
    .modal-success {
      display: none;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      text-align: center;
      padding: 3rem 2rem;
      flex: 1;
    }
    .modal-success-icon {
      width: 80px; height: 80px;
      background: rgba(46,204,110,0.15);
      border-radius: 50%;
      display: flex; align-items: center; justify-content: center;
      margin: 0 auto 1.5rem;
      font-size: 2rem; color: #7cffaa;
    }
    .modal-success h3 {
      font-family: 'Nunito', sans-serif;
      font-size: 1.6rem; font-weight: 900;
      color: white; margin-bottom: 0.6rem;
    }
    .modal-success p { color: rgba(255,255,255,0.6); font-size: 0.9rem; line-height: 1.65; max-width: 300px; margin: 0 auto 1.5rem; }

    /* Mobile: stack vertically */
    @media (max-width: 700px) {
      .modal { flex-direction: column; max-height: 95vh; }
      .modal-left { flex: 0 0 auto; min-height: auto; }
      .modal-left-content { padding: 1.75rem 1.5rem; }
      .modal-left h2 { font-size: 1.4rem; margin-bottom: 1rem; }
      .modal-perks { display: none; }
      .modal-form-wrap { padding: 1.5rem; }
      .mfr, .mf3 { grid-template-columns: 1fr; }
      .svc-photo-grid { grid-template-columns: 1fr 1fr; }
    }

    /* ===================== ANIMATIONS ===================== */
    @keyframes fadeUp {
      from { opacity: 0; transform: translateY(18px); }
      to { opacity: 1; transform: translateY(0); }
    }
    @keyframes fadeIn {
      from { opacity: 0; }
      to { opacity: 1; }
    }

    /* ===================== RESPONSIVE ===================== */
    @media (max-width: 900px) {
      .topbar { padding: 0.5rem 1.5rem; }
      nav { top: 0; }
      nav { padding: 0 1.5rem; }
      .nav-links { display: none; }
      .hero-content { padding: 3rem 1.5rem; }
      .stats-bar { padding: 1.5rem; gap: 2rem; }
      .intro-section, .services-section, .why-section, .reviews-section, .enquiry-section { padding: 3.5rem 1.5rem; }
      .seai-section { padding: 3.5rem 1.5rem; }
      .intro-inner, .why-inner { grid-template-columns: 1fr; gap: 2.5rem; }
      .form-row { grid-template-columns: 1fr; }
      .footer-grid { grid-template-columns: 1fr; gap: 2rem; padding: 0; margin-bottom: 2rem; }
      footer { padding: 3rem 1.5rem 1.5rem; }
      .seai-inner { gap: 3rem; }
      .google-rating { bottom: 10px; right: 10px; }
      .seai-badge-float { top: 10px; left: 10px; }
      .review-card { min-width: calc(100vw - 4rem); }
      .svc-photo-grid { grid-template-columns: 1fr; }
      .svc-tabs { gap: 0.5rem; }
      .svc-tab { padding: 0.6rem 1rem; font-size: 0.82rem; }

    }