/* ================================================
   ASHIYANA BY HARSH — MASTER STYLESHEET
   Design System: Navy + Gold + Off-white
   ================================================ */

/* ---- Google Fonts ---- */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,600;0,700;1,400&family=Inter:wght@300;400;500;600;700&display=swap');

/* ---- CSS Variables ---- */
:root {
  --navy:        #0D1B2A;
  --navy-light:  #162336;
  --navy-dark:   #080f18;
  --gold:        #C9A84C;
  --gold-light:  #E8D5A3;
  --gold-dark:   #A8873C;
  --cream:       #F5F0E8;
  --white:       #FFFFFF;
  --gray-100:    #F8F8F8;
  --gray-200:    #EFEFEF;
  --gray-400:    #AAAAAA;
  --gray-600:    #666666;
  --gray-800:    #333333;
  --text-dark:   #0D1B2A;
  --text-muted:  #5A6B7D;

  --font-heading: 'Playfair Display', Georgia, serif;
  --font-body:    'Inter', system-ui, sans-serif;

  --shadow-sm:  0 2px 8px rgba(13,27,42,0.10);
  --shadow-md:  0 4px 24px rgba(13,27,42,0.14);
  --shadow-lg:  0 8px 48px rgba(13,27,42,0.20);
  --shadow-gold:0 4px 20px rgba(201,168,76,0.30);

  --radius-sm:  8px;
  --radius-md:  14px;
  --radius-lg:  20px;
  --radius-xl:  28px;

  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --header-h:   76px;
}

/* ---- Reset & Base ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: var(--font-body);
  color: var(--text-dark);
  background: #FAF8F3;
  line-height: 1.6;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a  { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { cursor: pointer; border: none; font-family: var(--font-body); }

/* ---- Typography ---- */
h1,h2,h3,h4,h5 { font-family: var(--font-heading); line-height: 1.2; }
h1 { font-size: clamp(2rem, 5vw, 3.5rem); }
h2 { font-size: clamp(1.6rem, 3.5vw, 2.5rem); }
h3 { font-size: clamp(1.2rem, 2.5vw, 1.6rem); }
h4 { font-size: 1.15rem; }

.section-label {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.5rem;
}

.section-title {
  font-family: var(--font-heading);
  color: var(--navy);
  margin-bottom: 1rem;
}

.section-subtitle {
  color: var(--text-muted);
  font-size: 1.05rem;
  max-width: 540px;
}

/* ---- Layout ---- */
.container {
  width: 100%;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.section { padding: 90px 0; }
.section-sm { padding: 60px 0; }

.text-center { text-align: center; }
.text-center .section-subtitle { margin: 0 auto; }

.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; }

/* ---- Buttons ---- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.6rem;
  border-radius: 50px;
  font-size: 0.9rem;
  font-weight: 600;
  transition: var(--transition);
  white-space: nowrap;
}

.btn-primary {
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: var(--navy);
  box-shadow: var(--shadow-gold);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(201,168,76,0.44);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255,255,255,0.5);
}
.btn-outline:hover {
  background: rgba(255,255,255,0.12);
  border-color: var(--white);
}

.btn-outline-gold {
  background: transparent;
  color: var(--gold);
  border: 2px solid var(--gold);
}
.btn-outline-gold:hover {
  background: var(--gold);
  color: var(--navy);
}

.btn-navy {
  background: var(--navy);
  color: var(--white);
}
.btn-navy:hover {
  background: var(--navy-light);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn-wa {
  background: #25D366;
  color: var(--white);
  box-shadow: 0 4px 16px rgba(37,211,102,0.35);
}
.btn-wa:hover {
  background: #1ebe5d;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(37,211,102,0.45);
}

.btn-sm { padding: 0.55rem 1.2rem; font-size: 0.82rem; }
.btn-lg { padding: 1rem 2.2rem; font-size: 1rem; }

/* ---- Navbar ---- */
#navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--header-h);
  display: flex;
  align-items: center;
  background: transparent;
  transition: background var(--transition), box-shadow var(--transition);
}

#navbar.scrolled {
  background: rgba(13,27,42,0.97);
  backdrop-filter: blur(12px);
  box-shadow: var(--shadow-md);
}

#navbar.solid {
  background: var(--navy);
  box-shadow: var(--shadow-md);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}

.nav-logo {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 0.6rem;
  line-height: 1;
}

.nav-logo-img {
  height: 100px;
  width: auto;
  object-fit: contain;
  display: block;
}

.nav-logo-main {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--gold);
  letter-spacing: 0.01em;
}

.nav-logo-sub {
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-top: 2px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 200px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.nav-links a {
  color: rgba(255,255,255,0.82);
  font-size: 0.97rem;
  font-weight: 500;
  padding: 0.45rem 0.9rem;
  border-radius: 6px;
  transition: var(--transition);
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--gold);
  background: rgba(201,168,76,0.10);
}

.nav-cta { margin-left: 1rem; }

.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  padding: 4px;
}

.nav-hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: var(--transition);
}

