/* ═══════════════════════════════════════════════════════════════
   RAAS BUILDERS & DEVELOPERS — MAIN STYLESHEET
   Theme: Forest green + Gold + Terra (heritage / trust / premium)
═══════════════════════════════════════════════════════════════ */

/* ─── DESIGN TOKENS ───────────────────────────────────────── */
:root {
  --forest:   #1A3C34;
  --forest2:  #122B25;
  --forest3:  #0D1F1B;
  --gold:     #C9A84C;
  --gold-text: #8B6914;  /* darker gold for text on light backgrounds — passes WCAG AA */
  --gold2:    #E8C96A;
  --gold3:    #F5E6B8;
  --cream:    #FAF7F2;
  --terra:    #C4622D;
  --terra2:   #E07848;
  --sand:     #E8DCC8;
  --charcoal: #2C2C2C;
  --mid:      #5C7068;
  --light:    #8FA89F;
  --white:    #FFFFFF;
  --shadow-sm: 0 4px 12px rgba(26,60,52,0.08);
  --shadow-md: 0 12px 30px rgba(26,60,52,0.12);
  --shadow-lg: 0 24px 60px rgba(26,60,52,0.18);
}

/* Skip navigation link (accessibility) */
.skip-link {
  position: absolute;
  top: -100px;
  left: 16px;
  background: var(--gold);
  color: var(--forest3);
  padding: 10px 20px;
  border-radius: 0 0 8px 8px;
  font-weight: 700;
  font-size: 14px;
  z-index: 9999;
  transition: top 0.2s;
}
.skip-link:focus {
  top: 0;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  font-family: 'DM Sans', 'Jost', sans-serif;
  background: var(--cream);
  color: var(--charcoal);
  overflow-x: hidden;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a { color: inherit; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }

:lang(kn), [lang="kn"], .kn-text {
  font-family: 'Noto Sans Kannada', 'DM Sans', sans-serif;
}

/* ─── NAVIGATION ──────────────────────────────────────────── */
.nav-bar {
  background: rgba(26,60,52,0.97);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  padding: 0 clamp(20px, 4vw, 48px);
  display: flex;
  align-items: center;
  height: 72px;
  border-bottom: 1px solid rgba(201,168,76,0.15);
  position: sticky;
  top: 0;
  z-index: 900;
}
.nav-container {
  max-width: 1280px;
  width: 100%;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo-area {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}
.nav-logo-icon { width: 42px; height: 42px; flex-shrink: 0; }
.nav-logo-text { display: flex; flex-direction: column; }
.nav-company {
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px;
  font-weight: 700;
  color: var(--white);
  line-height: 1;
  letter-spacing: 1px;
}
.nav-company-sub {
  font-size: 9px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
  margin-top: 3px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 26px;
  list-style: none;
}
.nav-links a {
  text-decoration: none;
  color: rgba(255,255,255,0.75);
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 0.3px;
  transition: color 0.2s;
  position: relative;
  padding: 4px 0;
}
.nav-links a::after {
  content: '';
  position: absolute; bottom: 0; left: 0; right: 0; height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transition: transform 0.3s;
}
.nav-links a:hover { color: var(--gold); }
.nav-links a:hover::after { transform: scaleX(1); }

.admin-link {
  color: var(--gold) !important;
  font-size: 12px !important;
  border: 1px solid rgba(201,168,76,0.4);
  border-radius: 6px;
  padding: 6px 12px !important;
}
.admin-link::after { display: none !important; }
.admin-link:hover { background: rgba(201,168,76,0.12); }

.lang-toggle {
  background: rgba(201,168,76,0.1);
  border: 1px solid rgba(201,168,76,0.3);
  color: var(--gold);
  border-radius: 6px;
  padding: 6px 12px;
  font-size: 12px;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 6px;
  transition: all 0.2s;
}
.lang-toggle:hover { background: rgba(201,168,76,0.2); }

/* Mobile hamburger */
.nav-toggle {
  display: none;
  width: 36px; height: 36px;
  color: var(--gold);
  font-size: 22px;
  align-items: center;
  justify-content: center;
}

/* ─── HERO ────────────────────────────────────────────────── */
.hero-section {
  min-height: 88vh;
  background: var(--forest2);
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: 60px 0 100px;
}
.hero-bg-pattern {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse at 20% 80%, rgba(201,168,76,0.14) 0%, transparent 50%),
    radial-gradient(ellipse at 80% 20%, rgba(26,60,52,0.85) 0%, transparent 60%),
    radial-gradient(ellipse at 50% 50%, rgba(13,31,27,0.7) 0%, transparent 70%);
  pointer-events: none;
}
.hero-bg-grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(201,168,76,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(201,168,76,0.04) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
}
.hero-diagonal {
  position: absolute;
  bottom: -2px; left: 0; right: 0; height: 100px;
  background: var(--cream);
  clip-path: polygon(0 100%, 100% 0, 100% 100%);
}
.hero-content {
  position: relative;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 clamp(20px, 4vw, 48px);
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 60px;
  align-items: center;
  width: 100%;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(201,168,76,0.1);
  border: 1px solid rgba(201,168,76,0.25);
  border-radius: 100px;
  padding: 7px 18px;
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 24px;
  animation: fadeUp 0.8s ease 0.1s both;
}
.hero-badge-dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--gold);
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(0.8); }
}

