/* ============================================
   JD Infra - Premium Real Estate
   Main Stylesheet
   ============================================ */

/* ---------- CSS Variables ---------- */
:root {
  --primary: #c8a96e;
  --primary-dark: #a8843e;
  --primary-light: #e8d5a3;
  --dark: #0a0a0a;
  --dark-2: #111111;
  --dark-3: #1a1a1a;
  --dark-4: #242424;
  --light: #f5f0e8;
  --light-2: #fafafa;
  --white: #ffffff;
  --text-muted: #888888;
  --text-light: #cccccc;
  --border: rgba(200, 169, 110, 0.2);
  --gradient: linear-gradient(135deg, #c8a96e 0%, #a8843e 100%);
  --gradient-dark: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);
  --shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
  --shadow-gold: 0 10px 40px rgba(200, 169, 110, 0.2);
  --transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --font-heading: 'Playfair Display', Georgia, serif;
  --font-body: 'Inter', 'Segoe UI', sans-serif;
  --radius: 4px;
  --radius-lg: 12px;
}

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

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

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

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

/* ---------- Typography ---------- */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.2;
  color: var(--white);
}

.section-label {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--primary);
  display: block;
  margin-bottom: 1rem;
}

.section-title {
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-family: var(--font-heading);
  color: var(--white);
  margin-bottom: 1.2rem;
  line-height: 1.15;
}

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

/* ---------- Utility ---------- */
.container { max-width: 1280px; margin: 0 auto; padding: 0 2rem; }
.text-gold { color: var(--primary); }
.text-center { text-align: center; }
.text-center .section-subtitle { margin: 0 auto; }
.d-flex { display: flex; }
.align-center { align-items: center; }
.justify-between { justify-content: space-between; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.85rem 2rem;
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  border-radius: var(--radius);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.btn-primary {
  background: var(--gradient);
  color: var(--dark);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-gold);
  color: var(--dark);
}

.btn-outline {
  border: 1px solid var(--primary);
  color: var(--primary);
  background: transparent;
}

.btn-outline:hover {
  background: var(--primary);
  color: var(--dark);
  transform: translateY(-2px);
}

.btn-white {
  background: var(--white);
  color: var(--dark);
}

.btn-white:hover {
  background: var(--primary);
  color: var(--dark);
  transform: translateY(-2px);
}

/* ---------- Navigation ---------- */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 1.4rem 0;
  transition: var(--transition);
}

.navbar.scrolled {
  background: rgba(10, 10, 10, 0.97);
  backdrop-filter: blur(20px);
  padding: 1rem 0;
  border-bottom: 1px solid var(--border);
  box-shadow: 0 4px 30px rgba(0,0,0,0.5);
}

.navbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  display: flex;
  flex-direction: column;
  gap: 1px;
}

.nav-logo-img {
  height: 44px;
  width: auto;
  display: block;
  mix-blend-mode: lighten;
}

.logo-main {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: 1px;
}

.logo-main span { color: var(--primary); }

.logo-tagline {
  font-size: 0.6rem;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--primary);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2.5rem;
  margin-left: auto;
}

.nav-links a {
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--text-light);
  position: relative;
  padding-bottom: 6px;
  transition: color 0.3s ease, letter-spacing 0.3s ease, text-shadow 0.3s ease;
}

.nav-links a::after {
  content: '';
  position: absolute;
  top: -4px;
  left: -6px;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--primary);
  transform: scale(0);
  transform-origin: center center;
  transition: transform 0.3s ease, opacity 0.3s ease;
  opacity: 0;
}

.nav-links a:hover {
  color: var(--primary);
  letter-spacing: 2.5px;
  text-shadow: 0 0 12px rgba(196, 158, 84, 0.5);
}

.nav-links a.active {
  color: var(--primary);
  text-shadow: 0 0 14px rgba(196, 158, 84, 0.4);
}

.nav-links a:hover::after, .nav-links a.active::after {
  transform: scale(1);
  opacity: 1;
}

