/* =============================================
   AMBIKA REALTY — PREMIUM STYLESHEET v2
   Consistent spacing, real images, founder section
   ============================================= */

/* ===== DESIGN TOKENS ===== */
:root {
  /* Colors */
  --navy-950: #020B18;
  --navy-900: #061423;
  --navy-800: #0B2240;
  --navy-700: #0E2D55;
  --navy-600: #133568;
  --gold-300: #E8D4A0;
  --gold-400: #C8A96E;
  --gold-500: #A88432;
  --silver-100: #F0F4F8;
  --silver-400: #9DA8B5;
  --silver-600: #6B7A8D;
  --white: #FFFFFF;
  --text-primary: #F0F4F8;
  --text-secondary: #9DA8B5;
  --text-muted: #6B7A8D;
  --green-400: #4ade80;
  --glass-bg: rgba(11, 34, 64, 0.65);
  --glass-border: rgba(200, 169, 110, 0.18);
  --card-bg: rgba(11, 34, 64, 0.8);
  --shadow-gold: 0 8px 40px rgba(200, 169, 110, 0.18);
  --shadow-deep: 0 20px 60px rgba(2, 11, 24, 0.7);

  /* Spacing Scale (consistent) */
  --space-xs:   0.5rem;    /* 8px  */
  --space-sm:   0.75rem;   /* 12px */
  --space-md:   1rem;      /* 16px */
  --space-lg:   1.5rem;    /* 24px */
  --space-xl:   2rem;      /* 32px */
  --space-2xl:  3rem;      /* 48px */
  --space-3xl:  5rem;      /* 80px */
  --space-4xl:  7rem;      /* 112px */

  /* Section padding */
  --section-py: 6rem;

  /* Radius */
  --r-sm: 6px;
  --r-md: 12px;
  --r-lg: 20px;
  --r-xl: 28px;
  --r-2xl: 40px;

  /* Typography */
  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body:    'Inter', system-ui, sans-serif;

  /* Transitions */
  --ease: cubic-bezier(0.4, 0, 0.2, 1);
  --t-fast: 0.2s var(--ease);
  --t-base: 0.35s var(--ease);
  --t-slow: 0.6s var(--ease);
}

/* ===== RESET ===== */
*, *::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(--navy-950);
  color: var(--text-primary);
  line-height: 1.65;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
em { font-style: italic; color: var(--gold-400); font-family: var(--font-display); }
::-webkit-scrollbar { width: 5px; }
::-webkit-scrollbar-track { background: var(--navy-900); }
::-webkit-scrollbar-thumb { background: var(--gold-500); border-radius: 3px; }

/* ===== SECTION WRAPPER ===== */
.section { padding: var(--section-py) 0; }
.section-container {
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 var(--space-xl);
}

/* ===== SECTION HEADER ===== */
.section-header {
  text-align: center;
  margin-bottom: var(--space-3xl);
}
.section-eyebrow {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold-400);
  margin-bottom: var(--space-sm);
}
.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3.25rem);
  font-weight: 300;
  line-height: 1.18;
  color: var(--text-primary);
  margin-bottom: var(--space-md);
}
.section-subtitle {
  font-size: 1rem;
  color: var(--text-secondary);
  line-height: 1.75;
  max-width: 560px;
  margin: 0 auto;
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: var(--space-xs);
  font-family: var(--font-body);
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  padding: 0.9rem 2rem;
  border-radius: var(--r-sm);
  border: 1px solid transparent;
  cursor: pointer;
  transition: var(--t-base);
  white-space: nowrap;
  text-align: center;
}
.btn-primary {
  background: linear-gradient(135deg, var(--gold-400), var(--gold-500));
  color: var(--navy-950);
  box-shadow: 0 4px 20px rgba(200,169,110,0.3);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(200,169,110,0.5);
  background: linear-gradient(135deg, var(--gold-300), var(--gold-400));
}
.btn-ghost {
  background: transparent;
  color: var(--text-primary);
  border-color: rgba(255,255,255,0.22);
}
.btn-ghost:hover {
  border-color: var(--gold-400);
  color: var(--gold-400);
  transform: translateY(-2px);
}
.btn-outline {
  background: transparent;
  color: var(--gold-400);
  border-color: var(--gold-400);
}
.btn-outline:hover {
  background: var(--gold-400);
  color: var(--navy-950);
  transform: translateY(-2px);
  box-shadow: var(--shadow-gold);
}
.btn-full { width: 100%; justify-content: center; }
.btn-lg { padding: 1.1rem 2.5rem; font-size: 1rem; }