/* Mobile nav drawer */
.nav-drawer {
  display: none;
  position: fixed;
  top: var(--header-h);
  left: 0;
  right: 0;
  background: var(--navy-dark);
  padding: 1.5rem;
  z-index: 999;
  border-top: 1px solid rgba(255,255,255,0.08);
  transform: translateY(-8px);
  opacity: 0;
  transition: var(--transition);
}

.nav-drawer.open {
  transform: translateY(0);
  opacity: 1;
}

.nav-drawer a {
  display: block;
  color: rgba(255,255,255,0.8);
  padding: 0.85rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.07);
  font-size: 1rem;
  font-weight: 500;
  transition: var(--transition);
}

.nav-drawer a:hover { color: var(--gold); }
.nav-drawer .drawer-cta { margin-top: 1.25rem; display: block; text-align: center; }

/* ---- Hero Section ---- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: var(--navy-dark);
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('../assets/images/hero.png');
  background-size: cover;
  background-position: center;
  filter: brightness(0.38);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(13,27,42,0.82) 0%,
    rgba(13,27,42,0.45) 50%,
    rgba(13,27,42,0.65) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 680px;
  padding-top: var(--header-h);
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(201,168,76,0.18);
  border: 1px solid rgba(201,168,76,0.35);
  color: var(--gold-light);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.4rem 1rem;
  border-radius: 50px;
  margin-bottom: 1.5rem;
}

.hero-badge::before {
  content: '';
  width: 6px;
  height: 6px;
  background: var(--gold);
  border-radius: 50%;
  animation: pulse-dot 1.8s ease-in-out infinite;
}

@keyframes pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(0.7); }
}

.hero h1 {
  color: var(--white);
  margin-bottom: 1.25rem;
}

.hero h1 em {
  font-style: italic;
  color: var(--gold);
}

.hero-desc {
  color: rgba(255,255,255,0.75);
  font-size: 1.1rem;
  line-height: 1.75;
  margin-bottom: 2rem;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 3rem;
}

.hero-stats {
  display: flex;
  gap: 2.5rem;
  flex-wrap: wrap;
}

.hero-stat {
  display: flex;
  flex-direction: column;
}

.hero-stat-num {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
}

.hero-stat-label {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.55);
  letter-spacing: 0.05em;
  margin-top: 4px;
}

.hero-scroll {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  color: rgba(255,255,255,0.45);
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  animation: bounce-down 2s ease-in-out infinite;
}

.hero-scroll::after {
  content: '';
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, rgba(255,255,255,0.4), transparent);
}

@keyframes bounce-down {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(6px); }
}

/* ---- City Pills / Filter ---- */
.city-filter {
  display: flex;
  gap: 0.6rem;
  flex-wrap: wrap;
  margin: 1.5rem 0;
  justify-content: center;
}

.city-pill {
  padding: 0.45rem 1.1rem;
  border-radius: 50px;
  border: 1.5px solid var(--gray-200);
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--gray-600);
  background: var(--white);
  cursor: pointer;
  transition: var(--transition);
}

.city-pill:hover {
  border-color: var(--gold);
  color: var(--gold-dark);
}

.city-pill.active {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--navy);
  font-weight: 600;
  box-shadow: var(--shadow-gold);
}

/* ---- Project Cards ---- */
.projects-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(min(310px, 100%), 1fr));
  gap: 2rem;
}

.project-card {
  background: #FFFFFF;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--gray-200);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
  animation: card-appear 0.5s ease both;
}

@keyframes card-appear {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}

.project-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(201,168,76,0.25);
}

.card-image-wrap {
  position: relative;
  overflow: hidden;
  height: 220px;
}

.card-image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.project-card:hover .card-image-wrap img {
  transform: scale(1.06);
}

.card-badge {
  position: absolute;
  top: 1rem;
  left: 1rem;
  background: var(--gold);
  color: var(--navy);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.3rem 0.75rem;
  border-radius: 4px;
}

.card-badge.new { background: #22C55E; color: var(--white); }
.card-badge.hot { background: #EF4444; color: var(--white); }

.card-city-tag {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: rgba(13,27,42,0.75);
  backdrop-filter: blur(6px);
  color: var(--white);
  font-size: 0.72rem;
  font-weight: 500;
  padding: 0.3rem 0.7rem;
  border-radius: 4px;
  display: flex;
  align-items: center;
  gap: 0.3rem;
}

.card-body {
  padding: 1.4rem 1.5rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.card-name {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 0.3rem;
}

.card-location {
  color: var(--text-muted);
  font-size: 0.83rem;
  display: flex;
  align-items: center;
  gap: 0.3rem;
  margin-bottom: 0.8rem;
}

.card-location svg { flex-shrink: 0; }

.card-meta {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
  margin-bottom: 1rem;
}

.card-tag {
  background: var(--gray-100);
  color: var(--gray-600);
  font-size: 0.75rem;
  font-weight: 500;
  padding: 0.25rem 0.65rem;
  border-radius: 4px;
}

.card-price {
  font-family: var(--font-heading);
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--gold-dark);
  margin-bottom: 0.25rem;
}

.card-price-label {
  font-size: 0.78rem;
  color: var(--text-muted);
  margin-bottom: 1.25rem;
}

.card-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.6rem;
  margin-top: auto;
}

/* ---- Features Section ---- */
.features-bg { background: var(--cream); }

.feature-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 2rem 1.75rem;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--gray-200);
  transition: var(--transition);
  text-align: center;
}