.nav-cta {
  margin-left: 2.5rem;
  padding: 0.55rem 1.25rem !important;
  font-size: 0.72rem !important;
  letter-spacing: 1px !important;
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 5px;
  cursor: pointer;
}

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

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

.hero-bg {
  position: absolute;
  inset: 0;
  background: 
    linear-gradient(to right, rgba(10,10,10,0.95) 40%, rgba(10,10,10,0.5) 100%),
    url('../media/hero-bg.jpg') center/cover no-repeat;
}

.hero-bg-fallback {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #0a0a0a 0%, #1a1209 50%, #0a0a0a 100%);
}

.hero-bg-pattern {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle at 70% 50%, rgba(200,169,110,0.08) 0%, transparent 60%);
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: 8rem 0 5rem;
}

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

/* ---------- Hero Image Panel ---------- */
.hero-image-wrap {
  position: relative;
  z-index: 2;
  padding-top: 8rem;
  padding-bottom: 5rem;
}

.hero-image-frame {
  position: relative;
  border-radius: 4px;
  overflow: hidden;
}

.hero-image-inner {
  width: 100%;
  height: 480px;
  background: #0d0d0d;
  border-radius: 4px;
  position: relative;
  overflow: hidden;
}

.hero-villa-svg {
  width: 100%;
  height: 100%;
  display: block;
}

.hero-villa-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: left center;
  display: block;
}

.hero-image-deco {
  position: absolute;
  width: 60px;
  height: 60px;
  border-color: var(--primary);
  border-style: solid;
}

.hero-image-deco--tl {
  top: -10px;
  left: -10px;
  border-width: 2px 0 0 2px;
}

.hero-image-deco--br {
  bottom: -10px;
  right: -10px;
  border-width: 0 2px 2px 0;
}

.hero-image-tag {
  margin-top: 1rem;
  font-size: 0.7rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--text-muted);
  text-align: center;
}

.hero-subhead {
  font-size: 1.15rem;
  font-weight: 400;
  color: var(--primary);
  letter-spacing: 1px;
  margin-bottom: 1.2rem;
}

.hero-features {
  display: flex;
  gap: 1.8rem;
  list-style: none;
  margin-bottom: 2rem;
  flex-wrap: wrap;
}

.hero-features li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.8rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--text-muted);
}

.feat-dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--primary);
  flex-shrink: 0;
}

.hero-quote {
  border-left: 2px solid var(--primary);
  padding: 0.6rem 1.2rem;
  margin: 0 0 2.5rem;
  font-family: var(--font-heading);
  font-size: 1rem;
  font-style: italic;
  color: var(--text-muted);
  line-height: 1.7;
}

.btn-whatsapp {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.85rem 2rem;
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  border-radius: var(--radius);
  transition: var(--transition);
  background: transparent;
  border: 1px solid var(--primary);
  color: var(--primary);
}

.btn-whatsapp:hover {
  background: var(--primary);
  color: var(--dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow-gold);
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1.2rem;
  border: 1px solid var(--primary);
  border-radius: 50px;
  font-size: 0.72rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 2rem;
}

.hero-badge::before {
  content: '';
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--primary);
}

.hero-title {
  font-size: clamp(2rem, 3.5vw, 3.4rem);
  font-family: var(--font-heading);
  font-weight: 700;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 1.2rem;
}

.hero-title .line-gold { color: var(--primary); display: block; }

.hero-subtitle {
  font-size: 1.1rem;
  color: var(--text-muted);
  margin-bottom: 2.5rem;
  max-width: 480px;
  line-height: 1.8;
}

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

.hero-stats {
  display: flex;
  gap: 3rem;
  padding-top: 2.5rem;
  border-top: 1px solid var(--border);
}

.stat-item { display: flex; flex-direction: column; gap: 0.2rem; }

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

.stat-number span { color: var(--primary); }

.stat-label {
  font-size: 0.75rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--text-muted);
}

