/* ── NAVIGATION ── */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  display: flex; align-items: center; justify-content: space-between;
  padding: 1.2rem 5%;
  background: rgba(250,247,242,0.96);
  border-bottom: 1px solid var(--border);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  transition: padding var(--dur), box-shadow var(--dur);
}
.nav.scrolled {
  padding: 0.8rem 5%;
  box-shadow: 0 2px 20px rgba(0,0,0,0.06);
}
.nav-logo {
  font-family: var(--serif);
  font-size: 1.2rem;
  font-weight: 500;
  color: var(--dark);
  letter-spacing: 0.02em;
  line-height: 1.2;
}
.nav-logo span {
  display: block;
  font-size: 0.68rem;
  font-family: var(--sans);
  font-weight: 300;
  color: var(--gold);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-top: 2px;
}
.nav-links {
  display: flex;
  gap: 2rem;
}
.nav-links a {
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 400;
  transition: color var(--dur);
  position: relative;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -3px; left: 0;
  width: 0; height: 1px;
  background: var(--gold);
  transition: width var(--dur);
}
.nav-links a:hover { color: var(--gold); }
.nav-links a:hover::after { width: 100%; }
.nav-cta {
  background: var(--dark);
  color: var(--gold-lt);
  font-family: var(--sans);
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.65rem 1.4rem;
  font-weight: 500;
  transition: background var(--dur);
}
.nav-cta:hover { background: var(--gold); color: var(--dark); }
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 6px;
  cursor: pointer;
}
.hamburger span {
  display: block;
  width: 24px; height: 1.5px;
  background: var(--dark);
  transition: all var(--dur);
}

/* ── STAT CARD ── */
.stat-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(201,169,110,0.2);
  padding: 1.25rem 1.5rem;
  text-align: center;
  min-width: 110px;
}
.stat-num {
  font-family: var(--serif);
  font-size: 2rem;
  color: var(--gold);
  font-weight: 500;
  line-height: 1;
}
.stat-lbl {
  font-size: 0.68rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
  margin-top: 0.4rem;
  font-weight: 300;
}

/* ── SERVICE CARDS ── */
.service-card {
  background: var(--white);
  padding: 2.5rem;
  transition: background var(--dur);
  cursor: default;
  position: relative;
  overflow: hidden;
}
.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 3px; height: 0;
  background: var(--gold);
  transition: height 0.4s;
}
.service-card:hover::before { height: 100%; }
.service-card:hover { background: var(--cream); }
.service-num {
  font-size: 0.68rem;
  letter-spacing: 0.2em;
  color: var(--gold);
  margin-bottom: 0.75rem;
  font-weight: 400;
}
.service-name {
  font-family: var(--serif);
  font-size: 1.2rem;
  color: var(--dark);
  margin-bottom: 0.75rem;
  font-weight: 500;
}
.service-desc {
  font-size: 0.875rem;
  color: var(--muted);
  line-height: 1.7;
  font-weight: 300;
}
.service-tag {
  display: inline-block;
  margin-top: 1rem;
  font-size: 0.68rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  border-bottom: 1px solid var(--gold-lt);
  padding-bottom: 2px;
}

/* ── PILLAR ── */
.pillar {
  padding: 1.25rem;
  border: 1px solid var(--border);
  background: var(--white);
}
.pillar-icon { font-size: 1.1rem; margin-bottom: 0.5rem; color: var(--gold); }
.pillar-title {
  font-family: var(--serif);
  font-size: 0.95rem;
  color: var(--dark);
  margin-bottom: 0.25rem;
}
.pillar-desc { font-size: 0.8rem; color: var(--muted); line-height: 1.6; font-weight: 300; }

/* ── WHY CARD ── */
.why-card {
  background: var(--dark);
  padding: 2.5rem 2rem;
  border-top: 2px solid transparent;
  transition: border-color var(--dur);
}
.why-card:hover { border-color: var(--gold); }
.why-num {
  font-family: var(--serif);
  font-size: 2.5rem;
  color: rgba(201,169,110,0.12);
  line-height: 1;
  margin-bottom: 1rem;
}
.why-title {
  font-family: var(--serif);
  font-size: 1.05rem;
  color: var(--white);
  margin-bottom: 0.75rem;
  font-weight: 400;
}
.why-desc { font-size: 0.85rem; color: rgba(255,255,255,0.45); line-height: 1.7; font-weight: 300; }