.hero-h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(38px, 5.2vw, 68px);
  font-weight: 600;
  color: var(--white);
  line-height: 1.05;
  margin-bottom: 22px;
  animation: fadeUp 0.8s ease 0.2s both;
}
.hero-h1 em { font-style: italic; color: var(--gold); }
.hero-h1 .kn {
  font-family: 'Noto Sans Kannada', sans-serif;
  font-size: 0.48em;
  display: block;
  color: var(--gold3);
  font-weight: 400;
  margin-bottom: 10px;
  font-style: normal;
  letter-spacing: 0.5px;
}

.hero-p {
  font-size: 16px;
  color: var(--light);
  line-height: 1.8;
  margin-bottom: 36px;
  max-width: 500px;
  animation: fadeUp 0.8s ease 0.3s both;
}

.hero-btns {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  animation: fadeUp 0.8s ease 0.4s both;
}

.btn-primary {
  background: var(--gold);
  color: var(--forest3);
  padding: 14px 30px;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 600;
  text-decoration: none;
  letter-spacing: 0.5px;
  transition: all 0.3s;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1px solid var(--gold);
  cursor: pointer;
  font-family: inherit;
}
.btn-primary:hover {
  background: var(--gold2);
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(201,168,76,0.32);
}
.btn-secondary {
  background: transparent;
  border: 1px solid rgba(255,255,255,0.3);
  color: var(--white);
  padding: 14px 30px;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 500;
  text-decoration: none;
  transition: all 0.3s;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.btn-secondary:hover {
  border-color: var(--gold);
  color: var(--gold);
  background: rgba(201,168,76,0.06);
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 44px;
  padding-top: 28px;
  border-top: 1px solid rgba(255,255,255,0.08);
  animation: fadeUp 0.8s ease 0.5s both;
}
.stat-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 34px;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
}
.stat-label {
  font-size: 11px;
  color: var(--light);
  margin-top: 6px;
  letter-spacing: 0.4px;
}

/* Hero right — property card mockup */
.hero-right {
  animation: fadeUp 0.8s ease 0.3s both;
  position: relative;
}
.hero-card-stack {
  position: relative;
  padding: 20px 0 20px 20px;
}
.property-card-back {
  position: absolute;
  top: 0; right: -10px;
  width: 88%;
  height: 100%;
  background: rgba(201,168,76,0.08);
  border-radius: 20px;
  border: 1px solid rgba(201,168,76,0.15);
}
.hero-prop-card {
  background: rgba(255,255,255,0.06);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 20px;
  overflow: hidden;
  position: relative;
  z-index: 1;
}
.hero-prop-img {
  height: 220px;
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(ellipse at 20% 90%, rgba(34,85,34,0.6) 0%, transparent 40%),
    radial-gradient(ellipse at 60% 85%, rgba(25,70,25,0.5) 0%, transparent 35%),
    linear-gradient(to bottom, #1a4a6a 0%, #2d7a6a 35%, #1f6040 60%, #143d28 100%);
}
.hero-prop-img::after {
  content: 'SHIVAMOGGA · PRIME PLOT';
  position: absolute; bottom: 14px; left: 16px;
  font-size: 10px;
  letter-spacing: 2px;
  color: rgba(255,255,255,0.75);
  text-transform: uppercase;
}
.card-sun {
  position: absolute;
  top: 30px; right: 40px;
  width: 50px; height: 50px;
  border-radius: 50%;
  background: radial-gradient(circle, #ffd700, #ff8c00);
  opacity: 0.7;
  box-shadow: 0 0 30px rgba(255,200,0,0.5);
}
.card-badge {
  position: absolute; top: 16px; left: 16px;
  background: var(--terra);
  color: white;
  font-size: 10px;
  font-weight: 600;
  padding: 5px 12px;
  border-radius: 20px;
  letter-spacing: 1px;
}
.hero-prop-body { padding: 22px; color: var(--white); }
.hero-prop-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 4px;
}
.hero-prop-loc {
  font-size: 12px;
  color: var(--light);
  margin-bottom: 16px;
}
.hero-prop-specs {
  display: flex;
  gap: 14px;
  margin-bottom: 16px;
  flex-wrap: wrap;
}
.hero-prop-spec {
  font-size: 11px;
  color: var(--light);
}
.hero-prop-spec strong { color: var(--white); }
.hero-prop-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 14px;
  border-top: 1px solid rgba(255,255,255,0.1);
}
.hero-prop-price {
  font-family: 'Cormorant Garamond', serif;
  font-size: 26px;
  font-weight: 700;
  color: var(--gold);
}
.hero-prop-price-label { font-size: 10px; color: var(--light); }

