/* ─── VARIABLES ───────────────────────────────────────────────── */
:root {
  --dark: #12121A;
  --dark-2: #1C1C28;
  --dark-3: #282836;
  --copper: #f5d676;
  --copper-lt: #E0AD64;
  --copper-dk: #A87428;
  --gold-bg: rgba(200, 146, 58, .12);
  --cream: #F8F6F2;
  --cream-2: #EDEBE5;
  --cream-3: #E2DDD4;
  --white: #FFFFFF;
  --text: #1E1E26;
  --text-mid: #52525E;
  --text-soft: #8A8A96;
  --radius: 6px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  overflow-x: hidden;
}

body {
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  color: var(--text);
  background: var(--cream);
  overflow-x: hidden;
}


h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: 'Cormorant Garamond', serif;
}

img {
  max-width: 100%;
  display: block;
}

a {
  text-decoration: none;
}

/* ─── SECTION COMMONS ─────────────────────────────────────────── */
.sec-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--copper);
  margin-bottom: 14px;
}

.sec-tag::before {
  content: '';
  display: block;
  width: 28px;
  height: 2px;
  background: var(--copper);
}

.sec-title {
  font-size: clamp(32px, 2.9vw, 48px);
  font-weight: 600;
  color: var(--text);
  line-height: 1.2;
  margin-bottom: 16px;
}

.sec-title em {
  font-style: normal;
  color: var(--copper);
}

.sec-title.on-dark {
  color: var(--white);
}

.sec-title.on-dark em {
  color: #f5d676;
}

.sec-desc {
  font-size: 14px;
  color: var(--text-mid);
  line-height: 1.8;
  font-weight: 400;
}

/* ─── BUTTONS ─────────────────────────────────────────────────── */
.btn-copper {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--copper);
  color: #363636;
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  font-weight: 700;
  padding: 13px 28px;
  border: none;
  border-radius: var(--radius);
  cursor: pointer;
  transition: background 0.3s, transform 0.2s;
  white-space: nowrap;
  letter-spacing: 0.3px;
}

.btn-copper:hover {
  background: var(--copper-lt);
  color: var(--white);
  transform: translateY(-1px);
}

.btn-copper.lg {
  font-size: 15px;
  padding: 15px 34px;
}

.btn-outline-copper {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: var(--copper);
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  font-weight: 600;
  padding: 12px 26px;
  border: 2px solid var(--copper);
  border-radius: var(--radius);
  cursor: pointer;
  transition: all 0.3s;
  white-space: nowrap;
}

.btn-outline-copper:hover {
  background: var(--copper);
  color: var(--white);
}

.btn-white {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--white);
  color: var(--dark);
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  font-weight: 700;
  padding: 13px 28px;
  border: none;
  border-radius: var(--radius);
  cursor: pointer;
  transition: all 0.3s;
  white-space: nowrap;
}

.btn-white:hover {
  background: var(--copper);
  color: var(--white);
}

.btn-dark {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--dark);
  color: var(--white);
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  font-weight: 700;
  padding: 13px 28px;
  border: none;
  border-radius: var(--radius);
  cursor: pointer;
  transition: background 0.3s;
  white-space: nowrap;
}

.btn-dark:hover {
  background: var(--dark-3);
  color: var(--white);
}

.btn-outline-white {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: var(--white);
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  font-weight: 600;
  padding: 12px 26px;
  border: 2px solid rgba(255, 255, 255, 0.5);
  border-radius: var(--radius);
  cursor: pointer;
  transition: all 0.3s;
  white-space: nowrap;
}

.btn-outline-white:hover {
  border-color: var(--white);
  background: rgba(255, 255, 255, 0.1);
  color: var(--white);
}

/* ─── NAV ─────────────────────────────────────────────────────── */

.nav-wrap {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  transition: background 0.4s, box-shadow 0.4s;
}

.nav-wrap.solid {
  background: #363636;
  backdrop-filter: blur(14px);
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 48px;
  height: 72px;
}

.nav-logo {
  font-family: 'Playfair Display', serif;
  font-size: 22px;
  font-weight: 700;
  color: var(--white);
  letter-spacing: 0.3px;
}

.nav-logo img {
  width: 80px;
}

.nav-logo span {
  color: var(--copper);
}

.nav-links {
  display: flex;
  gap: 30px;
  list-style: none;
}