.hero-scroll {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.65rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--text-muted);
  animation: bounceDown 2s infinite;
  cursor: pointer;
}

.scroll-line {
  width: 1px;
  height: 50px;
  background: linear-gradient(to bottom, var(--primary), transparent);
}

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

/* ---------- Section Padding ---------- */
.section-pad { padding: 80px 0; }
.section-pad-sm { padding: 40px 0; }

/* ---------- Section Header ---------- */
.section-header { margin-bottom: 4rem; }

/* ---------- Divider ---------- */
.divider {
  width: 60px;
  height: 2px;
  background: var(--gradient);
  margin: 1.2rem 0;
}

.divider.centered { margin: 1.2rem auto; }

/* ---------- Trust Strip ---------- */
.trust-strip {
  background: var(--dark-2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 0;
}

.trust-strip .container {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}

.trust-card {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.8rem 2rem;
  border-right: 1px solid var(--border);
  position: relative;
  transition: background 0.3s ease;
}

.trust-card:last-child { border-right: none; }

.trust-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: var(--gradient);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}

.trust-card:hover::before { transform: scaleX(1); }

.trust-card:hover { background: rgba(200,169,110,0.04); }

.trust-card-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid var(--border);
  color: var(--primary);
  flex-shrink: 0;
  transition: border-color 0.3s ease, background 0.3s ease;
}

.trust-card:hover .trust-card-icon {
  border-color: var(--primary);
  background: rgba(200,169,110,0.1);
}

.trust-card-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.trust-card-title {
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--white);
}

.trust-card-sub {
  font-size: 0.72rem;
  letter-spacing: 0.5px;
  color: var(--primary);
}

/* ---------- Section Eyebrow ---------- */
.section-eyebrow {
  font-size: 0.7rem;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 0.6rem;
}

/* ---------- Project Overview ---------- */
.proj-overview {
  background: var(--dark);
}

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

.proj-overview-text .section-title {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 3vw, 2.8rem);
  color: var(--white);
  margin-bottom: 0.5rem;
}

.proj-overview-desc {
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.9;
  margin-bottom: 1rem;
}

.proj-quote {
  border-left: 2px solid var(--primary);
  padding: 0.6rem 1.2rem;
  margin-top: 1.5rem;
  font-family: var(--font-heading);
  font-size: 1rem;
  font-style: italic;
  color: var(--text-muted);
  line-height: 1.7;
}

/* Right image panel */
.proj-overview-right { position: relative; }

.proj-overview-imgwrap {
  position: relative;
  border-radius: 6px;
  overflow: visible;
}

.proj-overview-img {
  width: 100%;
  height: 380px;
  object-fit: cover;
  object-position: center;
  border-radius: 6px;
  display: block;
}

.proj-overview-deco {
  position: absolute;
  width: 50px;
  height: 50px;
  border-color: var(--primary);
  border-style: solid;
  z-index: 2;
}

.proj-overview-deco--tl {
  top: -8px;
  left: -8px;
  border-width: 2px 0 0 2px;
}

.proj-overview-deco--br {
  bottom: 48px;
  right: -8px;
  border-width: 0 2px 2px 0;
}

.proj-overview-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  background: rgba(10,10,10,0.92);
  border: 1px solid var(--border);
  border-top: 2px solid var(--primary);
  border-radius: 0 0 6px 6px;
  position: relative;
  z-index: 1;
}

.proj-stat-pill {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0.9rem 0.5rem;
  border-right: 1px solid var(--border);
  gap: 2px;
}

.proj-stat-pill:last-child { border-right: none; }

.proj-stat-pill .proj-stat-num {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--primary);
  line-height: 1;
}

.proj-stat-pill .proj-stat-lbl {
  font-size: 0.62rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--text-muted);
}

/* ---------- Why Vishnu Kuteer ---------- */
@keyframes whyCardIn {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}

.why-section { background: var(--dark); }

.why-header {
  text-align: center;
  margin-bottom: 3.5rem;
}