.feature-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: rgba(201,168,76,0.25);
}

.feature-icon {
  width: 64px;
  height: 64px;
  background: linear-gradient(135deg, rgba(201,168,76,0.15), rgba(201,168,76,0.05));
  border: 1px solid rgba(201,168,76,0.25);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.25rem;
  font-size: 1.75rem;
}

.feature-card h3 {
  font-size: 1.05rem;
  color: var(--navy);
  margin-bottom: 0.6rem;
}

.feature-card p {
  color: var(--text-muted);
  font-size: 0.9rem;
  line-height: 1.6;
}

/* ---- Testimonials ---- */
.testimonials-bg { background: var(--navy); }

.testimonial-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.10);
  border-radius: var(--radius-lg);
  padding: 2rem;
  backdrop-filter: blur(8px);
  transition: var(--transition);
}

.testimonial-card:hover {
  background: rgba(255,255,255,0.10);
  border-color: rgba(201,168,76,0.25);
}

.testimonial-stars {
  color: var(--gold);
  font-size: 1rem;
  letter-spacing: 2px;
  margin-bottom: 1rem;
}

.testimonial-text {
  color: rgba(255,255,255,0.80);
  font-size: 0.95rem;
  line-height: 1.7;
  font-style: italic;
  margin-bottom: 1.25rem;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 0.85rem;
}

.testimonial-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold-dark), var(--gold));
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--navy);
  font-weight: 700;
  font-size: 1rem;
  flex-shrink: 0;
}

.testimonial-name {
  color: var(--white);
  font-weight: 600;
  font-size: 0.92rem;
}

.testimonial-role {
  color: var(--gold-light);
  font-size: 0.78rem;
}

/* ---- CTA Banner ---- */
.cta-banner {
  background: linear-gradient(135deg, var(--gold-dark) 0%, var(--gold) 50%, #d4aa55 100%);
  padding: 70px 0;
  position: relative;
  overflow: hidden;
}

.cta-banner::before {
  content: '';
  position: absolute;
  top: -60px; right: -60px;
  width: 240px; height: 240px;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
}

.cta-banner::after {
  content: '';
  position: absolute;
  bottom: -40px; left: -40px;
  width: 180px; height: 180px;
  border-radius: 50%;
  background: rgba(255,255,255,0.06);
}

.cta-banner .container { position: relative; z-index: 1; }

.cta-banner h2 {
  color: var(--navy);
  margin-bottom: 0.75rem;
}

.cta-banner p {
  color: rgba(13,27,42,0.70);
  margin-bottom: 2rem;
  font-size: 1.05rem;
}

.cta-actions { display: flex; gap: 1rem; flex-wrap: wrap; }

.btn-cta-navy {
  background: var(--navy);
  color: var(--white);
  padding: 0.85rem 2rem;
  border-radius: 50px;
  font-weight: 600;
  transition: var(--transition);
  display: inline-flex; align-items: center; gap: 0.5rem;
}
.btn-cta-navy:hover { background: var(--navy-light); transform: translateY(-2px); }

.btn-cta-wa {
  background: #25D366;
  color: var(--white);
  padding: 0.85rem 2rem;
  border-radius: 50px;
  font-weight: 600;
  transition: var(--transition);
  display: inline-flex; align-items: center; gap: 0.5rem;
  box-shadow: 0 4px 14px rgba(0,0,0,0.12);
}
.btn-cta-wa:hover { background: #1ebe5d; transform: translateY(-2px); }

/* ---- Footer ---- */
footer {
  background: var(--navy-dark);
  color: rgba(255,255,255,0.65);
  padding: 60px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.8fr 1fr 1fr 1.2fr;
  gap: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.footer-brand-name {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--gold);
  margin-bottom: 0.4rem;
}

.footer-brand-sub {
  font-size: 0.68rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 1rem;
}

.footer-desc {
  font-size: 0.875rem;
  line-height: 1.75;
  margin-bottom: 1.5rem;
  color: rgba(255,255,255,0.55);
}

.footer-social-links {
  display: flex;
  gap: 0.65rem;
}

.footer-social-link {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255,255,255,0.07);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.6);
  font-size: 0.9rem;
  transition: var(--transition);
}

.footer-social-link:hover {
  background: var(--gold);
  color: var(--navy);
}

.footer-col h4 {
  color: var(--white);
  font-family: var(--font-heading);
  font-size: 1rem;
  margin-bottom: 1.25rem;
}

.footer-links { display: flex; flex-direction: column; gap: 0.6rem; }

.footer-links a {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.55);
  transition: var(--transition);
  display: flex; align-items: center; gap: 0.4rem;
}
.footer-links a::before { content: '→'; font-size: 0.7rem; color: var(--gold); }
.footer-links a:hover { color: var(--gold-light); }

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 0.875rem;
  margin-bottom: 0.85rem;
  color: rgba(255,255,255,0.60);
}