.nav-links a {
  font-size: 13px;
  font-weight: 500;
  color: #f5d676;
  transition: color 0.3s;
  letter-spacing: 0.3px;
}

/* .nav-links a:hover {
  color: #363636;
} */

.nav-phone {
  display: flex;
  align-items: center;
  gap: 8px;
  background: var(--copper);
  color: #363636;
  font-size: 13px;
  font-weight: 700;
  padding: 9px 20px;
  border-radius: 50px;
  transition: background 0.3s;
}

.nav-phone:hover {
  background: var(--copper-lt);
  color: var(--white);
}

.nav-burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px;
}

.nav-burger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: 0.3s;
}

.mobile-menu {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 900;
  background: var(--dark);
  padding: 90px 36px 40px;
  flex-direction: column;
  gap: 22px;
}

.mobile-menu.open {
  display: flex;
}

.mobile-menu a {
  font-size: 24px;
  font-family: 'Playfair Display', serif;
  color: rgba(255, 255, 255, 0.75);
  transition: color 0.3s;
}

.mobile-menu a:hover {
  color: var(--copper);
}

@media (max-width: 991px) {

  .nav-links,
  .nav-phone {
    display: none;
  }

  .nav-burger {
    display: flex;
  }

  .nav-inner {
    padding: 0 24px;
  }
}

/* ─── HERO ────────────────────────────────────────────────────── */
.hero {
  min-height: 100vh;
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('../images/2nd-banner.jpeg');
  background-size: cover;
  background-position: center;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(356deg, rgb(12 12 18 / 71%) 0%, rgb(12 12 18 / 65%) 55%, rgb(12 12 18 / 8%) 100%);

}

.hero-inner {
  position: relative;
  z-index: 2;
  width: 100%;
  padding-top: 80px;
}

/* Left content */
.hero-location {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #f5d6767a;
  border: 1px solid rgba(200, 146, 58, 0.4);
  color: #ffffff;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 7px 18px;
  border-radius: 50px;
  margin-bottom: 15px;
}

.hero-location::before {
  content: '✦';
  font-size: 10px;
}

.hero-name {
  font-size: clamp(40px, 4.5vw, 60px);
  font-weight: 700;
  color: var(--white);
  line-height: 1.05;
  margin-bottom: 6px;
  text-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
}

.hero-name em {
  font-style: normal;
  color: #f5d676;
}

.hero-tagline {
  font-family: 'Inter', sans-serif;
  font-size: 18px;
  color: rgba(255, 255, 255, 0.7);
  font-weight: 400;
  margin-bottom: 26px;
}

.hero-price-strip {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  background: var(--copper);
  color: #363636;
  padding: 12px 24px;
  border-radius: var(--radius);
  margin-bottom: 21px;
  font-weight: 600;
  position: relative;
  overflow: hidden;
  isolation: isolate;
}

.hero-price-strip::before {
  content: "";
  position: absolute;
  top: 0;
  left: -120%;
  width: 60px;
  height: 100%;
  background: rgba(255, 255, 255, .35);
  filter: blur(8px);
  transform: skewX(-25deg);
  animation: shine 6s linear infinite;
  z-index: 1;
}

.hero-price-strip>* {
  position: relative;
  z-index: 2;
}

@keyframes shine {
  0% {
    left: -120%;
  }

  15% {
    left: 130%;
  }

  100% {
    left: 130%;
  }
}

.hero-price-label {
  font-size: 12px;
  font-weight: 600;
  opacity: 0.8;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.hero-price-val {
  font-family: auto;
  font-size: 30px;
  font-weight: 700;
  line-height: 1;
}

.hero-price-sep {
  width: 1px;
  height: 32px;
  background: rgba(255, 255, 255, 0.35);
}

.hero-movein {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.5px;
  opacity: 0.9;
}

/* 3 checkpoints */
.hero-checks {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 28px;
}

.hero-check {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.9);
  font-weight: 500;
}

.hero-check-icon {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--copper);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 12px;
  color: var(--white);
}

.hero-cta-row {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

/* Lead Form */
.hero-form-card {
  background: var(--white);
  width: 360px;
  border-radius: 12px;
  padding: 24px 24px 19px;
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.5);
}

.hfc-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--gold-bg);
  border: 1px solid rgba(200, 146, 58, 0.35);
  color: #363636;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 50px;
  margin-bottom: 14px;
}