/* ── TESTIMONIAL ── */
.testi-card {
  background: var(--dark);
  padding: 2.5rem;
}
.testi-stars { color: var(--gold); font-size: 0.85rem; letter-spacing: 0.15em; margin-bottom: 1.5rem; }
.testi-text {
  font-family: var(--serif);
  font-size: 1rem;
  color: rgba(255,255,255,0.8);
  line-height: 1.8;
  font-style: italic;
  margin-bottom: 2rem;
}
.testi-author { display: flex; align-items: center; gap: 0.75rem; }
.testi-avatar {
  width: 42px; height: 42px; border-radius: 50%;
  background: var(--gold);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.82rem; color: var(--dark); font-weight: 500; flex-shrink: 0;
}
.testi-name { font-size: 0.85rem; color: var(--white); font-weight: 500; }
.testi-loc { font-size: 0.75rem; color: rgba(255,255,255,0.4); margin-top: 0.15rem; font-weight: 300; }

/* ── FAQ ── */
.faq-item {
  border-bottom: 1px solid var(--border);
}
.faq-q {
  width: 100%;
  text-align: left;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding: 1.5rem 0;
  font-family: var(--serif);
  font-size: 1rem;
  color: var(--dark);
  font-weight: 500;
  cursor: pointer;
  gap: 1rem;
  background: none;
  border: none;
}
.faq-icon {
  color: var(--gold);
  font-family: var(--sans);
  font-size: 1.4rem;
  font-weight: 300;
  flex-shrink: 0;
  transition: transform var(--dur);
  line-height: 1;
}
.faq-q[aria-expanded="true"] .faq-icon { transform: rotate(45deg); }
.faq-a {
  display: none;
  padding-bottom: 1.5rem;
}
.faq-a p { font-size: 0.9rem; color: var(--muted); line-height: 1.7; font-weight: 300; }
.faq-item.open .faq-a { display: block; }

/* ── CONTACT ITEMS ── */
.contact-item {
  display: flex;
  gap: 1.25rem;
  margin-bottom: 2rem;
  align-items: flex-start;
}
.contact-icon {
  width: 44px; height: 44px;
  border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem; flex-shrink: 0;
}
.contact-label {
  font-size: 0.68rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.25rem;
}
.contact-val { font-size: 0.9rem; color: var(--dark); font-weight: 400; }
.contact-sub { font-size: 0.78rem; color: var(--muted); font-weight: 300; margin-top: 0.15rem; }

/* ── SOCIAL LINKS ── */
.social-links { display: flex; gap: 1.5rem; margin-top: 2rem; }
.social-link {
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 400;
  transition: color var(--dur);
  border-bottom: 1px solid var(--border);
  padding-bottom: 2px;
}
.social-link:hover { color: var(--gold); border-color: var(--gold); }

/* ── PORTFOLIO ITEM ── */
.portfolio-item {
  position: relative;
  overflow: hidden;
  cursor: pointer;
  background: var(--cream-dk);
  aspect-ratio: 4/3;
  display: flex; align-items: flex-end;
}
.portfolio-item img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease);
}
.portfolio-item:hover img { transform: scale(1.05); }
.portfolio-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(0deg, rgba(26,22,16,0.75) 0%, transparent 55%);
  opacity: 0;
  transition: opacity var(--dur);
  display: flex; align-items: flex-end;
}
.portfolio-item:hover .portfolio-overlay { opacity: 1; }
.portfolio-info {
  padding: 1.5rem;
  transform: translateY(8px);
  transition: transform var(--dur);
}
.portfolio-item:hover .portfolio-info { transform: translateY(0); }
.portfolio-cat { font-size: 0.68rem; letter-spacing: 0.15em; text-transform: uppercase; color: var(--gold); }
.portfolio-title { font-family: var(--serif); font-size: 1rem; color: var(--white); margin-top: 0.25rem; }
.portfolio-placeholder {
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  font-size: 3rem; opacity: 0.12;
  pointer-events: none;
}

/* ── VASTU COMPASS ── */
.compass-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  grid-template-rows: auto auto auto;
  gap: 1.5px;
  background: var(--border);
}
.vastu-zone {
  background: var(--white);
  padding: 1.25rem 1rem;
  text-align: center;
}
.vastu-zone.center {
  background: var(--dark);
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
}
.vastu-zone.center .zone-name { font-family: var(--serif); font-size: 0.95rem; color: var(--gold); }
.vastu-zone.center .zone-desc { font-size: 0.72rem; color: rgba(255,255,255,0.45); margin-top: 0.25rem; }
.zone-dir { font-size: 0.62rem; letter-spacing: 0.18em; text-transform: uppercase; color: var(--gold); margin-bottom: 0.35rem; }
.zone-name { font-family: var(--serif); font-size: 0.9rem; color: var(--dark); margin-bottom: 0.3rem; font-weight: 500; }
.zone-desc { font-size: 0.72rem; color: var(--muted); line-height: 1.5; font-weight: 300; }

