

@import url('https://fonts.googleapis.com/css2?family=Fraunces:opsz,wght@9..144,300;9..144,400;9..144,500&family=Inter:wght@300;400;500&display=swap');

:root{
  --ink:            #0b0b0a;
  --ivory:          #f6f3ec;
  --gold:           #c9a463;
  --gold-dim:       rgba(201,164,99,0.45);
  --overlay-top:    rgba(6,6,5,0.55);
  --overlay-bottom: rgba(6,6,5,0.15);
  --line:           rgba(246,243,236,0.22);
  --line-soft:      rgba(246,243,236,0.12);

  --font-display: 'Fraunces', 'Georgia', serif;
  --font-body:    'Inter',  sans-serif;

  --nav-height: 92px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

*,*::before,*::after{ box-sizing: border-box; }
html{ scroll-behavior: smooth; }
body{
  margin: 0;
  font-family: var(--font-body);
  
  color: var(--ivory);
  -webkit-font-smoothing: antialiased;
}
img{ max-width: 100%; display: block; }
button{ font-family: inherit; cursor: pointer; background: none; border: none; color: inherit; }
a{ color: inherit; text-decoration: none; }

@media (prefers-reduced-motion: reduce){
  *{ animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
}


/*********************  HEADER & BANNER ************************/

/* NAVBAR */
.navbar{
  position: fixed; top:0; left:0; right:0; z-index:100;
  height: var(--nav-height);
  display:flex; align-items:center;
  background: transparent;
  transition: background 0.5s var(--ease), height 0.4s var(--ease), backdrop-filter 0.5s var(--ease), border-color 0.5s var(--ease);
  border-bottom: 1px solid transparent;
}
.navbar.is-scrolled{
  height:96px;
  background: #FDFCFB;
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line-soft);
}

.navbar.is-scrolled .navbar__link{
  color: #141414;   
}

.navbar__inner{
  width:100%; max-width:1440px; margin:0 auto; padding:0 48px;
  display:flex; align-items:center; justify-content:space-between;
}
.navbar__logo {
    display: flex;
    align-items: center;
    margin-top: 8px;
    
}

.navbar__logo img {
    height: 92px;   /* Adjust as needed */
    width: 150px;
    display: block;
    
}

.navbar__list{ list-style:none; display:flex; align-items:center; gap:20px; margin:0; padding:0; }
.navbar__item{ position:relative; }
.navbar__link{
  display:inline-flex; align-items:center; gap:6px;
  font-family: var(--font-body); font-size:12px; font-weight:500;
  letter-spacing:0.14em; text-transform:uppercase; color: var(--ivory);
  padding:6px 0; position:relative;
}
.navbar__link::after{
  content:''; position:absolute; left:0; bottom:-3px; width:0; height:1px;
  background: var(--gold); transition: width 0.35s var(--ease);
}
.navbar__link:hover::after, .navbar__item--dropdown:hover .navbar__link::after{ width:100%; }
.navbar__link--outline{
  border:1px solid var(--line); padding:9px 20px; border-radius:2px;
  transition: border-color 0.3s var(--ease), background 0.3s var(--ease);
}
.navbar__link--outline::after{ display:none; }
.navbar__link--outline:hover{ border-color: var(--gold); background: rgba(201,164,99,0.08); }
.navbar__chevron{ transition: transform 0.3s var(--ease); opacity:0.8; }
.navbar__item--dropdown:hover .navbar__chevron{ transform: rotate(180deg); }

.navbar__dropdown{
  list-style:none; margin:0; padding:10px 0;
  position:absolute; top: calc(100% + 18px); left:50%;
  transform: translate(-50%, 8px);
  min-width:210px;
  background: rgba(11,11,10,0.92);
  backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px);
  border:1px solid var(--line-soft); border-radius:3px;
  opacity:0; visibility:hidden;
  transition: opacity 0.3s var(--ease), transform 0.3s var(--ease), visibility 0.3s;
  box-shadow: 0 24px 48px rgba(0,0,0,0.35);
}
.navbar__item--dropdown:hover .navbar__dropdown,
.navbar__item--dropdown.is-open .navbar__dropdown{
  opacity:1; visibility:visible; transform: translate(-50%, 0);
}
.navbar__dropdown-link{
  display:block; padding:12px 22px; font-size:12px; letter-spacing:0.1em;
  text-transform:uppercase; color: var(--ivory); opacity:0.85;
  transition: opacity 0.25s var(--ease), padding-left 0.25s var(--ease);
  white-space: nowrap;
}
.navbar__dropdown-link:hover{ opacity:1; padding-left:28px; color: var(--gold); }

.navbar__toggle{
  display:none; width:26px; height:18px; flex-direction:column;
  justify-content:space-between; z-index:110;
}
.navbar__toggle span{
  display:block; height:1px; width:100%; background: var(--ivory);
  transition: transform 0.35s var(--ease), opacity 0.25s var(--ease);
}
.navbar__toggle[aria-expanded="true"] span:nth-child(1){ transform: translateY(8.5px) rotate(45deg); }
.navbar__toggle[aria-expanded="true"] span:nth-child(2){ opacity:0; }
.navbar__toggle[aria-expanded="true"] span:nth-child(3){ transform: translateY(-8.5px) rotate(-45deg); }

/* HERO */
.hero{ position:relative; width:100%; height:100vh; min-height:560px; overflow:hidden; background: var(--ink); }
.hero__track{ position:absolute; inset:0; }
.hero__slide{
  position:absolute; inset:0; background-size:cover; background-position:center;
  opacity:0; transform: scale(1.08);
  transition: opacity 1.4s var(--ease);
  will-change: opacity, transform;
  
}
.hero__slide.is-active{ opacity:1; z-index:2; animation: kenburns 8s var(--ease) forwards; }
@keyframes kenburns{ from{ transform: scale(1.08); } to{ transform: scale(1); } }

.hero__overlay{
  position:absolute; inset:0; z-index:3; pointer-events:none;
  background: linear-gradient(to bottom, var(--overlay-top) 0%, transparent 22%, transparent 78%, rgba(6,6,5,0.35) 100%);
}

.hero__arrow{
  position:absolute; top:50%; transform: translateY(-50%); z-index:5;
  width:52px; height:52px; border-radius:50%; border:1px solid var(--line);
  display:flex; align-items:center; justify-content:center; font-size:17px; color: var(--ivory);
  background: rgba(9,9,8,0.18);
  backdrop-filter: blur(6px); -webkit-backdrop-filter: blur(6px);
  transition: border-color 0.35s var(--ease), background 0.35s var(--ease), transform 0.35s var(--ease);
}
.hero__arrow span{ transform: translateY(-1px); }
.hero__arrow--prev{ left:32px; }
.hero__arrow--next{ right:32px; }
.hero__arrow:hover{ border-color: var(--gold); background: rgba(9,9,8,0.4); }
.hero__arrow--prev:hover{ transform: translateY(-50%) translateX(-3px); }
.hero__arrow--next:hover{ transform: translateY(-50%) translateX(3px); }

.hero__preview{ position:absolute; right:40px; bottom:40px; z-index:5; }
.hero__preview-frame{
  width:100px; height:100px; padding:6px;
  border:1px solid var(--gold-dim); border-radius:2px;
  background: rgba(9,9,8,0.35);
  backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px);
  box-shadow: 0 18px 40px rgba(0,0,0,0.4);
}
.hero__preview-image{
  width:100%; height:100%; background-size:cover; background-position:center;
  border-radius:1px; transition: opacity 0.5s var(--ease);
}



/* ===========================
   FORM STYLE
=========================== */