.floating-tag {
  position: absolute;
  top: -12px; right: 30px;
  background: var(--white);
  border-radius: 12px;
  padding: 10px 16px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.3);
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 500;
  color: var(--charcoal);
  z-index: 2;
}
.floating-dot { width: 8px; height: 8px; border-radius: 50%; background: #22c55e; animation: pulse 2s infinite; }

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ─── SECTION SHELL ───────────────────────────────────────── */
.section-page {
  padding: 90px clamp(20px, 4vw, 48px);
  background: var(--cream);
  position: relative;
}
.section-page.alt-bg { background: var(--white); }
.section-page.dark-bg { background: var(--forest); }
.section-page.sand-bg { background: var(--sand); }

.section-inner { max-width: 1280px; margin: 0 auto; }

.eyebrow {
  font-size: 11px;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--terra);
  margin-bottom: 12px;
  text-align: center;
  font-weight: 600;
}
.dark-bg .eyebrow { color: var(--gold); }

.section-h {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(30px, 4vw, 46px);
  font-weight: 600;
  color: var(--forest);
  text-align: center;
  margin-bottom: 10px;
  line-height: 1.15;
}
.section-h em { font-style: italic; color: var(--gold-text); }
.dark-bg .section-h { color: var(--white); }

.section-sub {
  text-align: center;
  color: var(--mid);
  font-size: 15px;
  max-width: 620px;
  margin: 0 auto 14px;
  line-height: 1.7;
}
.dark-bg .section-sub { color: var(--light); }

.divider {
  width: 60px; height: 3px;
  background: var(--gold);
  margin: 18px auto 48px;
  border-radius: 2px;
}

/* ─── SERVICES STRIP ──────────────────────────────────────── */
.services-section {
  background: var(--cream);
  padding: 90px clamp(20px, 4vw, 48px);
}
.services-grid {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
  background: #eee;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--shadow-md);
}
.svc-card {
  background: var(--white);
  padding: 32px 26px;
  cursor: pointer;
  transition: all 0.3s;
  position: relative;
  text-align: left;
  overflow: hidden;
}
.svc-card::before {
  content: '';
  position: absolute; bottom: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--terra));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.35s;
}
.svc-card:hover {
  background: var(--forest);
  transform: translateY(-4px);
  z-index: 2;
}
.svc-card:hover::before { transform: scaleX(1); }
.svc-card:hover .svc-icon { background: rgba(201,168,76,0.18); }
.svc-card:hover .svc-name,
.svc-card:hover .svc-arrow { color: var(--gold); }
.svc-card:hover .svc-desc { color: rgba(255,255,255,0.7); }

.svc-icon {
  width: 52px; height: 52px;
  background: var(--cream);
  border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  font-size: 26px;
  margin-bottom: 18px;
  transition: background 0.3s;
}
.svc-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 20px;
  font-weight: 600;
  color: var(--forest);
  margin-bottom: 8px;
  transition: color 0.3s;
}
.svc-desc {
  font-size: 12.5px;
  color: var(--mid);
  line-height: 1.65;
  transition: color 0.3s;
}
.svc-arrow {
  margin-top: 16px;
  color: var(--terra);
  font-size: 18px;
  font-weight: 700;
  transition: color 0.3s;
}

