/* ─── VARIABLES ───────────────────────────────────────────────── */
:root {
  --dark: #12121A;
  --dark-2: #1C1C28;
  --dark-3: #282836;
  --copper: #C8923A;
  --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: var(--copper-lt);
}

.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: 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, 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: rgba(18, 18, 26, 0.97);
  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: 140px;
}

.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: rgba(255, 255, 255, 0.65);
  transition: color 0.3s;
  letter-spacing: 0.3px;
}

.nav-links a:hover {
  color: var(--white);
}

.nav-phone {
  display: flex;
  align-items: center;
  gap: 8px;
  background: var(--copper);
  color: var(--white);
  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('../image/vinayak-banner.webp');
  background-size: cover;
  background-position: center;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg, rgba(12, 12, 18, 0.938) 0%, rgb(12 12 18 / 44%) 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: var(--gold-bg);
  border: 1px solid rgba(200, 146, 58, 0.4);
  color: #fff;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 7px 18px;
  border-radius: 50px;
  margin-bottom: 22px;
}

.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: var(--copper-lt);
}

.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: var(--white);
  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: var(--copper);
  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: var(--white);
  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, 10vw, 64px);
  }

  .hero-form-card {
    margin-top: 40px;
  }

  .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: 80px 0;
  background: var(--white);
  overflow: hidden;
}

.about-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url("../image/about-bg.png") no-repeat center;
  background-size: auto;
  opacity: 0.48;
  z-index: 0;
}

.about-section>* {
  position: relative;
  z-index: 1;
}

.about-img-main {
  width: 100%;
  height: 460px;
  object-fit: cover;
  border-radius: 12px;
}

.about-img-inset {
  width: 200px;
  height: 200px;
  object-fit: cover;
  border-radius: 10px;
  border: 5px solid var(--white);
  position: absolute;
  bottom: -28px;
  right: -20px;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
}

.about-badge {
  position: absolute;
  top: -16px;
  left: 24px;
  background: var(--dark);
  color: var(--white);
  border-radius: 10px;
  padding: 16px 22px;
  text-align: center;
  min-width: 120px;
}

.about-badge-num {
  font-family: 'Playfair Display', serif;
  font-size: 34px;
  font-weight: 700;
  color: var(--copper-lt);
  line-height: 1;
}

.about-badge-lbl {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.6);
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-top: 4px;
}

.about-body-text {
  font-size: 14px;
  line-height: 1.85;
  color: var(--text-mid);
  margin-bottom: 24px;
}

.about-list {
  list-style: none;
  padding: 0;
  margin: 0 0 32px;
}

.about-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 15px;
  color: var(--text-mid);
  margin-bottom: 12px;
}

.about-list li i {
  color: var(--copper);
  margin-top: 2px;
  flex-shrink: 0;
  font-size: 15px;
}

.about-btn-row {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

/* ─── PRICING ─────────────────────────────────────────────────── */
.pricing-section {
  padding: 80px 0;
  background: var(--dark);
  position: relative;
  overflow: hidden;
}

.pricing-section::before {
  content: '';
  position: absolute;
  top: -200px;
  right: -200px;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(200, 146, 58, 0.08), transparent 70%);
  pointer-events: none;
}

.pricing-intro {
  margin-bottom: 42px;
  position: relative;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 28px;
  position: relative;
}

.pricing-card {
  position: relative;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.04) 0%, rgba(255, 255, 255, 0.01) 100%);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  padding: 40px 32px 32px;
  display: flex;
  flex-direction: column;
  transition: transform 0.5s cubic-bezier(.2, .8, .2, 1), border-color 0.4s, background 0.4s;
  overflow: hidden;
  backdrop-filter: blur(10px);
}

.pricing-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(200, 146, 58, 0.12), transparent 40%);
  opacity: 0;
  transition: opacity 0.4s;
  pointer-events: none;
}

.pricing-card:hover {
  transform: translateY(-8px);
  border-color: rgba(200, 146, 58, 0.4);
  background: linear-gradient(180deg, rgba(200, 146, 58, 0.06) 0%, rgba(255, 255, 255, 0.02) 100%);
}

.pricing-card:hover::before {
  opacity: 1;
}

.pricing-card.featured {
  border-color: rgba(200, 146, 58, 0.5);
  background: linear-gradient(180deg, rgba(200, 146, 58, 0.08) 0%, rgba(255, 255, 255, 0.02) 100%);
}