.why-header .section-title {
  font-family: var(--font-heading);
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  color: var(--white);
  margin-bottom: 0.5rem;
}

.why-header .divider { margin: 1rem auto; }

.why-sub {
  font-size: 0.95rem;
  color: var(--text-muted);
}

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

.why-card {
  background: var(--dark-3);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2.2rem 2rem;
  display: grid;
  grid-template-columns: auto 56px 1fr;
  gap: 1.5rem;
  align-items: flex-start;
  opacity: 0;
  animation: whyCardIn 0.5s ease forwards;
  animation-delay: calc(var(--i) * 100ms + 100ms);
  transition: border-color 0.3s ease, box-shadow 0.3s ease, transform 0.3s ease;
  position: relative;
  overflow: hidden;
}

.why-card::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 2px;
  background: var(--gradient);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}

.why-card:hover::after { transform: scaleX(1); }

.why-card:hover {
  border-color: var(--primary);
  box-shadow: 0 10px 40px rgba(200,169,110,0.08);
  transform: translateY(-3px);
}

.why-num {
  font-family: var(--font-heading);
  font-size: 2.8rem;
  font-weight: 700;
  color: rgba(200,169,110,0.12);
  line-height: 1;
  letter-spacing: -1px;
  align-self: flex-start;
  user-select: none;
}

.why-icon {
  width: 56px;
  height: 56px;
  background: rgba(200,169,110,0.1);
  border: 1px solid rgba(200,169,110,0.25);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  flex-shrink: 0;
  transition: background 0.3s ease, box-shadow 0.3s ease;
}

.why-card:hover .why-icon {
  background: rgba(200,169,110,0.18);
  box-shadow: 0 0 0 4px rgba(200,169,110,0.1);
}

.why-body { display: flex; flex-direction: column; gap: 0.5rem; }

.why-title {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1.3;
}

.why-desc {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.8;
}

/* ---------- Villa Highlights + Project Features ---------- */
/* ---------- Villa Highlights + Project Features ---------- */
/* ---------- Villa Highlights + Project Features ---------- */
@keyframes vfRowIn {
  from { opacity: 0; transform: translateX(-18px); }
  to   { opacity: 1; transform: translateX(0); }
}
@keyframes vfChipIn {
  from { opacity: 0; transform: translateY(12px) scale(0.96); }
  to   { opacity: 1; transform: translateY(0) scale(1); }
}
@keyframes iconPulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(200,169,110,0.35); }
  50%       { box-shadow: 0 0 0 6px rgba(200,169,110,0); }
}

.vf-section {
  background: var(--dark-2);
}

.vf-header {
  text-align: center;
  margin-bottom: 3.5rem;
}

.vf-header .section-title {
  font-family: var(--font-heading);
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  color: var(--white);
  margin-bottom: 0.5rem;
}

.vf-header .divider { margin: 1rem auto; }

.vf-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}

.vf-panel {
  background: var(--dark-3);
  border: 1px solid var(--border);
  border-top: 2px solid var(--primary);
  border-radius: var(--radius);
  padding: 2.5rem;
  transition: box-shadow 0.3s ease;
}

.vf-panel:hover {
  box-shadow: 0 8px 40px rgba(200,169,110,0.08);
}

.vf-panel--alt {
  background: rgba(200,169,110,0.03);
}

.vf-panel-head { margin-bottom: 2rem; }

.vf-panel-eyebrow {
  font-size: 0.68rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--primary);
  display: block;
  margin-bottom: 0.5rem;
}

.vf-panel-title {
  font-family: var(--font-heading);
  font-size: 1.7rem;
  font-weight: 700;
  color: var(--white);
}

/* ---- Feat rows ---- */
.vf-feat-list {
  list-style: none;
  display: flex;
  flex-direction: column;
}

.vf-feat-row {
  display: flex;
  align-items: center;
  gap: 1.1rem;
  padding: 0.95rem 0;
  border-bottom: 1px solid var(--border);
  opacity: 0;
  animation: vfRowIn 0.45s ease forwards;
  animation-delay: calc(var(--i) * 80ms + 100ms);
  transition: background 0.25s ease, padding-left 0.25s ease;
  border-radius: 4px;
}

