/* ============================================================
   DESEO BUILD & CONSULT — Main Stylesheet
   Aesthetic: Warm Rajasthani Heritage × Modern Precision
   ============================================================ */

/* --- VARIABLES & RESET --- */
:root {
  --terracotta: #B85C38;
  --terracotta-dark: #8F4327;
  --terracotta-light: #D4714A;
  --sandstone: #C4956A;
  --gold: #D4A853;
  --gold-light: #E8C57A;
  --dark: #1A0F0A;
  --dark-2: #2C1A10;
  --dark-3: #3D2416;
  --cream: #FFF8F2;
  --cream-2: #F5EDE0;
  --text: #3D2416;
  --text-muted: #8B7355;
  --white: #FFFFFF;
  --border: rgba(196,149,106,0.25);
  --shadow-warm: 0 8px 40px rgba(184,92,56,0.15);
  --shadow-deep: 0 20px 60px rgba(26,15,10,0.2);
  --radius: 12px;
  --radius-lg: 20px;
  --radius-pill: 100px;
  --transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  --jali: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='80' height='80'%3E%3Cg fill='none' stroke='%23C4956A' stroke-width='0.6' opacity='0.18'%3E%3Cpath d='M40,0 L80,40 L40,80 L0,40 Z'/%3E%3Cpath d='M40,10 L70,40 L40,70 L10,40 Z'/%3E%3Ccircle cx='40' cy='40' r='12'/%3E%3Ccircle cx='40' cy='40' r='22'/%3E%3Cline x1='0' y1='0' x2='80' y2='80'/%3E%3Cline x1='80' y1='0' x2='0' y2='80'/%3E%3Cline x1='40' y1='0' x2='40' y2='80'/%3E%3Cline x1='0' y1='40' x2='80' y2='40'/%3E%3C/g%3E%3C/svg%3E");
}

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: 'Nunito', sans-serif;
  background: var(--cream);
  color: var(--text);
  line-height: 1.7;
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* --- TYPOGRAPHY --- */
h1, h2, h3, h4, h5 { font-family: 'Cormorant Garamond', serif; line-height: 1.2; }
h1 { font-size: clamp(2.4rem, 5vw, 4rem); font-weight: 700; }
h2 { font-size: clamp(2rem, 4vw, 3rem); font-weight: 600; }
h3 { font-size: clamp(1.4rem, 2.5vw, 1.9rem); font-weight: 600; }
.section-label {
  display: inline-block;
  font-family: 'Nunito', sans-serif;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--terracotta);
  margin-bottom: 12px;
  position: relative;
}
.section-label::before {
  content: '';
  display: inline-block;
  width: 24px;
  height: 2px;
  background: var(--terracotta);
  vertical-align: middle;
  margin-right: 10px;
}