.hfc-title {
  font-size: 22px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 4px;
  line-height: 1.3;
}

.hfc-sub {
  font-size: 13px;
  color: var(--text-soft);
  margin-bottom: 22px;
  line-height: 1.5;
}

.hfc-input {
  width: 100%;
  height: 45px;
  padding: 12px 16px;
  border: 1.5px solid var(--cream-3);
  border-radius: var(--radius);
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  color: var(--text);
  background: var(--cream);
  outline: none;
  transition: border-color 0.25s, background 0.25s;
  margin-bottom: 10px;
}

.hfc-input:focus {
  border-color: var(--copper);
  background: var(--white);
}

.hfc-input::placeholder {
  color: var(--text-soft);
}

.hfc-select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%238A8A96' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  cursor: pointer;
}

.hfc-submit {
  width: 100%;
  padding: 14px;
  background: var(--copper);
  color: #363636;
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  font-weight: 700;
  border: none;
  border-radius: var(--radius);
  cursor: pointer;
  transition: background 0.3s;
  letter-spacing: 0.5px;
  margin-top: 4px;
}

.hfc-submit:hover {
  background: var(--copper-lt);
}

.hfc-privacy {
  font-size: 11px;
  color: var(--text-soft);
  text-align: center;
  margin-top: 12px;
}

@media (max-width: 991px) {
  .hero-name {
    font-size: clamp(40px, 9vw, 64px);
  }

  .hero-form-card {
    margin-top: -10px;
  }

  .hero-price-strip {
    flex-wrap: wrap;
  }
}

/* ─── TICKER ──────────────────────────────────────────────────── */
.ticker-bar {
  background: var(--copper);
  padding: 13px 0;
  overflow: hidden;
  white-space: nowrap;
}

.ticker-track {
  display: inline-flex;
  gap: 56px;
  animation: ticker 30s linear infinite;
}

.ticker-item {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--white);
  display: flex;
  align-items: center;
  gap: 14px;
}

.ticker-item::before {
  content: '★';
  font-size: 9px;
  opacity: 0.6;
}