.vf-feat-row:first-child { padding-top: 0; }
.vf-feat-row:last-child { border-bottom: none; }

.vf-feat-row:hover {
  padding-left: 6px;
  background: rgba(200,169,110,0.04);
}

.vf-feat-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  min-width: 36px;
  background: rgba(200,169,110,0.1);
  border: 1px solid rgba(200,169,110,0.25);
  border-radius: 8px;
  color: var(--primary);
  transition: background 0.25s ease, box-shadow 0.25s ease;
}

.vf-feat-row:hover .vf-feat-icon {
  background: rgba(200,169,110,0.18);
  animation: iconPulse 1.2s ease infinite;
}

.vf-feat-body {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.vf-feat-text {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-light);
  letter-spacing: 0.2px;
  line-height: 1.3;
}

.vf-feat-sub {
  font-size: 0.72rem;
  color: var(--text-muted);
  letter-spacing: 0.2px;
}

/* ---- Chips grid ---- */
.vf-chips-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.65rem;
}

.vf-chip {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  padding: 0.75rem 0.9rem;
  background: var(--dark);
  border: 1px solid var(--border);
  border-radius: 6px;
  font-size: 0.8rem;
  color: var(--text-light);
  letter-spacing: 0.2px;
  opacity: 0;
  animation: vfChipIn 0.4s ease forwards;
  animation-delay: calc(var(--i) * 60ms + 150ms);
  transition: border-color 0.25s ease, color 0.25s ease, background 0.25s ease, transform 0.2s ease;
}

.vf-chip:hover {
  border-color: var(--primary);
  color: var(--white);
  background: rgba(200,169,110,0.06);
  transform: translateY(-2px);
}

.vf-chip-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 26px;
  height: 26px;
  min-width: 26px;
  background: rgba(200,169,110,0.1);
  border-radius: 5px;
  color: var(--primary);
  transition: background 0.25s ease;
}

.vf-chip:hover .vf-chip-icon {
  background: rgba(200,169,110,0.2);
}

/* ---------- Location Advantage ---------- */
.location-section { background: var(--dark); }

.location-header {
  text-align: center;
  margin-bottom: 3.5rem;
}

.location-header .section-title {
  font-family: var(--font-heading);
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  color: var(--white);
  margin-bottom: 0.5rem;
}

.location-header .divider { margin: 1rem auto; }

.location-sub {
  font-size: 0.95rem;
  color: var(--text-muted);
}

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

.location-grid .location-card:last-child:nth-child(3n - 1) {
  grid-column: 2;
}

.location-card {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.6rem;
  background: var(--dark-3);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  transition: border-color 0.3s ease, transform 0.3s ease;
}

.location-card:hover {
  border-color: var(--primary);
  transform: translateY(-3px);
}

.location-card-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  flex-shrink: 0;
}

.location-card div {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.location-card-title {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--white);
  letter-spacing: 0.3px;
}

.location-card-sub {
  font-size: 0.72rem;
  color: var(--primary);
  letter-spacing: 0.5px;
}

/* ---------- Pricing Positioning ---------- */
@keyframes pricingCardIn {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}

.pricing-section { background: var(--dark-3); }

.pricing-header {
  text-align: center;
  margin-bottom: 3.5rem;
}

.pricing-header .section-title {
  font-family: var(--font-heading);
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  color: var(--white);
  margin-bottom: 0.5rem;
}

.pricing-header .divider { margin: 1rem auto; }

.pricing-sub {
  font-size: 0.95rem;
  color: var(--text-muted);
  max-width: 500px;
  margin: 0 auto;
}

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

.pricing-card {
  background: var(--dark-2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2rem 1.75rem;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  position: relative;
  overflow: hidden;
  opacity: 0;
  animation: pricingCardIn 0.5s ease forwards;
  animation-delay: calc(var(--i) * 100ms + 100ms);
  transition: border-color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
}

.pricing-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: var(--gradient);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.35s ease;
}

