/* ============================================================
   SHUBHKAMNA PROPERTIES — LUXURY REAL ESTATE CSS
   Fully Enhanced Premium Design
   ============================================================ */

/* === RESET & BASE === */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --green: #2e7d5b;
  --green-dark: #1d5c41;
  --green-light: #3e9b72;
  --green-glow: rgba(46, 125, 91, 0.35);
  --orange: #c65a2e;
  --orange-dark: #a04520;
  --orange-light: #d9734a;
  --orange-glow: rgba(198, 90, 46, 0.35);
  --gold: #c9a227;
  --gold-light: #f5d060;
  --gold-glow: rgba(201, 162, 39, 0.25);
  --ivory: #faf8f4;
  --cream: #f5f0e8;
  --white: #ffffff;
  --dark: #111a14;
  --dark-2: #1c2b22;
  --dark-3: #0a120d;
  --text: #2c2c2c;
  --text-muted: #6b7b71;
  --text-lighter: #8fa098;
  --border: rgba(46, 125, 91, 0.12);
  --border-hover: rgba(46, 125, 91, 0.25);
  --glass: rgba(255, 255, 255, 0.06);
  --glass-border: rgba(201, 162, 39, 0.25);
  --glass-white: rgba(255, 255, 255, 0.85);
  --shadow-xs: 0 2px 8px rgba(0, 0, 0, 0.05);
  --shadow: 0 8px 40px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 20px 60px rgba(0, 0, 0, 0.15);
  --shadow-xl: 0 32px 80px rgba(0, 0, 0, 0.18);
  --radius: 20px;
  --radius-lg: 28px;
  --radius-sm: 12px;
  --radius-xs: 8px;
  --font-serif: 'Playfair Display', 'Cormorant Garamond', Georgia, serif;
  --font-sans: 'Inter', system-ui, -apple-system, sans-serif;
  --transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-fast: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-sans);
  background: var(--ivory);
  color: var(--text);
  line-height: 1.7;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
}

ul {
  list-style: none;
}

button {
  cursor: pointer;
  border: none;
  background: none;
  font-family: inherit;
}

/* === SCROLLBAR === */
::-webkit-scrollbar {
  width: 6px;
}

::-webkit-scrollbar-track {
  background: var(--cream);
}

::-webkit-scrollbar-thumb {
  background: linear-gradient(to bottom, var(--green), var(--green-dark));
  border-radius: 4px;
}

/* === CONTAINER === */
.container {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 28px;
}

/* === SECTIONS === */
.section {
  padding: 110px 0;
  position: relative;
}

/* === SECTION HEADERS === */
.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--orange);
  background: linear-gradient(135deg, rgba(198, 90, 46, 0.08), rgba(198, 90, 46, 0.04));
  border: 1px solid rgba(198, 90, 46, 0.18);
  padding: 6px 18px;
  border-radius: 50px;
  margin-bottom: 18px;
}

.section-tag.light {
  color: var(--gold-light);
  background: linear-gradient(135deg, rgba(245, 208, 96, 0.12), rgba(245, 208, 96, 0.05));
  border-color: rgba(201, 162, 39, 0.3);
}

.section-title {
  font-family: var(--font-serif);
  font-size: clamp(30px, 4vw, 48px);
  font-weight: 700;
  color: var(--dark);
  line-height: 1.15;
  margin-bottom: 16px;
  letter-spacing: -0.02em;
}

.section-title.light {
  color: #fff;
}

.section-sub {
  font-size: 16px;
  color: var(--text-muted);
  max-width: 580px;
  line-height: 1.8;
}

.section-sub.light {
  color: rgba(255, 255, 255, 0.65);
}

.section-header.center {
  text-align: center;
  margin-bottom: 64px;
}

.section-header.center .section-sub {
  margin: 0 auto;
}

/* === BUTTONS === */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 15px 34px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 15px;
  letter-spacing: 0.02em;
  transition: var(--transition);
  cursor: pointer;
  border: 2px solid transparent;
  position: relative;
  overflow: hidden;
}

.btn::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.15), transparent);
  opacity: 0;
  transition: var(--transition);
}

.btn:hover::before {
  opacity: 1;
}

.btn-primary {
  background: linear-gradient(135deg, var(--green), var(--green-dark));
  color: #fff;
  box-shadow: 0 4px 24px var(--green-glow);
}

.btn-primary:hover {
  background: linear-gradient(135deg, var(--green-light), var(--green));
  transform: translateY(-3px);
  box-shadow: 0 10px 40px var(--green-glow);
}

.btn-outline {
  border-color: rgba(255, 255, 255, 0.65);
  color: #fff;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(12px);
}

.btn-outline:hover {
  background: rgba(255, 255, 255, 0.18);
  border-color: #fff;
  transform: translateY(-3px);
}

.btn.full {
  width: 100%;
  justify-content: center;
}

/* ============================================================
   NAVBAR
   ============================================================ */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 16px 0;
  transition: var(--transition);
}

.navbar.scrolled {
  padding: 10px 0;
}

.navbar.scrolled::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(17, 26, 20, 0.97);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  box-shadow: 0 4px 40px rgba(0, 0, 0, 0.3);
  z-index: -1;
}

.nav-container {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
}

.logo-mark {
  flex-shrink: 0;
}

.nav-logo-img {
  width: 48px;
  height: 48px;
  border-radius: 0;
  object-fit: contain;
  background: transparent;
  padding: 0;
  box-shadow: none;
  filter: drop-shadow(0 1px 4px rgba(0, 0, 0, 0.3));
}

.logo-text {
  display: flex;
  flex-direction: column;
}