/* ===== NAVBAR ===== */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 1rem 0;
  transition: var(--t-base);
}
.navbar.scrolled {
  background: rgba(6, 20, 35, 0.97);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border-bottom: 1px solid var(--glass-border);
  padding: 0.625rem 0;
  box-shadow: 0 4px 32px rgba(2,11,24,0.55);
}
.nav-container {
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 2.5rem;
  display: flex;
  align-items: center;
  gap: 0;
}
/* Logo */
.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  flex-shrink: 0;
  margin-right: auto;
  text-decoration: none;
}
.nav-logo-img {
  height: 44px;
  width: 44px;
  object-fit: contain;
  border-radius: 50%;
  background: #fff;
  padding: 2px;
  flex-shrink: 0;
}
.logo-text {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--white);
  letter-spacing: 0.02em;
  line-height: 1;
}
/* Nav links — equal spacing */
.nav-links {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  margin-right: 1.5rem;
}
.nav-link {
  font-size: 0.8375rem;
  font-weight: 400;
  color: var(--silver-400);
  padding: 0.5rem 0.9rem;
  border-radius: var(--r-sm);
  transition: var(--t-fast);
  position: relative;
  white-space: nowrap;
  letter-spacing: 0.01em;
}
.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0; left: 50%;
  width: 16px; height: 1.5px;
  background: var(--gold-400);
  border-radius: 1px;
  transform: translateX(-50%) scaleX(0);
  transition: var(--t-fast);
}
.nav-link:hover, .nav-link.active { color: var(--white); }
.nav-link:hover::after, .nav-link.active::after { transform: translateX(-50%) scaleX(1); }
.nav-cta {
  font-size: 0.8125rem;
  font-weight: 600;
  padding: 0.6rem 1.375rem;
  background: linear-gradient(135deg, var(--gold-400), var(--gold-500));
  color: var(--navy-950);
  border-radius: var(--r-sm);
  transition: var(--t-base);
  white-space: nowrap;
  flex-shrink: 0;
  letter-spacing: 0.02em;
}
.nav-cta:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(200,169,110,0.45);
}
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 0.5rem;
  background: none;
  border: none;
  cursor: pointer;
  margin-left: auto;
}
.hamburger span { display: block; width: 22px; height: 2px; background: var(--text-primary); border-radius: 2px; transition: var(--t-base); }