.footer-contact-item strong { color: var(--white); font-size: 0.8rem; display: block; }

.footer-contact-icon {
  width: 32px;
  height: 32px;
  background: rgba(201,168,76,0.12);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 0.85rem;
}

.footer-bottom {
  padding: 1.5rem 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.8rem;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.footer-bottom-right { display: flex; gap: 1.5rem; }
.footer-bottom-right a { color: inherit; transition: var(--transition); }
.footer-bottom-right a:hover { color: var(--gold); }

/* ---- WhatsApp Float ---- */
#wa-float {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 900;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: #25D366;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37,211,102,0.45);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  animation: wa-pop 6s ease-in-out infinite;
}

#wa-float:hover {
  transform: scale(1.12);
  box-shadow: 0 8px 28px rgba(37,211,102,0.55);
  animation: none;
}

#wa-float svg { width: 28px; height: 28px; }

@keyframes wa-pop {
  /* Rest for ~5s, then burst for ~1s */
  0%   { transform: scale(1)   translateY(0);   box-shadow: 0 4px 20px rgba(37,211,102,0.45); }
  80%  { transform: scale(1)   translateY(0);   box-shadow: 0 4px 20px rgba(37,211,102,0.45); }
  83%  { transform: scale(1.22) translateY(-10px); box-shadow: 0 12px 36px rgba(37,211,102,0.70), 0 0 0 8px rgba(37,211,102,0.20); }
  86%  { transform: scale(0.94) translateY(4px);  box-shadow: 0 4px 16px rgba(37,211,102,0.45); }
  89%  { transform: scale(1.14) translateY(-6px); box-shadow: 0 10px 28px rgba(37,211,102,0.60), 0 0 0 14px rgba(37,211,102,0.12); }
  92%  { transform: scale(0.97) translateY(2px);  box-shadow: 0 4px 20px rgba(37,211,102,0.45); }
  95%  { transform: scale(1.06) translateY(-3px); box-shadow: 0 6px 24px rgba(37,211,102,0.50); }
  100% { transform: scale(1)   translateY(0);   box-shadow: 0 4px 20px rgba(37,211,102,0.45); }
}

/* ---- About Page ---- */
.about-hero {
  background: var(--navy);
  padding: 140px 0 80px;
  text-align: center;
}

.about-hero h1 { color: var(--white); }
.about-hero p { color: rgba(255,255,255,0.65); margin: 1rem auto 0; max-width: 560px; }

.about-story { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; }

.about-story-image {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  height: 480px;
}

.about-story-image img {
  width: 100%; height: 100%; object-fit: cover;
}

.about-story-badge {
  position: absolute;
  bottom: 1.5rem;
  left: 1.5rem;
  background: var(--gold);
  color: var(--navy);
  font-weight: 700;
  font-family: var(--font-heading);
  padding: 0.85rem 1.25rem;
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-md);
}

.about-story-badge-num { font-size: 2rem; line-height: 1; }
.about-story-badge-text { font-size: 0.78rem; font-family: var(--font-body); letter-spacing: 0.05em; }

.about-story-content .section-label { margin-bottom: 0.75rem; }

.about-story-content p {
  color: var(--text-muted);
  font-size: 1rem;
  line-height: 1.8;
  margin-bottom: 1rem;
}

.about-stats-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
  border: 1px solid var(--gray-200);
  margin: 60px 0;
}

.about-stat {
  padding: 2.5rem 1.5rem;
  text-align: center;
  border-right: 1px solid var(--gray-200);
}
.about-stat:last-child { border-right: none; }

.about-stat-num {
  font-family: var(--font-heading);
  font-size: 2.4rem;
  font-weight: 700;
  color: var(--gold-dark);
  line-height: 1;
}

.about-stat-label {
  font-size: 0.82rem;
  color: var(--text-muted);
  margin-top: 0.4rem;
  letter-spacing: 0.04em;
}

/* ---- Contact Page ---- */
.contact-hero {
  background: var(--navy);
  padding: 140px 0 80px;
  text-align: center;
}
.contact-hero h1 { color: var(--white); }
.contact-hero p { color: rgba(255,255,255,0.65); margin: 1rem auto 0; max-width: 520px; }

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 3rem;
  align-items: start;
}

.contact-info-card {
  background: var(--navy);
  color: var(--white);
  border-radius: var(--radius-lg);
  padding: 2.5rem 2rem;
}

.contact-info-card h3 {
  color: var(--gold);
  margin-bottom: 0.5rem;
}

.contact-info-card > p {
  color: rgba(255,255,255,0.60);
  font-size: 0.9rem;
  margin-bottom: 2rem;
}

.contact-info-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1.75rem;
}

.contact-info-icon {
  width: 44px;
  height: 44px;
  background: rgba(201,168,76,0.15);
  border: 1px solid rgba(201,168,76,0.25);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}

.contact-info-label { font-size: 0.75rem; color: var(--gold-light); letter-spacing: 0.08em; margin-bottom: 0.2rem; }
.contact-info-value { color: var(--white); font-weight: 500; font-size: 0.95rem; }

