:root {
      --primary:      #d9755f;
      --primary-dark: #c4624f;
      --mint:         #5da892;
      --deep:         #2f3b57;
      --deep-2:       #4a3459;
      --ink:          #2f2e4a;
      --muted:        #666a7a;
      --line:         #e7e4df;
    }

    body { font-family: 'Poppins', sans-serif; color: var(--ink); }

    /* ── Buttons ─────────────────────────────── */
    .btn-primary-custom {
      background: var(--primary);
      border: 1px solid var(--primary);
      color: #fff;
      border-radius: 999px;
      font-weight: 600;
      font-size: 14px;
      letter-spacing: .01em;
      padding: 12px 28px;
      transition: background .2s, box-shadow .22s, transform .22s;
    }
    .btn-primary-custom:hover {
      background: var(--primary-dark);
      border-color: var(--primary-dark);
      color: #fff;
      transform: translateY(-1px);
      box-shadow: 0 8px 18px rgba(201,100,79,.28);
    }
    .btn-outline-custom {
      background: #fff;
      border: 1px solid var(--primary);
      color: var(--primary);
      border-radius: 999px;
      font-weight: 600;
      font-size: 14px;
      padding: 10px 22px;
      transition: background .2s, transform .22s;
    }
    .btn-outline-custom:hover { background: #fff7f4; transform: translateY(-1px); }
    .btn-dark-custom {
      background: #365c86;
      border: 1px solid #365c86;
      color: #fff;
      border-radius: 999px;
      font-weight: 600;
      font-size: 14px;
      padding: 12px 40px;
      min-width: 170px;
      transition: background .2s;
    }
    .btn-dark-custom:hover { background: #2d4f73; color: #fff; }

    /* ── Header ──────────────────────────────── */
    .site-header {
      position: sticky; top: 0; z-index: 1030;
      border-bottom: 1px solid #ede8e2;
    }
    .brand-logo { width: 34px; height: 34px; border-radius: 8px; object-fit: cover; }
    .brand-text  { font-size: 18px; font-weight: 700; color: #23232f; }

    /* ── Hero ────────────────────────────────── */
    .hero-section {
      position: relative;
      min-height: calc(100dvh - 57px);
      display: flex; align-items: center;
    }
    .hero-section .hero-bg {
      position: absolute; inset: 0;
    }
    .hero-section .hero-bg img {
      width: 100%; height: 100%; object-fit: cover;
    }
    .hero-section .hero-overlay {
      position: absolute; inset: 0;
      background: linear-gradient(102deg, rgba(18,24,40,.62), rgba(18,24,40,.34));
    }
    .hero-content { position: relative; z-index: 1; }
    .hero-copy h1 {
      font-size: clamp(28px, 3.5vw, 48px);
      font-weight: 700; line-height: 1.12; color: #fff;
    }
    .hero-copy h1 span { color: #ffc72f; }
    .hero-copy p { color: #fff; font-size: clamp(16px, 1.6vw, 20px); }

    .hero-form {
      background: #fff; border-radius: 10px;
      padding: 24px 20px 18px;
      box-shadow: 0 18px 40px rgba(16,17,24,.22);
      position: relative;
    }
    .form-progress {
      position: absolute; right: 16px; top: 14px;
      width: 32px; height: 32px; border-radius: 50%;
      border: 2px solid var(--primary);
      font-size: 12px; font-weight: 600; color: #888;
      display: grid; place-items: center;
    }
    .hero-form h2 { font-size: 22px; font-weight: 700; margin-bottom: 16px; }
    .hero-form .form-control {
      border-radius: 4px; font-family: inherit; font-size: 15px; padding: 13px 12px;
    }
    .form-note { font-size: 12px; color: #7a7a7a; text-align: center; margin-top: 14px; }

    /* ── USP strip ───────────────────────────── */
    .usp-strip { background: #fcfaf7; padding: 26px 0; }
    .usp-icon {
      width: 46px; height: 46px; border-radius: 50%;
      border: 1px solid #d4d4d4; background: #fff;
      display: grid; place-items: center; color: #5f6977;
    }
    .usp-icon svg {
      width: 24px; height: 24px; fill: none;
      stroke: currentColor; stroke-width: 1.8;
      stroke-linecap: round; stroke-linejoin: round;
    }
    .usp-item p { font-size: 18px; color: #2f2f45; margin: 0; }

    /* ── Section heads ───────────────────────── */
    .section-head-h2 { font-size: clamp(28px, 3vw, 46px); font-weight: 700; line-height: 1.16; }
    .section-head-p  { font-size: clamp(15px, 1.4vw, 19px); color: #30364d; margin-top: 6px; }

    /* ── Media cards (testimonials) ──────────── */
    .media-card { border-radius: 8px; overflow: hidden; border: 1px solid #dfdfdf; transition: transform .26s, box-shadow .26s; }
    .media-card:hover { transform: translateY(-4px); box-shadow: 0 16px 30px rgba(25,27,39,.12); }
    .media-card img  { width: 100%; height: 220px; object-fit: cover; }
    .card-copy { padding: 18px 16px; text-align: center; }
    .card-copy p  { font-style: italic; font-size: 15px; color: #4a4a4a; margin-bottom: 6px; }
    .card-copy h3 { font-size: 16px; font-weight: 500; }

    /* ── Numbers ─────────────────────────────── */
    .numbers-section { background: var(--mint); color: #fff; padding: 60px 0; }
    .numbers-section h2 { font-size: clamp(28px, 3.2vw, 44px); font-weight: 700; }
    .numbers-section strong { font-size: clamp(32px, 3vw, 50px); font-weight: 500; display: block; white-space: nowrap; }
    .numbers-section span  { font-size: clamp(15px, 1.3vw, 22px); display: block; margin-top: 6px; }

    /* ── Home cards ──────────────────────────── */
    .home-card { border: 1px solid var(--line); border-radius: 10px; overflow: hidden; transition: transform .24s, box-shadow .24s; }
    .home-card:hover { transform: translateY(-3px); box-shadow: 0 14px 28px rgba(24,26,34,.09); }
    .home-card img { width: 100%; height: 200px; object-fit: cover; }
    .home-copy { padding: 14px 16px 16px; }
    .home-copy h3 { font-size: 17px; margin-bottom: 6px; }
    .home-copy p  { font-size: 15px; color: #555d6f; margin-bottom: 12px; }

    /* ── Estimator cards ─────────────────────── */
    .estimator-card {
      border: 1px solid var(--line); border-radius: 10px;
      padding: 24px 22px; display: flex; flex-direction: column;
      transition: transform .24s, box-shadow .24s;
    }
    .estimator-card:hover { transform: translateY(-3px); box-shadow: 0 14px 28px rgba(24,26,34,.09); }
    .estimator-card h3 { font-size: clamp(26px, 2.2vw, 34px); font-weight: 700; }
    .estimator-card p  { font-size: clamp(15px, 1.2vw, 18px); color: #555d6f; flex-grow: 1; margin-bottom: 16px; }

    /* ── Info cards ──────────────────────────── */
    .info-card { border: 1px solid var(--line); border-radius: 10px; padding: 20px; transition: transform .24s, box-shadow .24s; }
    .info-card:hover { transform: translateY(-3px); box-shadow: 0 14px 28px rgba(24,26,34,.09); }
    .info-card h3 { font-size: 17px; margin-bottom: 10px; font-weight: 700; }
    .info-card li { font-size: 15px; color: #4c5363; margin-bottom: 8px; }

    /* ── Download guide ──────────────────────── */
    .download-guide { background: #efe0b5; border: 1px solid #e8d39e; border-radius: 8px; overflow: hidden; }
    .download-guide img { width: 100%; height: 100%; object-fit: cover; min-height: 280px; }
    .guide-copy { padding: 32px 36px; }
    .guide-copy h2 { font-size: clamp(26px, 2.4vw, 38px); font-weight: 700; margin-bottom: 8px; }
    .guide-copy p  { font-size: clamp(15px, 1.3vw, 19px); color: #4f4f4f; margin-bottom: 16px; }

    /* ── Connect ─────────────────────────────── */
    .connect-section { background: #fff; padding: 100px 0; text-align: center; }
    .connect-section h2 { font-size: clamp(28px, 3vw, 42px); font-weight: 700; }
    .connect-section p  { font-size: clamp(15px, 1.2vw, 17px); color: #5a5a5a; margin-top: 8px; }

    /* ── Partners marquee ────────────────────── */
    .partners-marquee { overflow: hidden; margin-top: 22px; }
    .partners-track {
      display: inline-flex; gap: 14px; width: max-content;
      animation: partnerScroll 24s linear infinite;
    }
    .partners-track span {
      padding: 14px 10px; min-width: 160px; text-align: center;
      border: 1px solid #e3e3e3; border-radius: 10px;
      font-weight: 700; font-size: 16px; color: #54586a; background: #fff;
    }
    @keyframes partnerScroll {
      0%   { transform: translateX(0); }
      100% { transform: translateX(calc(-50% - 7px)); }
    }

    /* ── Bottom CTA ──────────────────────────── */
    .bottom-cta {
      background: linear-gradient(130deg, var(--deep), var(--deep-2));
      padding: 60px 0; text-align: center; color: #fff;
    }
    .bottom-cta h2 { font-size: clamp(28px, 3.5vw, 50px); font-weight: 700; line-height: 1.2; }
    .bottom-cta h2 span { color: #ffd32e; }
    .bottom-cta p  { font-size: clamp(15px, 1.4vw, 20px); margin-top: 10px; }

    /* ── Footer ──────────────────────────────── */
    .site-footer { background: #2f2a36; color: #fff; padding: 18px 0 22px; text-align: center; }
    .site-footer .copyright { font-size: 19px; font-weight: 500; }
    .site-footer .seo-copy  { font-size: 13px; opacity: .9; margin-top: 6px; line-height: 1.55; }

    /* ── WhatsApp float ──────────────────────── */
    .whatsapp-float {
      position: fixed; bottom: 25px; right: 25px;
      width: 62px; height: 62px; background: #25D366;
      color: #fff; border-radius: 50%; font-size: 32px;
      display: flex; align-items: center; justify-content: center;
      box-shadow: 0 8px 25px rgba(37,211,102,.4);
      z-index: 9999; text-decoration: none;
      animation: pulseWA 2s infinite; transition: transform .3s, background .3s;
    }
    .whatsapp-float:hover { transform: scale(1.12); background: #1ebe5d; color: #fff; }
    @keyframes pulseWA {
      0%   { box-shadow: 0 0 0 0 rgba(37,211,102,.6); }
      70%  { box-shadow: 0 0 0 20px rgba(37,211,102,0); }
      100% { box-shadow: 0 0 0 0 rgba(37,211,102,0); }
    }

    /* ── Scroll animations ───────────────────── */
    .animate-in {
      opacity: 0; transform: translateY(22px);
      transition: opacity .62s ease, transform .62s ease;
    }
    .animate-in.is-visible { opacity: 1; transform: translateY(0); }

    @media (prefers-reduced-motion: reduce) {
      * { animation: none !important; transition: none !important; }
      .animate-in, .animate-in.is-visible { opacity: 1; transform: none; }
    }

    /* ── Types of Projects ───────────────────── */
    .types-of-projects-section { background: #f0eeeb; }

    .types-label {
      font-size: 13px;
      font-weight: 700;
      letter-spacing: .12em;
      color: var(--muted);
      text-transform: uppercase;
      margin: 0;
    }

    /* 4 columns × 2 rows = 8 tiles, flush edge-to-edge */
    .projects-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 0;
    }

    .project-item {
      position: relative;
      display: block;
      overflow: hidden;
      text-decoration: none;
    }

    .project-item img {
      width: 100%;
      height: 420px;
      object-fit: cover;
      display: block;
      transition: transform .5s ease;
    }

    .project-item:hover img {
      transform: scale(1.04);
    }

    /* Label bar — fixed height, never grows */
    .project-label {
      position: absolute;
      bottom: 0; left: 0; right: 0;
      background: #0d0d0d;
      color: #fff;
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 14px 20px;
      gap: 10px;
      transition: background .28s ease;
    }

    /* Text */
    .project-label span {
      font-size: 12px;
      font-weight: 600;
      letter-spacing: .14em;
      text-transform: uppercase;
      line-height: 1;
    }

    /* Arrow — the provided SVG */
    .proj-arrow {
      fill: currentColor;
      flex-shrink: 0;
      width: 36px;
      height: 18px;
      transition: width .3s ease, height .3s ease, transform .3s ease;
    }

    /* ── Hover: only bg changes + arrow slightly larger ── */
    .project-item:hover .project-label {
      background: #7b2d5e;
    }

    .project-item:hover .proj-arrow {
      width: 44px;
      height: 22px;
      transform: translateX(2px);
    }

    /* Mobile: 2 cols × 4 rows */
    @media (max-width: 767px) {
      .projects-grid { grid-template-columns: repeat(2, 1fr); }
      .project-item img { height: 220px; }
      .project-label { padding: 11px 14px; }
      .project-label span { font-size: 10px; letter-spacing: .1em; }
      .proj-arrow-line { width: 20px; }
    }

    /* ── Announcement ribbon ─────────────────── */
    .announce-ribbon {
      background: #1d1d22; color: #fff;
      font-size: 13px; text-align: center;
      padding: 7px 12px; letter-spacing: .01em;
    }
    .announce-ribbon strong { color: #ffc72f; }
    .announce-ribbon a { color: #fff; text-decoration: none; }

    /* ── Navbar ──────────────────────────────── */
    .brand-tag {
      font-size: 11px; font-weight: 600; letter-spacing: .22em;
      color: var(--muted); text-transform: uppercase; line-height: 1;
    }
    .main-nav .nav-link {
      font-size: 14px; font-weight: 500; color: #2f2e4a;
      padding: 6px 12px; transition: color .2s;
    }
    .main-nav .nav-link:hover, .main-nav .nav-link.active { color: var(--primary); }

    /* ── Renovation article (About) ──────────── */
    .reno-article { padding: 60px 0; }
    .reno-article img { width: 100%; border-radius: 10px; object-fit: cover; height: 100%; min-height: 360px; }
    .reno-eyebrow { font-size: 13px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: var(--primary); }
    .reno-article h2 { font-size: clamp(26px, 2.6vw, 38px); font-weight: 700; line-height: 1.18; margin: 8px 0 16px; color: var(--deep); }
    .reno-article p { font-size: 15.5px; color: #4c5363; line-height: 1.7; margin-bottom: 12px; }

    /* ── Our Promise ─────────────────────────── */
    .promise-section { background: #fcfaf7; padding: 64px 0; }
    .promise-head { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 16px; margin-bottom: 26px; }
    .promise-head h2 { font-size: clamp(28px, 3vw, 42px); font-weight: 700; margin: 0; }
    .promise-item .promise-icon {
      width: 46px; height: 46px; color: var(--primary); margin-bottom: 14px;
    }
    .promise-item .promise-icon svg { width: 100%; height: 100%; fill: none; stroke: currentColor; stroke-width: 1.6; stroke-linecap: round; stroke-linejoin: round; }
    .promise-item h3 { font-size: 14px; font-weight: 700; text-transform: uppercase; letter-spacing: .04em; color: var(--ink); margin-bottom: 8px; }
    .promise-item p { font-size: 14px; color: #5a6072; line-height: 1.6; margin: 0; }

    /* ── Sample Works ────────────────────────── */
    .sample-head { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 16px; margin-bottom: 26px; }
    .sample-grid {
      display: grid; grid-template-columns: repeat(4, 1fr);
      grid-auto-rows: 150px; gap: 10px;
    }
    .sample-grid img { width: 100%; height: 100%; object-fit: cover; border-radius: 6px; display: block; }
    .sample-grid .tall { grid-row: span 2; }
    .sample-grid .wide { grid-column: span 2; }
    .sample-caption { text-align: center; font-size: clamp(20px, 2.2vw, 30px); font-weight: 700; color: var(--deep); margin-top: 30px; }
    @media (max-width: 767px) {
      .sample-grid { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 120px; }
      .sample-grid .wide { grid-column: span 2; }
    }

    /* ── How it works ────────────────────────── */
    .how-section { background: var(--deep); color: #fff; padding: 66px 0; }
    .how-section h2 { font-size: clamp(28px, 3vw, 42px); font-weight: 700; text-align: center; }
    .how-section .how-sub { text-align: center; color: #c8cede; margin-top: 6px; margin-bottom: 40px; font-size: clamp(15px,1.3vw,18px); }
    .how-step { text-align: center; position: relative; }
    .how-num {
      width: 64px; height: 64px; border-radius: 50%;
      border: 2px solid var(--primary); color: #fff;
      display: grid; place-items: center; margin: 0 auto 16px;
      font-size: 22px; font-weight: 700; background: rgba(217,117,95,.16);
    }
    .how-num svg { width: 30px; height: 30px; fill: none; stroke: #ffc72f; stroke-width: 1.7; stroke-linecap: round; stroke-linejoin: round; }
    .how-step h3 { font-size: 18px; font-weight: 600; margin-bottom: 8px; }
    .how-step p { font-size: 14.5px; color: #c2c8d8; line-height: 1.6; }

    /* ── Comparison table ────────────────────── */
    .trust-section { padding: 64px 0; }
    .trust-section h2 { font-size: clamp(26px, 3vw, 40px); font-weight: 800; letter-spacing: .04em; margin-bottom: 30px; }
    .compare-wrap { overflow-x: auto; }
    .compare-table { width: 100%; border-collapse: collapse; min-width: 720px; }
    .compare-table th, .compare-table td { padding: 16px 18px; vertical-align: top; text-align: left; border-bottom: 1px dashed #d9dde6; }
    .compare-table thead th { font-size: 19px; font-weight: 600; border-bottom: 1px solid #d9dde6; }
    .compare-table thead th.brand-col { color: var(--deep); }
    .compare-table .row-label { font-size: 16px; font-weight: 600; letter-spacing: .03em; color: var(--ink); width: 18%; }
    .compare-table td.us { background: #eef6f3; }
    .compare-table li { font-size: 13.5px; color: #4c5363; margin-bottom: 8px; list-style: none; position: relative; padding-left: 22px; line-height: 1.45; }
    .compare-table .us li::before { content: "✓"; position: absolute; left: 0; color: var(--mint); font-weight: 700; }
    .compare-table .them li::before { content: "✓"; position: absolute; left: 0; color: #9aa0ad; font-weight: 700; }
    .compare-table ul { margin: 0; padding: 0; }

    /* ── Book a Consultation ─────────────────── */
    .consult-section { background: linear-gradient(130deg, var(--deep), var(--deep-2)); color: #fff; padding: 70px 0; }
    .consult-section h2 { font-size: clamp(28px, 3vw, 42px); font-weight: 700; }
    .consult-form .form-control, .consult-form .form-select {
      background: transparent; border: 1px solid rgba(255,255,255,.55);
      color: #fff; border-radius: 4px; font-size: 14px; padding: 11px 12px;
    }
    .consult-form .form-control::placeholder { color: rgba(255,255,255,.7); }
    .consult-form .form-select { color: rgba(255,255,255,.85); }
    .consult-form .form-select option { color: #222; }
    .btn-book {
      background: #fff; color: var(--deep); border-radius: 4px;
      font-weight: 600; font-size: 14px; padding: 11px 22px; border: none;
    }
    .btn-book:hover { background: #f0f0f0; }
    .btn-applyjob {
      background: transparent; color: #fff; border: 1px solid rgba(255,255,255,.7);
      border-radius: 999px; font-weight: 600; font-size: 13px; padding: 9px 22px;
    }
    .btn-applyjob:hover { background: rgba(255,255,255,.12); color: #fff; }
    .consult-note { font-size: 12.5px; font-style: italic; color: rgba(255,255,255,.8); margin-top: 10px; }

    /* ── Simple inner pages ──────────────────── */
    .page-hero { background: #fcfaf7; padding: 60px 0; border-bottom: 1px solid var(--line); }
    .page-hero h1 { font-size: clamp(30px, 3.4vw, 46px); font-weight: 700; color: var(--deep); }