@keyframes ticker {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

/* ─── ABOUT ───────────────────────────────────────────────────── */

.about-section {
  position: relative;
  padding: 90px 0 25px;
  background: #f8f8f8;
  overflow: hidden;

}

.about-section::before {

  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #ffffff, #f3f3f3);
  z-index: 0;

}

.about-section .container {

  position: relative;
  z-index: 2;

}

/* IMAGE */

.about-image-wrapper {

  position: relative;
  padding-right: 50px;
  padding-bottom: 60px;

}

.about-img-main {

  width: 100%;
  height: 560px;
  object-fit: cover;
  border-radius: 24px;
  box-shadow: 0 25px 60px rgba(0, 0, 0, .15);
  transition: .5s;

}

.about-img-main:hover {

  transform: scale(1.03);

}

.about-img-inset {
  position: absolute;
  width: 120px;
  height: 120px;
  object-fit: cover;
  top: -30px;
  left: -30px;
  border-radius: 10px;
  border: 2px solid #fff;
  box-shadow: 0 20px 45px rgba(0, 0, 0, .18);
  transition: .4s;

}

.about-img-inset:hover {
  transform: translateY(-8px);

}

/* Badge */

/* Content */

.about-content-box {
  background: #fff;
  padding: 25px;
  border-radius: 10px;
  box-shadow: 0 15px 45px rgba(0, 0, 0, .08);

}

.sec-tag {
  display: inline-block;
  padding: 8px 18px;
  border-radius: 30px;
  background: #363636;
  color: #f5d676;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 20px;

}

.sec-title {
  font-size: 40px;
  line-height: 1.2;
  margin-bottom: 10px;
  color: #222;
  font-family: "Playfair Display", serif;

}

.sec-title em {

  color: #f5d676;
  font-style: normal;

}

.about-body-text {

  font-size: 15px;
  color: #666;
  line-height: 1.9;
  margin-bottom: 20px;

}

/* Buttons */

.about-btn-row {

  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  margin-top: 35px;

}

/* ─── PRICING ─────────────────────────────────────────────────── */

/*==============================
        PRICING SECTION
==============================*/

.pricing-section {
  padding: 90px 0;
  background: #0f0f0f;
  position: relative;
  overflow: hidden;
}

.pricing-section::before {
  content: "";
  position: absolute;
  width: 500px;
  height: 500px;
  right: -180px;
  top: -180px;
  background: radial-gradient(circle, rgba(198, 163, 108, .12), transparent 70%);
  pointer-events: none;
}

.pricing-intro {
  margin-bottom: 50px;
}

/*==============================
        WRAPPER
==============================*/

.pricing-wrapper {
  display: flex;
  flex-direction: row;
  gap: 25px;
  justify-content: center;
}

/*==============================
        CARD
==============================*/

.pricing-card {
  background: #161616;
  border: 1px solid rgba(255, 255, 255, .08);
  border-radius: 18px;
  padding: 30px;
  transition: .4s;
  position: relative;
  overflow: hidden;
}

.pricing-card::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 5px;
  height: 100%;
  background: linear-gradient(to bottom, #c6a36c, #f2d29d);
  transition: .4s;
}

.pricing-card:hover {
  transform: translateY(-6px);
  border-color: #c6a36c;
  box-shadow: 0 18px 40px rgba(0, 0, 0, .35);
}

.pricing-card.featured {
  border-color: #c6a36c;
  background: linear-gradient(90deg, #181818, #1f1b16);
}

/*==============================
        TOP
==============================*/

.pricing-card-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 25px;
}

.pricing-number {
  width: 55px;
  height: 55px;
  border-radius: 50%;
  border: 1px solid rgba(198, 163, 108, .4);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #c6a36c;
  font-size: 18px;
  font-weight: 700;
}

.pricing-status {
  padding: 8px 18px;
  border-radius: 30px;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #c6a36c;
  border: 1px solid rgba(198, 163, 108, .4);
  background: rgba(198, 163, 108, .08);
}

.pricing-status.popular {
  background: #363636;
  color: #f5d676;
}

/*==============================
        BODY
==============================*/

.pricing-card-body {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 30px;
  padding: 25px 0;
  border-top: 1px solid rgba(255, 255, 255, .08);
  border-bottom: 1px solid rgba(255, 255, 255, .08);
}

.pricing-left {
  flex: 1;
}

.pc-bhk {
  font-size: 30px;
  color: #fff;
  margin: 0 0 5px;
  font-family: 'Playfair Display', serif;
}

.pc-sqft {
  color: rgba(255, 255, 255, .65);
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.pricing-right {
  text-align: right;
}

.price-label {
  display: block;
  font-size: 12px;
  text-transform: uppercase;
  color: #999;
  margin-bottom: 10px;
  letter-spacing: 2px;
}

.pc-price {
  font-size: 30px;
  color: #c6a36c;
  font-family: 'Playfair Display', serif;
  line-height: 1;
}

.pricing-right small {
  color: #d6d6d6;
  font-size: 14px;
}

/*==============================
        FOOTER
==============================*/

.pricing-card-footer {
  display: flex;
  justify-content: center;
  margin-top: 25px;
}

.pc-cta {
  border: none;
  background: #ffffff;
  color: #363636;
  padding: 14px 30px;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 10px;
  transition: .35s;
}

.pc-cta:hover {
  background: #fff;
  color: #111;
}

.pc-cta i {
  transition: .3s;
}

.pc-cta:hover i {
  transform: translateX(6px);
}

/*==============================
        RESPONSIVE
==============================*/

@media(max-width:991px) {

  .pricing-card-body {
    flex-direction: column;
    align-items: flex-start;
  }

  .pricing-right {
    text-align: left;
  }

  .pricing-card-footer {
    justify-content: flex-start;
  }

  .pc-price {
    font-size: 32px;
  }

  .pricing-wrapper {
    flex-direction: column;
  }

  .pricing-intro {
    margin-bottom: 20px;
  }

}

@media(max-width:767px) {

  .pricing-section {
    padding: 60px 0;
  }

  .pricing-card {
    padding: 22px;
  }

  .pricing-card-top {
    margin-bottom: 18px;
  }

  .pricing-number {
    width: 45px;
    height: 45px;
    font-size: 16px;
  }

  .pc-bhk {
    font-size: 28px;
  }

  .pc-price {
    font-size: 28px;
  }

  .pc-cta {
    width: 100%;
    justify-content: center;
  }

}

/* ─── HIGHLIGHTS ──────────────────────────────────────────────── */
/*=========================================
 HIGHLIGHTS SECTION
=========================================*/

.highlights-section {
  position: relative;
  padding: 100px 0;
  background: var(--cream);
  overflow: hidden;
}

.highlights-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 38%;
  height: 100%;
  background: url("../images/side-bg.jpg") center center/cover no-repeat;
  opacity: .12;
  pointer-events: none;
}

.highlight-wrap {
  display: grid;
  grid-template-columns: 1fr 520px;
  gap: 70px;
  align-items: center;
  position: relative;
  z-index: 2;
}

.highlight-title {
  font-size: 52px;
  line-height: 1.15;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 45px;
}

.highlight-title em {
  color: var(--copper);
  font-style: normal;
}

.highlight-list {
  display: flex;
  flex-direction: column;
  gap: 11px;
}

.highlight-item {
  display: flex;
  align-items: center;
  gap: 20px;
  transition: .35s;
}

.highlight-item:hover {
  transform: translateX(8px);
}

.highlight-no {
  width: 48px;
  min-width: 48px;
  height: 48px;
  border: 2px solid rgba(0, 0, 0, .08);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  font-weight: 700;
  color: var(--text);
  background: #fff;
}

.highlight-text h5 {
  font-family: auto;
  font-size: 20px;
  margin-bottom: 6px;
  color: var(--text);
  font-weight: 400;
}

.highlight-text p {
  margin: 0;
  color: var(--text-mid);
  line-height: 1.8;
  font-size: 15px;
}

.highlight-btns {
  margin-top: 45px;
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
}

/* IMAGE */

.highlight-image-box {
  position: relative;
  overflow: hidden;
  background: #000;
}

.highlight-image-box img {
  width: 100%;
  height: 450px;
  object-fit: cover;
  display: block;
  transition: 1s;
}

.highlight-image-box:hover img {
  transform: scale(1.05);
}

.image-badge {
  position: absolute;
  bottom: 25px;
  left: 25px;
  background: rgba(0, 0, 0, .75);
  backdrop-filter: blur(10px);
  color: #fff;
  padding: 14px 20px;
  font-size: 15px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.image-badge span {
  font-size: 36px;
  font-weight: 700;
  color: var(--copper);
  line-height: 1;
}

/* TABLET */

@media(max-width:991px) {

  .highlight-wrap {
    grid-template-columns: 1fr;
    gap: 45px;
  }

  .highlight-image {
    order: -1;
  }

  .highlight-title {
    font-size: 38px;
  }

}

/* MOBILE */

@media(max-width:767px) {

  .highlights-section {
    padding: 70px 0;
  }

  .highlight-title {
    font-size: 32px;
    margin-bottom: 30px;
  }

  .highlight-item {
    gap: 14px;
  }

  .highlight-no {
    width: 48px;
    min-width: 48px;
    height: 48px;
    font-size: 18px;
  }

  .highlight-text h4 {
    font-size: 17px;
  }

  .highlight-text p {
    font-size: 14px;
    line-height: 1.7;
  }

  .highlight-btns {
    flex-direction: column;
  }

  .highlight-btns a {
    width: 100%;
    justify-content: center;
  }

}

/* ─── AMENITIES ───────────────────────────────────────────────── */
.amenities-section {
  padding: 80px 0;
  background: var(--dark-2);
}

.am-icon-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 2px;
  margin-top: 48px;
}

.am-cell {
  background: rgba(255, 255, 255, 0.04);
  padding: 28px 20px;
  text-align: center;
  border: 1px solid rgba(255, 255, 255, 0.06);
  transition: background 0.3s, border-color 0.3s;
  cursor: default;
}

.am-cell:hover {
  background: rgba(200, 146, 58, 0.12);
  border-color: rgba(200, 146, 58, 0.3);
}

.am-cell-icon {
  font-size: 28px;
  color: #f5d676;
  margin-bottom: 12px;
  display: block;
}

.am-cell-name {
  font-size: 13px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.4;
}

.am-banner {
  margin-top: 60px;
  border-radius: 12px;
  overflow: hidden;
  position: relative;
  min-height: 280px;
}

.am-banner img {
  width: 100%;
  height: 300px;
  object-fit: cover;
}

.am-banner-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(12, 12, 18, 0.88) 0%, rgba(12, 12, 18, 0.671) 60%, transparent 100%);
  display: flex;
  align-items: center;
  padding: 0 56px;
}