/* ─── INFO CARD GRID (Buy Plots, Apartments, etc.) ────────── */
.info-grid {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}
.info-card {
  background: var(--white);
  border-radius: 18px;
  padding: 36px 30px;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(26,60,52,0.06);
  transition: all 0.3s;
  display: flex;
  flex-direction: column;
}
.info-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(201,168,76,0.4);
}
.dark-bg .info-card {
  background: rgba(255,255,255,0.05);
  border-color: rgba(255,255,255,0.08);
  color: var(--white);
}
.info-icon {
  width: 56px; height: 56px;
  background: rgba(201,168,76,0.12);
  border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  font-size: 28px;
  margin-bottom: 20px;
}
.info-card h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 24px;
  font-weight: 700;
  color: var(--forest);
  margin-bottom: 12px;
}
.dark-bg .info-card h3 { color: var(--white); }
.info-card p {
  font-size: 14px;
  color: var(--mid);
  line-height: 1.7;
  margin-bottom: 18px;
}
.dark-bg .info-card p { color: var(--light); }
.info-list {
  list-style: none;
  margin-bottom: 24px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.info-list li {
  font-size: 13px;
  color: var(--forest);
  padding-left: 4px;
}
.dark-bg .info-list li { color: var(--gold3); }
.info-card .btn-primary {
  align-self: flex-start;
  margin-top: auto;
  padding: 12px 24px;
  font-size: 12px;
}

/* ─── PROPERTIES SECTION (Featured Listings — dark) ───────── */
.properties-section {
  background: var(--forest);
  padding: 90px clamp(20px, 4vw, 48px);
  position: relative;
}
.properties-section::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 4px;
  background: linear-gradient(90deg, var(--gold), var(--terra), var(--gold));
}
.properties-section .eyebrow { color: var(--gold); }
.properties-section .section-h { color: var(--white); }

.prop-filter {
  max-width: 1280px;
  margin: 0 auto 40px;
  display: flex;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
}
.pf-chip {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(201,168,76,0.25);
  color: rgba(255,255,255,0.75);
  padding: 9px 22px;
  border-radius: 100px;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.5px;
  transition: all 0.25s;
}
.pf-chip:hover {
  color: var(--gold);
  border-color: var(--gold);
}
.pf-chip.active {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--forest3);
  font-weight: 600;
}

.prop-grid {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}

.prop-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 18px;
  overflow: hidden;
  transition: all 0.35s;
  cursor: pointer;
}
.prop-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 28px 50px rgba(0,0,0,0.4);
  border-color: rgba(201,168,76,0.4);
}
.prop-img {
  position: relative;
  height: auto; min-height: 200px;
  aspect-ratio: 16/10;
  overflow: hidden;
  background-size: cover;
  background-position: center;
  transition: transform 0.5s;
}
.prop-card:hover .prop-img { transform: scale(1.04); }