/* --- LAYOUT UTILITIES --- */
.container { width: 100%; max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.section { padding: 80px 0; }
.section-pad { padding: 100px 0; }
.section-pad-sm { padding: 70px 0; }
@media (max-width: 768px) { .section { padding: 56px 0; } }
.text-center { text-align: center; }
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: center; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.flex-center { display: flex; align-items: center; justify-content: center; gap: 16px; }

/* --- ANIMATIONS --- */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(40px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
  from { opacity: 0; } to { opacity: 1; }
}
@keyframes slideLeft {
  from { opacity: 0; transform: translateX(60px); }
  to { opacity: 1; transform: translateX(0); }
}
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}
@keyframes shimmer {
  0% { background-position: -200% center; }
  100% { background-position: 200% center; }
}
@keyframes spin-slow {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}
@keyframes pulse-ring {
  0% { transform: scale(1); opacity: 0.6; }
  100% { transform: scale(1.8); opacity: 0; }
}
@keyframes marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.reveal { opacity: 0; transform: translateY(30px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* ============================================================
   ANNOUNCEMENT BAR
   ============================================================ */
.announcement-bar {
  background: var(--dark);
  color: var(--cream);
  padding: 10px 0;
  overflow: hidden;
  position: relative;
}
.announcement-bar::before, .announcement-bar::after {
  content: '';
  position: absolute;
  top: 0; bottom: 0;
  width: 80px;
  z-index: 2;
}
.announcement-bar::before { left: 0; background: linear-gradient(to right, var(--dark), transparent); }
.announcement-bar::after { right: 0; background: linear-gradient(to left, var(--dark), transparent); }
.marquee-track {
  display: flex;
  gap: 0;
  animation: marquee 28s linear infinite;
  white-space: nowrap;
  width: max-content;
}
.marquee-item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 0 40px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.5px;
  color: var(--cream-2);
}
.marquee-item .dot {
  width: 5px; height: 5px;
  background: var(--gold);
  border-radius: 50%;
  flex-shrink: 0;
}
.marquee-item span.highlight { color: var(--gold); }

/* ============================================================
   NAVBAR
   ============================================================ */
.navbar {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255, 248, 242, 0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  transition: var(--transition);
}
.navbar.scrolled {
  box-shadow: 0 4px 24px rgba(26,15,10,0.12);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 0;
}
.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}
.logo-mark {
  width: 44px;
  height: 44px;
  background: linear-gradient(135deg, var(--terracotta), var(--sandstone));
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 20px;
  font-weight: 800;
  font-family: 'Cormorant Garamond', serif;
  position: relative;
  overflow: hidden;
}
.logo-mark::after {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--jali);
  opacity: 0.3;
}
.logo-text .brand { font-family: 'Cormorant Garamond', serif; font-size: 22px; font-weight: 700; color: var(--dark); line-height: 1.1; }
.logo-text .tagline { font-size: 10px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; color: var(--text-muted); }
.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
}
.nav-links a {
  font-size: 14px;
  font-weight: 700;
  color: var(--text);
  position: relative;
  padding-bottom: 2px;
  transition: color 0.25s;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -2px; left: 0;
  width: 0; height: 2px;
  background: var(--terracotta);
  transition: width 0.3s ease;
}
.nav-links a:hover { color: var(--terracotta); }
.nav-links a:hover::after { width: 100%; }
.nav-actions { display: flex; align-items: center; gap: 12px; }
.nav-phone {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 700;
  font-size: 14px;
  color: var(--dark);
}
.nav-phone svg { color: var(--terracotta); }
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 26px;
  background: linear-gradient(135deg, var(--terracotta), var(--terracotta-light));
  color: white;
  border: none;
  border-radius: var(--radius-pill);
  font-family: 'Nunito', sans-serif;
  font-size: 14px;
  font-weight: 800;
  cursor: pointer;
  transition: var(--transition);
  box-shadow: 0 4px 16px rgba(184,92,56,0.3);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(184,92,56,0.45);
}
.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 26px;
  background: transparent;
  color: var(--terracotta);
  border: 2px solid var(--terracotta);
  border-radius: var(--radius-pill);
  font-family: 'Nunito', sans-serif;
  font-size: 14px;
  font-weight: 800;
  cursor: pointer;
  transition: var(--transition);
}
.btn-secondary:hover {
  background: var(--terracotta);
  color: white;
  transform: translateY(-2px);
}
.btn-outline-white {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  background: transparent;
  color: white;
  border: 2px solid rgba(255,255,255,0.6);
  border-radius: var(--radius-pill);
  font-family: 'Nunito', sans-serif;
  font-size: 15px;
  font-weight: 800;
  cursor: pointer;
  transition: var(--transition);
}
.btn-outline-white:hover {
  background: white;
  color: var(--terracotta);
  border-color: white;
}
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--dark);
  transition: var(--transition);
  border-radius: 2px;
}

/* ============================================================
   HERO SECTION
   ============================================================ */
.hero {
  position: relative;
  min-height: 90vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--dark);
}
.hero-bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, rgba(26,15,10,0.82) 0%, rgba(61,36,22,0.65) 50%, rgba(26,15,10,0.80) 100%),
    url('../images/hero-bg.jpg') center center / cover no-repeat;
}
/* Decorative arch overlay */
.hero-arch {
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  width: 45%;
  background: linear-gradient(135deg, rgba(196,149,106,0.08) 0%, rgba(212,168,83,0.05) 100%);
  clip-path: ellipse(100% 120% at 100% 50%);
}
.hero-glow {
  position: absolute;
  width: 600px;
  height: 600px;
  background: radial-gradient(ellipse, rgba(184,92,56,0.2) 0%, transparent 70%);
  top: 50%;
  right: 10%;
  transform: translate(50%, -50%);
  pointer-events: none;
}
.hero-content {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 60px;
  align-items: center;
  padding: 80px 0;
  width: 100%;
}
.hero-text { animation: fadeUp 0.9s ease forwards; }
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(212,168,83,0.12);
  border: 1px solid rgba(212,168,83,0.3);
  color: var(--gold-light);
  padding: 8px 18px;
  border-radius: var(--radius-pill);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 24px;
}
.hero-badge-dot {
  width: 6px; height: 6px;
  background: var(--gold);
  border-radius: 50%;
  animation: pulse-ring 1.5s ease-out infinite;
  position: relative;
}
.hero-badge-dot::after {
  content: '';
  position: absolute;
  inset: -3px;
  border-radius: 50%;
  border: 1px solid var(--gold);
  animation: pulse-ring 1.5s ease-out infinite;
}
.hero-title {
  color: white;
  margin-bottom: 20px;
  font-size: clamp(2.4rem, 4.5vw, 3.8rem);
}
.hero-title .highlight {
  background: linear-gradient(135deg, var(--gold-light), var(--sandstone));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero-hindi {
  display: block;
  font-family: 'Nunito', sans-serif;
  font-size: clamp(1.1rem, 2vw, 1.5rem);
  font-weight: 400;
  color: rgba(255,255,255,0.5);
  margin-top: 6px;
}
.hero-desc {
  font-size: 17px;
  color: rgba(255,255,255,0.72);
  margin-bottom: 36px;
  max-width: 520px;
  line-height: 1.8;
}
.hero-trust-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 32px;
}
.trust-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.12);
  color: rgba(255,255,255,0.85);
  padding: 7px 14px;
  border-radius: var(--radius-pill);
  font-size: 13px;
  font-weight: 600;
}
.trust-pill-icon { font-size: 14px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; align-items: center; }