.pricing-card:hover::before { transform: scaleX(1); }

.pricing-card:hover {
  border-color: var(--primary);
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(200,169,110,0.1);
}

.pricing-card-icon {
  width: 48px;
  height: 48px;
  background: rgba(200,169,110,0.1);
  border: 1px solid rgba(200,169,110,0.25);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  transition: background 0.3s ease;
}

.pricing-card:hover .pricing-card-icon {
  background: rgba(200,169,110,0.2);
}

.pricing-card-body { flex: 1; }

.pricing-card-title {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 0.6rem;
  line-height: 1.3;
}

.pricing-card-desc {
  font-size: 0.83rem;
  color: var(--text-muted);
  line-height: 1.75;
}

.pricing-card-tag {
  display: inline-block;
  font-size: 0.65rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--primary);
  border: 1px solid rgba(200,169,110,0.3);
  border-radius: 20px;
  padding: 0.3rem 0.8rem;
  align-self: flex-start;
}

.pricing-cta {
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}

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

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

.testimonial-card {
  background: var(--dark-3);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2rem;
  transition: var(--transition);
}

.testimonial-card:hover {
  border-color: rgba(200,169,110,0.3);
  transform: translateY(-4px);
}

.quote-icon { font-size: 2.5rem; color: var(--primary); line-height: 1; margin-bottom: 1rem; opacity: 0.6; }
.testimonial-card p { font-size: 0.92rem; color: var(--text-muted); line-height: 1.8; margin-bottom: 1.5rem; font-style: italic; }

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

.author-avatar {
  width: 48px; height: 48px;
  border-radius: 50%;
  background: var(--gradient);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-weight: 700;
  color: var(--dark);
  font-size: 1.1rem;
  flex-shrink: 0;
}

.author-name { font-size: 0.9rem; font-weight: 600; color: var(--white); }
.author-title { font-size: 0.78rem; color: var(--text-muted); }

.stars { color: var(--primary); font-size: 0.85rem; margin-bottom: 0.5rem; }

/* ---------- Testimonial Carousel ---------- */
.testi-carousel { max-width: 720px; margin: 0 auto; }
.testi-track { overflow: hidden; border-radius: var(--radius-lg); width: 100%; }
.testi-inner { display: flex; flex-wrap: nowrap; will-change: transform; }
.testi-slide { flex-shrink: 0; box-sizing: border-box; }
.testi-controls { display: flex; align-items: center; justify-content: center; gap: 1.2rem; margin-top: 1.8rem; }
.testi-btn {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: rgba(200,169,110,0.1);
  border: 1px solid rgba(200,169,110,0.3);
  color: var(--primary);
  font-size: 1.8rem;
  line-height: 1;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: var(--transition);
  flex-shrink: 0;
}
.testi-btn:hover { background: rgba(200,169,110,0.2); border-color: var(--primary); }
.testi-dots { display: flex; gap: 8px; align-items: center; }
.testi-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: rgba(200,169,110,0.25);
  border: none;
  cursor: pointer;
  transition: all 0.3s;
  padding: 0;
  flex-shrink: 0;
}
.testi-dot.active { background: var(--primary); width: 24px; border-radius: 4px; }

/* ---------- CTA Banner ---------- */
.cta-banner {
  background: linear-gradient(135deg, #1a1005 0%, var(--dark-3) 50%, #1a1005 100%);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 80px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-banner::before {
  content: '';
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(200,169,110,0.08) 0%, transparent 70%);
  pointer-events: none;
}

.cta-banner h2 { font-size: clamp(2rem, 4vw, 3rem); margin-bottom: 1rem; }
.cta-banner p { color: var(--text-muted); margin-bottom: 2rem; font-size: 1.05rem; }
.cta-actions { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

/* ---------- Page Hero ---------- */
.page-hero {
  padding: 10rem 0 5rem;
  background: var(--dark);
  position: relative;
  overflow: hidden;
  text-align: center;
}

.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('https://images.unsplash.com/photo-1613977257363-707ba9348227?w=1600&q=70') center/cover no-repeat;
  opacity: 0.35;
  z-index: 0;
}