.prop-badge {
  position: absolute; top: 14px; left: 14px;
  background: var(--terra);
  color: white;
  font-size: 10px;
  font-weight: 600;
  padding: 5px 12px;
  border-radius: 100px;
  letter-spacing: 1px;
}
.prop-badge.available { background: #22c55e; }
.prop-badge.sold { background: #ef4444; }
.prop-badge.booked { background: #f59e0b; color: #000; }
.prop-badge.upcoming { background: #3b82f6; }
.prop-badge.premium { background: var(--gold); color: var(--forest3); }

.prop-body {
  padding: 22px;
  color: var(--white);
}
.prop-type {
  font-size: 10px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 6px;
  font-weight: 600;
}
.prop-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 4px;
}
.prop-location {
  font-size: 12px;
  color: var(--light);
  margin-bottom: 14px;
}
.prop-specs {
  display: flex;
  gap: 14px;
  margin-bottom: 14px;
  padding-bottom: 14px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  flex-wrap: wrap;
}
.spec-item {
  font-size: 11px;
  color: var(--light);
}
.prop-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.prop-price {
  font-family: 'Cormorant Garamond', serif;
  font-size: 24px;
  font-weight: 700;
  color: var(--gold);
}
.prop-price span {
  font-family: 'DM Sans', sans-serif;
  font-size: 11px;
  font-weight: 400;
  color: var(--light);
}
.prop-enquire {
  background: #25D366;
  color: white;
  font-size: 12px;
  font-weight: 600;
  padding: 9px 18px;
  border-radius: 6px;
  text-decoration: none;
  transition: transform 0.2s;
}
.prop-enquire:hover { transform: translateY(-2px); }

.prop-layout-btn {
  display: inline-block;
  background: rgba(26,60,52,0.08);
  border: 1px solid rgba(26,60,52,0.15);
  color: #1A3C34;
  font-size: 11px;
  font-weight: 600;
  padding: 5px 12px;
  border-radius: 5px;
  cursor: pointer;
  margin: 2px 0 6px;
  transition: background 0.2s;
}
.prop-layout-btn:hover { background: rgba(26,60,52,0.15); }

.prop-empty {
  grid-column: 1 / -1;
  text-align: center;
  padding: 60px 20px;
  color: var(--light);
  font-size: 14px;
}

/* ─── CONSTRUCTION PACKAGES ──────────────────────────────── */
.packages-section {
  background: var(--cream);
  padding: 90px clamp(20px, 4vw, 48px);
}
.packages-inner {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 70px;
  align-items: center;
}
.packages-left .eyebrow,
.packages-left .section-h,
.packages-left .section-sub { text-align: left; margin-left: 0; }
.packages-left .divider { margin-left: 0; }
.packages-left ul {
  list-style: none;
  margin: 24px 0 28px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.packages-left li {
  font-size: 13.5px;
  color: var(--mid);
}
.package-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.package-card {
  background: var(--white);
  border-radius: 16px;
  padding: 26px 22px;
  border: 2px solid transparent;
  transition: all 0.3s;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}
.package-card.gold-card {
  border-color: var(--gold);
  background: linear-gradient(135deg, #FFFBF0, #FFF8E7);
}
.package-card:hover {
  border-color: var(--gold);
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}
.pack-badge {
  font-size: 9px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--terra);
  font-weight: 700;
  margin-bottom: 8px;
}
.package-card.gold-card .pack-badge { color: var(--gold); }
.pack-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px;
  font-weight: 700;
  color: var(--forest);
}
.pack-price {
  font-size: 13px;
  color: var(--mid);
  margin-top: 4px;
  font-weight: 500;
}
.pack-features {
  margin-top: 14px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.pack-feature {
  font-size: 11.5px;
  color: var(--mid);
  display: flex;
  align-items: center;
  gap: 6px;
}
.pack-feature::before { content: '✓'; color: var(--gold); font-weight: 700; }

/* ─── MATERIALS GRID ──────────────────────────────────────── */
.materials-section {
  background: var(--sand);
  padding: 90px clamp(20px, 4vw, 48px);
}
.materials-grid {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 14px;
}
.material-card {
  background: var(--white);
  border-radius: 14px;
  padding: 26px 16px;
  text-align: center;
  cursor: pointer;
  transition: all 0.3s;
  border: 2px solid transparent;
}
.material-card:hover {
  border-color: var(--gold);
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}
.material-icon { font-size: 32px; margin-bottom: 10px; }
.material-name {
  font-size: 13px;
  font-weight: 600;
  color: var(--forest);
  margin-bottom: 4px;
}
.material-price { font-size: 11px; color: var(--mid); }

.materials-note {
  max-width: 900px;
  margin: 32px auto 0;
  text-align: center;
}
.materials-note p {
  font-size: 11px;
  color: var(--mid);
  margin-top: 14px;
}

/* ─── TRUST / STATS ───────────────────────────────────────── */
.trust-section {
  background: var(--white);
  padding: 80px clamp(20px, 4vw, 48px);
  border-top: 1px solid #eee;
}
.trust-grid {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.trust-card {
  text-align: center;
  padding: 34px 22px;
  border-radius: 18px;
  background: var(--cream);
  transition: all 0.3s;
}
.trust-card:hover {
  transform: translateY(-4px);
  background: linear-gradient(135deg, #FFFBF0, #FFF8E7);
}
.trust-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 54px;
  font-weight: 700;
  color: var(--forest);
  line-height: 1;
  margin-bottom: 6px;
}
.trust-num sup { font-size: 24px; color: var(--gold); }
.trust-label {
  font-size: 13px;
  color: var(--mid);
  letter-spacing: 0.3px;
}

/* ─── TESTIMONIALS ────────────────────────────────────────── */
.testimonials-section {
  background: var(--cream);
  padding: 90px clamp(20px, 4vw, 48px);
}
.testimonials-grid {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}
.testimonial-card {
  background: var(--white);
  border-radius: 18px;
  padding: 32px 28px;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(26,60,52,0.06);
  position: relative;
  transition: all 0.3s;
}
.testimonial-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}
.testimonial-card::before {
  content: '"';
  position: absolute;
  top: 14px; right: 24px;
  font-family: 'Cormorant Garamond', serif;
  font-size: 90px;
  line-height: 1;
  color: var(--gold);
  opacity: 0.3;
}
.testimonial-stars {
  color: var(--gold);
  font-size: 15px;
  margin-bottom: 12px;
  letter-spacing: 2px;
}
.testimonial-text {
  font-size: 14px;
  color: var(--charcoal);
  line-height: 1.75;
  margin-bottom: 22px;
  font-style: italic;
}
.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-top: 18px;
  border-top: 1px solid #eee;
}
.testimonial-avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--forest), var(--gold));
  color: var(--white);
  display: flex; align-items: center; justify-content: center;
  font-weight: 700;
  font-size: 16px;
  font-family: 'Cormorant Garamond', serif;
}
.testimonial-name {
  font-size: 14px;
  font-weight: 600;
  color: var(--forest);
}
.testimonial-role {
  font-size: 11px;
  color: var(--mid);
  margin-top: 2px;
}