/* Hero Form Card */
.hero-form-card {
  background: white;
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  box-shadow: var(--shadow-deep);
  animation: slideLeft 0.9s 0.3s ease both;
  position: relative;
  overflow: hidden;
}
.hero-form-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--terracotta), var(--gold));
}
.hero-form-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 6px;
  text-align: center;
}
.hero-form-subtitle {
  text-align: center;
  font-size: 13px;
  color: var(--text-muted);
  margin-bottom: 24px;
  font-weight: 600;
}
.form-group {
  margin-bottom: 16px;
}
.form-group label {
  display: block;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 6px;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  font-family: 'Nunito', sans-serif;
  font-size: 14px;
  font-weight: 600;
  color: var(--text);
  background: var(--cream);
  transition: var(--transition);
  outline: none;
  -webkit-appearance: none;
  appearance: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--terracotta);
  background: white;
  box-shadow: 0 0 0 3px rgba(184,92,56,0.1);
}
.form-group select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%238B7355' fill='none' stroke-width='2' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 40px;
  cursor: pointer;
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.btn-submit {
  width: 100%;
  padding: 15px;
  background: linear-gradient(135deg, var(--terracotta), var(--terracotta-light));
  color: white;
  border: none;
  border-radius: var(--radius-pill);
  font-family: 'Nunito', sans-serif;
  font-size: 16px;
  font-weight: 800;
  cursor: pointer;
  transition: var(--transition);
  box-shadow: 0 4px 16px rgba(184,92,56,0.35);
  margin-top: 8px;
  position: relative;
  overflow: hidden;
}
.btn-submit::before {
  content: '';
  position: absolute;
  top: 0; left: -100%;
  width: 100%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.15), transparent);
  transition: left 0.5s ease;
}
.btn-submit:hover { transform: translateY(-2px); box-shadow: 0 8px 28px rgba(184,92,56,0.5); }
.btn-submit:hover::before { left: 100%; }
.form-footer {
  text-align: center;
  font-size: 12px;
  color: var(--text-muted);
  margin-top: 12px;
}
.form-footer svg { vertical-align: middle; margin-right: 4px; }
.form-msg { display: none; text-align: center; padding: 12px; border-radius: var(--radius); margin-top: 12px; font-weight: 700; font-size: 14px; }
.form-msg.success { background: #d1fae5; color: #065f46; display: block; }
.form-msg.error { background: #fee2e2; color: #991b1b; display: block; }

/* ============================================================
   STATS BAR
   ============================================================ */
.stats-bar {
  background: var(--dark);
  padding: 40px 0;
  position: relative;
  overflow: hidden;
}
.stats-bar::after {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--jali);
  background-size: 80px 80px;
  opacity: 0.06;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0;
  position: relative;
  z-index: 1;
}
.stat-item {
  text-align: center;
  padding: 20px 16px;
  position: relative;
}
.stat-item:not(:last-child)::after {
  content: '';
  position: absolute;
  right: 0; top: 20%; bottom: 20%;
  width: 1px;
  background: rgba(255,255,255,0.1);
}
.stat-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 3rem;
  font-weight: 700;
  line-height: 1;
  background: linear-gradient(135deg, var(--gold-light), var(--sandstone));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 6px;
}
.stat-label {
  font-size: 13px;
  font-weight: 700;
  color: rgba(255,255,255,0.65);
  letter-spacing: 0.5px;
}

