:root {
    --gold: #C9A84C;
    --gold-light: #E8C96A;
    --gold-dark: #9A7A30;
    --black: #0A0A0A;
    --dark: #111111;
    --dark2: #1A1A1A;
    --dark3: #222222;
    --cream: #F5F0E8;
    --white: #FFFFFF;
    --text-muted: #888888;
  }

  * { margin: 0; padding: 0; box-sizing: border-box; }

  html { scroll-behavior: smooth; }

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

  /* ── NAV ── */
  nav {
    position: fixed; top: 0; width: 100%; z-index: 100;
    background: rgba(10,10,10,0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(201,168,76,0.2);
    padding: 0 5%;
    display: flex; align-items: center; justify-content: space-between;
    height: 70px;
  }

  .nav-logo {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.6rem;
    letter-spacing: 3px;
    color: var(--gold);
  }
  .nav-logo span { color: var(--white); }

  .nav-links { display: flex; gap: 2rem; list-style: none; }
  .nav-links a {
    color: #aaa;
    text-decoration: none;
    font-size: 0.8rem;
    font-weight: 500;
    letter-spacing: 2px;
    text-transform: uppercase;
    transition: color 0.3s;
  }
  .nav-links a:hover { color: var(--gold); }

  .nav-cta {
    background: var(--gold);
    color: var(--black) !important;
    padding: 8px 20px;
    border-radius: 2px;
    font-weight: 600 !important;
  }
  .nav-cta:hover { background: var(--gold-light) !important; color: var(--black) !important; }

  /* ── HERO ── */
  .hero {
    min-height: 100vh;
    display: flex; align-items: center;
    padding: 120px 5% 80px;
    position: relative;
    overflow: hidden;
  }

  .hero-bg {
    position: absolute; inset: 0;
    background:
      linear-gradient(135deg, rgba(10,10,10,0.97) 0%, rgba(10,10,10,0.85) 50%, rgba(10,10,10,0.7) 100%),
      url('https://images.unsplash.com/photo-1558618666-fcd25c85cd64?w=1600&q=80') center/cover no-repeat;
  }

  .hero-glow {
    position: absolute;
    width: 600px; height: 600px;
    background: radial-gradient(circle, rgba(201,168,76,0.08) 0%, transparent 70%);
    top: 50%; left: 50%; transform: translate(-50%,-50%);
    pointer-events: none;
  }

  .hero-content { position: relative; max-width: 700px; }

  .hero-eyebrow {
    display: inline-flex; align-items: center; gap: 10px;
    font-size: 0.7rem; letter-spacing: 4px; text-transform: uppercase;
    color: var(--gold); margin-bottom: 1.5rem;
  }
  .hero-eyebrow::before, .hero-eyebrow::after {
    content: ''; width: 30px; height: 1px; background: var(--gold);
  }

  .hero h1 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(3.5rem, 8vw, 7rem);
    line-height: 0.95;
    letter-spacing: 4px;
    color: var(--white);
    margin-bottom: 0.3rem;
  }

  .hero h1 .gold { color: var(--gold); }

  .hero-sub {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1rem, 2vw, 1.3rem);
    color: var(--gold-light);
    font-style: italic;
    margin-bottom: 1.5rem;
    letter-spacing: 1px;
  }

  .hero-desc {
    color: #bbb;
    font-size: 1rem;
    line-height: 1.7;
    max-width: 560px;
    margin-bottom: 2.5rem;
  }

  .hero-btns { display: flex; gap: 1rem; flex-wrap: wrap; }

  .btn-primary {
    background: var(--gold);
    color: var(--black);
    padding: 14px 32px;
    font-weight: 700;
    font-size: 0.85rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    text-decoration: none;
    border-radius: 2px;
    transition: all 0.3s;
  }
  .btn-primary:hover { background: var(--gold-light); transform: translateY(-2px); }

  .btn-outline {
    border: 1px solid var(--gold);
    color: var(--gold);
    padding: 14px 32px;
    font-weight: 600;
    font-size: 0.85rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    text-decoration: none;
    border-radius: 2px;
    transition: all 0.3s;
  }
  .btn-outline:hover { background: rgba(201,168,76,0.1); }

  .hero-stats {
    position: absolute; bottom: 60px; right: 5%;
    display: flex; gap: 3rem;
  }
  .stat { text-align: center; }
  .stat-num {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 3rem; color: var(--gold); line-height: 1;
  }
  .stat-label {
    font-size: 0.65rem; letter-spacing: 2px; text-transform: uppercase;
    color: #888; margin-top: 4px;
  }

  /* ── DIVIDER ── */
  .gold-divider {
    width: 100%; height: 2px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
  }

  /* ── SECTION BASE ── */
  section { padding: 100px 5%; }

  .section-eyebrow {
    font-size: 0.65rem; letter-spacing: 4px; text-transform: uppercase;
    color: var(--gold); display: block; margin-bottom: 0.8rem;
  }

  .section-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(2.5rem, 5vw, 4rem);
    letter-spacing: 3px;
    line-height: 1;
    color: var(--white);
    margin-bottom: 1.2rem;
  }

  .section-title .gold { color: var(--gold); }

  /* ── SERVICES ── */
  #services { background: var(--dark); }

  .services-header { margin-bottom: 4rem; }

  .services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5px;
    background: rgba(201,168,76,0.15);
    border: 1.5px solid rgba(201,168,76,0.15);
  }

  .service-card {
    background: var(--dark2);
    padding: 2.5rem;
    transition: background 0.3s;
    position: relative;
    overflow: hidden;
  }
  .service-card::before {
    content: '';
    position: absolute; top: 0; left: 0;
    width: 3px; height: 0;
    background: var(--gold);
    transition: height 0.4s;
  }
  .service-card:hover::before { height: 100%; }
  .service-card:hover { background: var(--dark3); }

  .service-icon {
    font-size: 2.5rem; margin-bottom: 1rem;
    display: block;
  }

  .service-name {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.5rem; letter-spacing: 2px;
    color: var(--gold); margin-bottom: 0.5rem;
  }

  .service-desc {
    color: #888; font-size: 0.9rem; line-height: 1.6;
  }

  /* ── LEGACY ── */
  #legacy {
    background: var(--black);
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6rem;
    align-items: center;
  }

  .legacy-left { position: relative; }

  .legacy-frame {
    background: var(--dark2);
    border: 1px solid rgba(201,168,76,0.2);
    padding: 3rem;
    position: relative;
  }
  .legacy-frame::before {
    content: '';
    position: absolute; top: 12px; left: 12px; right: -12px; bottom: -12px;
    border: 1px solid rgba(201,168,76,0.1);
    z-index: -1;
  }

  .founder-initial {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 8rem; line-height: 1;
    color: rgba(201,168,76,0.08);
    position: absolute; top: 1rem; right: 1.5rem;
    pointer-events: none;
  }

  .founder-label {
    font-size: 0.65rem; letter-spacing: 3px; text-transform: uppercase;
    color: var(--gold); margin-bottom: 1rem; display: block;
  }

  .founder-name {
    font-family: 'Playfair Display', serif;
    font-size: 2rem; font-weight: 700;
    color: var(--white); margin-bottom: 0.3rem;
  }

  .founder-years {
    color: var(--gold-dark); font-size: 0.85rem; margin-bottom: 1.5rem;
  }

  .founder-quote {
    font-family: 'Playfair Display', serif;
    font-style: italic;
    color: #aaa; font-size: 1rem; line-height: 1.8;
    border-left: 2px solid var(--gold);
    padding-left: 1.2rem;
  }

  .timeline { margin-top: 2.5rem; }
  .timeline-item {
    display: flex; gap: 1.2rem; align-items: flex-start;
    margin-bottom: 1.2rem;
  }
  .timeline-dot {
    width: 10px; height: 10px; background: var(--gold);
    border-radius: 50%; flex-shrink: 0; margin-top: 5px;
  }
  .timeline-year {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1rem; color: var(--gold); letter-spacing: 1px;
    min-width: 50px;
  }
  .timeline-text { color: #999; font-size: 0.88rem; line-height: 1.5; }

  .legacy-right p {
    color: #aaa; font-size: 1rem; line-height: 1.9;
    margin-bottom: 1.5rem;
  }

  .legacy-values {
    display: grid; grid-template-columns: 1fr 1fr; gap: 1rem;
    margin-top: 2rem;
  }

  .value-item {
    background: var(--dark2);
    border: 1px solid rgba(201,168,76,0.15);
    padding: 1.2rem;
    border-radius: 2px;
  }
  .value-title {
    font-weight: 600; font-size: 0.85rem;
    color: var(--gold); margin-bottom: 0.3rem;
  }
  .value-desc { color: #777; font-size: 0.8rem; line-height: 1.5; }

  /* ── GALLERY ── */
  #gallery { background: var(--dark); }

  .gallery-header { margin-bottom: 3rem; }

  .gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: 260px 260px;
    gap: 4px;
  }

  .gallery-item {
    background: var(--dark3);
    position: relative; overflow: hidden;
    display: flex; align-items: center; justify-content: center;
    cursor: pointer;
  }

  .gallery-item img {
    width: 100%; height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.6s ease, filter 0.4s ease;
    filter: brightness(0.88);
  }
  .gallery-item:hover img { transform: scale(1.08); filter: brightness(1); }

  .gallery-caption {
    position: absolute; left: 0; right: 0; bottom: 0;
    padding: 14px 16px 12px;
    background: linear-gradient(0deg, rgba(0,0,0,0.85) 0%, rgba(0,0,0,0) 100%);
    color: var(--gold-light);
    font-size: 0.7rem;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    pointer-events: none;
  }

  .gallery-note {
    margin-top: 1.5rem;
    text-align: center;
    color: #555; font-size: 0.8rem; font-style: italic;
  }

  /* ── CONTACT ── */
  #contact {
    background: var(--black);
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6rem;
  }

  .contact-info { }

  .contact-cards { margin-top: 2.5rem; display: flex; flex-direction: column; gap: 1rem; }

  .contact-card {
    background: var(--dark2);
    border: 1px solid rgba(201,168,76,0.15);
    padding: 1.5rem 2rem;
    display: flex; align-items: center; gap: 1.2rem;
  }

  .contact-card-icon {
    width: 45px; height: 45px;
    background: rgba(201,168,76,0.1);
    border: 1px solid rgba(201,168,76,0.3);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.2rem; flex-shrink: 0;
  }

  .contact-card-name {
    font-size: 0.7rem; letter-spacing: 2px; text-transform: uppercase;
    color: var(--gold); margin-bottom: 0.2rem;
  }
  .contact-card-value {
    font-size: 1.1rem; font-weight: 600; color: var(--white);
  }
  .contact-card-sub { color: #666; font-size: 0.8rem; }

  .address-block {
    margin-top: 2rem;
    background: var(--dark2);
    border: 1px solid rgba(201,168,76,0.15);
    padding: 1.5rem 2rem;
  }
  .address-label {
    font-size: 0.65rem; letter-spacing: 3px; text-transform: uppercase;
    color: var(--gold); margin-bottom: 0.5rem; display: block;
  }
  .address-text { color: #bbb; line-height: 1.8; }
  .gst-line {
    margin-top: 1rem; padding-top: 1rem;
    border-top: 1px solid rgba(201,168,76,0.1);
    font-size: 0.8rem; color: #666;
  }
  .gst-line span { color: var(--gold); font-weight: 600; }

  /* FORM */
  .contact-form-wrap { }

  .form-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 2rem; letter-spacing: 2px;
    color: var(--white); margin-bottom: 2rem;
  }

  .form-group { margin-bottom: 1.2rem; }

  .form-group label {
    display: block; font-size: 0.7rem; letter-spacing: 2px;
    text-transform: uppercase; color: var(--gold);
    margin-bottom: 0.5rem;
  }

  .form-group input,
  .form-group textarea,
  .form-group select {
    width: 100%;
    background: var(--dark2);
    border: 1px solid rgba(201,168,76,0.2);
    color: var(--white);
    padding: 12px 16px;
    font-family: 'Inter', sans-serif;
    font-size: 0.9rem;
    outline: none;
    transition: border-color 0.3s;
    border-radius: 2px;
  }
  .form-group input:focus,
  .form-group textarea:focus,
  .form-group select:focus {
    border-color: var(--gold);
  }
  .form-group select option { background: var(--dark2); }
  .form-group textarea { resize: vertical; min-height: 100px; }

  .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }

  .btn-submit {
    width: 100%;
    background: var(--gold);
    color: var(--black);
    border: none;
    padding: 16px;
    font-family: 'Inter', sans-serif;
    font-weight: 700; font-size: 0.85rem;
    letter-spacing: 2px; text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s;
    border-radius: 2px;
    margin-top: 0.5rem;
  }
  .btn-submit:hover { background: var(--gold-light); transform: translateY(-2px); }

  .whatsapp-btn {
    display: flex; align-items: center; justify-content: center; gap: 10px;
    background: #25D366;
    color: #fff;
    padding: 14px;
    font-weight: 700; font-size: 0.85rem;
    letter-spacing: 1px; text-transform: uppercase;
    text-decoration: none;
    border-radius: 2px;
    margin-top: 1rem;
    transition: all 0.3s;
  }
  .whatsapp-btn:hover { background: #1ebe5d; transform: translateY(-2px); }

  /* MAP */
  .map-wrap {
    margin-top: 2rem;
    border: 1px solid rgba(201,168,76,0.2);
    overflow: hidden;
    height: 220px;
    position: relative;
    background: var(--dark2);
    display: flex; align-items: center; justify-content: center;
  }
  .map-placeholder {
    text-align: center; color: #555;
  }
  .map-placeholder .map-icon { font-size: 2.5rem; margin-bottom: 0.5rem; display: block; }
  .map-placeholder p { font-size: 0.8rem; letter-spacing: 1px; }
  .map-placeholder a {
    color: var(--gold); font-size: 0.75rem; letter-spacing: 2px;
    text-transform: uppercase; text-decoration: none; margin-top: 0.5rem; display: block;
  }

  /* ── WHY US ── */
  #why { background: var(--dark); }

  .why-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    border: 1px solid rgba(201,168,76,0.15);
    margin-top: 3rem;
  }

  .why-item {
    padding: 2.5rem 2rem;
    border-right: 1px solid rgba(201,168,76,0.15);
    text-align: center;
    transition: background 0.3s;
  }
  .why-item:last-child { border-right: none; }
  .why-item:hover { background: var(--dark3); }

  /* ── TAG CHIPS (factory-advantages / equipment) ── */
  .tag-grid {
    display: flex; flex-wrap: wrap;
    gap: 14px;
    margin-top: 3rem;
    justify-content: center;
  }
  .tag-chip {
    display: flex; align-items: center; gap: 10px;
    background: var(--dark2);
    border: 1px solid rgba(201,168,76,0.25);
    padding: 14px 24px;
    border-radius: 40px;
    font-size: 0.85rem;
    letter-spacing: 0.5px;
    color: var(--white);
    transition: all 0.3s;
  }
  .tag-chip:hover {
    border-color: var(--gold);
    background: var(--dark3);
    transform: translateY(-2px);
  }
  .tag-chip .tag-icon { font-size: 1.1rem; }
  .tag-chip .tag-text { font-weight: 600; }

  /* ── DIGITAL CALLOUT ── */
  .digital-callout {
    max-width: 780px;
    margin: 3.5rem auto 0;
    text-align: center;
    padding: 1.8rem 2rem;
    border-top: 1px solid rgba(201,168,76,0.2);
    border-bottom: 1px solid rgba(201,168,76,0.2);
  }
  .digital-callout .callout-icon { font-size: 1.6rem; display: block; margin-bottom: 0.8rem; }
  .digital-callout p {
    color: #ccc; font-size: 0.95rem; line-height: 1.7;
    font-style: italic;
  }
  .digital-callout p .gold { font-style: normal; }

  /* ── AREAS WE SERVE ── */
  #areas { background: var(--dark2); }
  .city-grid {
    display: flex; flex-wrap: wrap;
    gap: 12px;
    margin-top: 3rem;
    justify-content: center;
  }
  .city-chip {
    background: transparent;
    border: 1px solid rgba(201,168,76,0.3);
    color: var(--gold-light);
    padding: 10px 22px;
    border-radius: 2px;
    font-size: 0.8rem;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    transition: all 0.3s;
  }
  .city-chip:hover {
    background: var(--gold);
    color: var(--black);
    border-color: var(--gold);
  }
  .city-chip.primary {
    background: var(--gold);
    color: var(--black);
    border-color: var(--gold);
    font-weight: 700;
  }
  .city-chip.primary:hover {
    background: var(--gold-light);
  }
  .city-group-label {
    text-align: center;
    color: #666;
    font-size: 0.72rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin: 2rem 0 1rem;
  }
  .city-group-label:first-of-type { margin-top: 3rem; }
  .areas-note {
    text-align: center; color: #666; font-size: 0.8rem;
    margin-top: 1.8rem; font-style: italic;
  }

  /* ── FORM FILE UPLOAD ── */
  .form-group input[type="file"] {
    padding: 10px 16px;
    color: #999;
    font-size: 0.8rem;
  }
  .form-hint {
    font-size: 0.72rem; color: #666; margin-top: 0.4rem; line-height: 1.5;
  }

  .why-icon { font-size: 2rem; margin-bottom: 1rem; display: block; }
  .why-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.1rem; letter-spacing: 2px;
    color: var(--gold); margin-bottom: 0.5rem;
  }
  .why-text { color: #777; font-size: 0.82rem; line-height: 1.6; }

  /* ── FOOTER ── */
  footer {
    background: var(--black);
    border-top: 1px solid rgba(201,168,76,0.15);
    padding: 3rem 5%;
    display: flex; align-items: center; justify-content: space-between;
    flex-wrap: wrap; gap: 1rem;
  }

  .footer-brand {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.4rem; letter-spacing: 3px; color: var(--gold);
  }
  .footer-brand span { color: #555; }

  .footer-copy { color: #444; font-size: 0.75rem; letter-spacing: 1px; }

  .footer-links { display: flex; gap: 1.5rem; }
  .footer-links a {
    color: #555; text-decoration: none; font-size: 0.75rem;
    letter-spacing: 1px; text-transform: uppercase;
    transition: color 0.3s;
  }
  .footer-links a:hover { color: var(--gold); }

  /* ── MOBILE ── */
  @media (max-width: 900px) {
    #legacy, #contact { grid-template-columns: 1fr; gap: 3rem; }
    .why-grid { grid-template-columns: 1fr 1fr; }
    .why-item:nth-child(2) { border-right: none; }
    .why-item:nth-child(1), .why-item:nth-child(2) {
      border-bottom: 1px solid rgba(201,168,76,0.15);
    }
    .tag-chip { padding: 12px 18px; font-size: 0.8rem; }
    .city-chip { padding: 8px 16px; font-size: 0.72rem; }
    .digital-callout { padding: 1.5rem 1.2rem; }
    .gallery-grid {
      grid-template-columns: 1fr 1fr;
      grid-template-rows: repeat(4, 180px);
    }
    .hero-stats { position: relative; bottom: auto; right: auto; margin-top: 3rem; justify-content: flex-start; }
    nav { padding: 0 4%; }
    .nav-links { display: none; }
    .form-row { grid-template-columns: 1fr; }
  }

  /* ── SCROLL REVEAL ── */
  .reveal { opacity: 0; transform: translateY(30px); transition: all 0.7s ease; }
  .reveal.visible { opacity: 1; transform: translateY(0); }

  /* floating WA button */
  .wa-float {
    position: fixed; bottom: 30px; right: 30px; z-index: 999;
    width: 56px; height: 56px;
    background: #25D366;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.6rem;
    box-shadow: 0 4px 20px rgba(37,211,102,0.4);
    text-decoration: none;
    transition: transform 0.3s;
  }
  .wa-float:hover { transform: scale(1.1); }

  /* ── LIGHTBOX ── */
  .lightbox-overlay {
    display: none;
    position: fixed; inset: 0; z-index: 2000;
    background: rgba(0,0,0,0.92);
    align-items: center; justify-content: center;
    padding: 40px;
    cursor: zoom-out;
  }
  .lightbox-overlay.active { display: flex; animation: lbFade 0.25s ease; }
  @keyframes lbFade { from { opacity: 0; } to { opacity: 1; } }
  .lightbox-overlay img {
    max-width: 90vw; max-height: 85vh;
    object-fit: contain;
    box-shadow: 0 20px 60px rgba(0,0,0,0.6);
    border: 1px solid rgba(201,168,76,0.3);
  }
  .lightbox-caption {
    position: absolute; bottom: 30px; left: 0; right: 0;
    text-align: center; color: var(--gold-light);
    font-size: 0.85rem; letter-spacing: 2px; text-transform: uppercase;
  }
  .lightbox-close {
    position: absolute; top: 24px; right: 30px;
    color: var(--white); font-size: 2rem;
    cursor: pointer; line-height: 1;
    width: 44px; height: 44px;
    display: flex; align-items: center; justify-content: center;
    border: 1px solid rgba(255,255,255,0.3); border-radius: 50%;
    transition: all 0.3s;
  }
  .lightbox-close:hover { border-color: var(--gold); color: var(--gold); }
  .lightbox-nav {
    position: absolute; top: 50%; transform: translateY(-50%);
    color: var(--white); font-size: 2rem;
    width: 50px; height: 50px;
    display: flex; align-items: center; justify-content: center;
    border: 1px solid rgba(255,255,255,0.3); border-radius: 50%;
    cursor: pointer; transition: all 0.3s;
  }
  .lightbox-nav:hover { border-color: var(--gold); color: var(--gold); }
  .lightbox-prev { left: 20px; }
  .lightbox-next { right: 20px; }

  /* ── FAQ ACCORDION ── */
  #faq { background: var(--dark2); }
  .faq-list { max-width: 800px; margin: 3rem auto 0; }
  .faq-item {
    border-bottom: 1px solid rgba(201,168,76,0.15);
  }
  .faq-question {
    display: flex; align-items: center; justify-content: space-between;
    padding: 1.6rem 0.5rem;
    cursor: pointer;
    font-size: 1rem; font-weight: 600; color: var(--white);
    transition: color 0.3s;
  }
  .faq-question:hover { color: var(--gold); }
  .faq-icon { color: var(--gold); font-size: 1.3rem; transition: transform 0.3s; flex-shrink: 0; margin-left: 1rem; }
  .faq-item.open .faq-icon { transform: rotate(45deg); }
  .faq-answer {
    max-height: 0; overflow: hidden;
    transition: max-height 0.35s ease, padding 0.35s ease;
    color: #aaa; font-size: 0.9rem; line-height: 1.8;
    padding: 0 0.5rem;
  }
  .faq-item.open .faq-answer { max-height: 300px; padding: 0 0.5rem 1.6rem; }

  /* ── FORM VALIDATION ── */
  .form-group.error input,
  .form-group.error select,
  .form-group.error textarea {
    border-color: #e05555;
  }
  .field-error {
    display: none;
    color: #e05555;
    font-size: 0.72rem;
    margin-top: 0.4rem;
    letter-spacing: 0.5px;
  }
  .form-group.error .field-error { display: block; }

  /* ── SPINNER ── */
  .btn-spinner {
    display: inline-block; width: 14px; height: 14px;
    border: 2px solid rgba(0,0,0,0.25);
    border-top-color: var(--black);
    border-radius: 50%;
    animation: spin 0.7s linear infinite;
    margin-right: 8px; vertical-align: -2px;
  }
  @keyframes spin { to { transform: rotate(360deg); } }

  /* ── STICKY MOBILE BAR ── */
  .sticky-mobile-bar {
    display: none;
    position: fixed; bottom: 0; left: 0; right: 0; z-index: 998;
    grid-template-columns: 1fr 1fr;
  }
  .sticky-mobile-bar a {
    display: flex; align-items: center; justify-content: center;
    gap: 8px; padding: 14px 0;
    font-weight: 700; font-size: 0.85rem;
    text-decoration: none; letter-spacing: 1px;
  }
  .sticky-mobile-bar .call-btn { background: var(--gold); color: var(--black); }
  .sticky-mobile-bar .wa-btn { background: #25D366; color: #fff; }

  /* ── QUICK QUOTE ── */
  .quick-quote-btn {
    position: fixed; bottom: 30px; left: 30px; z-index: 999;
    background: var(--dark2);
    border: 1px solid var(--gold);
    color: var(--gold);
    padding: 12px 20px;
    border-radius: 40px;
    font-size: 0.8rem; font-weight: 700; letter-spacing: 1px;
    text-transform: uppercase;
    cursor: pointer;
    box-shadow: 0 4px 20px rgba(0,0,0,0.4);
    transition: all 0.3s;
  }
  .quick-quote-btn:hover { background: var(--gold); color: var(--black); }

  .qq-overlay {
    display: none;
    position: fixed; inset: 0; z-index: 2001;
    background: rgba(0,0,0,0.85);
    align-items: center; justify-content: center;
    padding: 20px;
  }
  .qq-overlay.active { display: flex; }
  .qq-modal {
    background: var(--dark2);
    border: 1px solid rgba(201,168,76,0.3);
    max-width: 420px; width: 100%;
    padding: 2.2rem;
    position: relative;
  }
  .qq-modal-close {
    position: absolute; top: 16px; right: 18px;
    color: #888; font-size: 1.4rem; cursor: pointer;
  }
  .qq-modal-close:hover { color: var(--gold); }
  .qq-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.6rem; letter-spacing: 1px;
    color: var(--white); margin-bottom: 0.4rem;
  }
  .qq-sub { color: #888; font-size: 0.8rem; margin-bottom: 1.6rem; }

  /* ── PRICING FACTORS ── */
  #pricing { background: var(--dark); }
  .pricing-note {
    max-width: 650px; margin: 1.5rem auto 0;
    text-align: center; color: #999; font-size: 0.9rem; line-height: 1.7;
  }

  /* ── DIGITAL DOCS CHECKLIST ── */
  .doc-checklist {
    max-width: 560px; margin: 3rem auto 0;
    display: flex; flex-direction: column; gap: 1rem;
  }
  .doc-check-item {
    display: flex; align-items: center; gap: 14px;
    padding: 1rem 1.4rem;
    background: var(--dark2);
    border-left: 3px solid var(--gold);
  }
  .doc-check-item .check-mark { color: var(--gold); font-size: 1.1rem; font-weight: 700; }
  .doc-check-item .check-text { font-size: 0.95rem; color: var(--white); }

  @media (max-width: 900px) {
    .sticky-mobile-bar { display: grid; }
    .wa-float { display: none; }
    body { padding-bottom: 56px; }
    .quick-quote-btn { bottom: 76px; left: 16px; padding: 10px 16px; font-size: 0.72rem; }
  }
