:root {
      --navy:       #1B2E5E;
      --navy-dark:  #0F1D3E;
      --navy-mid:   #243A74;
      --navy-light: #2E4A8F;
      --steel:      #4A6FA5;
      --steel-light:#6B8FC4;
      --silver:     #B8C8E0;
      --silver-pale:#E8EFF8;
      --gold:       #C9A052;
      --gold-light: #E8C47A;
      --gold-pale:  #F5EDD8;
      --white:      #FFFFFF;
      --off-white:  #F7F9FC;
      --cream:      #F0F4F9;
      --dark:       #0D1117;
      --gray:       #6B7A8D;
      --gray-light: #DDE5EF;
      --text:       #1A2332;
    }

    * { box-sizing: border-box; margin: 0; padding: 0; }
    html { scroll-behavior: smooth; }

    body {
      font-family: 'DM Sans', sans-serif;
      color: var(--text);
      background: var(--white);
      overflow-x: hidden;
      max-width: 100%;
      width: 100%;
    }

    html {
      max-width: 100%;
      overflow-x: hidden;
    }

    h1, h2, h3, h4, h5, .display-serif {
      font-family: 'Playfair Display', serif;
    }

    /* ══════════ HERO ══════════ */
    .hero-slide {
      min-height: 92vh;
      background: var(--navy-dark);
      display: flex;
      align-items: center;
      justify-content: center;
      position: relative;
      overflow: hidden;
    }
    .hero-bg {
      position: absolute;
      inset: 0;
      background-size: cover;
      background-position: center;
      opacity: 0.45;
    }
    .hero-overlay {
      position: absolute;
      inset: 0;
      z-index: 1;
    }
    .hero-content {
      position: relative; z-index: 2;
      text-align: center; color: var(--white);
      max-width: 860px; padding: 2rem;
    }
    .hero-eyebrow {
      font-family: 'DM Sans', sans-serif;
      font-size: 0.68rem;
      letter-spacing: 5px;
      text-transform: uppercase;
      color: var(--silver);
      font-weight: 400;
      margin-bottom: 1.4rem;
      display: block;
    }
    .hero-title {
      font-family: 'Playfair Display', serif;
      font-size: clamp(2.4rem, 6vw, 5rem);
      font-weight: 400;
      line-height: 1.1;
      margin-bottom: 1.4rem;
      letter-spacing: -0.5px;
    }
    .hero-title em { font-style: italic; color: var(--gold-light); }
    .hero-divider { width: 50px; height: 1px; background: var(--gold); margin: 0 auto 1.4rem; }
    .hero-sub {
      font-family: 'DM Sans', sans-serif;
      font-size: 0.93rem; font-weight: 300;
      letter-spacing: 0.8px; opacity: 0.85; margin-bottom: 2.5rem;
    }
    .btn-hero {
      display: inline-block;
      border: 1px solid rgba(255,255,255,0.6);
      color: var(--white);
      font-family: 'DM Sans', sans-serif;
      font-size: 0.7rem; letter-spacing: 2.5px;
      text-transform: uppercase;
      padding: 0.85rem 2.4rem; margin: 0.4rem;
      text-decoration: none; transition: all 0.3s;
      font-weight: 500;
    }
    .btn-hero:hover { background: rgba(255,255,255,0.15); color: var(--white); border-color: var(--white); }
    .btn-hero-solid {
      background: var(--navy); color: var(--white) !important;
      border-color: var(--navy);
    }
    .btn-hero-solid:hover { background: var(--navy-mid); border-color: var(--navy-mid); }

    .carousel-indicators [data-bs-target] {
      width: 26px; height: 2px;
      background: rgba(255,255,255,0.35); border: none;
    }
    .carousel-indicators .active { background: var(--gold); width: 44px; }
    .carousel-control-prev,
    .carousel-control-next {
      width: 46px; height: 46px;
      background: rgba(27,46,94,0.7);
      top: 50%; transform: translateY(-50%);
      opacity: 1; transition: background 0.2s;
    }
    .carousel-control-prev { left: 20px; }
    .carousel-control-next { right: 20px; }
    .carousel-control-prev:hover,
    .carousel-control-next:hover { background: var(--navy); }

    @media (max-width: 768px) {
      .hero-slide { min-height: 72vh; }
    }

    /* ══════════ LOCATION BAR ══════════ */
    #locationBar {
      background: var(--navy);
      padding: 0.85rem 0;
      border-bottom: 2px solid var(--navy-mid);
      overflow-x: hidden;
      width: 100%;
    }
    #locationBar .container-loc {
      display: flex;
      flex-wrap: wrap;
      width: 100%;
      max-width: 1200px;
      margin: 0 auto;
      padding: 0 15px;
    }
    .loc-item {
      display: flex; 
      align-items: center; 
      gap: 0.6rem;
      color: rgba(255,255,255,0.82);
      font-size: 0.76rem; 
      letter-spacing: 0.5px;
      padding: 0.3rem 1.4rem;
      border-right: 1px solid rgba(255,255,255,0.12);
      flex: 1 1 auto;
      min-width: 250px;
    }
    .loc-item:last-child { border-right: none; }
    .loc-item i { color: var(--gold); font-size: 1rem; flex-shrink: 0; }
    .loc-item strong { color: var(--white); }
    .loc-item span { 
      word-wrap: break-word; 
      overflow-wrap: break-word;
      min-width: 0;
    }

    @media (max-width: 991px) {
      .loc-item {
        flex: 1 1 50%;
        min-width: 200px;
      }
    }

    @media (max-width: 767px) {
      .loc-item { 
        border-right: none; 
        border-bottom: 1px solid rgba(255,255,255,0.08); 
        padding: 0.6rem 1rem; 
        width: 100%; 
        flex: 0 0 100% !important; 
        font-size: 0.72rem;
        min-width: auto;
      }
      .loc-item:last-child { border-bottom: none; }
      #locationBar .container-loc { 
        padding: 0 12px;
      }
    }

    /* ══════════ SECTION COMMON ══════════ */
    section {
      overflow-x: hidden;
    }
    .section-eyebrow {
      font-family: 'DM Sans', sans-serif;
      font-size: 0.62rem; letter-spacing: 4.5px;
      text-transform: uppercase;
      color: var(--steel); font-weight: 600;
      margin-bottom: 0.7rem; display: block;
    }
    .section-title {
      font-size: clamp(1.8rem, 3.5vw, 3rem);
      color: var(--navy-dark); margin-bottom: 0.8rem;
      font-weight: 500;
    }
    .section-divider {
      width: 44px; height: 2px;
      background: var(--navy);
      margin-bottom: 1.2rem;
    }
    .section-divider.center { margin-left: auto; margin-right: auto; }
    .section-lead { color: var(--gray); font-size: 0.94rem; line-height: 1.9; }

    .btn-outline-navy {
      border: 1.5px solid var(--navy); color: var(--navy);
      font-family: 'DM Sans', sans-serif;
      font-size: 0.7rem; letter-spacing: 2px;
      text-transform: uppercase; font-weight: 600;
      padding: 0.75rem 2rem;
      text-decoration: none; display: inline-block;
      transition: all 0.22s; background: transparent;
      cursor: pointer;
    }
    .btn-outline-navy:hover { background: var(--navy); color: var(--white); }

    .btn-solid-navy {
      background: var(--navy); color: var(--white);
      font-family: 'DM Sans', sans-serif;
      font-size: 0.7rem; letter-spacing: 2px;
      text-transform: uppercase; font-weight: 600;
      padding: 0.75rem 2rem;
      text-decoration: none; display: inline-block;
      transition: all 0.22s; border: none; cursor: pointer;
    }
    .btn-solid-navy:hover { background: var(--navy-dark); color: var(--white); }

    .btn-solid-gold {
      background: var(--gold); color: var(--dark);
      font-family: 'DM Sans', sans-serif;
      font-size: 0.7rem; letter-spacing: 2px;
      text-transform: uppercase; font-weight: 600;
      padding: 0.75rem 2rem;
      text-decoration: none; display: inline-block;
      transition: all 0.22s; border: none; cursor: pointer;
    }
    .btn-solid-gold:hover { background: var(--gold-light); color: var(--dark); }

    /* ══════════ ABOUT ══════════ */
    #about { background: var(--off-white); padding: 5.5rem 0; }
    .about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; align-items: center; }
    .about-img-wrap { position: relative; }
    .about-img-wrap::before {
      content: ''; position: absolute;
      top: -12px; left: -12px;
      width: 60%; height: 65%;
      border: 2px solid var(--navy); z-index: 0;
    }
    .about-img-wrap img {
      position: relative; z-index: 1;
      width: 100%; height: 400px; object-fit: cover;
    }
    .stat-row { display: flex; gap: 2rem; flex-wrap: wrap; margin-top: 2.5rem; }
    .stat-item { text-align: center; }
    .stat-num {
      font-family: 'Playfair Display', serif;
      font-size: 2.5rem; font-weight: 600;
      color: var(--navy); line-height: 1;
    }
    .stat-label { font-size: 0.63rem; letter-spacing: 2px; text-transform: uppercase; color: var(--gray); margin-top: 4px; }

    @media (max-width: 768px) {
      .about-grid { grid-template-columns: 1fr; }
      .about-img-wrap::before { display: none; }
      .about-img-wrap img { height: 260px; }
      .stat-row { justify-content: center; }
    }

    /* ══════════ LOCATION ADVANTAGE ══════════ */
    #location { padding: 5.5rem 0; background: var(--white); }
    .location-card {
      border: 1px solid var(--gray-light);
      padding: 2rem 1.5rem;
      transition: all 0.3s;
      height: 100%;
      position: relative;
      background: var(--white);
    }
    .location-card:hover {
      border-color: var(--navy);
      transform: translateY(-6px);
      box-shadow: 0 14px 35px rgba(27,46,94,0.12);
    }
    .location-icon { font-size: 2rem; color: var(--navy); margin-bottom: 1rem; display: block; }
    .location-card h5 {
      font-family: 'Playfair Display', serif;
      font-size: 1.15rem; color: var(--navy-dark); margin-bottom: 0.5rem;
    }
    .location-card p { font-size: 0.84rem; color: var(--gray); line-height: 1.85; margin: 0; }

    /* ══════════ PROPERTIES SECTION WITH FILTER ══════════ */
    #properties { padding: 5.5rem 0; background: var(--cream); }

    .filter-tabs {
      display: flex; gap: 0.5rem;
      flex-wrap: wrap;
      justify-content: center;
      margin-bottom: 2.5rem;
    }
    .filter-btn {
      font-family: 'DM Sans', sans-serif;
      font-size: 0.72rem;
      letter-spacing: 1.5px;
      text-transform: uppercase;
      font-weight: 600;
      padding: 0.6rem 1.5rem;
      border: 1.5px solid var(--gray-light);
      background: var(--white);
      color: var(--gray);
      cursor: pointer;
      transition: all 0.22s;
      border-radius: 0;
    }
    .filter-btn:hover { border-color: var(--navy); color: var(--navy); }
    .filter-btn.active {
      background: var(--navy);
      border-color: var(--navy);
      color: var(--white);
    }

    .property-item { transition: opacity 0.3s, transform 0.3s; }
    .property-item.hidden { display: none !important; }

    .product-card {
      background: var(--white);
      overflow: hidden;
      height: 100%;
      transition: transform 0.3s, box-shadow 0.3s;
      border: 1px solid var(--gray-light);
      display: flex;
      flex-direction: column;
    }
    .product-card:hover {
      transform: translateY(-8px);
      box-shadow: 0 20px 50px rgba(27,46,94,0.15);
    }
    .product-img {
      height: 240px;
      overflow: hidden;
      position: relative;
      flex-shrink: 0;
    }
    .product-img img {
      width: 100%; height: 100%;
      object-fit: cover;
      transition: transform 0.5s;
    }
    .product-img .img-placeholder {
      width: 100%; height: 100%;
      display: flex; align-items: center;
      justify-content: center; flex-direction: column;
      gap: 0.5rem; color: rgba(255,255,255,0.55);
    }
    .product-img .img-placeholder i { font-size: 2.5rem; color: var(--gold); }
    .product-img .img-placeholder span {
      font-family: 'Playfair Display', serif;
      font-size: 0.85rem;
    }
    .product-card:hover .product-img img { transform: scale(1.06); }
    .product-badge {
      position: absolute; top: 14px; left: 0;
      background: var(--navy); color: var(--white);
      font-family: 'DM Sans', sans-serif;
      font-size: 0.58rem; letter-spacing: 1.8px;
      text-transform: uppercase; padding: 5px 14px; font-weight: 600;
    }
    .product-badge.gold-badge { background: var(--gold); color: var(--dark); }
    .product-body {
      padding: 1.6rem;
      display: flex;
      flex-direction: column;
      flex: 1;
    }
    .product-name {
      font-family: 'Playfair Display', serif;
      font-size: 1.4rem; color: var(--navy-dark);
      margin-bottom: 0.3rem;
    }
    .product-sub {
      font-size: 0.65rem; letter-spacing: 2px;
      text-transform: uppercase; color: var(--steel);
      margin-bottom: 0.8rem;
      font-family: 'DM Sans', sans-serif;
    }
    .product-desc {
      font-size: 0.84rem; color: var(--gray);
      line-height: 1.8; margin-bottom: 1.2rem; flex: 1;
    }
    .spec-grid {
      display: grid; grid-template-columns: 1fr 1fr;
      gap: 0.6rem; margin-bottom: 1.2rem;
    }
    .spec-item {
      display: flex; align-items: center;
      gap: 8px; font-size: 0.77rem; color: #4A5568;
    }
    .spec-item i { color: var(--navy); font-size: 0.82rem; flex-shrink: 0; }
    .price-tag {
      font-family: 'Playfair Display', serif;
      font-size: 1.9rem; color: var(--navy);
      font-weight: 600; line-height: 1;
    }
    .price-note {
      font-family: 'DM Sans', sans-serif;
      font-size: 0.67rem; color: var(--gray); letter-spacing: 0.5px;
    }
    .promo-strip {
      background: var(--silver-pale);
      border-left: 3px solid var(--navy);
      padding: 0.8rem 1rem;
      margin: 1rem 0;
      font-size: 0.79rem;
      color: var(--navy-dark);
    }
    .promo-strip i { color: var(--navy); margin-right: 5px; }

    .btn-inquire-card {
      background: var(--navy); color: var(--white); border: none;
      font-family: 'DM Sans', sans-serif;
      font-size: 0.67rem; letter-spacing: 2px;
      text-transform: uppercase; font-weight: 600;
      padding: 0.75rem 1.5rem;
      width: 100%; transition: background 0.2s;
      cursor: pointer; margin-top: auto;
    }
    .btn-inquire-card:hover { background: var(--navy-dark); color: var(--white); }

    /* ══════════ COMMERCIAL ══════════ */
    #commercial { padding: 5.5rem 0; background: var(--navy-dark); position: relative; overflow: hidden; }
    #commercial::before {
      content: '';
      position: absolute; inset: 0;
      background: repeating-linear-gradient(45deg, transparent, transparent 60px, rgba(74,111,165,0.04) 60px, rgba(74,111,165,0.04) 120px);
    }
    #commercial .section-title { color: var(--white); }
    #commercial .section-eyebrow { color: var(--silver-light, #a8c0e0); }

    .comm-card {
      background: rgba(255,255,255,0.05);
      border: 1px solid rgba(255,255,255,0.1);
      overflow: hidden;
      transition: all 0.3s;
      height: 100%;
      display: flex;
      flex-direction: column;
    }
    .comm-card:hover {
      background: rgba(74,111,165,0.15);
      border-color: var(--steel-light);
      transform: translateY(-5px);
    }
    .comm-card-img {
      height: 200px; overflow: hidden;
      position: relative;
      display: flex; align-items: center;
      justify-content: center;
      flex-shrink: 0;
    }
    .comm-img-placeholder { color: rgba(255,255,255,0.28); text-align: center; }
    .comm-img-placeholder i { font-size: 2.8rem; display: block; margin-bottom: 0.5rem; }
    .comm-card-body { padding: 1.5rem; flex: 1; display: flex; flex-direction: column; }
    .comm-title {
      font-family: 'Playfair Display', serif;
      font-size: 1.3rem; color: var(--white);
      margin-bottom: 0.3rem;
    }
    .comm-type {
      font-size: 0.6rem; letter-spacing: 2px;
      text-transform: uppercase; color: var(--gold);
      margin-bottom: 0.7rem; font-family: 'DM Sans', sans-serif;
    }
    .comm-desc {
      font-size: 0.82rem; color: rgba(255,255,255,0.6);
      line-height: 1.75; margin-bottom: 1rem; flex: 1;
    }
    .comm-price {
      font-family: 'Playfair Display', serif;
      font-size: 1.55rem; color: var(--gold); font-weight: 500;
    }
    .comm-price-note {
      font-family: 'DM Sans', sans-serif;
      font-size: 0.63rem; color: rgba(255,255,255,0.45); letter-spacing: 0.5px;
    }
    .btn-inquire-comm {
      background: var(--navy); color: var(--white); border: none;
      font-family: 'DM Sans', sans-serif;
      font-size: 0.66rem; letter-spacing: 2px;
      text-transform: uppercase; font-weight: 600;
      padding: 0.65rem 1.4rem;
      width: 100%; transition: background 0.2s;
      cursor: pointer; margin-top: auto;
    }
    .btn-inquire-comm:hover { background: var(--navy-mid); }

    /* ══════════ IT PARK ══════════ */
    #itpark { padding: 5.5rem 0; background: var(--white); }
    .itpark-feature {
      display: flex; align-items: flex-start; gap: 1rem;
      padding: 1.2rem; border-left: 2px solid var(--navy);
      margin-bottom: 1rem; background: var(--off-white);
      transition: all 0.25s;
    }
    .itpark-feature:hover { background: var(--silver-pale); border-left-color: var(--steel); }
    .itpark-feature i { font-size: 1.4rem; color: var(--navy); flex-shrink: 0; margin-top: 2px; }
    .itpark-feature h6 {
      font-family: 'Playfair Display', serif;
      font-size: 1.05rem; color: var(--navy-dark); margin-bottom: 0.2rem;
    }
    .itpark-feature p { font-size: 0.81rem; color: var(--gray); margin: 0; line-height: 1.7; }

    /* ══════════ VIRTUAL TOURS ══════════ */
    #tours { padding: 5.5rem 0; background: var(--navy-dark); }
    #tours .section-eyebrow { color: var(--silver); }
    #tours .section-title    { color: var(--white); }
    #tours .section-divider  { background: var(--gold); }
    #tours .section-lead     { color: rgba(255,255,255,0.6); }

    /* Tab bar */
    .tour-tabs {
      display: flex;
      gap: 0;
      flex-wrap: wrap;
      border-bottom: 1px solid rgba(255,255,255,0.12);
      margin-bottom: 2rem;
    }
    .tour-tab-btn {
      font-family: 'DM Sans', sans-serif;
      font-size: 0.7rem;
      letter-spacing: 1.5px;
      text-transform: uppercase;
      font-weight: 500;
      padding: 0.75rem 1.4rem;
      border: none;
      background: transparent;
      color: rgba(255,255,255,0.5);
      cursor: pointer;
      transition: all 0.22s;
      border-bottom: 2px solid transparent;
      margin-bottom: -1px;
    }
    .tour-tab-btn:hover   { color: rgba(255,255,255,0.85); }
    .tour-tab-btn.active  { color: var(--white); border-bottom-color: var(--gold); }

    /* Pane visibility */
    .tour-pane        { display: none; }
    .tour-pane.active { display: block; }

    /* ── RESPONSIVE IFRAME WRAPPER ──────────────────────────────
       Phone  (< 600px)  → fixed px height  – full viewer, no squish
       Tablet (600–1199) → 62% ratio trick  – scales naturally
       Desktop (≥ 1200)  → fixed 680px      – big immersive view
    ──────────────────────────────────────────────────────────── */
    .tour-iframe-wrap {
      position: relative;
      width: 100%;
      overflow: hidden;
      background: var(--navy-dark);
      /* default / tablet fallback */
      padding-bottom: 62%;
      height: 0;
    }
    .tour-iframe-wrap iframe {
      position: absolute;
      top: 0; left: 0;
      width: 100%; height: 100%;
      border: none;
      touch-action: pan-x pan-y;
      -webkit-overflow-scrolling: touch;
    }

    /* Very small phones */
    @media (max-width: 400px) {
      .tour-iframe-wrap {
        padding-bottom: 0;
        height: 360px;
      }
      .tour-tab-btn {
        font-size: 0.58rem;
        padding: 0.55rem 0.7rem;
        letter-spacing: 0.6px;
        flex: 1 1 auto;
        text-align: center;
      }
    }

    /* Standard phones */
    @media (min-width: 401px) and (max-width: 599px) {
      .tour-iframe-wrap {
        padding-bottom: 0;
        height: 420px;
      }
      .tour-tab-btn {
        font-size: 0.62rem;
        padding: 0.6rem 0.9rem;
        letter-spacing: 0.8px;
        flex: 1 1 auto;
        text-align: center;
      }
    }

    /* Tablet — ratio trick stays active, clamp max */
    @media (min-width: 600px) and (max-width: 1199px) {
      .tour-iframe-wrap {
        padding-bottom: 62%;
        height: 0;
        max-height: 600px;
      }
    }

    /* Desktop */
    @media (min-width: 1200px) {
      .tour-iframe-wrap {
        padding-bottom: 0;
        height: 680px;
      }
    }

    /* Caption line below viewer */
    .tour-caption {
      color: rgba(255,255,255,0.5);
      font-size: 0.82rem;
      text-align: center;
      margin-top: 0.75rem;
      font-family: 'DM Sans', sans-serif;
      letter-spacing: 0.5px;
    }

    /* ══════════ GREEN ══════════ */
    #green { padding: 5.5rem 0; background: var(--off-white); }
    .green-feature-item {
      display: flex; align-items: center; gap: 1rem;
      padding: 0.9rem 1rem;
      border-bottom: 1px solid var(--gray-light);
      transition: background 0.2s;
    }
    .green-feature-item:hover { background: var(--silver-pale); }
    .green-feature-item:last-child { border-bottom: none; }
    .green-num {
      font-family: 'Playfair Display', serif;
      font-size: 1.5rem; color: var(--navy);
      font-weight: 600; min-width: 36px; line-height: 1;
    }
    .green-feature-item p { font-size: 0.85rem; color: #444; margin: 0; line-height: 1.6; }

    /* ══════════ COMPLETED PROJECTS ══════════ */
    #completed { padding: 5.5rem 0; background: var(--white); }
    .completed-card {
      position: relative; overflow: hidden;
      height: 240px;
      background: var(--navy-mid); cursor: pointer;
    }
    .completed-card .cc-overlay {
      position: absolute; inset: 0;
      background: linear-gradient(to top, rgba(11,19,42,0.92) 0%, rgba(11,19,42,0.1) 60%);
      transition: background 0.3s;
    }
    .completed-card:hover .cc-overlay {
      background: linear-gradient(to top, rgba(27,46,94,0.95) 0%, rgba(27,46,94,0.3) 60%);
    }
    .cc-content { position: absolute; bottom: 0; left: 0; right: 0; padding: 1.5rem; }
    .cc-name { font-family: 'Playfair Display', serif; font-size: 1.2rem; color: var(--white); margin-bottom: 2px; }
    .cc-tag { font-family: 'DM Sans', sans-serif; font-size: 0.58rem; letter-spacing: 2px; text-transform: uppercase; color: var(--silver); }
    .cc-sold {
      display: inline-block; background: var(--gold);
      color: var(--dark); font-size: 0.54rem;
      letter-spacing: 2px; text-transform: uppercase;
      padding: 2px 8px; margin-top: 5px;
      font-family: 'DM Sans', sans-serif; font-weight: 600;
    }

    /* ══════════════════════ CONTACT — NAVY DARK BACKGROUND ══════════════════════ */
    .contact-section {
      background: var(--navy-dark);
      padding: 5.5rem 0;
    }

    /* Section header adjustments for dark bg */
    .contact-section .section-eyebrow {
      color: var(--steel-light);
    }
    .contact-section .section-title {
      color: var(--white);
    }
    .divider-line {
      width: 50px; height: 2px;
      background: var(--gold);
      margin-bottom: 1.2rem;
    }
    .contact-section .section-description {
      color: rgba(255, 255, 255, 0.65);
    }

    /* Card stays white so the form is readable */
    .contact-form-wrap {
      background: var(--white);
      border: 1px solid rgba(255,255,255,0.08);
      border-radius: 16px;
      overflow: hidden;
      box-shadow: 0 24px 70px rgba(0, 0, 0, 0.35);
    }

    /* LEFT SIDEBAR */
    .contact-sidebar {
      background: var(--navy);
      padding: 2.5rem 2rem;
      height: 100%;
      display: flex;
      flex-direction: column;
    }

    .contact-sidebar-brand {
      display: flex;
      align-items: center;
      gap: 1rem;
      margin-bottom: 1.5rem;
    }

    .cs-logo-mark {
      width: 34px;
      height: 44px;
      position: relative;
      flex-shrink: 0;
    }
    .cs-logo-bar {
      position: absolute;
      top: 0; left: 6px;
      width: 2px; height: 100%;
      background: linear-gradient(to bottom, rgba(255,255,255,0.9), rgba(255,255,255,0.4));
    }
    .cs-logo-arc {
      position: absolute;
      top: 4px; left: 6px;
      width: 18px; height: 18px;
      border: 2px solid rgba(255,255,255,0.8);
      border-radius: 0 50% 50% 0;
    }

    .cs-brand-name {
      font-family: 'Playfair Display', serif;
      font-size: 1.05rem;
      font-weight: 600;
      color: var(--white);
      line-height: 1.2;
    }
    .cs-brand-name span { font-weight: 400; }
    .cs-brand-sub {
      font-size: 0.56rem;
      letter-spacing: 2.5px;
      text-transform: uppercase;
      color: var(--steel-light);
      margin-top: 4px;
      display: block;
    }

    .cs-tagline {
      font-family: 'Playfair Display', serif;
      font-size: 0.88rem;
      font-style: italic;
      color: rgba(255,255,255,0.65);
      line-height: 1.7;
      margin-bottom: 1.5rem;
    }

    .cs-divider {
      width: 100%;
      height: 1px;
      background: rgba(255,255,255,0.1);
      margin: 1.2rem 0;
    }

    /* Sidebar info items */
    .contact-sidebar .contact-info-item {
      display: flex;
      gap: 14px;
      align-items: flex-start;
      margin-bottom: 1.1rem;
    }

    .contact-sidebar .contact-info-icon {
      width: 38px;
      height: 38px;
      min-width: 38px;
      background: rgba(255,255,255,0.08);
      border: 1px solid rgba(255,255,255,0.12);
      border-radius: 8px;
      display: flex;
      align-items: center;
      justify-content: center;
      color: var(--gold);
      font-size: 0.9rem;
    }

    .contact-sidebar .contact-info-item .label {
      font-size: 0.6rem;
      text-transform: uppercase;
      letter-spacing: 2px;
      color: var(--steel-light);
      font-weight: 600;
      margin-bottom: 3px;
    }

    .contact-sidebar .contact-info-item .val {
      color: rgba(255,255,255,0.85);
      font-size: 0.84rem;
      font-weight: 400;
      line-height: 1.5;
    }

    .contact-sidebar .contact-info-item a {
      color: rgba(255,255,255,0.85);
      text-decoration: none;
      transition: color 0.2s;
    }
    .contact-sidebar .contact-info-item a:hover { color: var(--gold); }

    /* Tripping highlight in sidebar */
    .cs-trip-highlight {
      display: flex;
      align-items: flex-start;
      gap: 1rem;
      background: rgba(201,160,82,0.12);
      border: 1px solid rgba(201,160,82,0.3);
      border-left: 3px solid var(--gold);
      padding: 1rem;
      margin-top: auto;
    }
    .cs-trip-highlight i {
      color: var(--gold);
      font-size: 1.3rem;
      flex-shrink: 0;
      margin-top: 2px;
    }
    .cs-trip-title {
      font-family: 'Playfair Display', serif;
      font-size: 0.95rem;
      color: var(--white);
      margin-bottom: 0.3rem;
    }
    .cs-trip-highlight p {
      font-size: 0.77rem;
      color: rgba(255,255,255,0.6);
      line-height: 1.6;
      margin: 0;
    }

    /* RIGHT FORM BODY */
    .contact-form-body {
      padding: 2.5rem 2rem;
    }

    .cfb-header {
      margin-bottom: 1.8rem;
      padding-bottom: 1.2rem;
      border-bottom: 1px solid var(--gray-light);
    }
    .cfb-header h4 {
      font-family: 'Playfair Display', serif;
      font-size: 1.5rem;
      color: var(--navy-dark);
      margin-bottom: 0.3rem;
    }
    .cfb-header p {
      font-size: 0.83rem;
      color: var(--gray);
      margin: 0;
    }

    /* FORM ELEMENTS */
    .form-label {
      font-size: 0.68rem;
      font-weight: 700;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      color: var(--navy);
      margin-bottom: 6px;
      display: block;
    }

    .form-control,
    .form-select {
      background: var(--white) !important;
      border: 1.5px solid var(--gray-light) !important;
      color: var(--text) !important;
      border-radius: 8px !important;
      padding: 11px 14px !important;
      font-size: 0.88rem !important;
      transition: all 0.25s;
      font-family: 'DM Sans', sans-serif !important;
    }
    .form-control::placeholder { color: #94a3b8 !important; }
    .form-control:focus,
    .form-select:focus {
      outline: none !important;
      border-color: var(--navy) !important;
      box-shadow: 0 0 0 4px rgba(27,46,94,0.08) !important;
    }
    .form-select option { background: var(--white); color: var(--text); }
    textarea.form-control { min-height: 110px; resize: vertical; }

    /* TRIPPING SCHEDULE BLOCK (Contact section) */
    .trip-schedule-block {
      background: var(--silver-pale);
      border: 1.5px solid var(--gray-light);
      border-left: 4px solid var(--navy);
      border-radius: 8px;
      padding: 1.2rem 1.4rem;
    }

    .trip-schedule-label {
      display: flex;
      align-items: center;
      gap: 0.6rem;
      margin-bottom: 0.9rem;
      font-family: 'DM Sans', sans-serif;
      font-size: 0.72rem;
      font-weight: 700;
      letter-spacing: 1.5px;
      text-transform: uppercase;
      color: var(--navy);
    }
    .trip-schedule-label i { font-size: 1rem; color: var(--gold); }
    .trip-optional {
      font-weight: 400;
      color: var(--gray);
      letter-spacing: 0;
      text-transform: none;
      font-size: 0.72rem;
    }

    /* SUBMIT BUTTON */
    .btn-submit {
      background: var(--navy);
      color: var(--white);
      border: none;
      padding: 14px 36px;
      border-radius: 8px;
      font-weight: 700;
      font-size: 0.78rem;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      width: 100%;
      transition: all 0.25s;
      cursor: pointer;
      box-shadow: 0 8px 22px rgba(27,46,94,0.2);
      font-family: 'DM Sans', sans-serif;
    }
    .btn-submit:hover {
      background: var(--navy-light);
      transform: translateY(-2px);
      box-shadow: 0 12px 30px rgba(27,46,94,0.28);
    }

    .contact-note {
      font-size: 0.77rem;
      color: var(--gray);
      margin-bottom: 1rem;
      display: flex;
      align-items: center;
      gap: 0.4rem;
    }
    .contact-note i { color: var(--navy); flex-shrink: 0; }

    /* ══════════ FOOTER ══════════ */
    footer {
      background: #f7f7f7;
      color: #6b7280;
      padding: 2rem 0;
    }

    .footer-bottom {
      border-top: 1px solid #e5e7eb;
      padding-top: 1.5rem;
      display: flex;
      justify-content: center;
      align-items: center;
      text-align: center;
      flex-wrap: wrap;
      gap: 1rem;
      font-size: 0.74rem;
      margin: 0 1rem;
    }

    .footer-bottom a {
      color: #4b5563;
      text-decoration: none;
    }
    .footer-bottom a:hover { color: var(--navy); }

    /* ══════════ INQUIRY MODAL ══════════ */
    #inquiryModal .modal-dialog { max-width: 660px; }
    #inquiryModal .modal-content { border: none; border-radius: 0; }
    #inquiryModal .modal-header { background: var(--navy); color: var(--white); border: none; padding: 1.5rem 2rem; }
    #inquiryModal .modal-title { font-family: 'Playfair Display', serif; font-size: 1.4rem; }
    #inquiryModal .modal-header .btn-close { filter: invert(1); opacity: 0.8; }
    #inquiryModal .modal-body { padding: 2rem; }

    /* Tripping block in modal */
    .modal-trip-block {
      background: var(--silver-pale);
      border: 1.5px solid var(--gray-light);
      border-left: 4px solid var(--gold);
      border-radius: 6px;
      padding: 1.2rem 1.4rem;
    }
    .modal-trip-header {
      display: flex;
      align-items: center;
      gap: 0.6rem;
      margin-bottom: 0.9rem;
      font-family: 'DM Sans', sans-serif;
      font-size: 0.71rem;
      font-weight: 700;
      letter-spacing: 1.5px;
      text-transform: uppercase;
      color: var(--navy);
    }
    .modal-trip-header i { font-size: 1rem; color: var(--gold); }
    .modal-trip-optional {
      font-size: 0.68rem;
      font-weight: 400;
      color: var(--gray);
      letter-spacing: 0;
      text-transform: none;
      background: var(--gray-light);
      padding: 2px 8px;
      border-radius: 20px;
      margin-left: auto;
    }

    /* Inquiry form */
    .form-label-styled {
      font-family: 'DM Sans', sans-serif; font-size: 0.62rem;
      letter-spacing: 2px; text-transform: uppercase; font-weight: 600;
      color: var(--text); margin-bottom: 0.3rem; display: block;
    }
    .form-control-styled {
      border: 1px solid var(--gray-light); border-radius: 0;
      padding: 0.6rem 0.9rem; font-size: 0.87rem; width: 100%;
      transition: border-color 0.2s; outline: none;
      font-family: 'DM Sans', sans-serif; color: var(--text);
      background: var(--white);
    }
    .form-control-styled:focus { border-color: var(--navy); }

    /* ══════════ BACK TO TOP ══════════ */
    .back-to-top {
      position: fixed;
      bottom: 28px;
      right: 28px;
      width: 50px;
      height: 50px;
      background: var(--navy);
      color: var(--white);
      border: none;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1.1rem;
      cursor: pointer;
      z-index: 1020;
      opacity: 0;
      visibility: hidden;
      transform: translateY(14px);
      transition: opacity 0.3s, visibility 0.3s, transform 0.25s ease, background 0.2s, box-shadow 0.2s;
      box-shadow: 0 6px 22px rgba(27,46,94,0.35);
      outline: none;
    }
    .back-to-top.visible {
      opacity: 1;
      visibility: visible;
      transform: translateY(0);
    }
    .back-to-top:hover {
      background: var(--gold);
      color: var(--dark);
      box-shadow: 0 12px 30px rgba(27,46,94,0.35);
      transform: translateY(-3px) scale(1.05);
    }
    .back-to-top:focus {
      outline: none;
      background: var(--navy);
      color: var(--white);
      box-shadow: 0 6px 22px rgba(27,46,94,0.35);
      transform: translateY(0);
    }
    .back-to-top:active {
      background: var(--gold);
      color: var(--dark);
      transform: translateY(-1px) scale(1.03);
      box-shadow: 0 10px 24px rgba(27,46,94,0.3);
    }
    .back-to-top:hover i,
    .back-to-top:active i {
      transform: scale(1.1);
    }
    .back-to-top i {
      transition: transform 0.25s ease;
      display: inline-block;
      transform-origin: center;
    }
    .back-to-top.arrow-up i {
      transform: rotate(0deg);
    }
    .back-to-top.arrow-down i {
      transform: rotate(180deg);
    }
    .back-to-top::before {
      content: none;
    }

    @media (max-width: 576px) {
      .back-to-top { bottom: 16px; right: 16px; width: 44px; height: 44px; font-size: 1rem; }
    }

    /* ══════════ SCROLL ANIMATIONS ══════════ */
    .fade-up { opacity: 0; transform: translateY(26px); transition: opacity 0.6s ease, transform 0.6s ease; }
    .fade-up.visible { opacity: 1; transform: translateY(0); }

    /* Scroll margin */
    #about, #location, #properties, #commercial, #itpark, #tours, #green, #completed, #contact {
      scroll-margin-top: 20px;
    }

    /* ══════════ RESPONSIVE ══════════ */
    @media (max-width: 991px) {
      .contact-sidebar {
        border-radius: 0;
      }
      .contact-form-body {
        padding: 2rem 1.5rem;
      }
      .cs-trip-highlight { margin-top: 1.5rem; }
    }

    @media (max-width: 768px) {
      .completed-card { height: 200px; }
      .contact-form-wrap { border-radius: 12px; }
      .trip-schedule-block { padding: 1rem; }
      
      /* Prevent overflow on tablet */
      .container { padding-left: 16px; padding-right: 16px; }
    }

    @media (max-width: 576px) {
      .spec-grid { grid-template-columns: 1fr; }
      .stat-row { gap: 1.5rem; }
      .filter-btn { font-size: 0.65rem; padding: 0.5rem 1rem; }
      .contact-form-body { padding: 1.5rem 1rem; }
      
      /* Additional responsive fixes */
      body, html { width: 100%; max-width: 100%; }
      .container, .container-fluid { width: 100%; 
        max-width: 100%; 
        padding-left: 12px; padding-right: 12px; }
      section { width: 100%; max-width: 100%; }
      .contact-sidebar { padding: 2rem 1.2rem; }
      .hero-title { font-size: 2rem; }
      .btn-hero { font-size: 0.63rem; padding: 0.75rem 1.6rem; letter-spacing: 1.5px; }
    }