.contact-wa-btn {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  background: #25D366;
  color: var(--white);
  padding: 0.9rem 1.5rem;
  border-radius: 50px;
  font-weight: 600;
  width: 100%;
  margin-top: 1.5rem;
  transition: var(--transition);
  justify-content: center;
}
.contact-wa-btn:hover { background: #1ebe5d; transform: translateY(-2px); }

.enquiry-form-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2.5rem 2rem;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--gray-200);
}

.enquiry-form-card h3 { color: var(--navy); margin-bottom: 0.5rem; }
.enquiry-form-card > p { color: var(--text-muted); font-size: 0.9rem; margin-bottom: 2rem; }

/* ---- Form Styles ---- */
.form-group { margin-bottom: 1.25rem; }

.form-group label {
  display: block;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--gray-600);
  letter-spacing: 0.04em;
  margin-bottom: 0.45rem;
}

.form-group label span { color: #EF4444; }

.form-control {
  width: 100%;
  padding: 0.8rem 1rem;
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 0.92rem;
  color: var(--text-dark);
  background: var(--gray-100);
  transition: var(--transition);
  outline: none;
}

.form-control:focus {
  border-color: var(--gold);
  background: var(--white);
  box-shadow: 0 0 0 3px rgba(201,168,76,0.12);
}

.form-control::placeholder { color: var(--gray-400); }

select.form-control { cursor: pointer; appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' fill='%23666'%3E%3Cpath d='M6 8L0 0h12z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
}

textarea.form-control { resize: vertical; min-height: 110px; }

.form-submit-btn {
  width: 100%;
  padding: 0.9rem;
  border-radius: 50px;
  font-size: 0.95rem;
  font-weight: 600;
  background: linear-gradient(135deg, var(--navy), var(--navy-light));
  color: var(--white);
  border: none;
  cursor: pointer;
  transition: var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 0.5rem;
}
.form-submit-btn:hover { transform: translateY(-2px); box-shadow: var(--shadow-md); }
.form-submit-btn.wa-submit {
  background: linear-gradient(135deg, #25D366, #1ebe5d);
  margin-top: 1rem;
}

/* ---- Projects Page ---- */
.projects-hero {
  background: var(--navy);
  padding: 140px 0 80px;
}

.projects-hero h1 { color: var(--white); margin-bottom: 0.75rem; }
.projects-hero p  { color: rgba(255,255,255,0.65); }

.search-bar-wrap {
  margin-top: 2rem;
  position: relative;
  max-width: 480px;
}

.search-bar-wrap input {
  width: 100%;
  padding: 0.85rem 1rem 0.85rem 3rem;
  border-radius: 50px;
  border: none;
  background: rgba(255,255,255,0.10);
  backdrop-filter: blur(8px);
  color: var(--white);
  font-family: var(--font-body);
  font-size: 0.92rem;
  outline: none;
  transition: var(--transition);
}
.search-bar-wrap input::placeholder { color: rgba(255,255,255,0.45); }
.search-bar-wrap input:focus { background: rgba(255,255,255,0.15); }

.search-bar-wrap svg {
  position: absolute;
  left: 1rem;
  top: 50%;
  transform: translateY(-50%);
  color: rgba(255,255,255,0.45);
}

.no-results {
  grid-column: 1/-1;
  text-align: center;
  padding: 4rem 0;
  color: var(--text-muted);
}

/* ---- Project Detail Page ---- */
.detail-hero {
  position: relative;
  height: 480px;
  overflow: hidden;
  padding-top: var(--header-h);
}

.detail-hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.5);
}

.detail-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(13,27,42,0.85) 0%, transparent 60%);
}

.detail-hero-content {
  position: absolute;
  bottom: 2.5rem;
  left: 0;
  right: 0;
}

.detail-hero-content h1 { color: var(--white); margin-bottom: 0.5rem; }
.detail-badge-row { display: flex; gap: 0.6rem; flex-wrap: wrap; margin-bottom: 0.75rem; }

.detail-badge {
  background: var(--gold);
  color: var(--navy);
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 0.3rem 0.7rem;
  border-radius: 4px;
}

.detail-location {
  color: rgba(255,255,255,0.75);
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.92rem;
}

.detail-body {
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 2.5rem;
  align-items: start;
  padding: 3rem 0;
}

.detail-gallery {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
  margin-bottom: 2rem;
}

.gallery-main {
  grid-column: 1 / -1;
  border-radius: var(--radius-md);
  overflow: hidden;
  cursor: pointer;
  height: 280px;
}
.gallery-main img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s; }
.gallery-main:hover img { transform: scale(1.04); }

.gallery-thumb {
  border-radius: var(--radius-sm);
  overflow: hidden;
  cursor: pointer;
  height: 150px;
}
.gallery-thumb img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s; }
.gallery-thumb:hover img { transform: scale(1.06); }

.detail-specs {
  background: var(--cream);
  border-radius: var(--radius-md);
  padding: 1.5rem;
  margin-bottom: 2rem;
}

.detail-specs h3 { color: var(--navy); margin-bottom: 1.25rem; font-size: 1.05rem; }

