

@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);
  }