.page-hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg,
    rgba(10,10,10,0.55) 0%,
    rgba(10,10,10,0.30) 50%,
    rgba(10,10,10,0.65) 100%);
  z-index: 0;
}

.page-hero-content { position: relative; z-index: 1; }
.page-hero h1 { font-size: clamp(2.5rem, 5vw, 4rem); margin-bottom: 1rem; }
.page-hero p { font-size: 1.05rem; color: var(--text-muted); max-width: 500px; margin: 0 auto 2rem; }

.breadcrumb {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-size: 0.8rem;
  color: var(--text-muted);
}

.breadcrumb a { color: var(--primary); }
.breadcrumb .sep { color: var(--border); }

/* ---------- Footer ---------- */
.footer {
  position: relative;
  overflow: hidden;
  background: var(--dark-2);
}

.footer::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('https://images.unsplash.com/photo-1600585154340-be6161a56a0c?w=1400&q=60') center/cover no-repeat;
  opacity: 0.18;
  z-index: 0;
}

.footer::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(17,17,17,0.72) 0%, rgba(10,10,10,0.88) 100%);
  z-index: 0;
}

.footer-inner {
  position: relative;
  z-index: 1;
  background: transparent;
  padding: 1.5rem 0 0;
}

.footer-top {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 0 1.5rem 1.5rem;
  gap: 0.6rem;
}

.footer-logo { margin-bottom: 0.2rem; }
.footer-logo .nav-logo-img { height: 52px; mix-blend-mode: lighten; }

.footer-brand-name {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--white);
}

.footer-brand-desc {
  font-size: 0.9rem;
  color: var(--text-muted);
  max-width: 560px;
  line-height: 1.8;
}

.footer-brand-desc strong { color: var(--white); }

.footer-socials {
  display: flex;
  gap: 0.6rem;
  margin-top: 0.4rem;
}

.footer-social-btn {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--primary);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.footer-social-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 14px rgba(200,169,110,0.45);
}

.footer-contact-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 1.5rem 3rem;
}

.footer-contact-card {
  display: flex;
  align-items: center;
  gap: 1.1rem;
  background: var(--dark-3);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 1.4rem 1.6rem;
  transition: border-color 0.25s ease, box-shadow 0.25s ease, transform 0.25s ease;
  text-decoration: none;
}

.footer-contact-card:hover {
  border-color: var(--primary);
  box-shadow: 0 6px 24px rgba(200,169,110,0.15);
  transform: translateY(-2px);
}

.footer-contact-icon {
  width: 48px;
  height: 48px;
  min-width: 48px;
  background: var(--primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
}

.footer-contact-body {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.footer-contact-label {
  font-size: 0.75rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--text-muted);
  font-weight: 600;
}

.footer-contact-value {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--white);
}

.footer-bottom {
  border-top: 1px solid var(--border);
  padding: 1.2rem 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.8rem;
  color: var(--text-muted);
  flex-wrap: wrap;
  gap: 0.5rem;
  max-width: 1100px;
  margin: 0 auto;
}

.footer-bottom a { color: var(--primary); text-decoration: none; }
.footer-bottom a:hover { text-decoration: underline; }

/* ---------- Mobile Menu ---------- */
.mobile-menu {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 1001;
  background: rgba(10,10,10,0.98);
  backdrop-filter: blur(20px);
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
}

.mobile-menu.open { display: flex; }

.mobile-menu a {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--white);
  transition: var(--transition);
}

.mobile-menu a:hover { color: var(--primary); }

.mobile-close {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  font-size: 2rem;
  color: var(--white);
  cursor: pointer;
  line-height: 1;
  padding: 0.5rem;
  z-index: 1002;
}

