
      /* ── LOCATION PAGE ─────────────────────────────────────────── */

      /* ── Variables / Scaling System (same pattern as other pages) ── */
      :root {
        --animation-fade: 0.1s linear;
        --animation-fast: 0.35s cubic-bezier(0.62, 0.05, 0.01, 0.99);
        --animation-primary: 0.735s cubic-bezier(0.62, 0.05, 0.01, 0.99);
        --size-unit: 16;
        --size-container-ideal: 1920;
        --size-container-min: 992px;
        --size-container-max: 2160px;
        --size-container: clamp(var(--size-container-min), 100vw, var(--size-container-max));
        --size-font: calc(var(--size-container) / (var(--size-container-ideal) / var(--size-unit)));
      }
      @media screen and (max-width: 991px) {
        :root {
          --size-container-ideal: 1384;
          --size-container-min: 768px;
          --size-container-max: 991px;
        }
      }
      @media screen and (max-width: 767px) {
        :root {
          --size-container-ideal: 377;
          --size-container-min: 320px;
          --size-container-max: 767px;
        }
      }

      /* ── TOP HEADER ─────────────────────────────────────────────── */
      .loc-top-header {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 7em 4em 1.5em 4em;
      }
      .loc-stamp-group {
        display: inline-flex;
        align-items: center;
        gap: 14px;
      }
      .loc-stamp-icon { width: 54px; height: auto; object-fit: contain; }
      .loc-stamp-text {
        font-family: Comedik, Arial, sans-serif;
        font-size: 40px;
        line-height: 0.81;
        color: #748370;
        text-transform: uppercase;
      }

      /* ── HERO ───────────────────────────────────────────────────── */
      .loc-hero-section {
        padding: 0 4em 4em 4em;
        position: relative;
      }
      .loc-hero-grid {
        display: flex;
        justify-content: space-between;
        align-items: flex-start;
      }
      .loc-main-heading {
        font-family: 'Schabo Condensed', Arial, sans-serif;
        text-transform: uppercase;
        font-weight: 400;
        margin: 0;
        display: flex;
        flex-direction: column;
        color: #FCFFDB;
      }
      .loc-heading-city {
        font-size: 380px;
        line-height: 0.88;
        display: block;
      }
      .loc-heading-line2 {
        font-size: 145px;
        line-height: 0.9;
        display: flex;
        flex-wrap: wrap;
        align-items: center;
        gap: 0.2em;
      }
      .loc-hero-map-icon {
        width: 1.5em;
        height: auto;
        display: inline-block;
        flex-shrink: 0;
      }
      .loc-heading-line3 {
        font-size: 145px;
        line-height: 0.9;
        display: block;
      }
      .loc-scroll-hint {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 8px;
        color: #B6BA90;
        font-family: Arial, sans-serif;
        font-size: 12px;
        font-weight: 700;
        writing-mode: vertical-rl;
        text-orientation: mixed;
        margin-top: 6em;
      }
      .loc-hero-right { padding-top: 2em; }

      /* ── ABOUT SECTION ──────────────────────────────────────────── */
      .loc-about-section { padding: 4em 0 6em; }
      .loc-about-grid { max-width: 860px; }
      .loc-about-text p {
        font-family: 'Object Sans', Arial, sans-serif;
        font-size: 22px;
        line-height: 1.55;
        color: #FEFEFE;
        margin: 0 0 1.5em;
      }

      /* ── WHY KYA HUA ────────────────────────────────────────────── */
      .loc-why-section { padding: 0 0 6em; }
      .loc-why-header { margin-bottom: 2em; }
      .loc-why-title {
        font-family: Comedik, Arial, sans-serif;
        font-size: 40px;
        color: #E2F533;
        margin: 0;
        font-weight: 400;
      }
      .loc-why-callout-wrap {
        position: relative;
        max-width: 1035px;
      }
      .loc-why-stars {
        position: absolute;
        top: -55px;
        right: -35px;
        width: 120px;
        height: 120px;
        pointer-events: none;
      }
      .loc-why-callout {
        background: #FF6316;
        border-radius: 24px;
        padding: 40px;
      }
      .loc-why-list {
        list-style: none;
        padding: 0;
        margin: 0;
        display: flex;
        flex-direction: column;
        gap: 16px;
      }
      .loc-why-list li {
        font-family: Comedik, Arial, sans-serif;
        font-size: 28px;
        line-height: 1.3;
        color: #fff;
        padding-left: 28px;
        position: relative;
      }
      .loc-why-list li::before {
        content: "–";
        position: absolute;
        left: 0;
        color: rgba(255,255,255,0.7);
      }
      .loc-why-exclaim {
        position: absolute;
        bottom: -80px;
        right: 40px;
        width: 100px;
        height: auto;
        opacity: 0.9;
      }

      /* ── INDUSTRIES ─────────────────────────────────────────────── */
      .loc-industries-section { padding: 5em 0 5em; }
      .loc-industries-header { margin-bottom: 2em; }
      .loc-industries-title {
        font-family: Comedik, Arial, sans-serif;
        font-size: 33px;
        color: #E2F533;
        margin: 0 0 0.5em;
        font-weight: 400;
      }
      .loc-industries-underline {
        width: 92px; height: 3px;
        background: #748370;
        border-radius: 2px;
      }
      .loc-industries-tags {
        display: flex;
        flex-wrap: wrap;
        gap: 18px;
        margin-bottom: 4em;
      }
      .loc-industry-tag {
        background: #EEE0C6;
        border-radius: 60px;
        padding: 12px 32px;
        display: inline-flex;
        align-items: center;
      }
      .loc-industry-tag span {
        font-family: Comedik, Arial, sans-serif;
        font-size: 29px;
        color: #552200;
        text-transform: uppercase;
        line-height: 1;
      }
      .loc-industries-cta-row {
        display: flex;
        align-items: flex-end;
        justify-content: space-between;
        gap: 3em;
      }
      .loc-industries-desc {
        font-family: Comedik, Arial, sans-serif;
        font-size: 40px;
        line-height: 1.08;
        color: #FF6316;
        margin: 0;
        max-width: 470px;
      }
      .loc-start-btn {
        display: inline-flex;
        align-items: center;
        gap: 14px;
        background: #EEE0C6;
        border-radius: 60px;
        padding: 14px 28px;
        text-decoration: none;
        transition: transform 0.25s var(--animation-fast), box-shadow 0.25s var(--animation-fast);
        white-space: nowrap;
      }
      .loc-start-btn span {
        font-family: Comedik, Arial, sans-serif;
        font-size: 24px;
        color: #552200;
        text-transform: uppercase;
      }
      .loc-start-btn:hover { transform: translateY(-3px); box-shadow: 0 10px 28px rgba(0,0,0,0.35); }

      /* ── PROCESS ────────────────────────────────────────────────── */
      .loc-process-section { padding: 2em 0 6em; }
      .loc-process-title {
        font-family: Comedik, Arial, sans-serif;
        font-size: 40px;
        line-height: 1.1;
        color: #FEFEFE;
        margin: 0 0 2em;
        max-width: 530px;
        font-weight: 400;
      }
      .loc-process-list { display: flex; flex-direction: column; }
      .loc-process-row {
        border-top: 2px solid rgba(255,255,255,0.12);
        padding: 32px 0;
      }
      .loc-process-row:last-child { border-bottom: 2px solid rgba(255,255,255,0.12); }
      .loc-process-divider { display: none; }
      .loc-process-inner {
        display: grid;
        grid-template-columns: 240px 1fr;
        gap: 2em;
        align-items: start;
      }
      .loc-process-tag {
        font-family: Comedik, Arial, sans-serif;
        font-size: 40px;
        color: #FF6316;
        line-height: 1.08;
        font-weight: 400;
      }
      .loc-process-desc {
        font-family: 'Object Sans', Arial, sans-serif;
        font-size: 20px;
        line-height: 1.1;
        color: #FCFFDB;
        margin: 0;
        padding-top: 6px;
      }

      /* ── TESTIMONIALS ───────────────────────────────────────────── */
      .loc-testimonials-section { padding: 0 0 6em; }
      .loc-testimonials-inner {
        background: transparent;
        padding: 120px 112px;
        display: flex;
        flex-direction: column;
        gap: 80px;
      }
      .loc-testimonials-title {
        font-family: 'Schabo Condensed', Arial, sans-serif;
        font-size: 96px;
        font-weight: 400;
        line-height: 1;
        text-transform: uppercase;
        color: #FCFFDB;
        margin: 0;
        max-width: 840px;
      }
      .loc-testimonials-grid {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 32px;
      }
      .loc-testimonial-card {
        background: #1C1C1A;
        border: 2px solid #E2F533;
        border-radius: 24px;
        padding: 40px;
        display: flex;
        flex-direction: column;
        gap: 32px;
      }
      .loc-testimonial-quote {
        font-family: Comedik, Arial, sans-serif;
        font-size: 28px;
        line-height: 1.3;
        color: #fff;
        margin: 0;
        flex: 1;
      }
      .loc-testimonial-author {
        display: flex;
        flex-direction: column;
        gap: 4px;
      }
      .loc-testimonial-name {
        font-family: Inter, Arial, sans-serif;
        font-size: 20px;
        font-weight: 800;
        color: #E2F533;
      }
      .loc-testimonial-role {
        font-family: Inter, Arial, sans-serif;
        font-size: 16px;
        color: #748370;
      }

      /* ── ALSO BUILDING ELSEWHERE ────────────────────────────────── */
      .loc-elsewhere-section { padding: 0 0 6em; }
      .loc-elsewhere-grid {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 4em;
        align-items: center;
      }
      .loc-elsewhere-left { position: relative; }
      .loc-elsewhere-title {
        font-family: 'Schabo Condensed', Arial, sans-serif;
        font-size: 120px;
        font-weight: 400;
        text-transform: uppercase;
        letter-spacing: 0.03em;
        line-height: 1.08;
        color: #FCFFDB;
        margin: 0;
      }
      .loc-elsewhere-exclaim {
        position: absolute;
        bottom: -20px;
        right: 10px;
        width: 100px;
        height: auto;
        opacity: 0.85;
      }
      .loc-elsewhere-right {
        display: flex;
        flex-direction: column;
        gap: 2em;
      }
      .loc-elsewhere-desc {
        font-family: Comedik, Arial, sans-serif;
        font-size: 40px;
        line-height: 1.08;
        color: #FF6316;
        margin: 0;
      }
      .loc-city-tags {
        display: flex;
        flex-wrap: wrap;
        gap: 16px;
      }
      .loc-city-tag {
        background: #EEE0C6;
        border-radius: 60px;
        padding: 12px 36px;
        display: inline-flex;
        align-items: center;
      }
      .loc-city-tag span {
        font-family: Comedik, Arial, sans-serif;
        font-size: 24px;
        color: #552200;
        text-transform: uppercase;
      }

      /* ── FAQ ────────────────────────────────────────────────────── */
      .loc-faq-section { padding: 0 0 8em; }
      .loc-faq-inner {
        position: relative;
        max-width: 980px;
        margin: 0 auto;
      }
      .loc-faq-bg {
        width: 100%;
        height: auto;
        display: block;
        opacity: 0.85;
      }
      .loc-faq-content {
        position: absolute;
        inset: 0;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        padding: 4em 5em;
        text-align: center;
      }
      .loc-faq-label {
        font-family: Comedik, Arial, sans-serif;
        font-size: 30px;
        color: #141D11;
        margin: 0 0 1em;
        text-transform: uppercase;
        font-weight: 400;
      }
      .loc-faq-q {
        font-family: Comedik, Arial, sans-serif;
        font-size: 24px;
        line-height: 1.4;
        color: #FF6316;
        margin: 0 0 1em;
        font-weight: 400;
      }
      .loc-faq-a {
        font-family: Comedik, Arial, sans-serif;
        font-size: 20px;
        line-height: 1.4;
        color: #292929;
        margin: 0;
        font-weight: 400;
      }

      /* ── RESPONSIVE ─────────────────────────────────────────────── */
      @media screen and (max-width: 991px) {
        .loc-top-header { padding: 6em 2em 1.5em; }
        .loc-hero-section { padding: 0 2em 4em; }
        .loc-heading-city { font-size: 250px; }
        .loc-heading-line2, .loc-heading-line3 { font-size: 100px; }
        .loc-process-inner { grid-template-columns: 200px 1fr; }
        .loc-testimonials-grid { grid-template-columns: 1fr; gap: 24px; }
        .loc-testimonials-inner { padding: 60px 40px; }
        .loc-testimonials-title { font-size: 64px; }
        .loc-elsewhere-grid { grid-template-columns: 1fr; gap: 3em; }
        .loc-elsewhere-title { font-size: 80px; }
        .loc-industries-cta-row { flex-direction: column; align-items: flex-start; }
      }

      @media screen and (max-width: 767px) {
        .loc-top-header {
          flex-direction: column;
          align-items: flex-start;
          gap: 1em;
          padding: 5em 1.5em 1em;
        }
        .loc-hero-section { padding: 0 1.5em 3em; }
        .loc-heading-city { font-size: 160px; }
        .loc-heading-line2, .loc-heading-line3 { font-size: 65px; }
        .loc-scroll-hint { display: none; }
        .loc-about-text p { font-size: 18px; }
        .loc-why-list li { font-size: 22px; }
        .loc-why-title { font-size: 30px; }
        .loc-testimonials-inner { padding: 40px 24px; }
        .loc-testimonials-title { font-size: 44px; }
        .loc-testimonials-grid { grid-template-columns: 1fr; }
        .loc-process-inner { grid-template-columns: 1fr; gap: 0.5em; }
        .loc-process-tag { font-size: 30px; }
        .loc-elsewhere-title { font-size: 60px; }
        .loc-industries-desc { font-size: 28px; }
        .loc-elsewhere-desc { font-size: 28px; }
        .loc-loc-faq-content { padding: 2em 2em; }
        .loc-faq-q, .loc-faq-a { font-size: 16px; }
      }