.am-banner-content h3 {
  font-size: 32px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 10px;
}

.am-banner-content p {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 24px;
  max-width: 380px;
}

.am-cta {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

@media (max-width: 991px) {
  .am-icon-grid {
    grid-template-columns: repeat(4, 1fr);
  }

  .am-banner-overlay {
    padding: 0 32px;
  }
}

@media (max-width: 575px) {
  .am-icon-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .am-banner-overlay {
    padding: 0 24px;
  }

  .am-banner-content h3 {
    font-size: 24px;
  }

  .about-img-main {
    height: 250px;
    object-fit: fill;
  }

  .about-section {
    padding: 60px 0 35px;

  }

  .btn-outline-copper {
    justify-content: center;
    width: 100%;
  }

  .btn-copper {
    width: 100%;
    justify-content: center;
  }

  .about-img-inset {
    right: 0;
    display: none;
  }

  .about-image-wrapper {
    padding: 0;
  }

  .about-body-text {
    text-align: justify;
  }
}

/* ─── GALLERY ─────────────────────────────────────────────────── */
.gallery-section {
  padding: 80px 0;
  background: var(--cream);
}

.gal-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-template-rows: 260px 240px;
  gap: 10px;
  margin-top: 48px;
}

.gal-item {
  grid-column: span 4;
  overflow: hidden;
  border-radius: 10px;
  position: relative;
  cursor: pointer;
}