/* ─── ABOUT / CONTACT ─────────────────────────────────────── */
.about-inner {
  max-width: 1000px;
  margin: 0 auto;
  text-align: center;
}
.about-inner p {
  font-size: 15px;
  color: var(--mid);
  line-height: 1.85;
  margin-bottom: 16px;
}

.contact-section {
  background: var(--forest);
  padding: 90px clamp(20px, 4vw, 48px);
  position: relative;
}
.contact-section .eyebrow { color: var(--gold); }
.contact-section .section-h { color: var(--white); }
.contact-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 50px;
  align-items: start;
}
.contact-info-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(201,168,76,0.2);
  border-radius: 18px;
  padding: 32px;
}
.contact-item {
  display: flex;
  gap: 14px;
  padding: 16px 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.contact-item:last-child { border-bottom: none; }
.contact-icon {
  width: 40px; height: 40px; flex-shrink: 0;
  background: rgba(201,168,76,0.12);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-size: 18px;
}
.contact-label {
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 4px;
}
.contact-value {
  font-size: 14px;
  color: var(--white);
  line-height: 1.5;
}
.contact-value a { color: var(--white); text-decoration: none; }
.contact-value a:hover { color: var(--gold); }

.contact-form {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(201,168,76,0.2);
  border-radius: 18px;
  padding: 36px;
}
.contact-form .form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-bottom: 14px;
}
.contact-form label {
  display: block;
  font-size: 11px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 6px;
  font-weight: 600;
}
.contact-form input,
.contact-form textarea {
  width: 100%;
  box-sizing: border-box;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 8px;
  padding: 12px 14px;
  color: var(--white);
  font-size: 14px;
  font-family: inherit;
  transition: border-color 0.2s, background 0.2s;
}
.contact-form select {
  width: 100%;
  box-sizing: border-box;
  background: #f5f5f5;
  border: 1px solid rgba(201,168,76,0.35);
  border-radius: 8px;
  padding: 12px 14px;
  color: #222 !important;
  font-size: 14px;
  font-family: inherit;
  transition: border-color 0.2s, background 0.2s;
  cursor: pointer;
  -webkit-appearance: menulist;
  appearance: menulist;
}
.contact-form select option {
  background: #fff !important;
  color: #222 !important;
  padding: 8px;
}
.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--gold);
  background: rgba(255,255,255,0.06);
}
.contact-form select:focus {
  outline: none;
  border-color: var(--gold);
  background: #fff;
}
.contact-form textarea { min-height: 110px; resize: vertical; }
.contact-form .form-group { margin-bottom: 14px; }
.contact-form button {
  background: var(--gold);
  color: var(--forest3);
  padding: 14px 30px;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.5px;
  transition: all 0.3s;
  margin-top: 10px;
  width: 100%;
  border: none;
}
.contact-form button:hover {
  background: var(--gold2);
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(201,168,76,0.3);
}