/* ============================================================
   SERVICES SECTION
   ============================================================ */
.services-section { background: var(--cream); }
.section-header { text-align: center; max-width: 640px; margin: 0 auto 60px; }
.section-header p { font-size: 17px; color: var(--text-muted); margin-top: 12px; line-height: 1.7; }
.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.service-card {
  background: white;
  border-radius: var(--radius-lg);
  padding: 32px 24px;
  border: 1.5px solid var(--border);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
  cursor: pointer;
}
.service-card::before {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--terracotta), var(--gold));
  transform: scaleX(0);
  transition: transform 0.35s ease;
  transform-origin: left;
}
.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-warm);
  border-color: rgba(184,92,56,0.2);
}
.service-card:hover::before { transform: scaleX(1); }
.service-icon {
  width: 56px;
  height: 56px;
  background: linear-gradient(135deg, rgba(184,92,56,0.1), rgba(196,149,106,0.1));
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  margin-bottom: 20px;
  transition: var(--transition);
}
.service-card:hover .service-icon {
  background: linear-gradient(135deg, var(--terracotta), var(--sandstone));
  transform: scale(1.05);
}
.service-card h3 {
  font-size: 1.1rem;
  font-family: 'Nunito', sans-serif;
  font-weight: 800;
  color: var(--dark);
  margin-bottom: 10px;
  line-height: 1.3;
}
.service-card p { font-size: 14px; color: var(--text-muted); line-height: 1.6; }
.service-tag {
  display: inline-block;
  margin-top: 14px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--terracotta);
  padding: 4px 10px;
  background: rgba(184,92,56,0.07);
  border-radius: 20px;
}

/* ============================================================
   WHY CHOOSE US — PAIN POINT SECTION
   ============================================================ */
.why-section {
  background: linear-gradient(160deg, var(--dark) 0%, var(--dark-2) 100%);
  position: relative;
  overflow: hidden;
}
.why-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--jali);
  background-size: 80px 80px;
  opacity: 0.05;
}
.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.why-left {}
.why-left .section-label { color: var(--gold-light); }
.why-left .section-label::before { background: var(--gold); }
.why-left h2 { color: white; margin-bottom: 20px; }
.why-left p { color: rgba(255,255,255,0.65); font-size: 16px; line-height: 1.8; margin-bottom: 36px; }
.why-cta-group { display: flex; flex-wrap: wrap; gap: 12px; }
.why-right {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.why-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-lg);
  padding: 24px 20px;
  transition: var(--transition);
}
.why-card:hover {
  background: rgba(255,255,255,0.08);
  border-color: rgba(196,149,106,0.3);
  transform: translateY(-4px);
}
.why-card-icon {
  font-size: 32px;
  margin-bottom: 14px;
}
.why-card h4 {
  font-family: 'Nunito', sans-serif;
  font-size: 15px;
  font-weight: 800;
  color: white;
  margin-bottom: 8px;
}
.why-card p { font-size: 13px; color: rgba(255,255,255,0.55); line-height: 1.6; }
.why-card.featured {
  background: linear-gradient(135deg, rgba(184,92,56,0.2), rgba(196,149,106,0.1));
  border-color: rgba(184,92,56,0.3);
}

/* ============================================================
   PROCESS STEPS
   ============================================================ */
.process-section { background: var(--cream-2); position: relative; overflow: hidden; }
.process-section::before {
  content: '';
  position: absolute;
  top: -60px; right: -60px;
  width: 400px; height: 400px;
  background: radial-gradient(ellipse, rgba(196,149,106,0.12) 0%, transparent 70%);
  pointer-events: none;
}
.process-track {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 0;
  position: relative;
}
.process-track::before {
  content: '';
  position: absolute;
  top: 40px;
  left: 7%;
  right: 7%;
  height: 2px;
  background: linear-gradient(90deg, var(--terracotta), var(--gold), var(--terracotta));
  z-index: 0;
}
.process-step {
  text-align: center;
  padding: 0 8px;
  position: relative;
  z-index: 1;
}
.step-circle {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: white;
  border: 3px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  font-size: 26px;
  position: relative;
  transition: var(--transition);
  box-shadow: 0 4px 16px rgba(26,15,10,0.08);
}
.process-step:hover .step-circle {
  background: linear-gradient(135deg, var(--terracotta), var(--sandstone));
  border-color: var(--terracotta);
  transform: scale(1.1);
  box-shadow: 0 8px 24px rgba(184,92,56,0.3);
}
.step-num-badge {
  position: absolute;
  top: -6px; right: -6px;
  width: 22px; height: 22px;
  background: var(--terracotta);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 10px;
  font-weight: 800;
  color: white;
}
.process-step h4 {
  font-family: 'Nunito', sans-serif;
  font-size: 13px;
  font-weight: 800;
  color: var(--dark);
  margin-bottom: 6px;
  line-height: 1.3;
}
.process-step p { font-size: 12px; color: var(--text-muted); line-height: 1.5; }