body.menu-open .hamburger { visibility: hidden; }

/* ---------- Animations ---------- */
.fade-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

.fade-up:nth-child(2) { transition-delay: 0.1s; }
.fade-up:nth-child(3) { transition-delay: 0.2s; }
.fade-up:nth-child(4) { transition-delay: 0.3s; }
.fade-up:nth-child(5) { transition-delay: 0.4s; }
.fade-up:nth-child(6) { transition-delay: 0.5s; }

/* ---------- Responsive ---------- */
@media (max-width: 1100px) {
  .projects-grid { grid-template-columns: repeat(2, 1fr); }
  .projects-grid .featured { grid-column: span 2; }
  .team-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2.5rem; }
}

@media (max-width: 900px) {
  .about-grid, .contact-grid, .why-invest-grid { grid-template-columns: 1fr; gap: 3rem; }
  .services-grid, .investment-grid { grid-template-columns: repeat(2, 1fr); }
  .testimonials-grid { grid-template-columns: 1fr 1fr; }
  .values-grid { grid-template-columns: 1fr 1fr; }
  .stats-bar .container { grid-template-columns: repeat(2, 1fr); }
  .about-badge { right: 0; }
  .nav-links, .nav-cta { display: none; }
  .hamburger { display: flex; }
  .vf-chips-grid { grid-template-columns: 1fr; }
  .pricing-grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .hero-stats { gap: 1.5rem; flex-wrap: wrap; }
  .services-grid, .investment-grid, .testimonials-grid, .values-grid { grid-template-columns: 1fr; }
  .projects-grid { grid-template-columns: 1fr; }
  .projects-grid .featured { grid-column: span 1; }
  .team-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .form-row { grid-template-columns: 1fr; }
  .contact-form-wrap { padding: 2rem 1.5rem; }
  .section-pad { padding: 50px 0; }
  .hero-title { font-size: 2.2rem; }
  .hero-inner { grid-template-columns: 1fr; gap: 0; }
  .hero-image-wrap { padding-top: 0; padding-bottom: 2rem; }
  .hero-image-inner { height: 260px; }
  .hero-content { padding-bottom: 1.5rem; }
  .hero-actions { display: grid; grid-template-columns: 1fr 1fr; gap: 0.75rem; }
  .hero-actions .btn,
  .hero-actions .btn-whatsapp { width: 100%; justify-content: center; padding: 0.75rem 0.5rem !important; font-size: 0.65rem !important; }
  .hero-features { gap: 1rem; }
  .hero-quote { font-size: 0.9rem; }
  .hero-scroll { display: none; }
  .trust-strip .container { grid-template-columns: 1fr 1fr; }
  .trust-card { border-right: 1px solid var(--border); border-bottom: 1px solid var(--border); padding: 1.4rem 1.2rem; }
  .trust-card:nth-child(2n) { border-right: none; }
  .trust-card:nth-last-child(-n+2) { border-bottom: none; }
  .proj-overview-grid { grid-template-columns: 1fr; gap: 2rem; }
  .proj-overview-img { height: 240px; }
  .vf-grid { grid-template-columns: 1fr; gap: 1.5rem; }
  .vf-chips-grid { grid-template-columns: 1fr; }
  .pricing-grid { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr; }
  .why-card { grid-template-columns: auto 1fr; }
  .why-num { display: none; }
  .footer-contact-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; align-items: center; text-align: center; }
  .about-overview-grid { grid-template-columns: 1fr !important; }
  .vm-grid { grid-template-columns: 1fr !important; }
  .vf-list--grid { grid-template-columns: 1fr 1fr; }
  .location-grid { grid-template-columns: 1fr 1fr; }
  .location-grid .location-card:last-child:nth-child(3n - 1) { grid-column: auto; }
  .stats-bar .container { grid-template-columns: 1fr 1fr; }
  .vf-list--grid { grid-template-columns: 1fr; }
  .location-grid { grid-template-columns: 1fr; }
}