.logo-name {
  font-family: var(--font-serif);
  font-size: 20px;
  font-weight: 700;
  color: #fff;
  line-height: 1.1;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.logo-sub {
  font-size: 10px;
  letter-spacing: 0.12em;
  color: rgba(255, 255, 255, 0.55);
  text-transform: uppercase;
  font-weight: 500;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 6px;
}

.nav-links li a {
  color: rgba(255, 255, 255, 0.85);
  font-size: 14px;
  font-weight: 500;
  padding: 8px 16px;
  border-radius: 10px;
  transition: var(--transition-fast);
}

.nav-links li a:hover {
  color: #fff;
  background: rgba(255, 255, 255, 0.08);
}

.nav-cta {
  background: linear-gradient(135deg, var(--orange), var(--orange-dark)) !important;
  color: #fff !important;
  padding: 10px 24px !important;
  border-radius: 50px !important;
  box-shadow: 0 4px 20px var(--orange-glow);
}

.nav-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px var(--orange-glow) !important;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 4px;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2.5px;
  background: #fff;
  border-radius: 2px;
  transition: var(--transition);
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100svh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.05);
  animation: heroZoom 18s ease-in-out infinite alternate;
}

@keyframes heroZoom {
  from {
    transform: scale(1.05);
  }

  to {
    transform: scale(1.12);
  }
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg,
      rgba(10, 18, 13, 0.85) 0%,
      rgba(17, 30, 22, 0.65) 50%,
      rgba(30, 15, 8, 0.55) 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 28px;
  padding-top: 80px;
}

.hero-logo-anim {
  width: 100px;
  height: 100px;
  margin-bottom: 28px;
  opacity: 0;
  transform: translateY(-20px) scale(0.8);
  animation: logoReveal 1.2s cubic-bezier(0.34, 1.56, 0.64, 1) 0.4s forwards;
}

.hero-logo-image {
  width: 100%;
  height: 100%;
  object-fit: contain;
  border-radius: 0;
  background: transparent;
  padding: 0;
  box-shadow: none;
  filter: drop-shadow(0 4px 16px rgba(0, 0, 0, 0.35)) drop-shadow(0 0 40px rgba(46, 125, 91, 0.3));
}

@keyframes logoReveal {
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.hero-eyebrow {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 16px;
  opacity: 0;
  animation: slideUp 0.8s ease 0.8s forwards;
}

.hero-title {
  font-family: var(--font-serif);
  font-size: clamp(42px, 6vw, 82px);
  font-weight: 800;
  color: #fff;
  line-height: 1.05;
  margin-bottom: 20px;
  opacity: 0;
  animation: slideUp 0.8s ease 1s forwards;
  letter-spacing: -0.02em;
}

.hero-title em {
  font-style: italic;
  color: var(--gold-light);
  font-weight: 500;
}

.hero-subtitle {
  font-size: 17px;
  color: rgba(255, 255, 255, 0.8);
  max-width: 520px;
  margin-bottom: 28px;
  opacity: 0;
  animation: slideUp 0.8s ease 1.2s forwards;
  line-height: 1.8;
}

.hero-badges {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 36px;
  opacity: 0;
  animation: slideUp 0.8s ease 1.4s forwards;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(12px);
  color: rgba(255, 255, 255, 0.9);
  font-size: 12px;
  font-weight: 600;
  padding: 7px 16px;
  border-radius: 50px;
  transition: var(--transition-fast);
}

.badge:hover {
  background: rgba(255, 255, 255, 0.14);
  border-color: rgba(255, 255, 255, 0.3);
}

.hero-cta-group {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  opacity: 0;
  animation: slideUp 0.8s ease 1.6s forwards;
}

@keyframes slideUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}



/* ============================================================
   TRUST STRIP
   ============================================================ */
.trust-strip {
  background: linear-gradient(135deg, var(--dark), var(--dark-2));
  padding: 48px 0;
  border-top: 1px solid rgba(201, 162, 39, 0.2);
  border-bottom: 1px solid rgba(201, 162, 39, 0.2);
  position: relative;
}

.trust-strip::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 50%, rgba(201, 162, 39, 0.06), transparent 70%);
  pointer-events: none;
}

.trust-strip-inner {
  max-width: 1040px;
  margin: 0 auto;
  padding: 0 28px;
  display: flex;
  align-items: center;
  justify-content: space-around;
  flex-wrap: wrap;
  gap: 28px;
  position: relative;
}

.trust-item {
  text-align: center;
}

.trust-num {
  display: block;
  font-family: var(--font-serif);
  font-size: 50px;
  font-weight: 800;
  color: var(--gold-light);
  line-height: 1;
  text-shadow: 0 2px 20px rgba(245, 208, 96, 0.2);
}

.trust-plus {
  font-size: 32px;
  color: var(--gold-light);
  font-weight: 700;
  vertical-align: super;
}

.trust-label {
  display: block;
  font-size: 11px;
  color: rgba(255, 255, 255, 0.5);
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-top: 8px;
  font-weight: 600;
}

.trust-divider {
  width: 1px;
  height: 64px;
  background: linear-gradient(to bottom, transparent, rgba(201, 162, 39, 0.25), transparent);
}

/* ============================================================
   ABOUT
   ============================================================ */
.about-section {
  background: var(--cream);
  overflow: hidden;
}

.about-section::before {
  content: '';
  position: absolute;
  top: -200px;
  right: -200px;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(46, 125, 91, 0.06), transparent 70%);
  pointer-events: none;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  margin-bottom: 96px;
}

.about-visual {
  position: relative;
}

.about-img-card {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
  aspect-ratio: 4/3;
}

.about-img-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(17, 26, 20, 0.55) 100%);
  z-index: 1;
}

.about-img-badge {
  position: absolute;
  bottom: -24px;
  right: -24px;
  width: 120px;
  height: 120px;
  background: linear-gradient(135deg, var(--green), var(--green-dark));
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  z-index: 2;
  box-shadow: 0 8px 36px rgba(46, 125, 91, 0.5);
  border: 5px solid var(--ivory);
}

.aib-num {
  font-family: var(--font-serif);
  font-size: 36px;
  font-weight: 800;
  color: #fff;
  line-height: 1;
}

.aib-label {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.85);
  text-align: center;
  line-height: 1.2;
  font-weight: 500;
}

.about-accent-card {
  position: absolute;
  top: -28px;
  left: -28px;
  background: var(--white);
  border-radius: var(--radius-sm);
  padding: 16px 20px;
  box-shadow: var(--shadow-lg);
  display: flex;
  align-items: center;
  gap: 12px;
  animation: float 4s ease-in-out infinite;
  z-index: 3;
  border: 1px solid var(--border);
}