/* ============================================================
   MID-PAGE CTA
   ============================================================ */
.mid-cta {
  background: linear-gradient(135deg, var(--terracotta) 0%, var(--terracotta-dark) 60%, #6B2F15 100%);
  position: relative;
  overflow: hidden;
  padding: 80px 0;
}
.mid-cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--jali);
  background-size: 80px 80px;
  opacity: 0.12;
}
.mid-cta-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.mid-cta-text h2 { color: white; margin-bottom: 16px; }
.mid-cta-text p { color: rgba(255,255,255,0.8); font-size: 16px; line-height: 1.8; margin-bottom: 28px; }
.mid-cta-checks { list-style: none; display: flex; flex-direction: column; gap: 10px; margin-bottom: 32px; }
.mid-cta-checks li {
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(255,255,255,0.9);
  font-size: 15px;
  font-weight: 600;
}
.mid-cta-checks li::before {
  content: '✓';
  width: 22px; height: 22px;
  background: rgba(255,255,255,0.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 800;
  flex-shrink: 0;
}
.mid-cta-form {
  background: white;
  border-radius: var(--radius-lg);
  padding: 36px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.25);
}
.mid-cta-form .form-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 24px;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 24px;
  text-align: center;
}

/* ============================================================
   VASTU SECTION
   ============================================================ */