/* ===== HERO ===== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 50% 20%, rgba(19,53,104,0.6) 0%, transparent 70%),
    radial-gradient(ellipse 50% 40% at 80% 80%, rgba(200,169,110,0.07) 0%, transparent 60%),
    linear-gradient(160deg, var(--navy-900) 0%, var(--navy-950) 60%, #030D1C 100%);
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23C8A96E' fill-opacity='0.025'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/svg%3E");
}
.hero-particles { position: absolute; inset: 0; pointer-events: none; }
.particle {
  position: absolute;
  width: 2px; height: 2px;
  background: var(--gold-400);
  border-radius: 50%;
  opacity: 0;
  animation: particleFloat var(--dur, 8s) ease-in-out infinite;
  animation-delay: var(--delay, 0s);
}
@keyframes particleFloat {
  0%   { opacity: 0; transform: translateY(100vh) scale(0); }
  10%  { opacity: 0.7; }
  90%  { opacity: 0.3; }
  100% { opacity: 0; transform: translateY(-10vh) scale(1.5); }
}
.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 0 var(--space-lg);
  max-width: 880px;
}
.hero-tagline {
  font-size: 0.72rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold-400);
  font-weight: 600;
  margin-bottom: var(--space-lg);
}
.hero-title {
  font-family: var(--font-display);
  font-size: clamp(3rem, 8vw, 5.75rem);
  font-weight: 300;
  line-height: 1.06;
  color: var(--white);
  margin-bottom: var(--space-lg);
  letter-spacing: -0.02em;
}
.hero-subtitle {
  font-size: clamp(1rem, 2vw, 1.1rem);
  color: var(--silver-400);
  line-height: 1.75;
  margin-bottom: var(--space-2xl);
}
.hero-actions {
  display: flex;
  gap: var(--space-md);
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: var(--space-3xl);
}
.hero-stats {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-2xl);
  flex-wrap: wrap;
}
.stat { text-align: center; }
.stat-num {
  font-family: var(--font-display);
  font-size: 2.25rem;
  font-weight: 600;
  color: var(--gold-400);
  line-height: 1;
}
.stat-suffix {
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--gold-400);
}
.stat-label {
  display: block;
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-top: 0.35rem;
}
.stat-divider {
  width: 1px;
  height: 42px;
  background: linear-gradient(to bottom, transparent, var(--glass-border), transparent);
}
.scroll-indicator {
  position: absolute;
  bottom: var(--space-2xl);
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  opacity: 0.45;
  transition: var(--t-base);
  cursor: pointer;
}
.scroll-indicator:hover { opacity: 1; }
.scroll-line {
  width: 1px; height: 42px;
  background: linear-gradient(to bottom, transparent, var(--gold-400));
  animation: scrollLine 2s ease-in-out infinite;
}
.scroll-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--gold-400);
  animation: scrollDot 2s ease-in-out infinite;
}
@keyframes scrollLine { 0%,100%{opacity:.3} 50%{opacity:1} }
@keyframes scrollDot  { 0%,100%{transform:scale(1)} 50%{transform:scale(1.5)} }

/* ===== TRUST BAR ===== */
.trust-bar {
  background: linear-gradient(90deg, rgba(19,53,104,0.25), rgba(200,169,110,0.04), rgba(19,53,104,0.25));
  border-top: 1px solid var(--glass-border);
  border-bottom: 1px solid var(--glass-border);
  padding: var(--space-lg) 0;
}
.trust-grid {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: var(--space-sm) var(--space-xl);
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-secondary);
  white-space: nowrap;
}
.trust-icon { font-size: 1rem; }
.trust-sep { width: 1px; height: 20px; background: var(--glass-border); flex-shrink: 0; }

/* ===== FEATURED PROJECTS ===== */
.featured-section { background: transparent; }

.featured-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-xl);
  margin-bottom: var(--space-2xl);
}

.feat-card {
  border-radius: var(--r-lg);
  overflow: hidden;
  background: var(--card-bg);
  border: 1px solid var(--glass-border);
  transition: var(--t-base);
}
.feat-card:hover {
  transform: translateY(-8px);
  border-color: rgba(200,169,110,0.4);
  box-shadow: var(--shadow-gold), var(--shadow-deep);
}
.feat-card-inner { display: block; color: inherit; }

.feat-img-wrap {
  position: relative;
  width: 100%;
  height: 250px;
  overflow: hidden;
  background: var(--navy-800);
}
.feat-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.65s var(--ease);
}
.feat-card:hover .feat-img { transform: scale(1.06); }

.feat-badge {
  position: absolute;
  top: var(--space-md);
  left: var(--space-md);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.28rem 0.75rem;
  border-radius: 100px;
  background: var(--gold-400);
  color: var(--navy-950);
}
.feat-badge-gold   { background: linear-gradient(135deg,#FFD700,#C8A96E); color: var(--navy-950); }
.feat-badge-green  { background: #16a34a; color: #fff; }
.feat-badge-amber  { background: #d97706; color: #fff; }

.feat-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(2,11,24,0.8) 0%, transparent 60%);
  display: flex;
  align-items: flex-end;
  justify-content: flex-end;
  padding: var(--space-md);
  opacity: 0;
  transition: var(--t-base);
}
.feat-card:hover .feat-overlay { opacity: 1; }
.feat-overlay span {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--gold-300);
  letter-spacing: 0.05em;
}

.feat-body { padding: var(--space-lg) var(--space-xl); }

.feat-type {
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold-400);
  font-weight: 600;
  margin-bottom: var(--space-xs);
}
.feat-title {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 400;
  color: var(--text-primary);
  margin-bottom: var(--space-xs);
  line-height: 1.2;
}
.feat-loc {
  font-size: 0.825rem;
  color: var(--text-muted);
  margin-bottom: var(--space-md);
}
.feat-specs {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-sm) var(--space-lg);
  margin-bottom: var(--space-lg);
  padding-bottom: var(--space-lg);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.feat-specs span {
  font-size: 0.8125rem;
  color: var(--text-secondary);
}
.feat-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: var(--space-sm);
}
.feat-price {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--gold-400);
}
.feat-roi {
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--text-muted);
  background: rgba(255,255,255,0.05);
  padding: 0.25rem 0.75rem;
  border-radius: 100px;
  border: 1px solid rgba(255,255,255,0.08);
}
.feat-roi-green {
  color: var(--green-400);
  background: rgba(74,222,128,0.08);
  border-color: rgba(74,222,128,0.2);
}