.gal-item.tall {
  grid-row: span 2;
  grid-column: span 4;
}

.gal-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s;
}

.gal-item:hover img {
  transform: scale(1.06);
}

.gal-item-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(12, 12, 18, 0.7) 0%, transparent 60%);
  opacity: 0;
  transition: opacity 0.4s;
  display: flex;
  align-items: flex-end;
  padding: 18px;
}

.gal-item:hover .gal-item-overlay {
  opacity: 1;
}

.gal-label {
  font-size: 13px;
  font-weight: 700;
  color: var(--white);
  letter-spacing: 0.5px;
  display: flex;
  align-items: center;
  gap: 6px;
}

.gal-label::before {
  content: '↗';
  color: var(--copper-lt);
}

.gal-cta {
  margin-top: 36px;
  text-align: center;
}

@media (max-width: 767px) {
  .gal-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto;
  }

  .gal-item,
  .gal-item.tall {
    grid-column: span 1;
    grid-row: auto;
    height: 200px;
  }
}

/* ─── FLOOR PLANS ─────────────────────────────────────────────── */
.plans-section {
  padding: 80px 0;
  background: var(--white);
}

.plans-tabs {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

.plan-tab {
  padding: 10px 24px;
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  font-weight: 600;
  color: var(--text-mid);
  background: var(--cream);
  border: 1.5px solid var(--cream-3);
  border-radius: 50px;
  cursor: pointer;
  transition: all 0.3s;
}

.plan-tab.active,
.plan-tab:hover {
  background: var(--copper);
  color: #363636;
  border-color: var(--copper);
}

.plan-card {
  border-radius: 10px;
  overflow: hidden;
  border: 1.5px solid var(--cream-2);
  transition: box-shadow 0.3s, transform 0.3s;
}

.plan-card:hover {
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
  transform: translateY(-4px);
}

.plan-img-wrap {
  position: relative;
  overflow: hidden;
}

.plan-img-wrap img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  transition: transform 0.5s;
}

.plan-card:hover .plan-img-wrap img {
  transform: scale(1.04);
}

.plan-img-overlay {
  position: absolute;
  inset: 0;
  background: rgba(12, 12, 18, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s;
}

.plan-card:hover .plan-img-overlay {
  opacity: 1;
}

.plan-view-btn {
  background: var(--copper);
  color: var(--white);
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  font-weight: 700;
  padding: 10px 22px;
  border: none;
  border-radius: var(--radius);
  cursor: pointer;
}

.plan-body {
  padding: 22px 22px 24px;
  background: var(--white);
}

.plan-type {
  font-size: 20px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 4px;
}

.plan-area {
  font-size: 13px;
  color: var(--text-soft);
  margin-bottom: 16px;
}

.plan-tags {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
  margin-bottom: 18px;
}

.plan-tag {
  font-size: 11px;
  font-weight: 600;
  color: var(--text-mid);
  background: var(--cream);
  padding: 4px 12px;
  border-radius: 50px;
  border: 1px solid var(--cream-3);
}

.plans-download-bar {
  margin-top: 44px;
  background: var(--dark);
  border-radius: 10px;
  padding: 28px 36px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}

.pdb-text {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.5);
  line-height: 1.6;
}