.vastu-section { background: var(--cream); }
.vastu-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.vastu-visual {
  position: relative;
}
.vastu-mandala {
  width: 360px;
  height: 360px;
  margin: 0 auto;
  position: relative;
  animation: spin-slow 60s linear infinite;
}
.vastu-mandala svg { width: 100%; height: 100%; }
.vastu-center-icon {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  font-size: 60px;
  animation: spin-slow 60s linear infinite reverse;
}
.vastu-points {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 28px;
}
.vastu-point {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
.vastu-point-icon {
  width: 44px; height: 44px;
  background: linear-gradient(135deg, rgba(184,92,56,0.1), rgba(196,149,106,0.12));
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  flex-shrink: 0;
}
.vastu-point h4 { font-family: 'Nunito', sans-serif; font-size: 15px; font-weight: 800; color: var(--dark); margin-bottom: 4px; }
.vastu-point p { font-size: 13px; color: var(--text-muted); line-height: 1.5; }

/* ============================================================
   PORTFOLIO
   ============================================================ */
.portfolio-section { background: var(--dark); overflow: hidden; }
.portfolio-section .section-label { color: var(--gold-light); }
.portfolio-section .section-label::before { background: var(--gold); }
.portfolio-section h2 { color: white; }
.portfolio-section .section-header p { color: rgba(255,255,255,0.55); }
.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 260px;
  gap: 16px;
}
/* Featured cards span 2 columns */
.portfolio-card.featured-h { grid-column: span 2; }
/* Tall card spans 2 rows */
.portfolio-card.featured-v { grid-row: span 2; }
.portfolio-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: relative;
  cursor: pointer;
  transition: var(--transition);
}
.portfolio-card:hover { transform: scale(1.015); }
.portfolio-card:hover .portfolio-overlay { opacity: 1; }
.portfolio-bg {
  position: absolute;
  inset: 0;
  transition: transform 0.5s ease;
}
.portfolio-card:hover .portfolio-bg { transform: scale(1.05); }
.portfolio-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(26,15,10,0.95) 0%, rgba(26,15,10,0.4) 50%, transparent 100%);
  padding: 24px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  opacity: 0.85;
  transition: opacity 0.3s ease;
}
.portfolio-tag {
  display: inline-block;
  background: var(--terracotta);
  color: white;
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  margin-bottom: 8px;
  align-self: flex-start;
}
.portfolio-overlay h3 { color: white; font-size: 1.2rem; margin-bottom: 6px; }
.portfolio-overlay p { color: rgba(255,255,255,0.65); font-size: 13px; }
/* Portfolio image backgrounds — real photos when available, rich gradients as base */
.proj-jhotwara       { background: url('../images/proj-jhotwara.jpg') center/cover no-repeat, linear-gradient(135deg, #5C3317, #9E6B3A); }
.proj-vidyadhar      { background: url('../images/proj-vidyadhar.jpg') center/cover no-repeat, linear-gradient(135deg, #2A3A1A, #4A6A2A); }
.proj-mansarovar-4bhk{ background: url('../images/proj-mansarovar-4bhk.jpg') center/cover no-repeat, linear-gradient(135deg, #1A2A3A, #2A4A6A); }
.proj-apt-consult    { background: url('../images/proj-apt-consult.jpg') center/cover no-repeat, linear-gradient(135deg, #3A2A1A, #7A5A2A); }
.proj-commercial-4f  { background: url('../images/proj-commercial-4f.jpg') center/cover no-repeat, linear-gradient(135deg, #0A1A2E, #1A3050); }
.proj-commercial-5f  { background: url('../images/proj-commercial-5f.jpg') center/cover no-repeat, linear-gradient(135deg, #1A0A2A, #30154A); }
.proj-farmhouse      { background: url('../images/proj-farmhouse.jpg') center/cover no-repeat, linear-gradient(135deg, #1A2A0A, #3A5A15); }
.proj-temple         { background: url('../images/proj-temple.jpg') center/cover no-repeat, linear-gradient(135deg, #3A2010, #8A5A20); }
.pc-pattern {
  position: absolute;
  inset: 0;
  background: var(--jali);
  background-size: 80px 80px;
  opacity: 0.12;
  pointer-events: none;
}

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.testimonials-section { background: var(--cream-2); }
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.testimonial-card {
  background: white;
  border-radius: var(--radius-lg);
  padding: 32px;
  border: 1px solid var(--border);
  position: relative;
  transition: var(--transition);
}
.testimonial-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-warm);
}
.testimonial-card::before {
  content: '"';
  position: absolute;
  top: 16px; right: 24px;
  font-size: 80px;
  font-family: 'Cormorant Garamond', serif;
  color: rgba(184,92,56,0.08);
  line-height: 1;
}
.stars { display: flex; gap: 4px; margin-bottom: 16px; color: var(--gold); font-size: 16px; }
.testimonial-text { font-size: 15px; color: var(--text); line-height: 1.75; margin-bottom: 24px; font-style: italic; }
.testimonial-author { display: flex; align-items: center; gap: 14px; border-top: 1px solid var(--border); padding-top: 20px; }
.author-avatar {
  width: 48px; height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--terracotta), var(--sandstone));
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: 800;
  font-size: 18px;
  font-family: 'Cormorant Garamond', serif;
  flex-shrink: 0;
}
.author-info .name { font-weight: 800; font-size: 14px; color: var(--dark); }
.author-info .location { font-size: 12px; color: var(--text-muted); margin-top: 2px; }
.author-info .project { font-size: 11px; color: var(--terracotta); font-weight: 700; margin-top: 2px; }

/* ============================================================
   PARTNER ECOSYSTEM
   ============================================================ */
.partners-section { background: var(--cream); }
.partners-intro { text-align: center; max-width: 700px; margin: 0 auto 60px; }
.partners-intro p { font-size: 17px; color: var(--text-muted); margin-top: 12px; }
.partners-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-bottom: 48px;
}
.partner-card {
  background: white;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px 20px;
  text-align: center;
  transition: var(--transition);
  cursor: default;
}
.partner-card:hover {
  border-color: rgba(184,92,56,0.3);
  transform: translateY(-4px);
  box-shadow: var(--shadow-warm);
}
.partner-icon { font-size: 36px; margin-bottom: 14px; }
.partner-card h4 { font-family: 'Nunito', sans-serif; font-weight: 800; font-size: 14px; color: var(--dark); margin-bottom: 8px; }
.partner-card p { font-size: 13px; color: var(--text-muted); line-height: 1.5; }
.partner-badge {
  display: inline-block;
  margin-top: 10px;
  padding: 4px 10px;
  background: rgba(184,92,56,0.07);
  color: var(--terracotta);
  border-radius: 20px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}
.partners-promise {
  background: linear-gradient(135deg, var(--terracotta), var(--sandstone));
  border-radius: var(--radius-lg);
  padding: 32px 40px;
  display: flex;
  align-items: center;
  gap: 24px;
  color: white;
}
.partners-promise-icon { font-size: 48px; flex-shrink: 0; }
.partners-promise h3 { font-size: 1.5rem; color: white; margin-bottom: 8px; }
.partners-promise p { color: rgba(255,255,255,0.85); font-size: 15px; }

/* ============================================================
   FAQ
   ============================================================ */
.faq-section { background: var(--cream-2); }
.faq-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  max-width: 1000px;
  margin: 0 auto;
}
.faq-item {
  background: white;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  overflow: hidden;
  transition: var(--transition);
}
.faq-item.open { border-color: rgba(184,92,56,0.25); box-shadow: 0 4px 16px rgba(184,92,56,0.1); }
.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  cursor: pointer;
  gap: 16px;
}
.faq-question h4 {
  font-family: 'Nunito', sans-serif;
  font-size: 15px;
  font-weight: 800;
  color: var(--dark);
  line-height: 1.4;
}
.faq-toggle {
  width: 28px; height: 28px;
  background: rgba(184,92,56,0.08);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: var(--transition);
  color: var(--terracotta);
  font-size: 18px;
  font-weight: 300;
}
.faq-item.open .faq-toggle {
  background: var(--terracotta);
  color: white;
  transform: rotate(45deg);
}
.faq-answer {
  display: none;
  padding: 0 24px 20px;
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.7;
}
.faq-item.open .faq-answer { display: block; }

/* ============================================================
   BOTTOM CTA FORM
   ============================================================ */
.bottom-cta {
  background: var(--dark);
  position: relative;
  overflow: hidden;
  padding: 100px 0;
}
.bottom-cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--jali);
  background-size: 80px 80px;
  opacity: 0.06;
}
.bottom-cta-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}
.bottom-cta-info .section-label { color: var(--gold-light); }
.bottom-cta-info .section-label::before { background: var(--gold); }
.bottom-cta-info h2 { color: white; margin-bottom: 16px; }
.bottom-cta-info p { color: rgba(255,255,255,0.65); font-size: 16px; line-height: 1.8; margin-bottom: 40px; }
.contact-cards { display: flex; flex-direction: column; gap: 16px; }
.contact-card {
  display: flex;
  align-items: center;
  gap: 16px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius);
  padding: 18px 20px;
  transition: var(--transition);
}
.contact-card:hover { background: rgba(255,255,255,0.09); border-color: rgba(196,149,106,0.25); }
.contact-card-icon {
  width: 44px; height: 44px;
  background: linear-gradient(135deg, var(--terracotta), var(--sandstone));
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  flex-shrink: 0;
}
.contact-card-label { font-size: 12px; color: rgba(255,255,255,0.4); font-weight: 700; text-transform: uppercase; letter-spacing: 0.5px; }
.contact-card-value { font-size: 16px; color: white; font-weight: 700; margin-top: 2px; }
.bottom-form-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-lg);
  padding: 40px;
}
.bottom-form-card .form-group label { color: rgba(255,255,255,0.55); }
.bottom-form-card .form-group input,
.bottom-form-card .form-group select,
.bottom-form-card .form-group textarea {
  background: rgba(255,255,255,0.07);
  border-color: rgba(255,255,255,0.12);
  color: white;
}
.bottom-form-card .form-group input::placeholder,
.bottom-form-card .form-group textarea::placeholder { color: rgba(255,255,255,0.35); }
.bottom-form-card .form-group input:focus,
.bottom-form-card .form-group select:focus,
.bottom-form-card .form-group textarea:focus {
  background: rgba(255,255,255,0.1);
  border-color: var(--sandstone);
  box-shadow: 0 0 0 3px rgba(196,149,106,0.15);
}
.bottom-form-card .form-group select option { background: var(--dark-2); color: var(--cream); }
.bottom-form-title { font-family: 'Cormorant Garamond', serif; font-size: 26px; font-weight: 700; color: white; margin-bottom: 24px; }

/* ============================================================
   FOOTER
   ============================================================ */
footer {
  background: #0D0804;
  padding: 70px 0 0;
  position: relative;
}
footer::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--sandstone), transparent);
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 50px;
  padding-bottom: 50px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.footer-brand {}
.footer-logo { display: flex; align-items: center; gap: 12px; margin-bottom: 16px; }
.footer-desc { font-size: 14px; color: rgba(255,255,255,0.45); line-height: 1.8; margin-bottom: 24px; }
.footer-social { display: flex; gap: 10px; }
.social-btn {
  width: 36px; height: 36px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  transition: var(--transition);
  cursor: pointer;
  color: rgba(255,255,255,0.5);
  text-decoration: none;
}
.social-btn:hover { background: var(--terracotta); border-color: var(--terracotta); color: white; }
.footer-col h5 { font-family: 'Nunito', sans-serif; font-weight: 800; font-size: 13px; letter-spacing: 1.5px; text-transform: uppercase; color: rgba(255,255,255,0.6); margin-bottom: 20px; }
.footer-links { display: flex; flex-direction: column; gap: 10px; }
.footer-links a { font-size: 14px; color: rgba(255,255,255,0.45); transition: color 0.2s; }
.footer-links a:hover { color: var(--sandstone); }
.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 0;
  font-size: 13px;
  color: rgba(255,255,255,0.3);
}
.footer-bottom a { color: var(--sandstone); }