.featured-cta { text-align: center; }

/* ===== FOUNDER SECTION ===== */
.founder-section {
  position: relative;
  overflow: hidden;
  background: linear-gradient(180deg, transparent, rgba(11,34,64,0.3), transparent);
}
.founder-bg-glow {
  position: absolute;
  top: -180px; right: -180px;
  width: 560px; height: 560px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(19,53,104,0.45) 0%, transparent 72%);
  pointer-events: none;
}
.founder-grid {
  display: grid;
  grid-template-columns: 420px 1fr;
  gap: var(--space-4xl);
  align-items: start;
}

/* Image column */
.founder-img-col { position: relative; }
.founder-img-frame {
  border-radius: var(--r-xl);
  overflow: hidden;
  border: 1px solid var(--glass-border);
  background: var(--navy-800);
  box-shadow: var(--shadow-deep), 0 0 0 6px rgba(200,169,110,0.07);
  position: relative;
  aspect-ratio: 4/5;
}
.founder-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
}
.founder-exp-badge {
  position: absolute;
  bottom: var(--space-xl);
  right: calc(-1 * var(--space-lg));
  background: linear-gradient(135deg, var(--gold-400), var(--gold-500));
  color: var(--navy-950);
  padding: var(--space-lg) var(--space-xl);
  border-radius: var(--r-md);
  text-align: center;
  box-shadow: 0 12px 35px rgba(200,169,110,0.45);
}
.founder-exp-num {
  display: block;
  font-family: var(--font-display);
  font-size: 2.25rem;
  font-weight: 700;
  line-height: 1;
}
.founder-exp-label {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  line-height: 1.4;
}
.founder-award-pill {
  position: absolute;
  top: var(--space-xl);
  right: calc(-1 * var(--space-md));
  background: var(--navy-800);
  border: 1px solid var(--glass-border);
  border-radius: var(--r-md);
  padding: var(--space-sm) var(--space-md);
  font-size: 0.78rem;
  font-weight: 500;
  color: var(--text-primary);
  backdrop-filter: blur(10px);
  white-space: nowrap;
  box-shadow: var(--shadow-deep);
}

/* Text column */
.founder-text-col { padding-top: var(--space-sm); }
.founder-role-tag {
  font-size: 0.875rem;
  color: var(--silver-400);
  letter-spacing: 0.04em;
  margin-bottom: var(--space-xl);
}
.founder-bio {
  font-size: 1rem;
  color: var(--text-secondary);
  line-height: 1.85;
  margin-bottom: var(--space-lg);
}
.founder-stats-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-md);
  margin: var(--space-xl) 0;
  padding: var(--space-xl);
  background: rgba(11,34,64,0.5);
  border: 1px solid var(--glass-border);
  border-radius: var(--r-md);
}
.founder-stat { text-align: center; }
.founder-stat-num {
  font-family: var(--font-display);
  font-size: 1.75rem;
  font-weight: 600;
  color: var(--gold-400);
  line-height: 1;
  display: block;
  margin-bottom: 0.35rem;
}
.founder-stat-label {
  font-size: 0.75rem;
  color: var(--text-muted);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.founder-achievements {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
  margin-bottom: var(--space-xl);
}
.achievement {
  display: flex;
  align-items: flex-start;
  gap: var(--space-md);
  padding: var(--space-md) var(--space-lg);
  background: rgba(11,34,64,0.5);
  border: 1px solid var(--glass-border);
  border-radius: var(--r-md);
  transition: var(--t-base);
}
.achievement:hover {
  border-color: rgba(200,169,110,0.38);
  background: rgba(11,34,64,0.8);
  transform: translateX(4px);
}
.achievement-icon { font-size: 1.4rem; flex-shrink: 0; margin-top: 2px; }
.achievement strong {
  display: block;
  font-size: 0.9375rem;
  color: var(--text-primary);
  margin-bottom: 0.2rem;
}
.achievement span { font-size: 0.8125rem; color: var(--text-muted); }
.founder-actions {
  display: flex;
  gap: var(--space-md);
  flex-wrap: wrap;
}

/* ===== WHY GURGAON ===== */
.why-section { background: transparent; }
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-lg);
}
.why-card {
  background: var(--card-bg);
  border: 1px solid var(--glass-border);
  border-radius: var(--r-lg);
  padding: var(--space-xl) var(--space-lg);
  transition: var(--t-base);
}
.why-card:hover {
  transform: translateY(-6px);
  border-color: rgba(200,169,110,0.38);
  box-shadow: var(--shadow-gold);
}
.why-icon { font-size: 2rem; margin-bottom: var(--space-md); }
.why-card h3 {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 400;
  color: var(--text-primary);
  margin-bottom: var(--space-sm);
}
.why-card p { font-size: 0.875rem; color: var(--text-muted); line-height: 1.75; }