.about-accent-logo {
  width: 44px;
  height: 44px;
  object-fit: contain;
  border-radius: 0;
  filter: drop-shadow(0 1px 3px rgba(0, 0, 0, 0.15));
}

@keyframes float {

  0%,
  100% {
    transform: translateY(0)
  }

  50% {
    transform: translateY(-10px)
  }
}

.aac-text {
  font-size: 13px;
  font-weight: 700;
  color: var(--dark);
  line-height: 1.3;
}

.about-lead {
  font-size: 19px;
  font-weight: 500;
  color: var(--dark);
  line-height: 1.7;
  margin-bottom: 20px;
}

.about-body {
  color: var(--text-muted);
  margin-bottom: 32px;
  line-height: 1.8;
}

.about-highlights {
  margin-bottom: 32px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.ah-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 16px 20px;
  background: var(--white);
  border-radius: var(--radius-sm);
  border: 1px solid var(--border);
  transition: var(--transition);
  box-shadow: var(--shadow-xs);
}

.ah-item:hover {
  border-color: var(--border-hover);
  transform: translateX(6px);
  box-shadow: var(--shadow);
}

.ah-icon {
  flex-shrink: 0;
  margin-top: 2px;
}

.ah-item strong {
  display: block;
  font-weight: 700;
  color: var(--dark);
  font-size: 14px;
}

.ah-item span {
  font-size: 13px;
  color: var(--text-muted);
}

.about-partners {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}

.partners-label {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.partner-tags {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.partner-tags span {
  font-size: 12px;
  font-weight: 700;
  padding: 6px 14px;
  background: linear-gradient(135deg, rgba(46, 125, 91, 0.08), rgba(46, 125, 91, 0.03));
  border: 1px solid rgba(46, 125, 91, 0.18);
  color: var(--green);
  border-radius: 50px;
  transition: var(--transition-fast);
}

.partner-tags span:hover {
  background: var(--green);
  color: #fff;
  border-color: var(--green);
  transform: translateY(-2px);
}

/* Timeline */
.timeline {
  text-align: center;
}

.timeline-title {
  font-family: var(--font-serif);
  font-size: 26px;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 52px;
}

.timeline-track {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  position: relative;
  gap: 24px;
}

.timeline-track::before {
  content: '';
  position: absolute;
  top: 22px;
  left: 8%;
  right: 8%;
  height: 2px;
  background: linear-gradient(90deg, var(--green), var(--gold), var(--orange));
  z-index: 0;
}

.tl-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  position: relative;
  z-index: 1;
}

.tl-dot {
  width: 18px;
  height: 18px;
  background: var(--green);
  border-radius: 50%;
  border: 3px solid var(--cream);
  box-shadow: 0 0 0 3px var(--green), 0 0 16px var(--green-glow);
  flex-shrink: 0;
  transition: var(--transition);
}

.tl-item:hover .tl-dot {
  transform: scale(1.5);
  background: var(--orange);
  box-shadow: 0 0 0 3px var(--orange), 0 0 20px var(--orange-glow);
}

.tl-year {
  font-family: var(--font-serif);
  font-size: 18px;
  font-weight: 700;
  color: var(--green);
}

.tl-desc {
  font-size: 12px;
  color: var(--text-muted);
  line-height: 1.5;
  text-align: center;
}

/* ============================================================
   SERVICES - ACCORDION LAYOUT
   ============================================================ */
.services-section {
  background: var(--dark);
  overflow: hidden;
  position: relative;
  padding: 120px 0;
}

.services-section .section-title {
  color: #fff;
}

.services-section .section-sub {
  color: rgba(255, 255, 255, 0.6);
}

.services-accordion {
  display: flex;
  height: 600px;
  gap: 16px;
  width: 100%;
}

.service-panel {
  flex: 1;
  position: relative;
  overflow: hidden;
  border-radius: 40px;
  transition: all 0.7s cubic-bezier(0.25, 1, 0.5, 1);
  background: #151f18;
  cursor: pointer;
  display: flex;
  align-items: flex-end;
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.service-panel:hover,
.service-panel.active-panel {
  flex: 3.5;
  border-color: rgba(46, 125, 91, 0.4);
  box-shadow: 0 24px 60px rgba(46, 125, 91, 0.15);
}

.sp-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  opacity: 0.3;
  transition: all 0.7s cubic-bezier(0.25, 1, 0.5, 1);
}

.sp-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.service-panel:hover .sp-bg,
.service-panel.active-panel .sp-bg {
  opacity: 0.7;
  transform: scale(1.05);
}

.sp-glow {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 20%, rgba(10, 18, 13, 0.9) 100%);
  z-index: 1;
}

.sp-content {
  position: relative;
  z-index: 2;
  padding: 40px 32px;
  display: flex;
  align-items: flex-end;
  gap: 24px;
  width: 100%;
  color: #fff;
}

.sc-icon {
  width: 64px;
  height: 64px;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(12px);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--gold-light);
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.5s;
}

.service-panel:hover .sc-icon,
.service-panel.active-panel .sc-icon {
  background: linear-gradient(135deg, var(--green), var(--green-dark));
  color: #fff;
  transform: rotate(10deg);
  box-shadow: 0 8px 24px var(--green-glow);
  border-color: transparent;
}

.sp-text {
  opacity: 0;
  transform: translateX(20px);
  transition: all 0.5s cubic-bezier(0.25, 1, 0.5, 1);
  white-space: nowrap;
  width: 0;
  overflow: hidden;
}

.service-panel:hover .sp-text,
.service-panel.active-panel .sp-text {
  opacity: 1;
  transform: translateX(0);
  width: auto;
  white-space: normal;
}

.sc-number {
  font-family: var(--font-serif);
  font-size: 20px;
  font-weight: 700;
  color: var(--gold);
  margin-bottom: 8px;
}

.sc-title {
  font-family: var(--font-serif);
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 12px;
  line-height: 1.1;
}