.pdb-text strong {
  color: var(--white);
  font-size: 20px;
  font-weight: 700;
  display: block;
  margin-bottom: 4px;
}

.pdb-btns {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

/* ─── LOCATION ────────────────────────────────────────────────── */
.location-section {
  padding: 80px 0;
  background: var(--cream);
}

.loc-map {
  border-radius: 12px;
  overflow: hidden;
  height: 400px;
  position: relative;
}

.loc-map img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.loc-map-pin {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: #363636;
  color: #f5d676;
  font-size: 13px;
  font-weight: 700;
  padding: 10px 20px;
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  gap: 8px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
}

.loc-map-bottom {
  background: var(--dark);
  padding: 14px 22px;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.4);
  border-radius: 0 0 12px 12px;
  margin-top: -4px;
  display: flex;
  align-items: center;
  gap: 8px;
  display: none;
}

.loc-map-bottom::before {
  content: '📍';
}

.loc-distances {
  background: var(--white);
  border-radius: 12px;
  padding: 32px;
  height: 100%;
}

.loc-dist-title {
  font-size: 22px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 24px;
}

.dist-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 0;
  border-bottom: 1px solid var(--cream-2);
}

.dist-row:last-child {
  border-bottom: none;
}

.dist-name {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: var(--text-mid);
}

.dist-name i {
  color: #363636;
  font-size: 14px;
}

.dist-time {
  font-size: 13px;
  font-weight: 700;
  color: #363636;
  background: #f5d676;
  padding: 4px 14px;
  border-radius: 50px;
}

.loc-cta {
  margin-top: 24px;
}

/* ─── FOOTER ──────────────────────────────────────────────────── */
.site-footer {
  background: var(--dark);
  padding: 90px 0 0;
}

.footer-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  padding-bottom: 20px;
}

.footer-dev {}

.footer-logo-text {
  font-size: 26px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 4px;
}

.footer-logo-text span {
  color: var(--copper-lt);
}

.footer-logo-sub {
  font-size: 11px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: 24px;
}

.footer-dev-about {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.938);
  line-height: 1.85;
  font-weight: 300;
  margin-bottom: 32px;
}

.footer-stats-row {
  display: flex;
  gap: 32px;
  margin-bottom: 36px;
  flex-wrap: wrap;
}

.fstat-num {
  font-family: 'Playfair Display', serif;
  font-size: 34px;
  font-weight: 700;
  color: var(--white);
  line-height: 1;
}

.fstat-num span {
  color: var(--copper-lt);
}

.fstat-lbl {
  font-size: 11px;
  color: #fff;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-top: 4px;
}

.footer-contact-list {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.fcon-row {
  display: inline-flex;
  align-items: center;
  width: 100%;
  gap: 14px;
  background: #ffffff1c;
  padding: 14px;
  border-radius: 12px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.fcon-row:last-child {
  border-bottom: none;
}

.fcon-icon {
  width: 34px;
  height: 34px;
  border: 1px solid #f5d676;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 14px;
  color: #f5d676;
}

.fcon-text {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.911);
  line-height: 1.65;
}

/* Footer form */
.footer-form {
  margin-bottom: 1rem;
  width: 400px;
  justify-self: end;
}

.ff-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--copper-lt);
  margin-bottom: 10px;
}

.ff-title {
  font-size: 22px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 24px;
  line-height: 1.3;
}

.ff-input {
  width: 100%;
  padding: 13px 16px;
  background: rgba(255, 255, 255, 0.06);
  border: 1.5px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius);
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  color: var(--white);
  outline: none;
  margin-bottom: 10px;
  transition: border-color 0.25s;
}

.ff-input:focus {
  border-color: var(--copper);
  background: rgba(255, 255, 255, 0.09);
}

.ff-input::placeholder {
  color: rgba(255, 255, 255, 0.25);
}

.ff-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.ff-btn {
  width: 100%;
  padding: 15px;
  background: var(--copper);
  color: #363636;
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  font-weight: 700;
  border: none;
  border-radius: var(--radius);
  cursor: pointer;
  margin-top: 6px;
  transition: background 0.3s;
}