/* ===== SERVICES ===== */
.services-section {
  background: linear-gradient(180deg, transparent, rgba(11,34,64,0.25), transparent);
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-lg);
}
.service-card {
  background: var(--card-bg);
  border: 1px solid var(--glass-border);
  border-radius: var(--r-lg);
  padding: var(--space-xl) var(--space-lg);
  transition: var(--t-base);
}
.service-card:hover {
  transform: translateY(-6px);
  border-color: rgba(200,169,110,0.38);
  box-shadow: var(--shadow-gold);
}
.svc-icon { font-size: 2rem; margin-bottom: var(--space-md); }
.service-card h3 {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 400;
  color: var(--text-primary);
  margin-bottom: var(--space-sm);
}
.service-card p { font-size: 0.875rem; color: var(--text-muted); line-height: 1.75; }

/* ===== TESTIMONIALS ===== */
.testimonials-section { background: transparent; }
.testimonial-slider { max-width: 860px; margin: 0 auto; overflow: hidden; }
.testimonial-track { display: flex; transition: transform 0.55s var(--ease); }
.testimonial-card {
  flex: 0 0 100%;
  padding: var(--space-3xl);
  background: var(--card-bg);
  border: 1px solid var(--glass-border);
  border-radius: var(--r-xl);
  text-align: center;
}
.testimonial-stars {
  color: var(--gold-400);
  font-size: 1.1rem;
  letter-spacing: 0.15em;
  margin-bottom: var(--space-lg);
}
.testimonial-quote {
  font-family: var(--font-display);
  font-size: clamp(1.1rem, 2.5vw, 1.45rem);
  font-weight: 300;
  font-style: italic;
  color: var(--text-primary);
  line-height: 1.65;
  margin-bottom: var(--space-xl);
}
.testimonial-author { display: flex; flex-direction: column; align-items: center; gap: 0.25rem; }
.testimonial-name { font-size: 0.9375rem; font-weight: 600; color: var(--text-primary); }
.testimonial-title { font-size: 0.8125rem; color: var(--text-muted); }
.testimonial-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-lg);
  margin-top: var(--space-xl);
}
.tcontrol-btn {
  width: 44px; height: 44px;
  display: flex; align-items: center; justify-content: center;
  background: transparent;
  border: 1px solid var(--glass-border);
  border-radius: 50%;
  color: var(--text-secondary);
  font-size: 1.2rem;
  cursor: pointer;
  transition: var(--t-base);
}
.tcontrol-btn:hover { border-color: var(--gold-400); color: var(--gold-400); transform: scale(1.1); }
.testimonial-dots { display: flex; gap: 0.5rem; }
.tdot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--text-muted);
  cursor: pointer;
  transition: var(--t-base);
}
.tdot.active { background: var(--gold-400); width: 20px; border-radius: 3px; }

/* ===== CATALOG CTA ===== */
.catalog-section { background: transparent; }
.catalog-banner {
  background: linear-gradient(135deg, rgba(19,53,104,0.85), rgba(11,34,64,0.95));
  border: 1px solid var(--glass-border);
  border-radius: var(--r-xl);
  padding: var(--space-3xl) var(--space-3xl);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-xl);
  flex-wrap: wrap;
  box-shadow: var(--shadow-deep), inset 0 1px 0 rgba(200,169,110,0.1);
}
.catalog-text { flex: 1; min-width: 280px; }
.catalog-title {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  font-weight: 300;
  color: var(--text-primary);
  line-height: 1.2;
  margin-bottom: var(--space-sm);
}
.catalog-desc {
  font-size: 0.9375rem;
  color: var(--text-secondary);
  line-height: 1.7;
  max-width: 480px;
}