.spec-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.65rem 0;
  border-bottom: 1px solid var(--gray-200);
  font-size: 0.9rem;
}
.spec-row:last-child { border-bottom: none; }
.spec-label { color: var(--text-muted); }
.spec-value { font-weight: 600; color: var(--navy); }

.detail-desc h3 { color: var(--navy); margin-bottom: 0.75rem; }
.detail-desc p { color: var(--text-muted); line-height: 1.8; margin-bottom: 1rem; }

.detail-amenities h3 { color: var(--navy); margin-bottom: 1rem; }
.amenities-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.75rem;
}
.amenity-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.85rem;
  color: var(--gray-600);
}
.amenity-item::before { content: '✓'; color: var(--gold-dark); font-weight: 700; }

/* Detail sticky form */
.detail-form-card {
  position: sticky;
  top: calc(var(--header-h) + 1.5rem);
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--gray-200);
  overflow: hidden;
}

.detail-form-header {
  background: var(--navy);
  padding: 1.25rem 1.5rem;
}

.detail-form-header h4 { color: var(--white); }
.detail-form-price {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  color: var(--gold);
  font-weight: 700;
}
.detail-form-header p { color: rgba(255,255,255,0.55); font-size: 0.8rem; }

.detail-form-body { padding: 1.5rem; }

/* ---- Lightbox ---- */
#lightbox {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: rgba(0,0,0,0.92);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s;
}
#lightbox.open { opacity: 1; pointer-events: all; }

.lightbox-img { max-width: 90vw; max-height: 85vh; border-radius: var(--radius-md); }
.lightbox-close {
  position: absolute;
  top: 1.5rem; right: 1.5rem;
  color: var(--white);
  font-size: 2rem;
  cursor: pointer;
  width: 44px; height: 44px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  background: rgba(255,255,255,0.12);
  transition: var(--transition);
}
.lightbox-close:hover { background: rgba(255,255,255,0.22); }

/* ---- Animations ---- */
.fade-in {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}
.fade-in-delay-1 { transition-delay: 0.1s; }
.fade-in-delay-2 { transition-delay: 0.2s; }
.fade-in-delay-3 { transition-delay: 0.3s; }

/* ---- Inline page hero (shared) ---- */
.page-hero {
  background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy) 100%);
  padding: 140px 0 70px;
}
.page-hero h1 { color: var(--white); margin-bottom: 0.75rem; }
.page-hero p { color: rgba(255,255,255,0.60); max-width: 520px; }

/* ---- Breadcrumb ---- */
.breadcrumb {
  display: flex;
  gap: 0.5rem;
  align-items: center;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.45);
  margin-bottom: 1.25rem;
}
.breadcrumb a { color: var(--gold-light); }
.breadcrumb a:hover { color: var(--gold); }
.breadcrumb span::before { content: '/'; margin-right: 0.5rem; }

/* ============================================
   RESPONSIVE — Comprehensive Mobile Fixes
   ============================================ */

/* ---- Tablet (≤1024px) ---- */
@media (max-width: 1024px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .about-stats-row { grid-template-columns: repeat(2, 1fr); }
  .about-stat:nth-child(2) { border-right: none; }
  .about-stat:nth-child(3) { border-right: 1px solid var(--gray-200); border-top: 1px solid var(--gray-200); }
  .about-stat:nth-child(4) { border-top: 1px solid var(--gray-200); }
  .detail-body { grid-template-columns: 1fr 300px; }
}

/* ---- Small tablet / Large phone (≤900px) ---- */
@media (max-width: 900px) {
  .about-story { grid-template-columns: 1fr; }
  .about-story-image { height: 300px; }
  .detail-body { grid-template-columns: 1fr; }
  .detail-form-card { position: static; }
  .contact-grid { grid-template-columns: 1fr; }
  .grid-3 { grid-template-columns: 1fr 1fr; }
}