.sc-desc {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.7);
  max-width: 320px;
  line-height: 1.6;
}

/* ============================================================
   PROPERTIES
   ============================================================ */
.properties-section {
  background: var(--cream);
  position: relative;
  overflow: hidden;
}

.properties-section::before {
  content: '';
  position: absolute;
  bottom: -150px;
  left: -150px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(198, 90, 46, 0.05), transparent 70%);
  pointer-events: none;
}

/* Filters */
.prop-filters {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 44px;
  justify-content: center;
}

.filter-btn {
  padding: 11px 24px;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 600;
  color: var(--text-muted);
  background: var(--white);
  border: 1.5px solid var(--border);
  transition: var(--transition);
  box-shadow: var(--shadow-xs);
}

.filter-btn:hover,
.filter-btn.active {
  background: linear-gradient(135deg, var(--green), var(--green-dark));
  color: #fff;
  border-color: var(--green);
  box-shadow: 0 6px 24px var(--green-glow);
  transform: translateY(-2px);
}

.filter-select {
  padding: 11px 18px;
  border-radius: 50px;
  font-size: 13px;
  font-family: var(--font-sans);
  font-weight: 500;
  color: var(--text-muted);
  background: var(--white);
  border: 1.5px solid var(--border);
  cursor: pointer;
  outline: none;
  transition: var(--transition);
  appearance: none;
  padding-right: 36px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%236b7b71' stroke-width='2'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  box-shadow: var(--shadow-xs);
}

.filter-select:focus {
  border-color: var(--green);
  box-shadow: 0 0 0 3px rgba(46, 125, 91, 0.1);
}

/* Cinematic category cards */
.prop-categories {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr;
  gap: 22px;
  margin-bottom: 60px;
}

.prop-cat-card {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 3/2;
  cursor: pointer;
  box-shadow: var(--shadow);
}

.prop-cat-card.large {
  aspect-ratio: unset;
  grid-row: span 1;
}

.prop-cat-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}

.prop-cat-card:hover img {
  transform: scale(1.1);
}

.pcc-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.05) 0%, rgba(10, 18, 13, 0.88) 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 32px;
  transition: var(--transition);
}

.prop-cat-card:hover .pcc-overlay {
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.1) 0%, rgba(10, 18, 13, 0.94) 100%);
}

.pcc-tag {
  display: inline-block;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold-light);
  background: rgba(201, 162, 39, 0.18);
  border: 1px solid rgba(201, 162, 39, 0.35);
  padding: 5px 14px;
  border-radius: 50px;
  margin-bottom: 12px;
  width: fit-content;
}

.pcc-title {
  font-family: var(--font-serif);
  font-size: 26px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 8px;
  line-height: 1.2;
}

.pcc-desc {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 16px;
  line-height: 1.6;
}

.pcc-meta {
  display: flex;
  gap: 22px;
  margin-bottom: 18px;
}

.pcc-meta span {
  font-size: 13px;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.9);
}

.pcc-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, var(--orange), var(--orange-dark));
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  padding: 11px 24px;
  border-radius: 50px;
  width: fit-content;
  transition: var(--transition);
  box-shadow: 0 4px 16px var(--orange-glow);
}

.pcc-btn:hover {
  background: linear-gradient(135deg, var(--orange-light), var(--orange));
  transform: translateX(4px);
  box-shadow: 0 8px 28px var(--orange-glow);
}

/* Property listing grid */
.prop-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 52px;
}

.prop-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  transition: var(--transition);
  box-shadow: var(--shadow-xs);
}

.prop-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-xl);
  border-color: var(--border-hover);
}

.prop-card.hidden {
  display: none;
}

.pc-img {
  position: relative;
  aspect-ratio: 16/10;
  overflow: hidden;
}

.pc-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.prop-card:hover .pc-img img {
  transform: scale(1.08);
}

.pc-badge {
  position: absolute;
  top: 14px;
  left: 14px;
  background: linear-gradient(135deg, var(--orange), var(--orange-dark));
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  padding: 5px 14px;
  border-radius: 50px;
  letter-spacing: 0.05em;
  box-shadow: 0 4px 12px rgba(198, 90, 46, 0.35);
}

.pc-badge.ready {
  background: linear-gradient(135deg, var(--green), var(--green-dark));
  box-shadow: 0 4px 12px var(--green-glow);
}

.pc-body {
  padding: 24px;
}

.pc-type {
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: 8px;
}

.pc-name {
  font-family: var(--font-serif);
  font-size: 18px;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 8px;
}

.pc-loc {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 13px;
  color: var(--text-muted);
  margin-bottom: 14px;
}

.pc-price {
  font-family: var(--font-serif);
  font-size: 24px;
  font-weight: 700;
  color: var(--green);
  margin-bottom: 14px;
}

.pc-specs {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 18px;
}

.pc-specs span {
  font-size: 12px;
  color: var(--text-muted);
  background: var(--cream);
  padding: 5px 12px;
  border-radius: 8px;
  font-weight: 600;
  border: 1px solid var(--border);
}

.pc-cta {
  display: block;
  text-align: center;
  background: linear-gradient(135deg, var(--green), var(--green-dark));
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  padding: 12px;
  border-radius: var(--radius-sm);
  transition: var(--transition);
  letter-spacing: 0.03em;
  box-shadow: 0 4px 16px var(--green-glow);
}

.pc-cta:hover {
  background: linear-gradient(135deg, var(--orange), var(--orange-dark));
  transform: translateY(-2px);
  box-shadow: 0 8px 24px var(--orange-glow);
}

.prop-cta-row {
  text-align: center;
}

/* ============================================================
   AWARDS - EDITORIAL CONSTELATION
   ============================================================ */
.awards-section {
  background: var(--dark);
  position: relative;
  overflow: hidden;
  padding: 180px 0;
}

.awards-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at center, rgba(201, 162, 39, 0.05) 0%, transparent 80%);
  pointer-events: none;
}

.awards-grid {
  display: flex;
  flex-direction: column;
  gap: 0;
  position: relative;
  max-width: 1000px;
  margin: 0 auto;
}