/* ===== CONTACT ===== */
.contact-section {
  background: linear-gradient(180deg, transparent, rgba(11,34,64,0.2));
}
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.25fr;
  gap: var(--space-4xl);
  align-items: start;
}
.contact-desc {
  font-size: 1rem;
  color: var(--text-secondary);
  line-height: 1.75;
  margin-bottom: var(--space-2xl);
}
.contact-details { display: flex; flex-direction: column; gap: var(--space-lg); margin-bottom: var(--space-xl); }
.contact-item { display: flex; align-items: flex-start; gap: var(--space-md); }
.contact-icon { font-size: 1.25rem; flex-shrink: 0; margin-top: 2px; }
.contact-item strong {
  display: block;
  font-size: 0.72rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold-400);
  margin-bottom: 0.25rem;
  font-weight: 600;
}
.contact-item a, .contact-item span {
  font-size: 0.9375rem;
  color: var(--text-secondary);
  transition: var(--t-fast);
  line-height: 1.6;
}
.contact-item a:hover { color: var(--gold-400); }
.contact-social { display: flex; gap: var(--space-sm); flex-wrap: wrap; }
.social-link {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
  padding: 0.5rem 1rem;
  border: 1px solid var(--glass-border);
  border-radius: var(--r-sm);
  transition: var(--t-base);
}
.social-link:hover { border-color: var(--gold-400); color: var(--gold-400); }
.social-link-all {
  background: linear-gradient(135deg, var(--gold-400), var(--gold-500));
  color: var(--navy-950) !important;
  border-color: var(--gold-400) !important;
  font-weight: 700;
}
.social-link-all:hover {
  box-shadow: 0 4px 15px rgba(200,169,110,0.4);
  transform: translateY(-2px);
}
.footer-linktree {
  color: var(--gold-400) !important;
  font-weight: 600;
}
.contact-form-wrap {
  background: var(--card-bg);
  border: 1px solid var(--glass-border);
  border-radius: var(--r-xl);
  padding: var(--space-2xl);
  box-shadow: var(--shadow-deep);
}
.contact-form { display: flex; flex-direction: column; gap: var(--space-lg); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: var(--space-lg); }
.form-group { display: flex; flex-direction: column; gap: var(--space-xs); }
.form-group label {
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold-400);
  font-weight: 600;
}
.form-group input,
.form-group select,
.form-group textarea {
  background: rgba(6,20,35,0.7);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--r-sm);
  padding: 0.875rem 1.1rem;
  color: var(--text-primary);
  font-family: var(--font-body);
  font-size: 0.9375rem;
  transition: var(--t-fast);
  outline: none;
  resize: none;
}
.form-group select option { background: var(--navy-800); }
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--gold-400);
  background: rgba(6,20,35,0.95);
  box-shadow: 0 0 0 3px rgba(200,169,110,0.1);
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: var(--text-muted); }
.form-note { font-size: 0.8rem; color: var(--text-muted); text-align: center; }
.form-success {
  text-align: center;
  padding: var(--space-md);
  background: rgba(39,174,96,0.1);
  border: 1px solid rgba(39,174,96,0.3);
  border-radius: var(--r-md);
  color: #6fcf97;
  font-size: 0.9375rem;
}

/* ===== FOOTER ===== */
.footer {
  background: var(--navy-900);
  border-top: 1px solid var(--glass-border);
}
.footer-container {
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 var(--space-xl);
}
.footer-top {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr 1fr;
  gap: var(--space-2xl);
  padding: var(--space-3xl) 0 var(--space-2xl);
}
.footer-logo { margin-bottom: var(--space-md); }
.footer-brand p {
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.75;
  margin-bottom: var(--space-sm);
}
.footer-phone { color: var(--gold-400) !important; font-weight: 500; }
.footer-links-group h4 {
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold-400);
  font-weight: 600;
  margin-bottom: var(--space-lg);
}
.footer-links-group ul { display: flex; flex-direction: column; gap: var(--space-sm); }
.footer-links-group a { font-size: 0.875rem; color: var(--text-muted); transition: var(--t-fast); }
.footer-links-group a:hover { color: var(--gold-400); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.06);
  padding: var(--space-lg) 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: var(--space-md);
}
.footer-bottom p { font-size: 0.8125rem; color: var(--text-muted); }
.footer-legal { display: flex; gap: var(--space-lg); }
.footer-legal a { font-size: 0.8125rem; color: var(--text-muted); transition: var(--t-fast); }
.footer-legal a:hover { color: var(--gold-400); }