/* ---- Phone landscape / mid (≤768px) ---- */
@media (max-width: 768px) {
  :root { --header-h: 60px; }

  /* --- Navbar --- */
  .nav-links, .nav-cta { display: none; }
  .nav-hamburger { display: flex; }
  .nav-drawer { display: block; }
  .nav-logo-main { font-size: 1.05rem; white-space: nowrap; }
  .nav-logo-sub { font-size: 0.56rem; letter-spacing: 0.12em; }
  .nav-logo-img { height: 100px; }

  /* --- Typography --- */
  h1 { font-size: clamp(1.6rem, 6vw, 2.4rem); }
  h2 { font-size: clamp(1.35rem, 5vw, 2rem); }
  h3 { font-size: clamp(1.05rem, 4vw, 1.35rem); }

  /* --- Hero --- */
  .hero-badge {
    font-size: 0.65rem;
    letter-spacing: 0.04em;
    padding: 0.35rem 0.75rem;
    max-width: 100%;
    white-space: normal;
    text-align: center;
    justify-content: center;
  }
  .hero-content { max-width: 100%; }
  .hero-desc { font-size: 0.95rem; }
  .hero-stats { gap: 1.25rem; flex-wrap: wrap; }
  .hero-stat-num { font-size: 1.5rem; }
  .hero-stat-label { font-size: 0.7rem; }
  .hero-actions { flex-direction: column; gap: 0.75rem; }
  .hero-actions .btn { width: 100%; justify-content: center; }

  /* --- Page heros --- */
  .page-hero { padding: 110px 0 50px; }
  .page-hero h1 { font-size: clamp(1.5rem, 6vw, 2.2rem); }
  .about-hero { padding: 110px 0 60px; }
  .contact-hero { padding: 110px 0 60px; }
  .projects-hero { padding: 110px 0 60px; }

  /* --- Sections --- */
  .section { padding: 56px 0; }
  .section-sm { padding: 40px 0; }
  .section-subtitle { font-size: 0.95rem; }

  /* --- Grids --- */
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }

  /* --- Projects grid --- */
  .projects-grid { grid-template-columns: 1fr; gap: 1.25rem; }

  /* --- Footer --- */
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .footer-bottom { flex-direction: column; text-align: center; gap: 0.75rem; }
  .footer-bottom-right { justify-content: center; }

  /* --- About --- */
  .about-stats-row { grid-template-columns: 1fr 1fr; border-radius: var(--radius-md); }
  .about-stat:nth-child(3) { border-right: none; }
  .about-stat-num { font-size: 1.9rem; }

  /* --- Detail page --- */
  .amenities-grid { grid-template-columns: 1fr 1fr; }
  .detail-gallery { grid-template-columns: 1fr; }
  .gallery-main, .gallery-thumb { height: 220px; }
  .detail-hero { height: 320px; }
  .detail-hero-content { bottom: 1.5rem; }

  /* --- CTA / Buttons --- */
  .cta-banner { padding: 50px 0; }
  .btn-cta-navy, .btn-cta-wa { width: 100%; justify-content: center; text-align: center; }
  .cta-actions { flex-direction: column; gap: 0.75rem; }
}

/* ---- Small phone portrait (≤480px) ---- */
@media (max-width: 480px) {
  /* --- Navbar --- */
  .nav-logo-main { font-size: 0.95rem; }
  .nav-logo-sub { display: none; } /* hide subtitle on very small screens */
  .nav-logo-img { height: 80px; }

  /* --- Typography --- */
  h1 { font-size: clamp(1.45rem, 7vw, 2rem); }
  h2 { font-size: clamp(1.2rem, 6vw, 1.75rem); }

  /* --- Hero badge — no letter spacing on tiny screens --- */
  .hero-badge { letter-spacing: 0; font-size: 0.62rem; }

  /* --- Hero stats: 2×2 grid to avoid overflow --- */
  .hero-stats { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem 1.5rem; }

  /* --- Cards --- */
  .card-actions { grid-template-columns: 1fr; gap: 0.5rem; }
  .card-image-wrap { height: 190px; }

  /* --- About --- */
  .about-stats-row { grid-template-columns: 1fr 1fr; }
  .about-stat { border-right: none !important; padding: 1.5rem 1rem; }
  .about-stat:nth-child(odd) { border-right: 1px solid var(--gray-200) !important; }

  /* --- Contact --- */
  .contact-info-card { padding: 1.75rem 1.25rem; }
  .enquiry-form-card { padding: 1.75rem 1.25rem; }

  /* --- Detail form --- */
  .detail-form-body { padding: 1.25rem; }
  .detail-form-header { padding: 1rem 1.25rem; }
  .detail-form-price { font-size: 1.2rem; }

  /* --- City pills: allow horizontal scroll on tiny screens --- */
  .city-filter { flex-wrap: nowrap; overflow-x: auto; -webkit-overflow-scrolling: touch;
    justify-content: flex-start; padding-bottom: 0.5rem; }
  .city-filter::-webkit-scrollbar { height: 3px; }
  .city-filter::-webkit-scrollbar-thumb { background: var(--gold); border-radius: 2px; }
  .city-pill { flex-shrink: 0; }

  /* --- Page hero padding adjustment --- */
  .page-hero { padding: 100px 0 44px; }
  .projects-hero { padding: 100px 0 44px; }
  .section { padding: 44px 0; }

  /* --- Feature grid: single column still, tighter padding --- */
  .feature-card { padding: 1.5rem 1.25rem; }

  /* --- Footer --- */
  .footer-bottom-right { flex-direction: column; gap: 0.5rem; }

  /* --- WhatsApp float: smaller on tiny screens --- */
  #wa-float { width: 50px; height: 50px; bottom: 1.25rem; right: 1.25rem; }
  #wa-float svg { width: 24px; height: 24px; }

  /* --- Amenities: single column on tiny screens --- */
  .amenities-grid { grid-template-columns: 1fr; }

  /* --- Spec rows --- */
  .spec-row { flex-direction: column; gap: 0.2rem; align-items: flex-start; }
}

/* ================================================
   ADDITIONS: Hero Highlights + Keshav Kunj Featured
   ================================================ */