/* The Connecting Thread */
.awards-grid::before {
  content: '';
  position: absolute;
  top: 80px;
  bottom: 80px;
  left: 50%;
  width: 2px;
  background: linear-gradient(to bottom, transparent, rgba(201, 162, 39, 0.5), rgba(198, 90, 46, 0.5), transparent);
  transform: translateX(-50%);
  z-index: 0;
}

.award-pill {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  margin-bottom: 100px;
  position: relative;
  z-index: 1;
  background: transparent;
  border: none;
  box-shadow: none;
  padding: 0;
  border-radius: 0;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
}

.award-pill:last-child {
  margin-bottom: 0;
}

/* Alternating Layout */
.award-pill:nth-child(odd) {
  flex-direction: row-reverse;
  text-align: right;
}

.award-pill:nth-child(even) {
  text-align: left;
}

/* The Glowing Nodes */
.award-pill::after {
  content: '';
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 16px;
  height: 16px;
  background: var(--dark);
  border: 3px solid var(--gold);
  border-radius: 50%;
  z-index: 2;
  box-shadow: 0 0 20px rgba(201, 162, 39, 0.6);
  transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.award-pill:hover::after {
  transform: translate(-50%, -50%) scale(1.6);
  background: var(--gold);
  box-shadow: 0 0 30px rgba(201, 162, 39, 0.9), 0 0 50px rgba(198, 90, 46, 0.5);
}

/* Remove default hover transformations */
.award-pill:hover {
  transform: none;
  border-color: transparent;
  box-shadow: none;
}

.award-pill:hover::before {
  opacity: 0;
}

/* Icons */
.award-icon-wrap {
  width: 45%;
  display: flex;
  background: transparent;
  border: none;
  box-shadow: none;
  padding: 0;
  border-radius: 0;
  justify-content: flex-start;
  transition: none;
}

.award-pill:nth-child(odd) .award-icon-wrap {
  justify-content: flex-end;
}

.award-img,
.award-svg-fallback {
  width: 140px;
  height: 140px;
  object-fit: contain;
  filter: drop-shadow(0 15px 30px rgba(0, 0, 0, 0.6));
  transition: transform 0.8s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.award-pill:hover .award-icon-wrap {
  transform: none;
  background: transparent;
  border-color: transparent;
  box-shadow: none;
}

.award-pill:hover .award-img {
  transform: scale(1.2) translateY(-15px) rotate(5deg);
  filter: drop-shadow(0 25px 40px rgba(201, 162, 39, 0.35));
}

.award-pill:nth-child(even):hover .award-img {
  transform: scale(1.2) translateY(-15px) rotate(-5deg);
}

/* Text Content Area */
.award-content {
  width: 45%;
  position: relative;
}

/* Giant background typography for the year */
.award-year {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  font-family: var(--font-serif);
  font-size: 150px;
  font-weight: 800;
  color: transparent;
  -webkit-text-stroke: 1.5px rgba(255, 255, 255, 0.05);
  z-index: -1;
  pointer-events: none;
  transition: all 0.6s cubic-bezier(0.2, 0.8, 0.2, 1);
  white-space: nowrap;
  background: transparent;
  border: none;
  padding: 0;
  letter-spacing: normal;
  border-radius: 0;
}

.award-pill:nth-child(odd) .award-year {
  right: -30px;
}

.award-pill:nth-child(even) .award-year {
  left: -30px;
}

.award-pill:hover .award-year {
  -webkit-text-stroke: 1.5px rgba(201, 162, 39, 0.25);
  transform: translateY(-50%) scale(1.05);
  text-shadow: 0 0 40px rgba(201, 162, 39, 0.1);
}

.award-title {
  font-family: var(--font-serif);
  font-size: 34px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 16px;
  line-height: 1.2;
}

.award-desc {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.7;
  max-width: 400px;
}

.award-pill:nth-child(odd) .award-desc {
  margin-left: auto;
}

/* Responsive Editorial Layout */
@media (max-width: 991px) {
  .award-year {
    font-size: 110px;
  }
}

@media (max-width: 767px) {
  .awards-grid::before {
    left: 20px;
    transform: none;
    top: 0;
    bottom: 0;
  }

  .award-pill {
    flex-direction: column !important;
    text-align: left !important;
    align-items: flex-start;
    padding-left: 60px;
    margin-bottom: 70px;
  }

  .award-pill::after {
    left: 20px;
    transform: translate(-50%, -50%);
  }

  .award-pill:hover::after {
    transform: translate(-50%, -50%) scale(1.5);
  }

  .award-icon-wrap {
    width: 100%;
    margin-bottom: 20px;
    justify-content: flex-start !important;
  }

  .award-img,
  .award-svg-fallback {
    width: 90px;
    height: 90px;
  }

  .award-content {
    width: 100%;
  }

  .award-year {
    font-size: 80px;
    left: 0 !important;
    right: auto !important;
    top: -20px;
    transform: none !important;
  }

  .award-pill:hover .award-year {
    transform: none !important;
  }

  .award-desc {
    margin-left: 0 !important;
  }
}


/* ============================================================
   TRUST INDICATORS - LUXURY GLASS CARDS
   ============================================================ */
.trust-section {
  background: var(--dark-2);
  overflow: hidden;
  position: relative;
  padding: 140px 0;
}

.trust-section::before {
  content: '';
  position: absolute;
  top: -150px;
  left: -150px;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(201, 162, 39, 0.06), transparent 70%);
  pointer-events: none;
}

.trust-section .section-title {
  color: #fff;
}

.trust-section .section-sub {
  color: rgba(255, 255, 255, 0.6);
}

.trust-section .section-tag {
  color: var(--gold-light);
  background: rgba(201, 162, 39, 0.1);
  border-color: rgba(201, 162, 39, 0.25);
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  position: relative;
  z-index: 2;
}

.trust-card {
  background: linear-gradient(135deg, rgba(20, 26, 22, 0.95), rgba(10, 18, 13, 0.98));
  padding: 48px 40px;
  border-radius: 28px;
  border: 1px solid rgba(201, 162, 39, 0.15);
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.15);
}