/* ===== WHATSAPP FLOAT ===== */
.whatsapp-float {
  position: fixed;
  bottom: 5.5rem; right: var(--space-xl);
  width: 50px; height: 50px;
  background: #25D366;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: #fff;
  box-shadow: 0 4px 20px rgba(37,211,102,0.4);
  z-index: 500;
  transition: var(--t-base);
}
.whatsapp-float:hover { transform: scale(1.15) translateY(-2px); box-shadow: 0 8px 30px rgba(37,211,102,0.6); }

/* ===== BACK TO TOP ===== */
.back-to-top {
  position: fixed;
  bottom: var(--space-xl); right: var(--space-xl);
  width: 44px; height: 44px;
  display: flex; align-items: center; justify-content: center;
  background: linear-gradient(135deg, var(--gold-400), var(--gold-500));
  color: var(--navy-950);
  border: none;
  border-radius: 50%;
  font-size: 1.1rem;
  cursor: pointer;
  transition: var(--t-base);
  z-index: 500;
  opacity: 0;
  pointer-events: none;
  box-shadow: 0 4px 15px rgba(200,169,110,0.4);
}
.back-to-top.visible { opacity: 1; pointer-events: all; }
.back-to-top:hover { transform: translateY(-3px) scale(1.1); }

/* ===== ANIMATIONS ===== */
.animate-in {
  opacity: 0;
  transform: translateY(28px);
  animation: animIn 0.85s var(--ease) forwards;
}
.delay-1 { animation-delay: 0.2s; }
.delay-2 { animation-delay: 0.4s; }
.delay-3 { animation-delay: 0.6s; }
.delay-4 { animation-delay: 0.85s; }
@keyframes animIn { to { opacity: 1; transform: translateY(0); } }

.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ===== RESPONSIVE ===== */
@media (max-width: 1200px) {
  .founder-grid { grid-template-columns: 360px 1fr; gap: var(--space-3xl); }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .why-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 1024px) {
  :root { --section-py: 4.5rem; }
  .founder-grid { grid-template-columns: 1fr; }
  .founder-img-col { max-width: 440px; margin: 0 auto; }
  .contact-grid { grid-template-columns: 1fr; gap: var(--space-2xl); }
  .footer-top { grid-template-columns: 1fr 1fr 1fr; gap: var(--space-xl); }
  .featured-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  :root { --section-py: 3.5rem; }
  .nav-links, .nav-cta { display: none; }
  .hamburger { display: flex; }
  .nav-logo-img { height: 38px; width: 38px; }
  .logo-text { font-size: 1.1rem; }
  .nav-links.open {
    display: flex;
    flex-direction: column;
    position: fixed;
    inset: 0;
    background: rgba(6,20,35,0.98);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    align-items: center;
    justify-content: center;
    gap: var(--space-lg);
    z-index: 999;
  }
  .nav-links.open .nav-link { font-size: 1.5rem; }
  .hero-title { font-size: clamp(2.5rem, 10vw, 3.5rem); }
  .featured-grid { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr; }
  .services-grid { grid-template-columns: 1fr; }
  .founder-stats-row { grid-template-columns: repeat(3, 1fr); }
  .form-row { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .trust-sep { display: none; }
  .catalog-banner { flex-direction: column; text-align: center; padding: var(--space-xl); }
  .catalog-banner .btn { width: 100%; justify-content: center; }
  .founder-exp-badge { right: 0; }
  .founder-award-pill { right: 0; font-size: 0.72rem; }
  .hero-stats { gap: var(--space-lg); }
  .stat-divider { display: none; }
}

@media (max-width: 480px) {
  .hero-actions { flex-direction: column; align-items: stretch; }
  .btn { justify-content: center; }
  .testimonial-card { padding: var(--space-xl) var(--space-lg); }
  .contact-form-wrap { padding: var(--space-xl); }
  .founder-stats-row { grid-template-columns: 1fr; }
  .feat-img-wrap { height: 200px; }
}