/* ============================================================
   FLOATING BUTTONS
   ============================================================ */
.floating-btns {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 12px;
}
.fab {
  width: 56px; height: 56px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  box-shadow: 0 6px 24px rgba(0,0,0,0.3);
  transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
  text-decoration: none;
  cursor: pointer;
  border: none;
}
.fab:hover { transform: scale(1.12) translateY(-3px); }
.fab-whatsapp { background: #25D366; color: white; }
.fab-call { background: var(--terracotta); color: white; }
.fab-label {
  position: absolute;
  right: 68px;
  background: var(--dark);
  color: white;
  padding: 6px 14px;
  border-radius: var(--radius-pill);
  font-size: 13px;
  font-weight: 700;
  white-space: nowrap;
  opacity: 0;
  transform: translateX(10px);
  transition: var(--transition);
  pointer-events: none;
}
.fab-wrap { position: relative; display: flex; align-items: center; }
.fab-wrap:hover .fab-label { opacity: 1; transform: translateX(0); }

/* ============================================================
   MOBILE MENU
   ============================================================ */
.mobile-menu {
  display: none;
  position: fixed;
  inset: 0;
  background: var(--cream);
  z-index: 9998;
  padding: 80px 24px 40px;
  flex-direction: column;
  gap: 8px;
  overflow-y: auto;
}
.mobile-menu.open { display: flex; animation: fadeIn 0.2s ease; }
.mobile-menu-close {
  position: absolute;
  top: 20px; right: 20px;
  background: none;
  border: none;
  font-size: 28px;
  cursor: pointer;
  color: var(--dark);
}
.mobile-menu a {
  display: block;
  padding: 16px 0;
  font-size: 22px;
  font-family: 'Cormorant Garamond', serif;
  font-weight: 600;
  color: var(--dark);
  border-bottom: 1px solid var(--border);
  transition: color 0.2s;
}
.mobile-menu a:hover { color: var(--terracotta); }
.mobile-menu .btn-primary { margin-top: 24px; justify-content: center; padding: 16px; font-size: 16px; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1100px) {
  .services-grid { grid-template-columns: repeat(3, 1fr); }
  .stats-grid { grid-template-columns: repeat(3, 1fr); }
  .stats-grid .stat-item:nth-child(3)::after { display: none; }
  .portfolio-grid { grid-template-columns: repeat(2, 1fr); }
  .portfolio-card.featured-v { grid-row: span 1; }
  .portfolio-card.featured-h { grid-column: span 2; }
  .process-track { grid-template-columns: repeat(4, 1fr); }
  .process-track::before { display: none; }
}

@media (max-width: 900px) {
  .hero-content { grid-template-columns: 1fr; gap: 40px; padding: 60px 0; }
  .hero-form-card { max-width: 480px; }
  .why-grid, .mid-cta-inner, .vastu-inner, .bottom-cta-inner { grid-template-columns: 1fr; gap: 40px; }
  .grid-2 { grid-template-columns: 1fr; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .partners-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .footer-brand { grid-column: span 2; }
  .faq-grid { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; max-width: 480px; margin: 0 auto; }
}

@media (max-width: 640px) {
  .nav-links, .nav-phone { display: none !important; }
  .hamburger { display: flex; }
  .nav-actions .btn-primary svg { display: none; }
  .nav-actions .btn-primary { font-size: 12px; padding: 10px 14px; white-space: nowrap; }
  .nav-actions { gap: 8px; }
  .hero-content { padding: 50px 0; }
  .section-pad { padding: 70px 0; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .services-grid { grid-template-columns: 1fr; }
  .why-right { grid-template-columns: 1fr; }
  .process-track { grid-template-columns: repeat(2, 1fr); }
  .portfolio-grid { grid-template-columns: 1fr; }
  .portfolio-card.featured-h,
  .portfolio-card.featured-v { grid-column: span 1; grid-row: span 1; }
  .partners-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-brand { grid-column: span 1; }
  .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }
  .form-row { grid-template-columns: 1fr; }
  .hero-actions { flex-direction: column; align-items: flex-start; }
  .floating-btns { bottom: 20px; right: 16px; }
  .vastu-mandala { width: 260px; height: 260px; }
}