.pricing-card.featured::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 16px;
  padding: 1px;
  background: linear-gradient(180deg, var(--copper), transparent);
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
}

.pc-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 28px;
}

.pc-idx {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 2px;
  color: rgba(255, 255, 255, 0.3);
  font-variant-numeric: tabular-nums;
}

.pc-badge {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 6px 12px;
  border: 1px solid rgba(200, 146, 58, 0.35);
  color: var(--copper-lt);
  border-radius: 50px;
  background: rgba(200, 146, 58, 0.08);
}

.pc-badge.solid {
  background: var(--copper);
  color: var(--white);
  border-color: var(--copper);
}

.pc-bhk {
  font-family: 'Playfair Display', serif;
  font-size: 27px;
  font-weight: 600;
  line-height: 1.1;
  color: var(--white);
  margin-bottom: 8px;
}

.pc-bhk em {
  color: var(--copper-lt);
  font-style: italic;
}

.pc-sqft {
  font-size: 13px;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.45);
  margin-bottom: 16px;
}

.pc-specs {
  list-style: none;
  padding: 0;
  margin: 0 0 32px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.pc-specs li {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  font-size: 14px;
  color: rgba(255, 255, 255, 0.7);
}

.pc-specs li i {
  color: var(--copper-lt);
  font-size: 14px;
  width: 16px;
}

.pc-price-wrap {
  margin-top: auto;
  padding-top: 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.pc-price-label {
  font-size: 11px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.4);
  margin-bottom: 6px;
}

.pc-price {
  font-family: 'Playfair Display', serif;
  font-size: 28px;
  font-weight: 600;
  color: var(--copper-lt);
  margin-bottom: 24px;
  line-height: 1;
}

.pc-price small {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.842);
  font-weight: 400;
  margin-left: 4px;
}

.pc-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  background: transparent;
  border: 1px solid rgba(200, 146, 58, 0.4);
  color: var(--copper-lt);
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.5px;
  padding: 14px 20px;
  border-radius: var(--radius);
  cursor: pointer;
  transition: all 0.3s;
}

.pc-cta:hover {
  background: var(--copper);
  border-color: var(--copper);
  color: var(--white);
  gap: 12px;
}

.pricing-card.featured .pc-cta {
  background: var(--copper);
  border-color: var(--copper);
  color: var(--white);
}

.pricing-card.featured .pc-cta:hover {
  background: var(--copper-lt);
  border-color: var(--copper-lt);
}

.pricing-footer {
  margin-top: 56px;
  padding: 40px 48px;
  background: linear-gradient(135deg, rgba(200, 146, 58, 0.12), rgba(200, 146, 58, 0.04));
  border: 1px solid rgba(200, 146, 58, 0.25);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
}

.pricing-footer-text {
  flex: 1;
  min-width: 280px;
}

.pricing-footer-text strong {
  color: var(--white);
  font-weight: 600;
  display: block;
  font-size: 22px;
  font-family: 'Playfair Display', serif;
  margin-bottom: 6px;
}

.pricing-footer-text p {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.7;
  margin: 0;
}

@media (max-width: 767px) {
  .pricing-section {
    padding: 80px 0;
  }

  .pricing-grid {
    gap: 20px;
  }

  .pricing-card {
    padding: 21px 24px 21px;
  }

  .pc-bhk {
    font-size: 28px;
  }

  .pc-price {
    font-size: 26px;
  }
  .gallery-button{
    display: none;
  }

  .pricing-footer {
    padding: 28px 24px;
    flex-direction: column;
    align-items: flex-start;
  }
}

/* ─── 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("../image/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: var(--copper-lt);
  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: 280px;
  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 {}

.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;
  }
  .about-img-inset{
    right: 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: var(--white);
  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: 548;
  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: var(--copper);
  color: var(--white);
  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;
}

.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: var(--copper);
  font-size: 14px;
}

.dist-time {
  font-size: 13px;
  font-weight: 700;
  color: var(--white);
  background: var(--copper);
  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 rgba(200, 146, 58, 0.35);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 14px;
  color: var(--copper-lt);
}

.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: var(--white);
  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;
  }
}

@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: #c8923a;
  border-radius:6px;
  color: #fff;
  margin: 12px 0px;
}
  .hero-inner{
        padding-top:95px;
  }
  .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: 100%;
  }
  .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;
}
}
body.modal-open {
    padding-right: 0 !important;
}