/* ── FOOTER ── */
.footer { background: var(--dark); padding: 4rem 5% 2rem; }
.footer-top {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255,255,255,0.07);
  max-width: var(--container);
  margin: 0 auto;
}
.footer-logo {
  font-family: var(--serif);
  font-size: 1.35rem;
  color: var(--white);
  margin-bottom: 0.5rem;
}
.footer-logo span {
  display: block;
  font-size: 0.68rem;
  font-family: var(--sans);
  font-weight: 300;
  color: var(--gold);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-top: 4px;
}
.footer-tagline {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.35);
  line-height: 1.7;
  margin-top: 1rem;
  font-weight: 300;
}
.footer-address {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.25);
  line-height: 1.8;
  margin-top: 1rem;
  font-weight: 300;
}
.footer-col-title {
  font-size: 0.68rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.5rem;
  font-weight: 400;
}
.footer-links li { margin-bottom: 0.75rem; }
.footer-links a {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.38);
  font-weight: 300;
  transition: color var(--dur);
}
.footer-links a:hover { color: var(--gold); }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 2rem;
  max-width: var(--container);
  margin: 0 auto;
  flex-wrap: wrap;
  gap: 0.5rem;
}
.footer-bottom p { font-size: 0.72rem; color: rgba(255,255,255,0.2); font-weight: 300; }

/* ── WHATSAPP FLOAT ── */
.wa-float {
  position: fixed;
  bottom: 2rem; right: 2rem;
  z-index: 500;
  width: 58px; height: 58px;
  background: #25D366;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 20px rgba(37,211,102,0.35);
  transition: transform var(--dur);
}
.wa-float:hover { transform: scale(1.08); }

/* ── BACK TO TOP ── */
.back-to-top {
  position: fixed;
  bottom: 2rem; left: 2rem;
  z-index: 500;
  width: 44px; height: 44px;
  background: var(--dark);
  color: var(--gold);
  font-size: 1.2rem;
  display: flex; align-items: center; justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--dur);
  cursor: pointer;
}
.back-to-top.visible { opacity: 1; pointer-events: auto; }
.back-to-top:hover { background: var(--gold); color: var(--dark); }

/* ── PORTFOLIO FILTER ── */
.portfolio-filter {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin: 2rem 0 3rem;
}
.filter-btn {
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  padding: 0.5rem 1.25rem;
  border: 1px solid var(--border);
  background: var(--white);
  cursor: pointer;
  transition: all var(--dur);
  font-weight: 400;
}
.filter-btn.active,
.filter-btn:hover {
  background: var(--dark);
  color: var(--gold-lt);
  border-color: var(--dark);
}

/* ── SUCCESS MESSAGE ── */
.form-success {
  background: #f0faf5;
  border: 1px solid #a3d9b8;
  color: #2d6a4f;
  padding: 1rem 1.25rem;
  font-size: 0.9rem;
  text-align: center;
  margin-top: 1rem;
  display: none;
}
.form-success.show { display: block; }

/* ── GOOGLE REVIEWS BADGE ── */
.google-badge {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1.5rem;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(201,169,110,0.2);
  padding: 1.5rem 2rem;
  margin: 2rem 0 4rem;
}
.google-badge-inner {
  display: flex;
  align-items: center;
  gap: 1.25rem;
}
.google-logo {
  width: 44px; height: 44px;
  background: var(--white);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.google-rating-num {
  font-family: var(--serif);
  font-size: 2rem;
  color: var(--gold);
  font-weight: 500;
  line-height: 1;
}
.google-stars {
  color: #FBBC05;
  font-size: 0.9rem;
  letter-spacing: 0.1em;
  margin: 0.2rem 0;
}
.google-review-count {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.45);
  letter-spacing: 0.08em;
  font-weight: 300;
}
.google-badge-link {
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  border-bottom: 1px solid rgba(201,169,110,0.3);
  padding-bottom: 2px;
  font-weight: 400;
  transition: border-color 0.2s;
  white-space: nowrap;
}
.google-badge-link:hover { border-color: var(--gold); }

/* ── VERIFIED BADGE ON TESTIMONIAL ── */
.testi-verified {
  font-size: 0.68rem;
  color: rgba(255,255,255,0.25);
  letter-spacing: 0.1em;
  margin-top: 1.25rem;
  font-weight: 300;
}

/* ── SEE ALL REVIEWS CTA ── */
.testi-cta {
  text-align: center;
  margin-top: 3rem;
}
.btn-see-all {
  display: inline-block;
  background: transparent;
  color: var(--gold-lt);
  font-family: var(--sans);
  font-size: 0.8rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 0.9rem 2.5rem;
  border: 1px solid rgba(201,169,110,0.35);
  font-weight: 400;
  transition: all 0.3s;
}
.btn-see-all:hover {
  background: var(--gold);
  color: var(--dark);
  border-color: var(--gold);
}