/* ---- Hero Key Highlights Bar ---- */
.hero-highlights {
  background: linear-gradient(90deg, var(--navy-dark) 0%, #0f2035 100%);
  border-top: 1px solid rgba(201,168,76,0.18);
  border-bottom: 1px solid rgba(201,168,76,0.18);
  padding: 0;
}

.hero-highlights-inner {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
}

.hero-highlight-item {
  border-right: 1px solid rgba(201,168,76,0.18);
  color: var(--gold-light);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  padding: 0.9rem 1.6rem;
  display: flex;
  align-items: center;
  gap: 0.45rem;
  transition: var(--transition);
  white-space: nowrap;
}

.hero-highlight-item:first-child { border-left: 1px solid rgba(201,168,76,0.18); }
.hero-highlight-item:hover {
  background: rgba(201,168,76,0.10);
  color: var(--gold);
}

/* ---- Featured Card Badge ---- */
.card-badge.featured {
  background: linear-gradient(135deg, var(--gold-dark), var(--gold));
  color: var(--navy);
  font-size: 0.68rem;
  letter-spacing: 0.10em;
}

/* ---- Featured Card border highlight ---- */
.project-card.featured-card {
  border: 2px solid var(--gold);
  box-shadow: 0 4px 32px rgba(201,168,76,0.22);
}
.project-card.featured-card:hover {
  box-shadow: 0 8px 48px rgba(201,168,76,0.38);
}

/* ---- Keshav Kunj Featured Section ---- */
.keshav-featured-section {
  background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy) 60%, #1a2e45 100%);
  padding: 70px 0;
  position: relative;
  overflow: hidden;
}
.keshav-featured-section::before {
  content: '';
  position: absolute;
  top: -100px; right: -80px;
  width: 350px; height: 350px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(201,168,76,0.12), transparent 70%);
  pointer-events: none;
}
.keshav-featured-section::after {
  content: '';
  position: absolute;
  bottom: -80px; left: -60px;
  width: 260px; height: 260px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(201,168,76,0.08), transparent 70%);
  pointer-events: none;
}
.keshav-featured-inner {
  position: relative;
  z-index: 1;
  background: rgba(255,255,255,0.035);
  border: 1px solid rgba(201,168,76,0.22);
  border-radius: var(--radius-xl);
  padding: 2.5rem 3rem;
  backdrop-filter: blur(8px);
}
.keshav-featured-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: rgba(201,168,76,0.15);
  border: 1px solid rgba(201,168,76,0.35);
  color: var(--gold);
  font-size: 0.73rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.4rem 1rem;
  border-radius: 50px;
  margin-bottom: 1.75rem;
  animation: pulse-border 3s ease-in-out infinite;
}
@keyframes pulse-border {
  0%, 100% { border-color: rgba(201,168,76,0.35); }
  50%       { border-color: rgba(201,168,76,0.65); box-shadow: 0 0 16px rgba(201,168,76,0.20); }
}
.keshav-featured-body {
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 3rem;
  align-items: center;
}
.keshav-featured-tag {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.5rem;
}
.keshav-featured-title {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  color: var(--white);
  margin-bottom: 0.5rem;
  line-height: 1.15;
}
.keshav-featured-subtitle {
  color: rgba(255,255,255,0.60);
  font-size: 1rem;
  margin-bottom: 1.25rem;
}
.keshav-featured-price {
  font-family: var(--font-heading);
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 1.75rem;
}
.keshav-featured-price span {
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 400;
  color: rgba(255,255,255,0.50);
  margin-left: 0.3rem;
}
.keshav-featured-highlights {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.65rem;
  margin-bottom: 2rem;
}
.kf-highlight {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: rgba(255,255,255,0.75);
  font-size: 0.88rem;
  font-weight: 500;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 8px;
  padding: 0.55rem 0.85rem;
  line-height: 1.3;
}
.keshav-featured-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}
.keshav-featured-right { position: relative; }
.keshav-featured-img {
  width: 100%;
  height: 320px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  border: 2px solid rgba(201,168,76,0.25);
  box-shadow: var(--shadow-lg);
}
.keshav-sold-badge {
  position: absolute;
  bottom: 1rem;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, #EF4444, #dc2626);
  color: var(--white);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  padding: 0.5rem 1.25rem;
  border-radius: 50px;
  white-space: nowrap;
  box-shadow: 0 4px 16px rgba(239,68,68,0.45);
  animation: pulse-sold 2s ease-in-out infinite;
}
@keyframes pulse-sold {
  0%, 100% { box-shadow: 0 4px 16px rgba(239,68,68,0.45); }
  50%       { box-shadow: 0 4px 28px rgba(239,68,68,0.70); }
}

@media (max-width: 900px) {
  .keshav-featured-body { grid-template-columns: 1fr; gap: 2rem; }
  .keshav-featured-inner { padding: 2rem 1.5rem; }
  .keshav-featured-img { height: 240px; }
  .keshav-featured-highlights { grid-template-columns: 1fr; }
}
@media (max-width: 480px) {
  .hero-highlights-inner { flex-direction: column; align-items: stretch; }
  .hero-highlight-item { border-right: none; border-bottom: 1px solid rgba(201,168,76,0.18); justify-content: center; }
  .hero-highlight-item:first-child { border-left: none; }
  .keshav-featured-title { font-size: 1.8rem; }
  .keshav-featured-price { font-size: 1.75rem; }
}

