:root {
      --primary: #166534;
      --accent: #dc2626;
      --dark: #0f172a;
      --light: #f8fafc;
      --gray: #64748b;
    }

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

    body {
      font-family: 'Quicksand', sans-serif;
      background: var(--light);
      color: var(--dark);
      line-height: 1.6;
    }

    header {
      background: #fff;
      position: sticky;
      top: 0;
      z-index: 1000;
      box-shadow: 0 2px 10px rgba(0,0,0,.05);
    }

    .nav {
      max-width: 1200px;
      margin: auto;
      padding: 1rem 1.5rem;
      display: flex;
      justify-content: space-between;
      align-items: center;
    }

    .nav strong {
      font-size: 1.4rem;
      color: var(--primary);
    }

    .nav a.cta {
      background: var(--accent);
      color: white;
      padding: 0.6rem 1.2rem;
      border-radius: 999px;
      font-weight: 700;
      text-decoration: none;
    }

    .hero {
      background: linear-gradient(rgba(0,0,0,.6), rgba(0,0,0,.6)), url("348s.jpg") center/cover;
      color: white;
      padding: 5rem 1.5rem;
      text-align: center;
    }

    .hero h1 {
      font-size: clamp(2.2rem, 4vw, 3rem);
      margin-bottom: 1rem;
    }

    .hero p {
      max-width: 720px;
      margin: auto;
      font-size: 1.1rem;
    }

    /* ---------- FORM ---------- */
    .quote-form {
      max-width: 520px;
      margin: 3rem auto 0;
      background: white;
      padding: 2rem;
      border-radius: 18px;
      box-shadow: 0 15px 40px rgba(0,0,0,.15);
      color: var(--dark);
      text-align: left;
    }

    .quote-form h3 {
      text-align: center;
      margin-bottom: 1rem;
    }

    .quote-form input,
    .quote-form textarea {
      width: 100%;
      padding: 0.8rem;
      margin-bottom: 1rem;
      border-radius: 10px;
      border: 1px solid #e5e7eb;
      font-family: inherit;
      font-size: 0.95rem;
    }

    .quote-form button {
      width: 100%;
      background: var(--accent);
      color: white;
      border: none;
      padding: 0.9rem;
      border-radius: 999px;
      font-weight: 700;
      cursor: pointer;
      font-size: 1rem;
    }

    .quote-form small {
      display: block;
      text-align: center;
      margin-top: 0.6rem;
      color: var(--gray);
    }

    section {
      max-width: 1200px;
      margin: auto;
      padding: 4rem 1.5rem;
    }

    section h2 {
      text-align: center;
      margin-bottom: 2.5rem;
      font-size: 2.2rem;
    }

    .services {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
      gap: 1.5rem;
    }

    .service {
      background: white;
      padding: 2rem;
      border-radius: 16px;
      box-shadow: 0 10px 25px rgba(0,0,0,.06);
      text-align: center;
    }

    .service i {
      font-size: 2.2rem;
      color: var(--primary);
      margin-bottom: 1rem;
    }

    .why {
      background: var(--primary);
      color: white;
    }

    .why p {
      max-width: 900px;
      margin: auto;
    }

    .areas {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
      gap: 1.2rem;
      text-align: center;
    }

    .areas div {
      background: white;
      padding: 1rem;
      border-radius: 12px;
      box-shadow: 0 5px 15px rgba(0,0,0,.05);
    }

    footer {
      background: #020617;
      color: #cbd5f5;
      text-align: center;
      padding: 2rem 1rem;
      margin-top: 4rem;
    }
    /* ---------- TESTIMONIALS ---------- */
    .testimonials {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
      gap: 1.5rem;
    }

    .testimonial {
      background: white;
      padding: 1.8rem;
      border-radius: 16px;
      box-shadow: 0 10px 25px rgba(0,0,0,.06);
      font-size: 0.95rem;
    }

    .mobile-call {
      position: fixed;
      bottom: 15px;
      right: 15px;
      background: var(--accent);
      color: white;
      padding: 0.9rem 1.3rem;
      border-radius: 999px;
      font-weight: 700;
      display: none;
      text-decoration: none;
    }

    @media (max-width: 768px) {
      .mobile-call { display: block; }
    }