.ff-btn:hover {
  background: var(--copper-lt);
}

@media (max-width: 991px) {
  .footer-layout {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .loc-distances {
    padding: 20px;
  }

  .plans-section {
    padding: 60px 0;
  }

  .dist-time {
    width: 73px;
  }

}

@media (max-width: 575px) {
  .ff-row {
    grid-template-columns: 1fr;
  }
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.07);
  padding: 22px 0;
}

.footer-bottom-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

.footer-bottom p {
  font-size: 12px;
  color: #fff;
  margin: 0;
}

.footer-bottom a {
  color: #fff;
  transition: color 0.3s;
}

.footer-bottom a:hover {
  color: var(--copper-lt);
}

.disclaimer-bar {
  background: rgba(255, 255, 255, 0.02);
  padding: 14px 0;
}

.disclaimer-bar p {
  font-size: 9px;
  color: #fff;
  text-align: center;
  line-height: 1.7;
  margin: 0;
}

/* ─── FLOAT ───────────────────────────────────────────────────── */
/* Mobile Fixed Bottom CTA */
.mobile-fixed-cta {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 45px;
  display: none;
  z-index: 99999;
  background: #111;
  box-shadow: 0 -5px 20px rgba(0, 0, 0, .3);
}

.mobile-cta-btn {
  flex: 1;
  border: none;
  text-decoration: none;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 8px;
  color: #fff;
  font-size: 12px;
  font-weight: 600;
  transition: .3s;
}

.mobile-cta-btn i {
  font-size: 18px;
}

.call-btn {
  background: #1f2937;
}

.whatsapp-btn {
  background: #25D366;
}

.enquire-btn {
  background: var(--copper);
  color: #fff;
}

.mobile-cta-btn:hover {
  color: #fff;
  opacity: .95;
}

@media(max-width:991.98px) {

  .mobile-fixed-cta {
    display: flex;
  }

  body {
    padding-bottom: 45px;
  }

}

/* ─── REVEAL ──────────────────────────────────────────────────── */
.rev {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.rev.show {
  opacity: 1;
  transform: none;
}

.rev-d1 {
  transition-delay: 0.1s;
}

.rev-d2 {
  transition-delay: 0.2s;
}

.rev-d3 {
  transition-delay: 0.3s;
}

/* ─── ICON INPUT WRAPPER ──────────────────────────────────────── */
.input-icon-wrap {
  position: relative;
}

.input-icon-wrap i {
  position: absolute;
  left: 12px;
  top: 45%;
  transform: translateY(-50%);
  color: var(--text-soft);
  font-size: 17px;
  pointer-events: none;
}

.input-icon-wrap .hfc-input,
.input-icon-wrap .ff-input {
  padding-left: 42px;
}

.footer-form .input-icon-wrap i {
  color: rgba(255, 255, 255, 0.3);
}

.footer-form {
  border: 1px solid #7f7f7f82;
  padding: 12px;
  border-radius: 12px;
}

@media (max-width: 991px) {
  .hero {
    min-height: 100%;
    padding: 30px 0px;
  }

  .hero-tagline {
    padding: 12px;
    background-color: #f5d676;
    border-radius: 6px;
    color: #fff;
    margin: 12px 0px;
  }

  .hero-inner {
    padding-top: 65px;
  }

  .hero-price-val {
    font-size: 38px;
  }

  .highlights-section,
  .amenities-section,
  .gallery-section,
  .location-section {
    padding: 60px 0px;
  }

  .am-cell {
    padding: 15px;
  }

  .am-cell-name {
    font-size: 11px;
  }

  .highlight-text h5 {
    font-size: 16px;
  }

  .highlight-image-box img {
    height: 250px;
  }

  .hero-overlay {
    background: linear-gradient(105deg, rgba(12, 12, 18, 0.938) 0%, rgb(12 12 18 / 82%) 55%, rgb(12 12 18 / 8%) 100%);
  }

  .hero-form-card {
    width: 100%;
  }

  .footer-form {
    margin-top: 1rem;
    width: 100%;
    justify-self: start;
  }

  .footer-bottom-row {
    justify-content: center;
  }

  .footer-bottom {
    padding: 10px 0px;
  }

  .site-footer {
    padding: 40px 0 60px;
  }
}

body.modal-open {
  padding-right: 0 !important;
}