.trust-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  opacity: 0;
  transition: var(--transition);
}

.trust-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 100% 100%, rgba(201, 162, 39, 0.1), transparent 60%);
  opacity: 0;
  transition: var(--transition);
}

.trust-card:hover {
  transform: translateY(-8px);
  border-color: rgba(201, 162, 39, 0.4);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.3), 0 0 40px rgba(201, 162, 39, 0.1);
}

.trust-card:hover::before,
.trust-card:hover::after {
  opacity: 1;
}

.tc-num {
  font-family: var(--font-serif);
  font-size: 80px;
  font-weight: 800;
  color: transparent;
  -webkit-text-stroke: 1px rgba(255, 255, 255, 0.08);
  margin-bottom: 20px;
  line-height: 1;
  position: absolute;
  top: 20px;
  right: 20px;
  transition: all 0.5s;
}

.trust-card:hover .tc-num {
  -webkit-text-stroke: 1px rgba(201, 162, 39, 0.3);
  color: rgba(201, 162, 39, 0.05);
  transform: scale(1.1) translate(-5px, 5px);
}

.trust-card h3 {
  font-family: var(--font-serif);
  font-size: 24px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 16px;
  position: relative;
  z-index: 2;
}

.trust-card p {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.8;
  position: relative;
  z-index: 2;
}

/* ============================================================
   TESTIMONIALS - PREMIUM HORIZONTAL CAROUSEL
   ============================================================ */
.testimonials-section {
  background: var(--dark);
  overflow: hidden;
  position: relative;
  padding: 140px 0 100px;
}

.testimonials-section::before {
  content: '';
  position: absolute;
  top: -100px;
  right: -100px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(201, 162, 39, 0.08), transparent 70%);
  pointer-events: none;
}

.testimonials-section .section-title {
  color: #fff;
}

.testimonials-section .section-sub {
  color: rgba(255, 255, 255, 0.6);
}

.testimonials-section .section-tag {
  color: var(--gold-light);
  background: rgba(201, 162, 39, 0.1);
  border-color: rgba(201, 162, 39, 0.25);
}

.testi-carousel-wrap {
  position: relative;
  margin: 0 -20px;
  /* Bleed edge on mobile */
}

.testimonials-track {
  display: flex;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -ms-overflow-style: none;
  /* IE and Edge */
  scrollbar-width: none;
  /* Firefox */
  gap: 32px;
  padding: 40px 20px 60px;
}

.testimonials-track::-webkit-scrollbar {
  display: none;
}

.testi-card {
  scroll-snap-align: center;
  flex: 0 0 450px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.01));
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border-radius: 32px;
  padding: 48px;
  position: relative;
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.2);
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  overflow: hidden;
}

.testi-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 6px;
  height: 100%;
  background: linear-gradient(to bottom, var(--gold), var(--gold-light));
  opacity: 0;
  transition: var(--transition);
}

.testi-card:hover {
  transform: translateY(-8px);
  border-color: rgba(201, 162, 39, 0.3);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.3), 0 0 30px rgba(201, 162, 39, 0.08);
}

.testi-card:hover::before {
  opacity: 1;
}

.t-quote-mark {
  position: absolute;
  top: 20px;
  right: 30px;
  font-family: var(--font-serif);
  font-size: 140px;
  color: rgba(201, 162, 39, 0.08);
  line-height: 1;
}

.testi-stars-top {
  color: var(--gold-light);
  font-size: 20px;
  letter-spacing: 3px;
  margin-bottom: 24px;
  position: relative;
  z-index: 2;
}

.testi-text {
  font-size: 17px;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.8;
  margin-bottom: 32px;
  font-style: italic;
  font-weight: 300;
  position: relative;
  z-index: 2;
}

.testi-author {
  display: flex;
  align-items: center;
  gap: 16px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.ta-avatar {
  width: 56px;
  height: 56px;
  background: linear-gradient(135deg, var(--gold), var(--orange));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #000;
  font-weight: 700;
  flex-shrink: 0;
}

.testi-author strong {
  display: block;
  font-size: 16px;
  font-weight: 700;
  color: #fff;
}

.testi-author span {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.5);
}

.carousel-instruct {
  text-align: center;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.4);
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-top: 20px;
}

.testi-cta-row {
  display: flex;
  justify-content: center;
  margin-top: 40px;
}

.testi-cta-row .btn-outline {
  border-color: rgba(201, 162, 39, 0.3);
  color: #fff;
  background: rgba(201, 162, 39, 0.05);
}

.testi-cta-row .btn-outline:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: #000;
}


/* ============================================================
   CONTACT - ELEVATED MERGED PANEL
   ============================================================ */
.contact-section {
  background: var(--cream);
  position: relative;
  overflow: hidden;
  padding: 140px 0;
}

.contact-elevated {
  display: flex;
  max-width: 1100px;
  margin: 0 auto;
  background: #fff;
  border-radius: 40px;
  box-shadow: 0 40px 100px rgba(0, 0, 0, 0.08);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 1);
}

.contact-info-panel {
  flex: 1;
  background: linear-gradient(145deg, #111a14, #1a291f);
  padding: 60px 48px;
  color: #fff;
  position: relative;
}

.contact-info-panel::before {
  content: '';
  position: absolute;
  top: -50px;
  right: -50px;
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, rgba(46, 125, 91, 0.3), transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.contact-info-panel .section-title {
  color: #fff;
  margin-bottom: 16px;
}

.contact-info-panel .section-tag {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.15);
  color: var(--gold-light);
}

.contact-lead {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 48px;
}

.cd-item {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 32px;
}

.cd-icon {
  width: 56px;
  height: 56px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-light);
  transition: all 0.4s;
}

.cd-item:hover .cd-icon {
  background: var(--gold);
  color: #000;
  transform: scale(1.1) rotate(5deg);
}

.cd-item strong {
  display: block;
  font-size: 15px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 4px;
}

.cd-item span {
  color: rgba(255, 255, 255, 0.6);
  font-size: 14px;
}

.contact-rera {
  margin-top: 48px;
}