/* Dual contact actions: email (primary, gold) + WhatsApp (green) */
.cf-actions { display: flex; gap: 12px; margin-top: 10px; flex-wrap: wrap; }
.cf-actions button { width: auto; flex: 1 1 180px; margin-top: 0; }
.contact-form .cf-btn-wa { background: #25D366; color: #fff; }
.contact-form .cf-btn-wa:hover {
  background: #1ebe5b;
  box-shadow: 0 12px 28px rgba(37,211,102,0.3);
}
.cf-success {
  margin-top: 14px;
  padding: 12px 16px;
  border-radius: 8px;
  background: rgba(37,211,102,0.12);
  border: 1px solid rgba(37,211,102,0.35);
  color: #d9f7e4;
  font-size: 14px;
  font-weight: 500;
}

/* ─── FOOTER ──────────────────────────────────────────────── */
footer {
  background: var(--forest3);
  padding: 70px clamp(20px, 4vw, 48px) 30px;
}
.footer-inner { max-width: 1280px; margin: 0 auto; }
.footer-top {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 50px;
  padding-bottom: 44px;
  border-bottom: 1px solid rgba(255,255,255,0.07);
  margin-bottom: 30px;
}
.footer-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 18px;
}
.footer-logo-text {
  font-family: 'Cormorant Garamond', serif;
  font-size: 24px;
  font-weight: 700;
  color: var(--white);
}
.footer-logo-text em { font-style: normal; color: var(--gold); }
.footer-desc {
  font-size: 13px;
  color: var(--light);
  line-height: 1.75;
  margin-bottom: 22px;
  max-width: 360px;
}
.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 12px;
  font-size: 13px;
  color: var(--light);
}
.footer-contact-item strong {
  color: var(--white);
  display: block;
  font-size: 11px;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 2px;
}
.footer-contact-item a { color: var(--light); text-decoration: none; }
.footer-contact-item a:hover { color: var(--gold); }

/* ─── Footer social icons ───────────────────────────────── */
.footer-social { margin-top: 22px; }
.footer-social-title {
  display: block;
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 12px;
}
.footer-social-icons { display: flex; gap: 12px; flex-wrap: wrap; }
.social-icon {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(201,168,76,0.25);
  color: var(--gold2);
  transition: background 0.2s, color 0.2s, transform 0.2s;
}
.social-icon:hover {
  background: var(--gold);
  color: var(--forest3);
  transform: translateY(-2px);
}

.footer-col-title {
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 18px;
  font-weight: 700;
}
.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 11px;
}
.footer-links a {
  text-decoration: none;
  font-size: 13px;
  color: var(--light);
  transition: color 0.2s;
}
.footer-links a:hover { color: var(--gold); }

.footer-rera-gst {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  padding: 12px 0;
  margin-bottom: 12px;
  border-top: 1px solid rgba(255,255,255,0.08);
  border-bottom: 1px solid rgba(255,255,255,0.08);
  font-size: 13px;
  color: rgba(255,255,255,0.55);
}
.footer-rera-gst strong { color: rgba(255,255,255,0.8); }

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 12px;
  color: rgba(255,255,255,0.35);
  flex-wrap: wrap;
  gap: 16px;
}
.footer-credit {
  margin-top: 14px;
  padding-top: 14px;
  border-top: 1px solid rgba(255,255,255,0.06);
  text-align: center;
  font-size: 12px;
  color: rgba(255,255,255,0.35);
}
.footer-credit a {
  color: var(--gold2);
  text-decoration: none;
  font-weight: 600;
}
.footer-credit a:hover { text-decoration: underline; }

.footer-badges { display: flex; gap: 10px; flex-wrap: wrap; }
.footer-badge {
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 4px;
  padding: 5px 12px;
  font-size: 10px;
  color: rgba(255,255,255,0.4);
  letter-spacing: 1px;
}

/* ─── CHAT / WHATSAPP / PHONE WIDGETS ─────────────────────── */
.chat-widget {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 950;
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: flex-end;
}
.widget-btn {
  width: 56px; height: 56px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 26px;
  color: var(--white);
  text-decoration: none;
  box-shadow: 0 10px 30px rgba(0,0,0,0.25);
  transition: transform 0.25s;
  position: relative;
}
.widget-btn:hover { transform: scale(1.08); }
.widget-btn.wa { background: #25D366; }
.widget-btn.phone { background: var(--terra); }
.widget-btn::after {
  content: '';
  position: absolute; inset: 0; border-radius: 50%;
  border: 2px solid currentColor;
  opacity: 0;
  animation: ping 2.2s infinite;
}
@keyframes ping {
  0% { transform: scale(1); opacity: 0.5; }
  100% { transform: scale(1.6); opacity: 0; }
}

/* ─── SCROLL REVEAL ───────────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: all 0.7s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ─── FOCUS STATES (accessibility) ────────────────────── */
a:focus-visible, button:focus-visible, select:focus-visible, input:focus-visible, textarea:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 2px;
}
.nav-links a:focus-visible { color: var(--gold2); }
.btn-primary:focus-visible { box-shadow: 0 0 0 3px rgba(201,168,76,0.5); transform: translateY(-2px); }
.btn-secondary:focus-visible { border-color: var(--gold); color: var(--gold); }
.svc-card:focus-visible, .info-card:focus-visible, .prop-card:focus-visible, .package-card:focus-visible, .material-card:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: -2px;
}
.pf-chip:focus-visible { box-shadow: 0 0 0 3px rgba(201,168,76,0.4); }