.form-section{
      position:relative;
      width:100%;
      padding:40px 100px 30px;
      background:#ECECEC;
  }
 
  /* ===========================
     TITLE
  =========================== */
  .form-title{
      display:flex;
      align-items:center;
      justify-content:center;
      gap:18px;
      text-align:center;
      color:#141414;
      font-size:24px;
      font-weight:500;
      margin:0 0 26px;
      text-transform: uppercase;
      font-family: Georgia, "Times New Roman", serif;
  }
  .form-title::before,
  .form-title::after{
      content:"";
      height:1px;
      width:80px;
      background:linear-gradient(to right, transparent, #b88a44);
  }
  .form-title::after{
      background:linear-gradient(to left, transparent, #b88a44);
  }
  .title-dot{
      width:6px;
      height:6px;
      border-radius:50%;
      background:#b88a44;
      display:inline-block;
  }
 
  /* ===========================
     FORM WRAPPER — width matches the row inside it, no side padding
     (form-section's own padding already creates the side margins,
     so this wrapper must not add a second, uneven layer of padding)
  =========================== */
  .lead-form{
      width:100%;
      max-width:900px;
      margin:0 auto;
      background:transparent;
      position: relative;
      z-index: 21;
  }
 
  /* ===========================
     FORM ROW
  =========================== */
  .form-row{
      display:flex;
      width:100%;
      gap:90px;
      align-items:flex-start;
      flex-wrap:wrap;
  }
 
  /* ===========================
     FORM GROUP — equal-width columns, label above underline input
  =========================== */
  .form-group{
      flex:1 1 0;
      min-width:220px;
      display:flex;
      flex-direction:column;
  }
  .form-group label{
      font-size:14px;
      font-weight:400;
      letter-spacing:.5px;
      color:#b88a44;
      text-transform:uppercase;
      margin-bottom:16px;
  }
  .form-group input{
      width:100%;
      max-width:220px;
      height:auto;
      border:none;
      border-bottom:1px solid #a7a7a7;
      border-radius:0;
      padding:0 0 10px;
      font-size:14px;
      color:#141414;
      background:transparent;
      transition:.35s;
      outline:none;
  }
  .form-group input::placeholder{
      color:#9a9a9a;
  }
  .form-group input:hover{
      border-color:#c7a46d;
  }
  .form-group input:focus{
      border-color:#c7a46d;
      box-shadow:0 1px 0 0 #c7a46d;
  }
 
  /* ===========================
     BUTTON — centered rectangle, own row below fields, full width of .lead-form
  =========================== */
  .submit-row{
      display:flex;
      width:100%;
      justify-content:center;
      margin-top:40px;
  }
  .submit-btn{
      width:auto;
      min-width:120px;
      height:38px;
      padding:0 10px;
      border:none;
      border-radius:1px;
      background:#F1DC5F;
      color:#141414;
      font-size:14px;
      font-weight:400;
      letter-spacing:.3px;
      cursor:pointer;
      transition:.35s;
  }
  .submit-btn:hover{
      background:#fff;
      transform:translateY(-2px);
      box-shadow:0 12px 25px rgba(0,0,0,.15);
  }

/* ===========================
   ABOUT SECTION
=========================== */


.about-wrapper{
    width:100%;
    padding:40px 6% 0;
    text-align:center;
    margin-top: 20px;
}
 
.about-wrapper .section-tag{
    display:inline-flex;
    align-items:center;
    gap:16px;
    color:#222;
    font-size:13px;
    letter-spacing:4px;
    margin-bottom:12px;
    text-transform:uppercase;
    opacity:.8;
}
 
.about-wrapper .section-tag::before,
.about-wrapper .section-tag::after{
    content:"";
    display:inline-block;
    width:36px;
    height:1px;
    background:linear-gradient(90deg, transparent, #d8b36a);
}
 
.about-wrapper .section-tag::after{
    background:linear-gradient(90deg, #d8b36a, transparent);
}
 
.about-wrapper h2{
    font-size:30px;
    line-height:1.4;
    color:#111;
    margin:0 0 40px;
    font-weight:500;
    font-family: Georgia, "Times New Roman", serif;
    letter-spacing: 1px;
}
 
/* ============================
   ORIGINAL STYLES — UNCHANGED
   ============================ */
 
.about-section{
 
    position:relative;
    width:100%;
    height: 600px;
 
    display:flex;
    justify-content:flex-end;
    align-items:flex-start;
    
 
    padding:10px 6% 100px;
 
    background:url("../images/about-bg02.jpeg") 20% center/cover no-repeat;
 
    overflow:hidden;
 
}
 
.about-overlay{
    position:absolute;
    inset:0;
    background:
    linear-gradient(
        90deg,
        rgba(0,0,0,.10) 20%,
        rgba(0,0,0,.30) 55%,
        rgba(0,0,0,.55) 80%,
        rgba(0,0,0,.65) 100%
    );
}
 
.about-content{
    position:relative;
    z-index:2;
    max-width:540px;
    padding:30px;
    margin-top:35px ;
    
}
 
.about-content p{
 
    color:rgba(255,255,255,.85);
    font-size:16px;
    font-weight: 400;
    line-height:1.9;
    margin-bottom:20px;
    text-align: justify;
    font-family: 'Inter', sans-serif;
 
}
 
.about-btn{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    width:120px;
    height:38px;
    text-decoration:none;
    color:#222;
    background:#F1DC5F;
    font-weight:400;
    transition:.4s;
     font-family: 'DM Sans', Sans-Serif;
}

.about-btn:hover{
    background:#fff;
    color:#141414;
    transform:translateX(6px);
}
 
/* demo-only: fallback background so the layout is visible without your image asset */
.about-section{
    background-image:
        linear-gradient(rgba(20,20,20,.05), rgba(20,20,20,.05)),
        url("../images/about-bg02.jpeg") ;
}

/* =========================================
       COUNTDOWN NUMBERS
========================================= */

:root{
    --cde-ink:#ECECEC;
    --cde-panel:#E2E2E2;
    --cde-paper:#1E1D1B;
    --cde-paper-dim:#6B6863;
    --cde-brass:#A87C2E;
    --cde-brass-dim:rgba(168,124,46,0.28);
    --cde-line:rgba(30,29,27,0.09);
  }
 
  .cde-section{
    position:relative;
    background:#ECECEC;
    padding:32px 40px;
    overflow:hidden;
    isolation:isolate;
  }
 
  .cde-bg-grid{
    position:absolute;
    inset:0;
    z-index:0;
    background-size:64px 64px;
    opacity:0.6;
  }
 
  .cde-container{
    position:relative;
    z-index:2;
    max-width:1180px;
    margin:0 auto;
  }
 
  .cde-heading{
    text-align:center;
    margin-bottom:0;
  }
 
  .cde-heading-title{
    font-family:Georgia, "Times New Roman", serif;
    font-optical-sizing:auto;
    font-weight:500;
    font-style:normal;
    color:var(--cde-paper);
    font-size:30px;
    line-height:1.15;
    letter-spacing:0.01em;
    margin:0 0 20px;
    text-transform: uppercase;
  }
 
  .cde-heading-rule{
    width:156px;
    height:2px;
    margin:0 auto 40px;
    background:var(--cde-brass);
  }
 
  /* ---- ROW: every item is a column flex container so the
     number / underline / label rows sit at the SAME height
     across all four items, no matter how wide the number or
     how tall the word is. ---- */
  .cde-metrics{
    display:grid;
    grid-template-columns:repeat(4, 1fr);
    align-items:stretch;
    gap:0;
  }
 
  .cde-metric{
    position:relative;
    display:flex;
    flex-direction:column;
    align-items:center;
    text-align:center;
    padding:0 20px;
  }
 
  .cde-metric:not(:first-child)::before{
    content:"";
    position:absolute;
    left:0;
    top:6px;
    bottom:4px;
    width:2px;
    background:var(--cde-line);
  }
 
  /* fixed-height number band: every number/word sits on the
     same baseline row regardless of digit count or being a word */
  .cde-metric-value-row{
    display:flex;
    align-items:baseline;
    justify-content:center;
    gap:2px;
    height:58px;              /* locks the band height */
  }
 
  .cde-metric-value{
    font-family:'Fraunces', serif;
    font-weight:400;
    font-size:clamp(38px, 4.2vw, 50px);
    color:#1E1D1B;
    line-height:1;
    letter-spacing:0.005em;
    font-variant-numeric:tabular-nums;
  }
 
  .cde-metric-suffix{
    font-family:'Fraunces', serif;
    font-weight:400;
    font-size:clamp(22px, 2.4vw, 30px);
    color:var(--cde-brass);
    line-height:1;
  }
 
  .cde-metric--word .cde-metric-value-row{
    align-items:center;       /* word sits centered, not on number baseline */
  }
 
  .cde-metric--word .cde-metric-value{
    font-size:clamp(26px, 3.6vw, 42px);   /* as close to number height as the column's padding allows */
    letter-spacing:0.02em;
    color:var(--cde-brass);
    white-space:nowrap;
  }
 
  /* underline: identical position under every band, same size */
  .cde-metric-rule{
    width:30px;
    height:1px;
    margin:14px 0 20px;
    background:var(--cde-brass);
    transform:scaleX(0);
    transform-origin:center;
    transition:transform 1.1s cubic-bezier(.22,.9,.24,1);
  }
 
  .cde-metric.is-revealed .cde-metric-rule{
    transform:scaleX(1);
  }
 
  /* label sits at the bottom of every column, and the two-line
     labels all start flush thanks to flex column + fixed band above */
  .cde-metric-label{
    font-family:'Inter',sans-serif;
    font-size:13.5px;
    font-weight:500;
    letter-spacing:0.06em;
    text-transform:uppercase;
    color:var(--cde-paper-dim);
    line-height:1.6;
  }



/* =========================================
       ONGOING PROJECTS
========================================= */


 .communities-section {
        width: 100%;
        padding: 40px 170px 40px;
        background: #FFFFFF;
    }

    .communities-container {
        width: 100%;
        max-width: 1400px;
        margin: 0 auto;
    }


    /* =========================================
       HEADING
    ========================================= */

    .communities-heading {
        text-align: center;
        margin-bottom: 55px;
    }

    .communities-heading .small-title {
        display: inline-flex;
        align-items: center;
        gap: 10px;

        margin-bottom: 15px;

        font-size: 16px;
        font-weight: 500;
        letter-spacing: 3px;
        text-transform: uppercase;

        color: #8b8178;
    }

    .communities-heading .small-title::before,
.communities-heading .small-title::after {
    content: "";
    display: inline-block;
    width: 22px;
    height: 1px;
    background: #a59b92;
    vertical-align: middle;
    margin: 0 10px;
}

    .communities-heading h2 {
        margin: 0;

        font-family: Georgia, "Times New Roman", serif;

        font-size: 30px;
        font-weight: 500;

        line-height: 1.05;
        letter-spacing: 1px;

        color: #302e2c;
        text-transform: uppercase;
    }
     
    .communities-heading p {
    margin: 18px auto 0;
    max-width: 1000px;
    font-size: 18px;
    font-weight: 400;
    line-height: 1.6;
    color: #77716b;
    font-family: 'Inter',  sans-serif;
}

    /* =========================================
       CARDS GRID
    ========================================= */

    .communities-grid {
        display: grid;

        grid-template-columns: repeat(2, minmax(0, 1fr));

        gap: 40px;

        max-width: 1300px;

        margin: 0 auto;
    }


    /* =========================================
       CARD
    ========================================= */

    .community-card {
        overflow: hidden;

        background: #ffffff;

        border: 1px solid rgba(50, 45, 40, 0.08);

        border-radius: 10px;

        transition:
            transform 0.4s ease,
            box-shadow 0.4s ease;
    }

    .community-card:hover {
        transform: translateY(-7px);

        box-shadow:
            0 20px 50px rgba(40, 35, 30, 0.10);
    }


    /* =========================================
       IMAGE
    ========================================= */

    .community-image {
        position: relative;

        width: 100%;
        height: 420px;

        overflow: hidden;
    }

    .community-image img {
        width: 100%;
        height: 100%;

        display: block;

        object-fit: cover;

        transition: transform 0.7s ease;
    }

    .community-card:hover .community-image img {
        transform: scale(1.045);
    }


    /* =========================================
       CONTENT
    ========================================= */

    .community-content {
        padding: 27px 28px 30px;
    }


    /* TITLE */

    .community-title {
        margin: 0 0 10px;

        font-family: Georgia, "Times New Roman", serif;

        font-size: 28px;
        font-weight: 400;

        line-height: 1.2;

        color: #302e2c;
    }


    /* =========================================
       LOCATION
    ========================================= */

    .community-location {
        display: flex;
        align-items: center;
        gap: 7px;

        margin-bottom: 24px;

        font-size: 14px;
        font-weight: 500;

        color: #77716c;
    }

    .community-location svg {
        width: 15px;
        height: 15px;

        fill: none;
        stroke: #8d8177;
        stroke-width: 1.5;

        stroke-linecap: round;
        stroke-linejoin: round;
    }


    /* =========================================
       AMENITIES 2 x 2
    ========================================= */

    .community-amenities {
        display: grid;

        grid-template-columns: repeat(2, 1fr);

        border-top: 1px solid #ebe7e3;
        border-left: 1px solid #ebe7e3;
    }


    /* AMENITY */

    .amenity-item {
        display: flex;
        align-items: center;

        gap: 12px;

        min-height: 70px;

        padding: 13px 12px;

        border-right: 1px solid #ebe7e3;
        border-bottom: 1px solid #ebe7e3;
    }


    /* ICON */

    .amenity-icon {
        flex: 0 0 34px;

        width: 34px;
        height: 34px;

        display: flex;
        align-items: center;
        justify-content: center;

        border: 1px solid #ded8d3;

        border-radius: 50%;

        background: #FDFCFB;
    }

    .amenity-icon svg {
        width: 17px;
        height: 17px;

        fill: none;

        stroke: #756a61;

        stroke-width: 1.4;

        stroke-linecap: round;
        stroke-linejoin: round;
    }


    /* TEXT */

    .amenity-text {
        display: flex;
        flex-direction: column;

        gap: 4px;
    }

    .amenity-text span {
        font-size: 9px;

        letter-spacing: 1px;

        text-transform: uppercase;

        color: #99918a;
    }

    .amenity-text strong {
        font-size: 12px;

        font-weight: 600;

        color: #3c3835;
    }







 /* =========================================
       COMPLETED GEMS SECTION
    ========================================= */

    .completed-gems-section {
        width: 100%;
        padding:40px 130px 40px;
        background: #FFFFFF;
    }

    .completed-gems-container {
        width: 100%;
        max-width: 1400px;
        margin: 0 auto;
    }


    /* =========================================
       HEADING
    ========================================= */

    .completed-gems-heading {
        text-align: center;
        margin-bottom: 35px;
    }

    
   

    .completed-gems-heading h2 {
        margin: 0;

        font-family: Georgia, "Times New Roman", serif;

        font-size: 30px;
        font-weight: 500;

        line-height: 1.05;

        letter-spacing: 2px;

        color: #302e2c;
    }
    .completed-gems-heading p{
        margin: 18px auto 0;
    max-width: 1000px;
    font-size: 18px;
    font-weight: 400;
    line-height: 1.6;
    color: #77716b;
    font-family: 'Inter', sans-serif;
    }


    /* =========================================
       PROJECT GRID
    ========================================= */

    .completed-gems-grid {
        display: grid;

        grid-template-columns: repeat(3, minmax(0, 1fr));

        gap: 24px;

        width: 100%;
    }


    /* =========================================
       PROJECT CARD
    ========================================= */

    .completed-gem-card {
        position: relative;

        overflow: hidden;

        height: 460px;

        border-radius: 2px;

        background: #ddd;

        cursor: pointer;

        box-shadow:
            0 12px 35px rgba(35, 31, 28, 0.08);
    }


    /* =========================================
       IMAGE
    ========================================= */

    .completed-gem-image {
        position: relative;

        width: 100%;
        height: 100%;

        overflow: hidden;
    }

    .completed-gem-image img {
        width: 100%;
        height: 100%;

        display: block;

        object-fit: cover;

        transition:
            transform 0.8s cubic-bezier(.2,.7,.2,1);
    }

    .completed-gem-card:hover .completed-gem-image img {
        transform: scale(1.055);
    }


    /* =========================================
       DARK GRADIENT
    ========================================= */

    .completed-gem-overlay {
        position: absolute;

        inset: 0;

        background:
            linear-gradient(
                to bottom,
                rgba(0, 0, 0, 0.00) 25%,
                rgba(0, 0, 0, 0.06) 45%,
                rgba(0, 0, 0, 0.58) 78%,
                rgba(0, 0, 0, 0.82) 100%
            );

        pointer-events: none;
    }


    /* =========================================
       CONTENT
    ========================================= */

    .completed-gem-info {
        position: absolute;

        left: 0;
        right: 0;
        bottom: 0;

        padding: 0 28px 28px;

        color: #fff;
    }


    /* =========================================
       LOCATION
    ========================================= */

    .completed-gem-location {
        margin-bottom: 8px;

        font-size: 12px;
        font-weight: 400;

        letter-spacing: 2px;

        color: rgba(255,255,255,0.86);
    }


    /* =========================================
       PROJECT TITLE
    ========================================= */

    .completed-gem-info h3 {
        margin: 0;

        font-family: Georgia, "Times New Roman", serif;

        font-size: clamp(26px, 2vw, 30px);
        font-weight: 400;

        line-height: 1.1;

        letter-spacing: -1px;

        color: #fff;
    }


    /* =========================================
   PROPERTY DETAILS
========================================= */

.completed-gem-bottom {
    display: grid;
    grid-template-columns: 1fr 1fr;

    margin-top: 14px;
    padding-top: 14px;

    border-top: 1px solid rgba(255, 255, 255, 0.30);
}


/* EACH DETAIL */

.completed-gem-detail {
    display: flex;
    flex-direction: column;
    gap: 5px;
}


/* RIGHT SIDE */

.completed-gem-detail:nth-child(2) {
    padding-left: 100px;
    /*border-left: 1px solid rgba(255, 255, 255, 0.25);*/
}


/* LABEL */

.completed-gem-detail span {
    font-size: 9px;
    font-weight: 500;

    letter-spacing: 1.8px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.65);
}


/* VALUE */

.completed-gem-detail strong {
    font-size: 13px;
    font-weight: 400;
    color: #ffffff;
}


    /* =========================================
       EXPLORE
    ========================================= */

    .completed-gem-explore {
        display: inline-flex;

        align-items: center;

        gap: 9px;

        font-size: 11px;
        font-weight: 700;

        letter-spacing: 1.8px;

        text-decoration: none;

        color: #fff;

        transition:
            gap 0.3s ease;
    }

    .completed-gem-explore span {
        font-size: 18px;
        font-weight: 300;

        line-height: 1;

        transition:
            transform 0.3s ease;
    }

    .completed-gem-card:hover .completed-gem-explore {
        gap: 14px;
    }

    .completed-gem-card:hover .completed-gem-explore span {
        transform: translateX(3px);
    }


    /* =========================================
       VIEW MORE
    ========================================= */

    .completed-gems-more {
        display: flex;

        justify-content: center;

        margin-top: 42px;
    }

   .completed-gems-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    min-width: 155px;
    padding: 14px 25px;

    border: 1px solid #3c3835;
    border-radius: 0 !important; /* Rectangle */

    font-size: 10px;
    font-weight: 700;
    letter-spacing: 2px;
    text-decoration: none;
    color: #141414;
    background: transparent;

    transition:
        background 0.35s ease,
        color 0.35s ease,
        gap 0.35s ease;
}

    .completed-gems-button span {
        font-size: 16px;
        line-height: 1;
    }

    .completed-gems-button:hover {
        background: #302e2c;
        color: #fff;

        gap: 17px;
    }    
    
    
    
/* =========================================
       PHILOSOPHY
    ========================================= */
.philosophy{
    background: #ffffff;
}

.title {
    text-align: center;
    font-family: Georgia, "Times New Roman", serif;
    font-weight: 500;
    font-size: 32px;
    letter-spacing: 3px;
    color: #1B2A41;
    margin: 0 0 60px 0;
    margin-top: 40px;
  }
 
  .title::after {
    content: "";
    display: block;
    width: 70px;
    height: 3px;
    background: #B08D57;
    margin: 18px auto 0;
  }
 
  .row {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    gap: 40px;
    flex-wrap: wrap;
  }
 
  .item {
    width: 210px;
    text-align: center;
  }
 
  .item img {
    width: 100%;
    height: 330px;
    object-fit: cover;
    border-radius: 2px;
    box-shadow: 0 12px 24px rgba(27, 42, 65, 0.0);
    display: block;
  }
 
  .item p {
    margin-top: 15px;
    font-size: 18px;
    font-family: Georgia, "Times New Roman", serif;
    font-weight: 400;
    color: #1B2A41;
    line-height: 1.35;
  }
 
  /* zigzag vertical offsets — item 1 sits normal, each next one steps down, then resets */
  .item:nth-child(2) { margin-top: 30px; }
  .item:nth-child(3) { margin-top: 0px; }
  .item:nth-child(4) { margin-top: 30px; }
  .item:nth-child(5) { margin-top: 0px; }

/* =========================================
       Testimonials
    ========================================= */

:root{
    --gold:#c9a24b;
    --gold-soft:rgba(201,162,75,0.35);
    --ink:#0d0e12;
    --paper:#f4f1ea;
    --glass-border:rgba(255,255,255,0.16);
  }
 
 
 
  .testimonial-title{
     font-family: Georgia, "Times New Roman", serif;
    text-align:center;
    color:#141414;
    font-size:30px;
    font-weight:500;
    letter-spacing:0.5px;
    padding-top:40px;
    text-transform: uppercase;
  }
 
  .testimonial-wrapper{
    box-sizing:border-box;
    display:flex;
    justify-content:center;
    align-items:center;
    width:100%;
    padding:10px 16px;
    margin-bottom: 40px;
  }
 
  .testimonial-section,
  .testimonial-section *{
    box-sizing:border-box;
    margin:0;
    padding:0;
  }
 
  .testimonial-section{
    font-family:'Inter',sans-serif;
    position:relative;
    width:100%;
    max-width:1200px;
    height:460px;
    border-radius:18px;
    overflow:hidden;
    background-image:
      linear-gradient(to right, rgba(10,10,13,0.15) 0%, rgba(10,10,13,0.55) 42%, rgba(10,10,13,0.88) 62%, rgba(10,10,13,0.95) 100%),
      url('../images/testi-bg.jpg');
    background-size:cover;
    background-position:center;
    box-shadow:0 30px 80px -20px rgba(0,0,0,0.0);
  }
 
  .testimonial-section::before{
    content:"";
    position:absolute;
    inset:0;
    background:radial-gradient(ellipse 700px 500px at 78% 45%, var(--gold-soft) 0%, rgba(201,162,75,0) 70%);
    opacity:0.35;
    pointer-events:none;
  }
 
  .glass-panel{
    position:absolute;
    top:50%;
    right:4%;
    transform:translateY(-50%);
    width:54%;
    min-width:360px;
    height:65%;
    background:transparent;
    border:1px solid var(--glass-border);
    border-radius:20px;
    display:flex;
    flex-direction:column;
    justify-content:center;
    padding:38px 48px;
    overflow:hidden;
  }
 
  .eyebrow{
    font-family:'Inter',sans-serif;
    font-size:12px;
    font-weight:600;
    letter-spacing:0.22em;
    text-transform:uppercase;
    color:var(--gold);
    margin-bottom:14px;
    display:flex;
    align-items:center;
    gap:10px;
  }
  .eyebrow::before{
    content:"";
    width:26px;
    height:1px;
    background:var(--gold);
    display:inline-block;
  }
 
  .quote-mark{
    font-family:'Fraunces', serif;
    font-size:46px;
    line-height:1;
    color:var(--gold);
    opacity:0.85;
    margin-bottom:-10px;
  }
 
  .slider-track{
    position:relative;
    min-height:150px;
  }
 
  .slide{
    position:absolute;
    inset:0;
    opacity:0;
    transform:translateX(24px);
    transition:opacity 0.55s ease, transform 0.55s ease;
    pointer-events:none;
  }
  .slide.active{
    position:relative;
    opacity:1;
    transform:translateX(0);
    pointer-events:auto;
  }
 
  .slide-quote{
    font-family:'Inter', sans-serif;
    font-weight:400;
    font-size:18px;
    line-height:1.5;
    color:var(--paper);
    letter-spacing:0.1px;
    margin-bottom:15px;
    min-height:114px; 
    text-align: justify;
  }
 
  .slide-person{
    display:flex;
    align-items:center;
    gap:14px;
  }
 
  .avatar{
    width:48px;
    height:48px;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    flex-shrink:0;
    background:transparent;
    border:1.5px solid var(--gold-soft);
  }
  .avatar svg{
    width:22px;
    height:22px;
  }
  .avatar svg path{
    stroke:var(--gold);
  }
 
  .person-info .name{
    font-size:15px;
    font-weight:600;
    color:var(--paper);
    letter-spacing:0.2px;
  }
  .person-info .role{
    font-size:13px;
    color:rgba(244,241,234,0.6);
    margin-top:2px;
  }
 
  .stars{
    margin-top:2px;
    color:var(--gold);
    font-size:13px;
    letter-spacing:2px;
  }
 
  /* Arrow buttons sit on the right side of the panel, vertically aligned
     with the person-info row (avatar + name). Their top offset is set
     by JS to match the active slide's person row, since quote length
     (and therefore row position) can vary slide to slide. */
  .side-arrows{
    position:absolute;
    right:48px;
    display:flex;
    gap:10px;
    transform:translateY(-50%);
    z-index:5;
  }
  .arrow-btn{
    width:40px;
    height:40px;
    border-radius:50%;
    background:transparent;
    border:1px solid rgba(255,255,255,0.2);
    display:flex;
    align-items:center;
    justify-content:center;
    cursor:pointer;
    transition:background 0.25s ease, transform 0.25s ease, border-color 0.25s ease;
  }
  .arrow-btn:hover{
    background:var(--gold);
    border-color:var(--gold);
    transform:translateY(-2px);
  }
  .arrow-btn:hover svg path{ stroke:#161616; }
  .arrow-btn svg{ width:16px; height:16px; }
  .arrow-btn svg path{ stroke:var(--paper); transition:stroke 0.25s ease; }
  .arrow-btn:active{ transform:translateY(0); }


/* =========================================
       BoTTOM FORM
    ========================================= */  


:root{
    --dxb-sky-warm:#d9a273;
    --dxb-glass-bg:rgba(255,255,255,0.14);
    --dxb-glass-border:rgba(255,255,255,0.35);
    --dxb-ink:#0c2237;
    --dxb-accent:#c99b78;
    --dxb-accent-dark:#a97d5c;
    --dxb-error:#e2664a;
    --dxb-success:#3f9c76;
  }
 
  /* ---------- Background image (section, cover) ---------- */
  .dxb-bg{
    position:absolute;
    inset:0;
    z-index:0;
    overflow:hidden;
  }
  .dxb-bg img{
    width:100%;
    height:100%;
    object-fit:cover;
    object-position:center;
    display:block;
  }
  /* dark overlay so left-side text and card stay readable over any photo */
  .dxb-bg::after{
    content:'';
    position:absolute;
    inset:0;
    background:linear-gradient(90deg, rgba(4,14,26,0.62) 0%, rgba(4,14,26,0.42) 45%, rgba(4,14,26,0.28) 100%);
  }
 
  /* ---------- Layout ---------- */
  .dxb-section{
    position:relative;
    height:600px;
    overflow:hidden;
    font-family:'Manrope', sans-serif;
    color:var(--dxb-ink);
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:40px;
    padding:0 6vw;
    flex-wrap:wrap;
  }
 
  .dxb-intro{
    position:relative;
    z-index:1;
    flex:1 1 380px;
    max-width:520px;
    color:#fff;
    padding-top:20px;
  }
  .dxb-eyebrow{
    display:flex;
    align-items:center;
    gap:14px;
    font-size:12px;
    letter-spacing:.22em;
    text-transform:uppercase;
    color:rgba(255,255,255,0.85);
    font-weight:700;
    margin-bottom:26px;
    font-family: 'Inter', sans-serif;
  }
  .dxb-eyebrow::before{
    content:'';
    width:34px;
    height:1px;
    background:rgba(255,255,255,0.65);
  }
  .dxb-intro h2{
    font-family:'Cormorant Garamond', serif;
    font-weight:500;
    font-size:clamp(40px, 5.2vw, 68px);
    line-height:1.05;
    margin:0 0 6px 0;
    letter-spacing:.005em;
  }
  .dxb-intro h2 span{
    display:block;
    color:var(--dxb-sky-warm);
    font-style:italic;
  }
  .dxb-intro p{
    margin-top:22px;
    font-size:16px;
    line-height:1.65;
    color:rgba(255,255,255,0.82);
    max-width:420px;
    font-family: 'Inter', sans-serif;
  }
 
  /* ---------- Glass Card ---------- */
  .dxb-card{
    position:relative;
    z-index:1;
    flex:1 1 420px;
    max-width:460px;
    background:var(--dxb-glass-bg);
    border:1px solid var(--dxb-glass-border);
    backdrop-filter:blur(22px) saturate(140%);
    -webkit-backdrop-filter:blur(22px) saturate(140%);
    border-radius:22px;
    padding:38px 36px 32px;
    box-shadow:0 30px 60px -20px rgba(6,20,35,0.55), inset 0 1px 0 rgba(255,255,255,0.4);
  }
 
  .dxb-field{
    margin-bottom:20px;
  }
  .dxb-field label{
    display:block;
    font-size:12px;
    font-weight:600;
    letter-spacing:.14em;
    text-transform:uppercase;
    color:rgba(20,40,60,0.72);
    margin-bottom:9px;
    font-family: 'Inter', sans-serif;
  }
  .dxb-field input,
  .dxb-field textarea{
    width:100%;
    border:1px solid rgba(255,255,255,0.55);
    background:rgba(255,255,255,0.55);
    border-radius:12px;
    padding:14px 16px;
    font-size:14.5px;
    font-family:inherit;
    color:var(--dxb-ink);
    outline:none;
    transition:border-color .18s ease, background .18s ease, box-shadow .18s ease;
  }
  .dxb-field input::placeholder,
  .dxb-field textarea::placeholder{
    color:rgba(20,40,60,0.4);
  }
  .dxb-field input:focus,
  .dxb-field textarea:focus{
    background:rgba(255,255,255,0.85);
    border-color:var(--dxb-accent);
    box-shadow:0 0 0 4px rgba(201,155,120,0.22);
  }
  .dxb-field textarea{
    resize:vertical;
    min-height:96px;
    font-family:inherit;
  }
 
  .dxb-field.dxb-invalid input,
  .dxb-field.dxb-invalid textarea{
    border-color:var(--dxb-error);
    background:rgba(255,240,238,0.75);
  }
  .dxb-field.dxb-valid input,
  .dxb-field.dxb-valid textarea{
    border-color:var(--dxb-success);
  }
 
  .dxb-error-msg{
    display:none;
    align-items:center;
    gap:6px;
    font-size:12.5px;
    color:var(--dxb-error);
    margin-top:7px;
    font-weight:600;
  }
  .dxb-field.dxb-invalid .dxb-error-msg{
    display:flex;
  }
 
  .dxb-submit-btn{
    width:100%;
    margin-top:6px;
    border:none;
    cursor:pointer;
    background:linear-gradient(135deg, var(--dxb-accent), var(--dxb-accent-dark));
    color:#fff;
    font-family:inherit;
    font-weight:500;
    font-size:16px;
    letter-spacing:.01em;
    padding:16px 22px;
    border-radius:12px;
    display:flex;
    align-items:center;
    justify-content:center;
    gap:10px;
    transition:transform .15s ease, box-shadow .15s ease, opacity .15s ease;
    box-shadow:0 14px 28px -10px rgba(169,125,92,0.65);
    font-family: 'Inter', sans-serif;
  }
  .dxb-submit-btn:hover{
    transform:translateY(-1px);
    box-shadow:0 18px 34px -10px rgba(169,125,92,0.75);
  }
  .dxb-submit-btn:active{
    transform:translateY(0);
  }
  .dxb-submit-btn svg{
    width:16px;
    height:16px;
    transition:transform .15s ease;
  }
  .dxb-submit-btn:hover svg{
    transform:translateX(3px);
  }
 
  .dxb-success-banner{
    display:none;
    align-items:center;
    gap:10px;
    background:rgba(63,156,118,0.18);
    border:1px solid rgba(63,156,118,0.45);
    color:#1f5b41;
    font-size:13.5px;
    font-weight:700;
    padding:12px 14px;
    border-radius:10px;
    margin-bottom:18px;
  }
  .dxb-success-banner.dxb-show{
    display:flex;
  }



  :root{
    --bg: #f3efe6;
    --text-dark: #1f1f1f;
    --accent: #F1DC5F;
    --accent-soft: #F1DC5F;
    --muted: #5a5a5a;
    --line: #ddd6c9;
  }
 
  .site-footer{
    background: #FBFAF8;
    padding: 40px 60px 0 60px;
    color: var(--text-dark);
    box-sizing: border-box;
    font-family: 'Segoe UI', Arial, sans-serif;
  }
 
  /* ---- Top bar: logo left, social icons right ---- */
  .footer-top{
    display:flex;
    align-items:center;
    justify-content:space-between;
    flex-wrap:wrap;
    gap:20px;
    padding-bottom: 5px;
  }
 
  .footer-logo img{
    height: 90px;
    display:block;
  }
 
  .footer-social{
    display:flex;
    gap:14px;
  }
 
  .footer-social a{
    width:42px;
    height:42px;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    color:#fff;
    text-decoration:none;
    transition: transform .2s ease, opacity .2s ease;
  }
 
  .footer-social a svg{
    display:block;
  }
 
  .footer-social a:hover{
    transform: translateY(-3px);
    opacity:.9;
  }
 
  .social-facebook{ background:#1877f2; }
  .social-instagram{ background: linear-gradient(45deg,#f58529,#dd2a7b,#8134af,#515bd4); }
 .social-youtube{
    background: #FF0000;
    color: #fff;
}
  hr.footer-divider{
    border:none;
    border-top:1px solid var(--line);
    margin:0;
  }
 
  /* ---- Columns ---- */
  .footer-columns{
    display:grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    padding: 40px 0;
    align-items: start;
  }
 
  .footer-col h3{
    font-size: 20px;
    font-weight: 400;
    margin: 0;
    font-family: Georgia, 'Times New Roman', serif;
    
  }
 
  .heading-underline{
    width: 40px;
    height: 3px;
    background: var(--accent);
    margin: 8px 0 20px 0;
    border:none;
  }
 
  .footer-col ul{
    list-style:none;
    margin:0;
    padding:0;
  }
 
  .footer-col ul li{
    margin-bottom: 14px;
  }
 
  .footer-col ul li a{
    color: var(--text-dark);
    text-decoration:none;
    font-size:15px;
    transition: color .2s ease;
    font-family: 'Inter', sans-serif;
  }
 
  .footer-col ul li a:hover{
    color: var(--accent);
  }
 
  /* Address column special layout */
  .contact-item{
    display:flex;
    align-items:flex-start;
    gap:10px;
    margin-bottom:16px;
    font-size:15px;
    line-height:1.5;
    font-family: 'Inter', sans-serif;
  }
 
  .contact-item .icon{
    color: var(--accent-soft);
    font-size:16px;
    margin-top:2px;
    flex-shrink:0;
  }
 
  .contact-item a{
    color: var(--text-dark);
    text-decoration:none;
  }
 
  .contact-item a:hover{
    color: var(--accent);
  }
 
  /* ---- Bottom bar ---- */
  .footer-bottom{
    display:flex;
    align-items:center;
    justify-content:space-between;
    flex-wrap:wrap;
    gap:10px;
    padding: 18px 0;
    border-top: 1px solid var(--line);
    font-size:14px;
    color: var(--muted);
    font-family: 'Inter', sans-serif;
  }
 
  .footer-bottom a{
    color: var(--muted);
    text-decoration:none;
  }
 
  .footer-bottom a:hover{
    color: var(--accent);
  }
  
  
  
  
  
  
  
  
  
  
  
  
  
  
/*********************  RESPONSIVE — DESIGNS ************************/  
@media (max-width: 1024px){
  .navbar__inner{ padding: 0 28px; }
  .navbar__logo img{ height: 72px; width: 118px; }

  .navbar__list{ gap: 14px; }
  .navbar__link{ font-size: 11px; letter-spacing: 0.1em; }
  .navbar__link--outline{ padding: 8px 16px; }

  .hero{ min-height: 500px; }
  .hero__arrow{ width: 44px; height: 44px; font-size: 15px; }
  .hero__arrow--prev{ left: 20px; }
  .hero__arrow--next{ right: 20px; }

  .hero__preview-frame{ width: 84px; height: 84px; }
  .hero__preview{ right: 24px; bottom: 24px; }
}

/*********************  RESPONSIVE — MOBILE (≤768px) ************************/
/* =========================================
   MOBILE NAVBAR FIX
========================================= */

/* =========================================
   MOBILE NAVIGATION
========================================= */

@media (max-width: 768px) {

  .navbar {
    height: 72px;
    z-index: 1000;
  }

  .navbar__inner {
    padding: 0 20px;
    position: relative;
    z-index: 1200;
  }

  /* Logo */
  .navbar__logo img {
    height: 56px;
    width: 92px;
  }

  /* ===============================
     HAMBURGER BUTTON
  =============================== */

  .navbar__toggle {
    display: flex;
    position: relative;
    z-index: 1300;

    width: 28px;
    height: 20px;
    padding: 0;

    flex-direction: column;
    justify-content: space-between;

    border: none;
    background: transparent;
    cursor: pointer;
  }

  /* Normal = WHITE */
  .navbar__toggle span {
    display: block;
    width: 100%;
    height: 2px;
    background: #ffffff;

    transition:
      background 0.3s ease,
      transform 0.35s ease,
      opacity 0.25s ease;
  }

  /* Scrolled = BLACK */
  .navbar.is-scrolled .navbar__toggle span {
    background: #111111;
  }

  /* ===============================
     MOBILE MENU CONTAINER
  =============================== */

  .navbar__nav {
    position: fixed;

    top: 0;
    right: 0;

    width: 100%;
    height: 100vh;

    z-index: 1100;

    visibility: hidden;
    pointer-events: none;
  }

  /* Dark/transparent area behind menu */
  .navbar__nav::before {
    content: "";

    position: absolute;
    inset: 0;

    background: rgba(0, 0, 0, 0.35);

    opacity: 0;
    transition: opacity 0.35s ease;
  }

  /* ===============================
     MENU LIST
  =============================== */

  .navbar__list {
    position: absolute;

    top: 0;
    right: 0;

    width: min(82vw, 360px);
    height: 100vh;

    margin: 0;
    padding: 110px 35px 40px;

    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;

    gap: 24px;

    background: #ffffff;

    transform: translateX(100%);

    transition: transform 0.45s ease;

    overflow-y: auto;

    box-sizing: border-box;
  }

  /* ===============================
     OPEN MENU
  =============================== */

  .navbar__nav:has(.navbar__list.is-open) {
    visibility: visible;
    pointer-events: auto;
  }

  .navbar__nav:has(.navbar__list.is-open)::before {
    opacity: 1;
  }

  .navbar__list.is-open {
    transform: translateX(0);
  }

  /* ===============================
     MENU ITEMS
  =============================== */

  .navbar__item {
    width: 100%;
  }

  .navbar__link {
    width: 100%;

    display: flex;
    align-items: center;

    color: #111111 !important;

    font-size: 13px;
    font-weight: 500;

    letter-spacing: 0.1em;

    padding: 8px 0;

    background: transparent;
    border: none;
  }

  /* Contact */
  .navbar__link--outline {
    width: fit-content;

    padding: 10px 18px;

    color: #111111 !important;

    border: 1px solid #111111;
  }

  /* ===============================
     DROPDOWN
  =============================== */

  .navbar__link--dropdown {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;

    padding: 8px 0 12px;
  }

 /* ===============================
   MOBILE SUBMENU FIX
=============================== */

.navbar__dropdown {
  position: static !important;

  width: 100% !important;
  min-width: 0 !important;

  margin: 0 !important;
  padding: 6px 0 0 18px !important;

  display: none;

  background: transparent !important;

  border: none !important;
  border-radius: 0 !important;
  box-shadow: none !important;

  opacity: 1 !important;
  visibility: visible !important;

  transform: none !important;

  overflow: visible !important;
}

/* Show submenu when Ongoing Projects is clicked */
.navbar__item--dropdown.is-open .navbar__dropdown {
  display: block !important;
}

/* Submenu list items */
.navbar__dropdown li {
  width: 100%;
  margin: 0;
  padding: 0;
}

/* Submenu links */
.navbar__dropdown-link {
  display: block !important;

  width: 100%;

  padding: 10px 0 !important;

  color: #111111 !important;

  font-size: 11px !important;
  font-weight: 500;

  letter-spacing: 0.08em;
  text-transform: uppercase;

  opacity: 1 !important;

  white-space: nowrap;

  background: transparent !important;

  box-sizing: border-box;

  transition: color 0.25s ease,
              padding-left 0.25s ease;
}

/* Submenu hover */
.navbar__dropdown-link:hover {
  color: var(--gold) !important;
  padding-left: 6px !important;
}

/* =========================================
   SMALL PHONES
========================================= */

@media (max-width: 480px) {

  .navbar__inner {
    padding: 0 18px;
  }

  .navbar__logo img {
    height: 46px;
    width: 76px;
  }

  .navbar__toggle {
    width: 26px;
    height: 19px;
  }

  .navbar__list {
    width: 82vw;
    padding: 90px 28px 32px;
  }
}

/******* RESPONSIVE — VERY SMALL PHONES (≤360px) *************/
@media (max-width: 360px){
  .navbar__logo img{ height: 40px; width: 66px; }
  .navbar__inner{ padding: 0 14px; }
  .hero{ min-height: 380px; }
}
  
/***************************************  FORM QURIES *****************************************/  
/* ===========================
   TABLET (≤1024px)
   Reduce the heavy side padding and gap first
=========================== */
@media (max-width: 1024px) {
  .form-section{
      padding:36px 50px 30px;
  }
  .form-row{
      gap:50px;
  }
}

/* ===========================
   SMALL TABLET / LARGE MOBILE (≤768px)
   Start stacking fields, loosen the max-width constraint on inputs
=========================== */
@media (max-width: 768px) {
  .form-section{
      padding:32px 30px 26px;
  }
  .form-title{
      font-size:20px;
      gap:12px;
  }
  .form-title::before,
  .form-title::after{
      width:40px;
  }
  .form-row{
      gap:24px 40px;
  }
  .form-group{
      flex:1 1 45%;
      min-width:180px;
  }
  .form-group input{
      max-width:100%;
  }
}

/* ===========================
   MOBILE (≤480px)
   Full stack, one field per row
=========================== */
@media (max-width: 480px) {
  .form-section{
      padding:28px 20px 24px;
  }
  .form-title{
      font-size:17px;
      gap:8px;
      flex-wrap:wrap;
  }
  .form-title::before,
  .form-title::after{
      width:24px;
  }
  .form-row{
      flex-direction:column;
      gap:22px;
  }
  .form-group{
      flex:1 1 100%;
      min-width:100%;
  }
  .form-group label{
      margin-bottom:10px;
      font-size:13px;
  }
  .submit-row{
      margin-top:28px;
  }
  .submit-btn{
      width:100%;
      max-width:220px;
      height:42px;
  }
}

/* ===========================
   VERY SMALL DEVICES (≤360px)
   Tighten further for narrow phones
=========================== */
@media (max-width: 360px) {
  .form-section{
      padding:24px 14px 20px;
  }
  .form-title{
      font-size:15px;
  }
}  
  
  
/***************************************  ABOUT QURIES *****************************************/   
  
/* ===========================
   TABLET (≤1024px)
  
=========================== */
@media (max-width: 1024px) {
  .about-wrapper{
      padding:36px 5% 0;
  }
  .about-wrapper h2{
      font-size:26px;
      margin-bottom:32px;
  }
  .about-section{
      height:auto;
      min-height:520px;
      padding:10px 5% 80px;
  }
  .about-content{
      max-width:460px;
  }
}

/* ===========================
   SMALL TABLET (≤768px)
   Content still right-aligned but narrower; section height loosens
=========================== */
@media (max-width: 768px) {
  .about-wrapper{
      padding:30px 5% 0;
      margin-top:10px;
  }
  .about-wrapper .section-tag{
      font-size:12px;
      letter-spacing:3px;
      gap:12px;
  }
  .about-wrapper .section-tag::before,
  .about-wrapper .section-tag::after{
      width:24px;
  }
  .about-wrapper h2{
      font-size:22px;
      line-height:1.5;
      margin-bottom:26px;
      padding:0 10px;
  }
  .about-section{
      height:auto;
      min-height:auto;
      justify-content:center;
      align-items:center;
      padding:10px 6% 60px;
      background-position:center;
  }
  .about-content{
      max-width:100%;
      padding:20px;
      margin-top:20px;
      text-align:center;
  }
  .about-content p{
      font-size:15px;
      line-height:1.8;
      text-align:left;
  }
}

/* ===========================
   MOBILE (≤480px)
   Full stack, centered, smaller type, full-width-ish button
=========================== */
@media (max-width: 480px) {
  .about-wrapper{
      padding:24px 6% 0;
  }
  .about-wrapper h2{
      font-size:19px;
      line-height:1.45;
      margin-bottom:20px;
      letter-spacing:.5px;
  }
  .about-wrapper .section-tag{
      font-size:11px;
      letter-spacing:2px;
      gap:8px;
      margin-bottom:8px;
  }
  .about-wrapper .section-tag::before,
  .about-wrapper .section-tag::after{
      width:16px;
  }
  .about-section{
      padding:10px 6% 50px;
      background-position:60% center;
  }
  .about-content{
      padding:16px 10px;
      margin-top:12px;
  }
  .about-content p{
      font-size:14px;
      line-height:1.75;
      margin-bottom:16px;
      text-align: justify;
  }
  .about-btn{
      width:100%;
      max-width:200px;
      height:42px;
  }
}

/* ===========================
   VERY SMALL DEVICES (≤360px)
=========================== */
@media (max-width: 360px) {
  .about-wrapper h2{
      font-size:17px;
  }
  .about-content p{
      font-size:13px;
      text-align: justify;
  }
}  


/***************************************  COUNTABLE QURIES *****************************************/  

/* ===========================
   TABLET (861px–1024px)
=========================== */
@media (max-width: 1024px) and (min-width: 861px) {
  .cde-section{
      padding:28px 30px;
  }
  .cde-heading-title{
      font-size:26px;
  }
  .cde-metric{
      padding:0 12px;
  }
}

/* ===========================
   SMALL TABLET (601px–860px)
   2x2 grid — dividers become horizontal between rows
=========================== */
@media (max-width: 860px) and (min-width: 601px) {
  .cde-metrics{
      grid-template-columns:repeat(2, 1fr);
      row-gap:36px;
  }
  .cde-metric::before{
      display:none;
  }
  .cde-metric:nth-child(3)::before,
  .cde-metric:nth-child(4)::before{
      content:"";
      display:block;
      position:absolute;
      top:-18px;
      left:20%;
      right:20%;
      width:auto;
      height:2px;
      background:var(--cde-line);
  }
}

/* ===========================
   MOBILE (≤600px)
   Full single column stack
=========================== */
@media (max-width: 600px) {
  .cde-section{
      padding:24px 20px;
  }
  .cde-heading-title{
      font-size:21px;
      margin-bottom:16px;
  }
  .cde-heading-rule{
      width:100px;
      margin-bottom:28px;
  }
  .cde-metrics{
      grid-template-columns:1fr;
      row-gap:30px;
  }
  .cde-metric::before{
      display:none;
  }
  .cde-metric:not(:first-child)::before{
      content:"";
      display:block;
      position:absolute;
      top:-15px;
      left:30%;
      right:30%;
      width:auto;
      height:2px;
      background:var(--cde-line);
  }
  .cde-metric{
      padding:0 16px;
  }
  .cde-metric-value-row{
      height:48px;
  }
  .cde-metric-value{
      font-size:clamp(32px, 9vw, 42px);
  }
  .cde-metric-suffix{
      font-size:clamp(18px, 5.5vw, 24px);
  }
  .cde-metric--word .cde-metric-value{
      font-size:clamp(22px, 7vw, 32px);
  }
  .cde-metric-label{
      font-size:12.5px;
  }
  .cde-metric-rule{
      margin:10px 0 14px;
  }
}

/* ===========================
   VERY SMALL DEVICES (≤380px)
=========================== */
@media (max-width: 380px) {
  .cde-heading-title{
      font-size:18px;
  }
  .cde-metric-value-row{
      height:42px;
  }
}




/***************************************  ONGOING PROJECT QURIES *****************************************/

/* ===========================
   LARGE DESKTOP / LAPTOP (1025px–1200px)
   Trim the very heavy 170px side padding first
=========================== */
@media (max-width: 1200px) and (min-width: 1025px) {
  .communities-section{
      padding:40px 80px 40px;
  }
}

/* ===========================
   TABLET (769px–1024px)
   Still 2-column, but tighter padding/gap and shorter image
=========================== */
@media (max-width: 1024px) and (min-width: 769px) {
  .communities-section{
      padding:36px 40px 36px;
  }
  .communities-heading{
      margin-bottom:40px;
  }
  .communities-heading h2{
      font-size:26px;
  }
  .communities-heading p{
      font-size:16px;
      max-width:700px;
  }
  .communities-grid{
      gap:28px;
  }
  .community-image{
      height:340px;
  }
  .community-title{
      font-size:24px;
  }
}

/* ===========================
   SMALL TABLET / LARGE MOBILE (481px–768px)
   Collapse grid to 1 column, cards go full width
=========================== */
@media (max-width: 768px) and (min-width: 481px) {
  .communities-section{
      padding:30px 24px 30px;
  }
  .communities-heading{
      margin-bottom:32px;
  }
  .communities-heading .small-title{
      font-size:13px;
      letter-spacing:2px;
      gap:6px;
  }
  .communities-heading .small-title::before,
  .communities-heading .small-title::after{
      width:16px;
      margin:0 6px;
  }
  .communities-heading h2{
      font-size:22px;
  }
  .communities-heading p{
      font-size:15px;
      line-height:1.55;
      margin-top:14px;
  }

  .communities-grid{
      grid-template-columns:1fr;
      gap:26px;
      max-width:520px;
  }

  .community-image{
      height:280px;
  }

  .community-content{
      padding:22px 20px 24px;
  }

  .community-title{
      font-size:22px;
  }

  .community-location{
      margin-bottom:18px;
      font-size:13px;
  }

  /* keep amenities 2x2, just tighten */
  .amenity-item{
      min-height:60px;
      padding:10px 10px;
      gap:10px;
  }
  .amenity-icon{
      flex:0 0 30px;
      width:30px;
      height:30px;
  }
  .amenity-icon svg{
      width:15px;
      height:15px;
  }
}

/* ===========================
   MOBILE (≤480px)
   Amenities drop to single column, everything tightens further
=========================== */
@media (max-width: 480px) {
  .communities-section{
      padding:24px 16px 24px;
  }

  .communities-heading{
      margin-bottom:26px;
  }
  .communities-heading .small-title{
      font-size:12px;
      letter-spacing:1.5px;
      gap:5px;
      margin-bottom:10px;
  }
  .communities-heading .small-title::before,
  .communities-heading .small-title::after{
      width:12px;
      margin:0 5px;
  }
  .communities-heading h2{
      font-size:19px;
      line-height:1.25;
  }
  .communities-heading p{
      font-size:14px;
      line-height:1.5;
      margin-top:12px;
  }

  .communities-grid{
      grid-template-columns:1fr;
      gap:20px;
      max-width:100%;
  }

  .community-image{
      height:220px;
  }

  .community-content{
      padding:18px 16px 20px;
  }

  .community-title{
      font-size:19px;
      margin-bottom:8px;
  }

  .community-location{
      font-size:12.5px;
      gap:5px;
      margin-bottom:14px;
  }
  .community-location svg{
      width:13px;
      height:13px;
  }

  /* amenities: single column so text has room to breathe */
  .community-amenities{
      grid-template-columns:1fr;
  }

  .amenity-item{
      min-height:auto;
      padding:12px 10px;
      gap:10px;
  }
  .amenity-icon{
      flex:0 0 32px;
      width:32px;
      height:32px;
  }
  .amenity-icon svg{
      width:16px;
      height:16px;
  }
  .amenity-text span{
      font-size:8.5px;
  }
  .amenity-text strong{
      font-size:12px;
  }
}

/* ===========================
   VERY SMALL DEVICES (≤360px)
=========================== */
@media (max-width: 360px) {
  .communities-heading h2{
      font-size:17px;
  }
  .community-title{
      font-size:17px;
  }
  .community-image{
      height:190px;
  }
}





/***************************************  COMPLETED PROJECT QURIES *****************************************/

/* ===========================
   LARGE DESKTOP / LAPTOP (1025px–1200px)
   Trim the heavy 130px side padding first
=========================== */
@media (max-width: 1200px) and (min-width: 1025px) {
  .completed-gems-section{
      padding:40px 60px 40px;
  }
  .completed-gem-detail:nth-child(2){
      padding-left:60px;
  }
}

/* ===========================
   TABLET (769px–1024px)
   Switch 3-col grid to 2-col
=========================== */
@media (max-width: 1024px) and (min-width: 769px) {
  .completed-gems-section{
      padding:36px 40px 36px;
  }
  .completed-gems-heading{
      margin-bottom:28px;
  }
  .completed-gems-heading h2{
      font-size:26px;
  }
  .completed-gems-heading p{
      font-size:16px;
      max-width:700px;
  }

  .completed-gems-grid{
      grid-template-columns:repeat(2, minmax(0, 1fr));
      gap:22px;
  }

  .completed-gem-card{
      height:400px;
  }

  .completed-gem-info{
      padding:0 22px 22px;
  }

  .completed-gem-detail:nth-child(2){
      padding-left:50px;
  }
}

/* ===========================
   SMALL TABLET / LARGE MOBILE (481px–768px)
   Collapse to 1 column
=========================== */
@media (max-width: 768px) and (min-width: 481px) {
  .completed-gems-section{
      padding:30px 24px 30px;
  }
  .completed-gems-heading{
      margin-bottom:24px;
  }
  .completed-gems-heading h2{
      font-size:22px;
      letter-spacing:1px;
  }
  .completed-gems-heading p{
      font-size:15px;
      line-height:1.55;
      margin-top:14px;
  }

  .completed-gems-grid{
      grid-template-columns:1fr;
      gap:22px;
      max-width:560px;
      margin:0 auto;
  }

  .completed-gem-card{
      height:420px;
  }

  .completed-gem-info{
      padding:0 22px 24px;
  }

  .completed-gem-location{
      font-size:11px;
      letter-spacing:1.5px;
  }

  .completed-gem-info h3{
      font-size:clamp(22px, 5vw, 26px);
  }

  .completed-gem-bottom{
      margin-top:12px;
      padding-top:12px;
  }

  .completed-gem-detail:nth-child(2){
      padding-left:24px;
  }

  .completed-gems-more{
      margin-top:32px;
  }
}

/* ===========================
   MOBILE (≤480px)
=========================== */
@media (max-width: 480px) {
  .completed-gems-section{
      padding:24px 16px 24px;
  }
  .completed-gems-heading{
      margin-bottom:20px;
  }
  .completed-gems-heading h2{
      font-size:19px;
      letter-spacing:.5px;
  }
  .completed-gems-heading p{
      font-size:14px;
      line-height:1.5;
      margin-top:12px;
  }

  .completed-gems-grid{
      grid-template-columns:1fr;
      gap:18px;
      max-width:100%;
  }

  .completed-gem-card{
      height:340px;
  }

  .completed-gem-info{
      padding:0 18px 20px;
  }

  .completed-gem-location{
      font-size:10.5px;
      letter-spacing:1.2px;
      margin-bottom:6px;
  }

  .completed-gem-info h3{
      font-size:clamp(19px, 6vw, 23px);
      letter-spacing:-0.5px;
  }

  .completed-gem-bottom{
      margin-top:10px;
      padding-top:10px;
  }

  .completed-gem-detail span{
      font-size:8.5px;
      letter-spacing:1.2px;
  }
  .completed-gem-detail strong{
      font-size:12px;
  }

  /* second detail no longer needs the big offset; a small gap
     from the grid + a touch of left padding reads fine */
  .completed-gem-detail:nth-child(2){
      padding-left:12px;
  }

  .completed-gem-explore{
      font-size:10px;
      letter-spacing:1.5px;
  }
  .completed-gem-explore span{
      font-size:15px;
  }

  .completed-gems-more{
      margin-top:26px;
  }
  .completed-gems-button{
      min-width:100%;
      padding:13px 20px;
  }
}

/* ===========================
   VERY SMALL DEVICES (≤360px)
=========================== */
@media (max-width: 360px) {
  .completed-gems-heading h2{
      font-size:17px;
  }
  .completed-gem-card{
      height:300px;
  }
  .completed-gem-info h3{
      font-size:18px;
  }
}




/***************************************  PHILOSOPHY QURIES *****************************************/
/* ===========================
   TABLET (769px–1024px)
   Shrink item size and gap a bit, keep the flex row + zigzag
=========================== */
@media (max-width: 1024px) and (min-width: 769px) {
  .title{
      font-size:28px;
      margin-bottom:48px;
  }
  .row{
      gap:26px;
  }
  .item{
      width:170px;
  }
  .item img{
      height:270px;
  }
  .item p{
      font-size:16px;
  }
}

/* ===========================
   SMALL TABLET / LARGE MOBILE (481px–768px)
   Still flex row but tighter, wraps to 2-3 per row naturally
=========================== */
@media (max-width: 768px) and (min-width: 481px) {
  .title{
      font-size:24px;
      margin:0 0 40px;
      margin-top:30px;
  }
  .row{
      gap:20px;
  }
  .item{
      width:150px;
  }
  .item img{
      height:230px;
  }
  .item p{
      font-size:15px;
      margin-top:12px;
  }
  /* zigzag still works fine here since items still wrap loosely,
     but tone it down so steps don't look too dramatic at smaller size */
  .item:nth-child(2){ margin-top:20px; }
  .item:nth-child(4){ margin-top:20px; }
}

/* ===========================
   MOBILE (≤480px)
   Force clean 2-column grid, kill the zigzag offsets
=========================== */
@media (max-width: 480px) {
  .title{
      font-size:20px;
      letter-spacing:2px;
      margin:0 0 30px;
      margin-top:24px;
  }
  .title::after{
      width:50px;
      height:2px;
      margin-top:14px;
  }

  .row{
      display:grid;
      grid-template-columns:repeat(2, 1fr);
      gap:18px;
      justify-content:center;
      align-items:start;
      padding: 0 20px;
  }

  .item{
      width:100%;
  }

  .item img{
      height:200px;
  }

  .item p{
      font-size:14px;
      margin-top:10px;
      line-height:1.4;
  }

  /* zigzag offsets only made sense in a single flowing row —
     reset them so the 2-col grid stays clean and aligned */
  .item:nth-child(2),
  .item:nth-child(3),
  .item:nth-child(4),
  .item:nth-child(5){
      margin-top:0;
  }
}

/* ===========================
   VERY SMALL DEVICES (≤360px)
=========================== */
@media (max-width: 360px) {
  .title{
      font-size:18px;
  }
  .row{
      gap:14px;
  }
  .item img{
      height:170px;
  }
  .item p{
      font-size:13px;
  }
}
  
  
  
  
/***************************************  Testimonials QURIES *****************************************/

/* ===========================
   LAPTOP (1025px–1200px)
   Slightly reduce panel padding, keep layout as-is
=========================== */
@media (max-width: 1200px) and (min-width: 1025px) {
  .glass-panel{
      padding:34px 40px;
  }
  .side-arrows{
      right:40px;
  }
}

/* ===========================
   TABLET (769px–1024px)
   Panel grows wider since fixed 54%+min-width no longer fits
   comfortably; section height increases slightly for room
=========================== */
@media (max-width: 1024px) and (min-width: 769px) {
  .testimonial-section{
      height:440px;
  }
  .glass-panel{
      width:66%;
      min-width:320px;
      right:3%;
      padding:32px 34px;
  }
  .slide-quote{
      font-size:16.5px;
      min-height:100px;
  }
  .side-arrows{
      right:34px;
  }
}

/* ===========================
   SMALL TABLET / LARGE MOBILE (481px–768px)
   Panel takes most of the width, background shifts to keep
   the subject in frame under a taller/narrower photo crop
=========================== */
@media (max-width: 768px) and (min-width: 481px) {
  .testimonial-title{
      font-size:24px;
      padding-top:30px;
  }
  .testimonial-wrapper{
      padding:10px 12px;
      margin-bottom:30px;
  }
  .testimonial-section{
      height:auto;
      min-height:520px;
      border-radius:14px;
      background-position:70% center;
  }
  .glass-panel{
      position:relative;
      top:auto;
      right:auto;
      transform:none;
      width:100%;
      min-width:unset;
      height:auto;
      margin:40px auto;
      padding:28px 26px;
  }
  .eyebrow{
      font-size:11px;
  }
  .quote-mark{
      font-size:38px;
  }
  .slide-quote{
      font-size:15.5px;
      line-height:1.55;
      min-height:auto;
      text-align:left;
  }
  .side-arrows{
      position:static;
      transform:none;
      justify-content:flex-start;
      margin-top:22px;
  }
}

/* ===========================
   MOBILE (≤480px)
   Same static-panel approach, tightened further
=========================== */
@media (max-width: 480px) {
  .testimonial-title{
      font-size:19px;
      letter-spacing:0.3px;
      padding-top:24px;
  }
  .testimonial-wrapper{
      padding:8px 10px;
      margin-bottom:24px;
  }
  .testimonial-section{
      height:auto;
      min-height:auto;
      border-radius:12px;
      background-position:75% center;
  }
  .glass-panel{
      position:relative;
      top:auto;
      right:auto;
      transform:none;
      width:100%;
      min-width:unset;
      height:auto;
      margin:28px auto;
      padding:24px 18px;
      border-radius:14px;
  }
  .eyebrow{
      font-size:10.5px;
      letter-spacing:.18em;
      gap:8px;
      margin-bottom:10px;
  }
  .eyebrow::before{
      width:18px;
  }
  .quote-mark{
      font-size:30px;
      margin-bottom:-4px;
  }
  .slide-quote{
      font-size:14px;
      line-height:1.5;
      margin-bottom:12px;
      text-align:left;
  }
  .avatar{
      width:40px;
      height:40px;
  }
  .avatar svg{
      width:18px;
      height:18px;
  }
  .person-info .name{
      font-size:13.5px;
  }
  .person-info .role{
      font-size:11.5px;
  }
  .stars{
      font-size:11px;
  }
  .side-arrows{
      position:static;
      transform:none;
      justify-content:center;
      margin-top:20px;
      gap:12px;
  }
  .arrow-btn{
      width:36px;
      height:36px;
  }
}

/* ===========================
   VERY SMALL DEVICES (≤360px)
=========================== */
@media (max-width: 360px) {
  .testimonial-title{
      font-size:17px;
  }
  .glass-panel{
      padding:20px 14px;
  }
  .slide-quote{
      font-size:13px;
  }
}
  
  
  
  
/***************************************  BOTTOM FORM QURIES *****************************************/  


/* ===========================
   LAPTOP (1025px–1200px)
   Trim side padding, keep side-by-side layout
=========================== */
@media (max-width: 1200px) and (min-width: 1025px) {
  .dxb-section{
      padding:0 4vw;
      gap:30px;
  }
  .dxb-card{
      padding:34px 30px 28px;
  }
}

/* ===========================
   TABLET (901px–1024px)
   Still side-by-side but tighter; height grows slightly as a
   safety margin before the wrap breakpoint below
=========================== */
@media (max-width: 1024px) and (min-width: 901px) {
  .dxb-section{
      height:auto;
      min-height:600px;
      padding:50px 4vw;
      gap:24px;
  }
  .dxb-intro h2{
      font-size:clamp(34px, 5vw, 52px);
  }
  .dxb-card{
      padding:30px 26px 26px;
  }
}

/* ===========================
   SMALL TABLET (769px–900px)
   Combined min-widths of intro (380px) + card (420px) + gap
   exceed viewport here, so they stack — switch to auto height
=========================== */
@media (max-width: 900px) and (min-width: 769px) {
  .dxb-section{
      height:auto;
      min-height:unset;
      flex-direction:column;
      align-items:flex-start;
      justify-content:flex-start;
      padding:60px 6vw 50px;
      gap:36px;
  }
  .dxb-intro{
      flex:1 1 auto;
      max-width:100%;
      padding-top:0;
  }
  .dxb-intro h2{
      font-size:clamp(32px, 5.5vw, 46px);
  }
  .dxb-card{
      flex:1 1 auto;
      max-width:520px;
      width:100%;
  }
}

/* ===========================
   LARGE MOBILE (481px–768px)
   Same stacked layout, tighter spacing and type
=========================== */
@media (max-width: 768px) and (min-width: 481px) {
  .dxb-section{
      height:auto;
      padding:50px 5vw 44px;
      gap:30px;
  }
  .dxb-intro{
      max-width:100%;
      padding-top:0;
  }
  .dxb-eyebrow{
      font-size:11px;
      gap:10px;
      margin-bottom:20px;
  }
  .dxb-eyebrow::before{
      width:24px;
  }
  .dxb-intro h2{
      font-size:clamp(28px, 6.5vw, 40px);
  }
  .dxb-intro p{
      font-size:15px;
      max-width:100%;
      margin-top:16px;
  }
  .dxb-card{
      max-width:100%;
      width:100%;
      padding:28px 24px 24px;
      border-radius:18px;
  }
  .dxb-field{
      margin-bottom:16px;
  }
  .dxb-field input,
  .dxb-field textarea{
      padding:12px 14px;
      font-size:14px;
  }
  .dxb-submit-btn{
      font-size:15px;
      padding:14px 20px;
  }
}

/* ===========================
   MOBILE (≤480px)
=========================== */
@media (max-width: 480px) {
  .dxb-section{
      height:auto;
      padding:40px 5vw 36px;
      gap:26px;
  }
  .dxb-intro{
      max-width:100%;
      padding-top:0;
  }
  .dxb-eyebrow{
      font-size:10.5px;
      letter-spacing:.18em;
      gap:8px;
      margin-bottom:16px;
  }
  .dxb-eyebrow::before{
      width:18px;
  }
  .dxb-intro h2{
      font-size:clamp(24px, 8vw, 32px);
  }
  .dxb-intro p{
      font-size:14px;
      line-height:1.6;
      margin-top:14px;
  }

  .dxb-card{
      max-width:100%;
      width:100%;
      padding:22px 18px 20px;
      border-radius:16px;
  }
  .dxb-field{
      margin-bottom:14px;
  }
  .dxb-field label{
      font-size:11px;
      margin-bottom:7px;
  }
  .dxb-field input,
  .dxb-field textarea{
      padding:11px 13px;
      font-size:13.5px;
      border-radius:10px;
  }
  .dxb-field textarea{
      min-height:80px;
  }
  .dxb-error-msg{
      font-size:11.5px;
  }
  .dxb-submit-btn{
      font-size:14px;
      padding:13px 18px;
      border-radius:10px;
      gap:8px;
  }
  .dxb-submit-btn svg{
      width:14px;
      height:14px;
  }
  .dxb-success-banner{
      font-size:12.5px;
      padding:10px 12px;
  }
}

/* ===========================
   VERY SMALL DEVICES (≤360px)
=========================== */
@media (max-width: 360px) {
  .dxb-intro h2{
      font-size:22px;
  }
  .dxb-card{
      padding:18px 14px 18px;
  }
}



/***************************************  FOOTER QURIES *****************************************/ 

/* ===========================
   LAPTOP (1025px–1200px)
   Trim side padding, keep 3-column layout
=========================== */
@media (max-width: 1200px) and (min-width: 1025px) {
  .site-footer{
      padding:36px 40px 0 40px;
  }
  .footer-columns{
      gap:30px;
  }
}

/* ===========================
   TABLET (769px–1024px)
   Switch 3-col grid to 2-col; third column wraps to its own row
=========================== */
@media (max-width: 1024px) and (min-width: 769px) {
  .site-footer{
      padding:32px 30px 0 30px;
  }
  .footer-logo img{
      height:74px;
  }
  .footer-columns{
      grid-template-columns:repeat(2, 1fr);
      gap:28px 24px;
      padding:32px 0;
  }
  .footer-col h3{
      font-size:18px;
  }
}

/* ===========================
   SMALL TABLET / LARGE MOBILE (481px–768px)
   Collapse to 1 column, center the top bar
=========================== */
@media (max-width: 768px) and (min-width: 481px) {
  .site-footer{
      padding:28px 24px 0 24px;
  }
  .footer-top{
      justify-content:center;
      text-align:center;
      gap:16px;
      padding-bottom:10px;
  }
  .footer-logo img{
      height:64px;
  }
  .footer-social a{
      width:38px;
      height:38px;
  }
  .footer-columns{
      grid-template-columns:1fr;
      gap:28px;
      padding:28px 0;
  }
  .footer-col{
      text-align:center;
  }
  .heading-underline{
      margin:8px auto 18px;
  }
  .contact-item{
      justify-content:center;
      text-align:left;
      max-width:320px;
      margin-left:auto;
      margin-right:auto;
  }
  .footer-bottom{
      justify-content:center;
      text-align:center;
      padding:16px 0;
      gap:8px 16px;
  }
}

/* ===========================
   MOBILE (≤480px)
=========================== */
@media (max-width: 480px) {
  .site-footer{
      padding:24px 18px 0 18px;
  }
  .footer-top{
      flex-direction:column;
      justify-content:center;
      align-items:center;
      text-align:center;
      gap:16px;
      padding-bottom:8px;
  }
  .footer-logo img{
      height:56px;
  }
  .footer-social{
      gap:10px;
  }
  .footer-social a{
      width:36px;
      height:36px;
  }
  .footer-columns{
      grid-template-columns:1fr;
      gap:26px;
      padding:24px 0;
  }
  .footer-col{
      text-align:center;
  }
  .footer-col h3{
      font-size:17px;
  }
  .heading-underline{
      margin:7px auto 16px;
  }
  .footer-col ul li{
      margin-bottom:12px;
  }
  .footer-col ul li a{
      font-size:14px;
  }
  .contact-item{
      justify-content:center;
      text-align:left;
      font-size:14px;
      max-width:280px;
      margin-left:auto;
      margin-right:auto;
  }
  .footer-bottom{
      flex-direction:column;
      justify-content:center;
      text-align:center;
      padding:14px 0;
      gap:8px;
      font-size:13px;
  }
}

/* ===========================
   VERY SMALL DEVICES (≤360px)
=========================== */
@media (max-width: 360px) {
  .footer-logo img{
      height:48px;
  }
  .footer-social a{
      width:32px;
      height:32px;
  }
  .footer-col h3{
      font-size:16px;
  }
}