.rera-badge {
  background: transparent;
  border: 1px dashed rgba(255, 255, 255, 0.2);
  color: var(--gold-light);
  padding: 10px 20px;
  border-radius: 50px;
  font-size: 12px;
}

.contact-form-panel {
  flex: 1.2;
  padding: 60px 48px;
  background: #fff;
}

.form-title {
  font-family: var(--font-serif);
  font-size: 32px;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 32px;
}

.form-row {
  display: flex;
  gap: 20px;
  margin-bottom: 20px;
}

.form-row input,
.form-row select {
  flex: 1;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  padding: 16px 24px;
  border: 1px solid var(--border);
  border-radius: 16px;
  font-size: 15px;
  font-family: var(--font-sans);
  background: var(--ivory);
  transition: all 0.3s;
  outline: none;
}

.contact-form textarea {
  margin-bottom: 24px;
  resize: vertical;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: var(--green);
  background: #fff;
  box-shadow: 0 8px 24px rgba(46, 125, 91, 0.06);
  transform: translateY(-2px);
}

.contact-form .btn {
  padding: 18px;
  font-size: 16px;
  border-radius: 16px;
}


/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: linear-gradient(180deg, var(--dark), var(--dark-3));
  color: rgba(255, 255, 255, 0.65);
}

.footer-top {
  padding: 80px 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 52px;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 18px;
}

.footer-logo-img {
  width: 52px;
  height: 52px;
  border-radius: 0;
  object-fit: contain;
  background: transparent;
  padding: 0;
  box-shadow: none;
  filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.3)) brightness(1.1);
}

.fl-name {
  display: block;
  font-family: var(--font-serif);
  font-size: 22px;
  font-weight: 700;
  color: #fff;
}

.fl-sub {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.45);
  letter-spacing: 0.1em;
  font-weight: 500;
}

.footer-tagline {
  font-family: var(--font-serif);
  font-size: 15px;
  font-style: italic;
  color: var(--gold-light);
  margin-bottom: 14px;
}

.footer-desc {
  font-size: 13px;
  line-height: 1.8;
  margin-bottom: 24px;
}

.footer-social {
  display: flex;
  gap: 10px;
}

.social-link {
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-xs);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.55);
  transition: var(--transition);
}

.social-link:hover {
  background: var(--green);
  color: #fff;
  border-color: var(--green);
  transform: translateY(-3px);
  box-shadow: 0 6px 20px var(--green-glow);
}

.fc-title {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.35);
  margin-bottom: 24px;
}

.fc-links li {
  margin-bottom: 12px;
}

.fc-links a {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.55);
  transition: var(--transition-fast);
}

.fc-links a:hover {
  color: var(--gold-light);
  padding-left: 6px;
}

.fc-contact p {
  font-size: 13px;
  line-height: 1.8;
  margin-bottom: 12px;
}

.fc-contact a {
  color: rgba(255, 255, 255, 0.55);
  transition: var(--transition-fast);
}

.fc-contact a:hover {
  color: var(--gold-light);
}

.rera-footer {
  display: inline-block;
  margin-top: 10px;
  font-size: 11px;
  font-weight: 700;
  color: var(--gold);
  border: 1px solid rgba(201, 162, 39, 0.3);
  padding: 5px 14px;
  border-radius: 50px;
  letter-spacing: 0.1em;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding: 28px 0;
  text-align: center;
}

.footer-bottom p {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.25);
  margin-bottom: 4px;
}

/* ============================================================
   FLOATING WHATSAPP
   ============================================================ */
.whatsapp-float {
  position: fixed;
  bottom: 32px;
  right: 32px;
  z-index: 999;
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #25D366, #128C7E);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 24px rgba(37, 211, 102, 0.45);
  transition: var(--transition);
  animation: waPulse 3s ease-in-out 3s infinite;
}

.whatsapp-float:hover {
  transform: scale(1.12);
  box-shadow: 0 10px 40px rgba(37, 211, 102, 0.5);
}

@keyframes waPulse {

  0%,
  100% {
    box-shadow: 0 6px 24px rgba(37, 211, 102, 0.45)
  }

  50% {
    box-shadow: 0 6px 24px rgba(37, 211, 102, 0.45), 0 0 0 14px rgba(37, 211, 102, 0.1)
  }
}

.wa-tooltip {
  position: absolute;
  right: 72px;
  background: var(--dark);
  color: #fff;
  font-size: 12px;
  font-weight: 600;
  padding: 8px 14px;
  border-radius: 8px;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: var(--transition);
  box-shadow: var(--shadow);
}

.wa-tooltip::after {
  content: '';
  position: absolute;
  top: 50%;
  right: -6px;
  transform: translateY(-50%);
  border: 6px solid transparent;
  border-left-color: var(--dark);
  border-right: none;
}

.whatsapp-float:hover .wa-tooltip {
  opacity: 1;
}

/* ============================================================
   CALLBACK POPUP
   ============================================================ */
.callback-popup {
  position: fixed;
  bottom: 32px;
  left: 32px;
  z-index: 1001;
  opacity: 0;
  transform: translateY(20px);
  pointer-events: none;
  transition: var(--transition);
}

.callback-popup.show {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.popup-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 36px;
  width: 320px;
  box-shadow: var(--shadow-xl);
  border: 1px solid var(--border);
  position: relative;
}

.popup-close {
  position: absolute;
  top: 14px;
  right: 18px;
  font-size: 24px;
  color: var(--text-muted);
  line-height: 1;
  transition: var(--transition);
}

.popup-close:hover {
  color: var(--orange);
  transform: rotate(90deg);
}

.popup-icon {
  width: 56px;
  height: 56px;
  background: linear-gradient(135deg, rgba(46, 125, 91, 0.12), rgba(46, 125, 91, 0.05));
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}

.popup-title {
  font-family: var(--font-serif);
  font-size: 22px;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 6px;
}

.popup-sub {
  font-size: 13px;
  color: var(--text-muted);
  margin-bottom: 22px;
}

.popup-input {
  width: 100%;
  padding: 13px 16px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-xs);
  font-size: 14px;
  font-family: var(--font-sans);
  color: var(--text);
  background: var(--ivory);
  outline: none;
  transition: var(--transition);
  margin-bottom: 12px;
  display: block;
}