/* ─── MOBILE NAV DRAWER ───────────────────────────────────── */
@media (max-width: 960px) {
  .nav-toggle { display: flex; }
  .nav-links {
    position: fixed;
    top: 72px; right: 0;
    background: var(--forest2);
    flex-direction: column;
    width: min(280px, 80vw);
    height: calc(100vh - 72px);
    padding: 30px 24px;
    gap: 8px;
    border-left: 1px solid rgba(201,168,76,0.2);
    transform: translateX(100%);
    transition: transform 0.3s ease;
    align-items: stretch;
    overflow-y: auto;
  }
  .nav-links.open { transform: translateX(0); }
  .nav-links li { width: 100%; }
  .nav-links a {
    display: block;
    padding: 12px 14px;
    border-radius: 8px;
    font-size: 14px;
  }
  .nav-links a:hover { background: rgba(201,168,76,0.08); }
  .nav-links a::after { display: none; }
}

/* ─── RESPONSIVE ──────────────────────────────────────────── */
@media (max-width: 1100px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .prop-grid,
  .info-grid,
  .testimonials-grid { grid-template-columns: repeat(2, 1fr); }
  .materials-grid { grid-template-columns: repeat(4, 1fr); }
  .footer-top { grid-template-columns: 1.5fr 1fr 1fr; }
  .footer-top .footer-col:last-child { grid-column: 1 / -1; }
}

@media (max-width: 860px) {
  .hero-content { grid-template-columns: 1fr; gap: 50px; }
  .hero-right { max-width: 420px; margin: 0 auto; width: 100%; }
  .hero-stats { grid-template-columns: repeat(2, 1fr); gap: 20px; }
  .packages-inner,
  .contact-inner { grid-template-columns: 1fr; gap: 40px; }
  .packages-left .eyebrow,
  .packages-left .section-h { text-align: center; }
  .packages-left .divider { margin: 18px auto 28px; }
  .trust-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-top { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; text-align: center; }
}

@media (max-width: 640px) {
  .section-page,
  .services-section,
  .properties-section,
  .packages-section,
  .materials-section,
  .testimonials-section,
  .trust-section,
  .contact-section { padding: 70px 20px; }
  .services-grid,
  .prop-grid,
  .info-grid,
  .testimonials-grid { grid-template-columns: 1fr; }
  .materials-grid { grid-template-columns: repeat(2, 1fr); }
  .contact-form .form-row { grid-template-columns: 1fr; }
  .hero-section { min-height: auto; padding: 50px 0 90px; }
  .hero-h1 { font-size: clamp(32px, 9vw, 44px); }
  .hero-btns { flex-direction: column; align-items: stretch; }
  .hero-btns .btn-primary,
  .hero-btns .btn-secondary { justify-content: center; }
  .widget-btn { width: 52px; height: 52px; font-size: 24px; }
  .chat-widget { bottom: 18px; right: 18px; }
  .contact-form, .contact-info-card { padding: 26px 22px; }
}

/* ─── PRINT ──────────────────────────────────────────── */
@media print {
  .nav-bar, .chat-widget, .nav-toggle, footer { display: none !important; }
  body { background: white; color: black; font-size: 12pt; }
  .hero-section { min-height: auto; padding: 20px; }
  .prop-card { break-inside: avoid; box-shadow: none; border: 1px solid #ccc; }
  .section-page, section { padding: 20px 0; }
  a[href]::after { content: " (" attr(href) ")"; font-size: 10pt; color: #666; }
  .btn-primary, .btn-secondary { border: 1px solid #000; background: none; color: #000; }
}