.popup-input:focus {
  border-color: var(--green);
  box-shadow: 0 0 0 3px rgba(46, 125, 91, 0.1);
}

.popup-note {
  text-align: center;
  font-size: 11px;
  color: var(--text-muted);
  margin-top: 12px;
}

.popup-backdrop {
  position: fixed;
  inset: 0;
  z-index: 1000;
  background: transparent;
  display: none;
}

.popup-backdrop.show {
  display: block;
}

/* ============================================================
   SCROLL REVEAL
   ============================================================ */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.7s ease, transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .about-grid {
    gap: 40px;
  }

  .prop-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .trust-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }

  .timeline-track {
    grid-template-columns: repeat(3, 1fr);
  }

  .timeline-track::before {
    display: none;
  }

  .prop-categories {
    grid-template-columns: 1fr 1fr;
  }

  .prop-cat-card.large {
    grid-column: span 2;
  }
}

@media (max-width: 900px) {
  .section {
    padding: 80px 0;
  }

  .trust-section,
  .testimonials-section,
  .contact-section,
  .awards-section {
    padding: 90px 0;
  }

  .services-accordion {
    flex-direction: column;
    height: 800px;
  }

  .service-panel:hover,
  .service-panel.active-panel {
    flex: 2.5;
  }

  .sp-content {
    padding: 24px;
    gap: 16px;
    align-items: center;
  }

  .awards-grid {
    grid-template-columns: 1fr;
  }

  .award-pill {
    border-radius: 40px;
    padding: 20px;
    flex-direction: column;
    text-align: center;
  }

  .trust-grid {
    grid-template-columns: 1fr;
  }

  .contact-elevated {
    flex-direction: column;
  }

  .contact-info-panel,
  .contact-form-panel {
    padding: 40px 32px;
  }

  .form-row {
    flex-direction: column;
    gap: 20px;
  }
}

@media (max-width: 768px) {
  .about-grid {
    grid-template-columns: 1fr;
    gap: 44px;
  }

  .about-accent-card {
    display: none;
  }

  .prop-categories {
    grid-template-columns: 1fr;
  }

  .prop-cat-card.large {
    grid-column: span 1;
  }

  .prop-grid {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .timeline-track {
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
  }

  .trust-strip-inner {
    flex-direction: column;
    gap: 24px;
  }

  .trust-divider {
    display: none;
  }

  .testi-card {
    flex: 0 0 85%;
    padding: 32px;
  }

  /* Navbar */
  .nav-links {
    display: flex;
    position: fixed;
    top: 0;
    right: -340px;
    bottom: 0;
    width: 320px;
    background: #111a14; /* Solid Deep Green-Black for visibility */
    border-left: 1px solid var(--gold-glow);
    flex-direction: column;
    align-items: flex-start;
    padding: 120px 32px 40px;
    gap: 14px;
    border-left: 1px solid rgba(201, 162, 39, 0.15);
    box-shadow: -15px 0 50px rgba(0, 0, 0, 0.6);
    transition: right 0.5s cubic-bezier(0.8, 0, 0.2, 1);
    z-index: 1000;
  }

  .nav-links.open {
    right: 0;
  }

  .nav-links li {
    width: 100%;
    opacity: 0;
    transform: translateX(40px);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  }

  .nav-links.open li {
    opacity: 1;
    transform: translateX(0);
  }

  .nav-links.open li:nth-child(1) {
    transition-delay: 0.1s;
  }

  .nav-links.open li:nth-child(2) {
    transition-delay: 0.15s;
  }

  .nav-links.open li:nth-child(3) {
    transition-delay: 0.2s;
  }

  .nav-links.open li:nth-child(4) {
    transition-delay: 0.25s;
  }

  .nav-links.open li:nth-child(5) {
    transition-delay: 0.3s;
  }

  .nav-links.open li:nth-child(6) {
    transition-delay: 0.35s;
  }

  .nav-links li a {
    display: block;
    padding: 16px 24px;
    font-size: 18px;
    font-family: var(--font-serif);
    font-weight: 600;
    width: 100%;
    border-radius: var(--radius-sm);
    color: #fff;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.06);
    transition: all 0.3s ease;
  }

  .nav-links li a:active {
    background: rgba(201, 162, 39, 0.15);
    border-color: rgba(201, 162, 39, 0.4);
    transform: scale(0.98);
  }

  .nav-toggle {
    display: flex;
    z-index: 1001;
    position: relative;
  }

  .nav-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
  }

  .nav-toggle.active span:nth-child(2) {
    opacity: 0;
  }

  .nav-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
  }

  .hero {
    min-height: 100vh;
    min-height: 100svh;
    height: auto;
    padding: 120px 0 120px;
  }

  .hero-content {
    padding-top: 0;
  }

  .hero-title {
    font-size: 42px;
    margin-bottom: 16px;
  }

  .hero-subtitle {
    font-size: 15px;
    margin-bottom: 24px;
  }

  .hero-badges {
    margin-bottom: 28px;
    gap: 8px;
  }

  .hero-cta-group {
    flex-direction: column;
    gap: 12px;
    margin-bottom: 24px;
  }



  .btn {
    width: 100%;
    justify-content: center;
  }

  .callback-popup {
    left: 16px;
    bottom: 100px;
    width: calc(100% - 32px);
    max-width: 360px;
  }

  .whatsapp-float {
    bottom: 24px;
    right: 24px;
  }
}

@media (max-width: 480px) {
  .hero-logo-anim {
    width: 72px;
    height: 72px;
  }

  .tc-num {
    font-size: 56px;
  }

  .trust-card {
    padding: 32px 24px;
  }

  .testi-card {
    padding: 24px;
    flex: 0 0 90%;
  }

  .t-quote-mark {
    font-size: 80px;
    top: 10px;
    right: 20px;
  }

  .popup-card {
    width: 100%;
  }

  .timeline-track {
    grid-template-columns: 1fr;
  }

  .container {
    padding: 0 20px;
  }
}