/* ═══════════════════════════════════════════════
   VASTUDHARMA — SACRED GEOMETRY DESIGN SYSTEM
   Dr. Dharmaji Bodke | Vastu Consultant
   ═══════════════════════════════════════════════ */

/* ── CSS VARIABLES ── */
:root {
  --bg-primary: #0a1628;
  --bg-secondary: #0f1e38;
  --bg-card: rgba(15, 30, 56, 0.7);
  --gold: #c9a84c;
  --gold-light: #e8c95a;
  --gold-dark: #8a7230;
  --terracotta: #d4543a;
  --ivory: #f0e6d3;
  --ivory-muted: rgba(240, 230, 211, 0.6);
  --text-primary: #f0e6d3;
  --text-secondary: rgba(240, 230, 211, 0.7);
  --glass: rgba(15, 30, 56, 0.6);
  --glass-border: rgba(201, 168, 76, 0.2);
  --font-heading: 'Cinzel', serif;
  --font-body: 'Outfit', sans-serif;
  --radius: 16px;
  --radius-sm: 8px;
  --transition: 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* ── RESET ── */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-body);
  background: var(--bg-primary);
  color: var(--text-primary);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
input, select, textarea { font-family: var(--font-body); }

.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }

/* ── PAGE LOADER ── */
.page-loader {
  position: fixed; inset: 0; z-index: 10000;
  background: var(--bg-primary);
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  transition: opacity 0.8s ease, visibility 0.8s ease;
}
.page-loader.hidden { opacity: 0; visibility: hidden; pointer-events: none; }
.mandala-svg { width: 100px; height: 100px; }
.mandala-ring { transform-origin: center; }
.ring1 { animation: rotateRing 8s linear infinite; }
.ring2 { animation: rotateRing 6s linear infinite reverse; }
.ring3 { animation: pulseRing 2s ease-in-out infinite; }
.mandala-diamond { animation: rotateRing 12s linear infinite; }
.mandala-center { animation: pulseCenter 1.5s ease-in-out infinite; }
@keyframes rotateRing { to { transform: rotate(360deg); } }
@keyframes pulseRing { 0%, 100% { r: 25; opacity: 0.5; } 50% { r: 28; opacity: 1; } }
@keyframes pulseCenter { 0%, 100% { r: 5; } 50% { r: 7; } }
.loader-text {
  margin-top: 24px; font-family: var(--font-heading); color: var(--gold);
  font-size: 0.95rem; letter-spacing: 3px; text-transform: uppercase;
  animation: fadeInOut 2s ease-in-out infinite;
}
@keyframes fadeInOut { 0%, 100% { opacity: 0.4; } 50% { opacity: 1; } }

/* ── NAVBAR ── */
.navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  padding: 16px 0;
  background: rgba(10, 22, 40, 0.85);
  backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(201, 168, 76, 0.1);
  transition: var(--transition);
}
.navbar.scrolled { padding: 10px 0; background: rgba(10, 22, 40, 0.95); }
.nav-container { max-width: 1200px; margin: 0 auto; padding: 0 24px; display: flex; align-items: center; justify-content: space-between; }
.nav-logo { display: flex; align-items: center; gap: 12px; }
.logo-icon { width: 40px; height: 40px; flex-shrink: 0; }
.logo-img { width: 100%; height: 100%; border-radius: 50%; object-fit: cover; }
.footer-logo-img { width: 32px; height: 32px; border-radius: 50%; object-fit: cover; }
.logo-text { display: flex; flex-direction: column; }
.logo-name { font-family: var(--font-heading); font-size: 1.1rem; font-weight: 700; color: var(--gold); letter-spacing: 3px; }
.logo-tagline { font-size: 0.55rem; color: var(--gold-dark); letter-spacing: 1px; margin-top: 2px; }
.nav-links { display: flex; align-items: center; gap: 28px; }
.nav-link {
  font-size: 0.85rem; font-weight: 500; color: var(--text-secondary);
  letter-spacing: 0.5px; transition: var(--transition); position: relative;
}
.nav-link::after {
  content: ''; position: absolute; bottom: -4px; left: 0; width: 0; height: 1px;
  background: var(--gold); transition: width 0.3s ease;
}
.nav-link:hover, .nav-link.active { color: var(--gold); }
.nav-link:hover::after, .nav-link.active::after { width: 100%; }
.nav-btn-cta {
  padding: 10px 24px; background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: var(--bg-primary); font-weight: 600; font-size: 0.8rem; border-radius: 50px;
  letter-spacing: 1px; text-transform: uppercase; transition: var(--transition);
}
.nav-btn-cta:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(201, 168, 76, 0.3); }
.nav-toggle { display: none; flex-direction: column; gap: 5px; padding: 4px; }
.nav-toggle span { width: 24px; height: 2px; background: var(--gold); transition: var(--transition); }

/* ── HERO ── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0; z-index: 0;
}
.hero-bg-img {
  width: 100%; height: 100%; object-fit: cover;
  transform: scale(1.1);
}
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(10,22,40,0.7) 0%, rgba(10,22,40,0.5) 40%, rgba(10,22,40,0.85) 100%);
}
.hero-particles {
  position: absolute; inset: 0; z-index: 1;
  pointer-events: none;
}
.hero-content {
  position: relative; z-index: 2;
  max-width: 800px; padding: 120px 24px 80px;
}
.hero-badge {
  display: inline-flex; align-items: center; gap: 10px;
  background: rgba(201, 168, 76, 0.1); border: 1px solid rgba(201, 168, 76, 0.3);
  padding: 8px 20px; border-radius: 50px;
  font-size: 0.7rem; letter-spacing: 3px; color: var(--gold);
  text-transform: uppercase; margin-bottom: 24px;
}
.badge-icon { font-size: 1rem; }
.hero-title {
  font-family: var(--font-heading); font-size: clamp(2.5rem, 6vw, 4.5rem);
  font-weight: 700; line-height: 1.15; margin-bottom: 24px;
  color: var(--ivory);
}
.hero-title em {
  font-style: normal;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
}
.title-line { display: block; }
.hero-desc {
  font-size: 1.1rem; line-height: 1.7; color: var(--text-secondary);
  max-width: 600px; margin-bottom: 36px;
}
.hero-actions { display: flex; gap: 16px; margin-bottom: 60px; flex-wrap: wrap; }

/* Buttons */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 16px 32px; border-radius: 50px;
  font-size: 0.9rem; font-weight: 600; letter-spacing: 0.5px;
  transition: var(--transition); cursor: pointer;
}
.btn-gold {
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: var(--bg-primary);
}
.btn-gold:hover { transform: translateY(-3px); box-shadow: 0 12px 32px rgba(201, 168, 76, 0.35); }
.btn-outline {
  background: transparent;
  border: 1px solid rgba(201, 168, 76, 0.4);
  color: var(--gold);
}
.btn-outline:hover { background: rgba(201, 168, 76, 0.1); border-color: var(--gold); }
.btn-whatsapp {
  background: #25d366; color: #fff;
}
.btn-whatsapp:hover { background: #1fba59; transform: translateY(-2px); box-shadow: 0 8px 24px rgba(37, 211, 102, 0.3); }
.btn-insta {
  background: linear-gradient(135deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
  color: #fff; padding: 14px 28px;
}
.btn-insta:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(220, 39, 67, 0.3); }
.full-width { width: 100%; justify-content: center; }

/* Hero Stats */
.hero-stats {
  display: flex; gap: 24px; flex-wrap: wrap; align-items: center;
}
.stat-item { text-align: left; }
.stat-number {
  font-family: var(--font-heading); font-size: 2.5rem; font-weight: 700;
  color: var(--gold);
}
.stat-plus { font-family: var(--font-heading); font-size: 1.5rem; color: var(--gold-light); }
.stat-star { font-size: 1.8rem; color: var(--gold-light); margin-left: 4px; }
.stat-label {
  display: block; font-size: 0.7rem; letter-spacing: 2px; color: var(--text-secondary);
  margin-top: 4px; text-transform: uppercase;
}
.stat-divider { width: 1px; height: 50px; background: rgba(201, 168, 76, 0.2); }

/* Scroll Indicator */
.scroll-indicator {
  position: absolute; bottom: 32px; left: 50%; transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 8px; z-index: 2;
}
.scroll-mouse {
  width: 24px; height: 40px; border: 2px solid rgba(201, 168, 76, 0.4);
  border-radius: 12px; display: flex; justify-content: center; padding-top: 8px;
}
.scroll-dot {
  width: 3px; height: 8px; background: var(--gold); border-radius: 2px;
  animation: scrollAnim 2s ease-in-out infinite;
}
@keyframes scrollAnim { 0%, 100% { transform: translateY(0); opacity: 1; } 50% { transform: translateY(12px); opacity: 0; } }
.scroll-indicator span { font-size: 0.65rem; letter-spacing: 3px; color: var(--text-secondary); text-transform: uppercase; }

/* ── MARQUEE ── */
.marquee-strip {
  background: linear-gradient(90deg, var(--gold), var(--gold-dark), var(--gold));
  padding: 14px 0; overflow: hidden; white-space: nowrap;
}
.marquee-track {
  display: inline-flex; gap: 48px;
  animation: marqueeScroll 30s linear infinite;
}
.marquee-track span {
  font-family: var(--font-heading); font-size: 0.8rem; font-weight: 600;
  color: var(--bg-primary); letter-spacing: 2px; text-transform: uppercase;
  flex-shrink: 0;
}
@keyframes marqueeScroll { to { transform: translateX(-50%); } }

/* ── SECTION COMMON ── */
section { padding: 100px 0; position: relative; }
.section-label {
  display: flex; align-items: center; gap: 12px; margin-bottom: 16px;
}
.section-label.center { justify-content: center; }
.section-label span {
  font-size: 0.75rem; letter-spacing: 3px; text-transform: uppercase; color: var(--gold);
  font-weight: 500;
}
.label-line { width: 40px; height: 1px; background: var(--gold-dark); }
.section-title {
  font-family: var(--font-heading); font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 700; line-height: 1.3; margin-bottom: 16px;
}
.section-title.center { text-align: center; }
.section-title em {
  font-style: normal;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
}
.section-subtitle { text-align: center; color: var(--text-secondary); font-size: 1rem; max-width: 500px; margin: 0 auto; }
.section-header { margin-bottom: 60px; }

/* ── ABOUT ── */
.about { background: var(--bg-secondary); }
.about-grid { display: grid; grid-template-columns: 1fr 1.3fr; gap: 60px; align-items: center; }
.about-visual { position: relative; }
.about-image-frame {
  position: relative;
  aspect-ratio: 3/4; border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--glass-border);
}
.frame-ornament {
  position: absolute; width: 40px; height: 40px;
  border: 2px solid var(--gold-dark);
}
.frame-ornament.top-left { top: -1px; left: -1px; border-right: none; border-bottom: none; }
.frame-ornament.top-right { top: -1px; right: -1px; border-left: none; border-bottom: none; }
.frame-ornament.bottom-left { bottom: -1px; left: -1px; border-right: none; border-top: none; }
.frame-ornament.bottom-right { bottom: -1px; right: -1px; border-left: none; border-top: none; }
.about-image-placeholder {
  width: 100%; height: 100%;
  background: linear-gradient(135deg, #1a2744, #0d1a33);
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 12px;
}
.placeholder-icon { font-size: 4rem; }
.about-image-placeholder p { font-family: var(--font-heading); font-size: 1.2rem; color: var(--gold); }
.about-image-placeholder span { font-size: 0.8rem; color: var(--text-secondary); }
.about-experience-badge {
  position: absolute; bottom: -20px; right: -20px;
  width: 120px; height: 120px; border-radius: 50%;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  box-shadow: 0 8px 32px rgba(201, 168, 76, 0.3);
}
.exp-number { font-family: var(--font-heading); font-size: 2rem; font-weight: 800; color: var(--bg-primary); }
.exp-text { font-size: 0.65rem; color: var(--bg-primary); text-align: center; font-weight: 600; line-height: 1.3; }
.about-text { color: var(--text-secondary); line-height: 1.8; margin-bottom: 16px; font-size: 0.95rem; }
.about-highlights { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-top: 28px; }
.highlight-item {
  display: flex; align-items: center; gap: 12px;
  padding: 14px; border-radius: var(--radius-sm);
  background: rgba(201, 168, 76, 0.05);
  border: 1px solid rgba(201, 168, 76, 0.1);
}
.highlight-icon { font-size: 1.5rem; }
.highlight-item strong { display: block; font-size: 0.85rem; color: var(--ivory); }
.highlight-item span { font-size: 0.75rem; color: var(--text-secondary); }

/* ── BIG TEXT ── */
.big-text-section { padding: 80px 0; background: var(--bg-primary); text-align: center; }
.big-reveal-text {
  font-family: var(--font-heading); font-size: clamp(1.2rem, 2.5vw, 1.8rem);
  line-height: 1.8; color: var(--ivory); max-width: 900px; margin: 0 auto;
  font-weight: 400; font-style: italic;
}
.big-reveal-author {
  display: block; margin-top: 20px; font-size: 0.85rem;
  color: var(--gold); letter-spacing: 2px;
}

/* ── SERVICES 3D TILES ── */
.services { background: var(--bg-primary); }
.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.service-tile {
  position: relative;
  background: var(--bg-card);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius);
  padding: 32px 24px;
  cursor: pointer;
  transition: var(--transition);
  transform-style: preserve-3d;
  perspective: 1000px;
  overflow: hidden;
}
.service-tile:hover {
  transform: translateY(-8px);
  border-color: rgba(201, 168, 76, 0.4);
  box-shadow: 0 20px 60px rgba(201, 168, 76, 0.15);
}
.tile-glow {
  position: absolute; top: 50%; left: 50%; width: 150%; height: 150%;
  transform: translate(-50%, -50%);
  background: radial-gradient(circle, rgba(201, 168, 76, 0.08) 0%, transparent 70%);
  opacity: 0; transition: opacity 0.4s ease;
  pointer-events: none;
}
.service-tile:hover .tile-glow { opacity: 1; }
.tile-content { position: relative; z-index: 2; }
.tile-icon { font-size: 2.5rem; margin-bottom: 16px; }
.tile-title {
  font-family: var(--font-heading); font-size: 1rem; font-weight: 600;
  margin-bottom: 8px; color: var(--ivory);
}
.tile-desc { font-size: 0.82rem; color: var(--text-secondary); line-height: 1.5; margin-bottom: 16px; }
.tile-price {
  font-size: 0.75rem; color: var(--gold); font-weight: 600;
  padding: 6px 12px; background: rgba(201, 168, 76, 0.1);
  border-radius: 50px; display: inline-block; margin-bottom: 16px;
}
.tile-cta {
  display: flex; align-items: center; gap: 8px;
  font-size: 0.8rem; color: var(--gold); font-weight: 500;
  opacity: 0; transform: translateY(8px); transition: var(--transition);
}
.service-tile:hover .tile-cta { opacity: 1; transform: translateY(0); }
.tile-compass {
  position: absolute; bottom: -10px; right: -10px; width: 80px; height: 80px;
  opacity: 0.3; transition: var(--transition);
}
.service-tile:hover .tile-compass { opacity: 0.6; }

/* ── INFO OVERLAY (DRAWER) ── */
.info-overlay {
  position: fixed; inset: 0; z-index: 5000;
  background: rgba(10, 22, 40, 0.85);
  backdrop-filter: blur(8px);
  opacity: 0; visibility: hidden;
  transition: opacity 0.4s ease, visibility 0.4s ease;
}
.info-overlay.active { opacity: 1; visibility: visible; }
.info-panel {
  position: absolute; right: 0; top: 0; bottom: 0;
  width: min(600px, 90vw);
  background: var(--bg-secondary);
  border-left: 1px solid var(--glass-border);
  overflow-y: auto;
  transform: translateX(100%);
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  padding: 40px 32px;
}
.info-overlay.active .info-panel { transform: translateX(0); }
.info-close {
  position: sticky; top: 0; float: right;
  width: 40px; height: 40px;
  display: flex; align-items: center; justify-content: center;
  color: var(--ivory); background: rgba(201, 168, 76, 0.1);
  border-radius: 50%; border: 1px solid var(--glass-border);
  transition: var(--transition); z-index: 10;
}
.info-close:hover { background: rgba(201, 168, 76, 0.2); color: var(--gold); }
.info-content h2 {
  font-family: var(--font-heading); font-size: 1.6rem; color: var(--gold);
  margin-bottom: 16px; margin-top: 16px;
}
.info-content .info-desc {
  color: var(--text-secondary); line-height: 1.7; margin-bottom: 24px; font-size: 0.95rem;
}
.info-content .info-stat-row {
  display: flex; gap: 16px; margin-bottom: 24px;
}
.info-content .info-stat {
  flex: 1; padding: 16px; background: rgba(201, 168, 76, 0.05);
  border: 1px solid rgba(201, 168, 76, 0.15); border-radius: var(--radius-sm);
  text-align: center;
}
.info-content .info-stat strong {
  display: block; font-family: var(--font-heading); font-size: 1.3rem; color: var(--gold);
}
.info-content .info-stat span { font-size: 0.75rem; color: var(--text-secondary); }
.info-content h3 {
  font-family: var(--font-heading); font-size: 1rem; color: var(--ivory);
  margin: 24px 0 12px; letter-spacing: 1px;
}
.info-content ul {
  list-style: none; padding: 0;
}
.info-content ul li {
  padding: 10px 0; border-bottom: 1px solid rgba(201, 168, 76, 0.08);
  color: var(--text-secondary); font-size: 0.9rem;
  display: flex; align-items: flex-start; gap: 10px;
}
.info-content ul li::before {
  content: '✦'; color: var(--gold); font-size: 0.7rem; margin-top: 3px; flex-shrink: 0;
}
.info-content .info-cta {
  display: block; text-align: center; margin-top: 32px;
  padding: 16px 32px; background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: var(--bg-primary); font-weight: 700; border-radius: 50px;
  font-size: 0.9rem; letter-spacing: 1px; transition: var(--transition);
}
.info-content .info-cta:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(201, 168, 76, 0.3); }

/* ── PROCESS ── */
.process { background: var(--bg-secondary); }
.process-timeline {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px;
  position: relative;
}
.timeline-line {
  position: absolute; top: 50px; left: 10%; right: 10%;
  height: 2px; background: linear-gradient(90deg, transparent, var(--gold-dark), var(--gold), var(--gold-dark), transparent);
  z-index: 0;
}
.process-step {
  position: relative; z-index: 1;
  text-align: center; padding: 32px 16px;
  background: var(--bg-card);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius);
  transition: var(--transition);
}
.process-step:hover { transform: translateY(-8px); border-color: rgba(201, 168, 76, 0.3); }
.step-number {
  font-family: var(--font-heading); font-size: 2.5rem; font-weight: 800;
  color: rgba(201, 168, 76, 0.15); position: absolute; top: 8px; right: 12px;
}
.step-icon { font-size: 2.5rem; margin-bottom: 16px; }
.process-step h3 {
  font-family: var(--font-heading); font-size: 0.95rem; color: var(--gold);
  margin-bottom: 10px;
}
.process-step p { font-size: 0.82rem; color: var(--text-secondary); line-height: 1.6; }

/* ── WHY SECTION ── */
.why-section { background: var(--bg-primary); }
.why-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.why-card {
  padding: 36px 28px; background: var(--bg-card);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius); transition: var(--transition);
}
.why-card:hover { transform: translateY(-6px); border-color: rgba(201, 168, 76, 0.3); }
.why-icon { font-size: 2.5rem; margin-bottom: 16px; }
.why-card h3 {
  font-family: var(--font-heading); font-size: 1rem; color: var(--ivory);
  margin-bottom: 10px;
}
.why-card p { font-size: 0.85rem; color: var(--text-secondary); line-height: 1.6; }

/* ── GALLERY ── */
.gallery { background: var(--bg-secondary); }
.gallery-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px;
  margin-bottom: 60px;
}
.gallery-item { border-radius: var(--radius); overflow: hidden; }
.gallery-item.large { grid-column: span 2; }
.gallery-item {
  position: relative; overflow: hidden;
  border: 1px solid var(--glass-border); border-radius: var(--radius);
}
.gallery-img {
  width: 100%; height: 280px; object-fit: cover;
  transition: transform 0.6s ease;
}
.gallery-item:hover .gallery-img { transform: scale(1.08); }
.gallery-caption {
  position: absolute; bottom: 0; left: 0; right: 0;
  padding: 16px; background: linear-gradient(transparent, rgba(10, 22, 40, 0.9));
  font-family: var(--font-heading); font-size: 0.85rem; color: var(--gold);
  letter-spacing: 1px;
}
.about-photo {
  width: 100%; height: 100%; object-fit: cover;
}
.youtube-section { text-align: center; }
.yt-title {
  font-family: var(--font-heading); font-size: 1.3rem; color: var(--ivory);
  margin-bottom: 24px;
}
.yt-wrapper {
  position: relative; padding-bottom: 56.25%; height: 0;
  border-radius: var(--radius); overflow: hidden;
  border: 1px solid var(--glass-border);
  max-width: 800px; margin: 0 auto;
}
.yt-wrapper iframe {
  position: absolute; inset: 0; width: 100%; height: 100%;
}

/* ── TESTIMONIALS ── */
.testimonials { background: var(--bg-primary); }
.testimonials-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; margin-bottom: 48px; }
.testimonial-card {
  padding: 32px; background: var(--bg-card);
  border: 1px solid var(--glass-border); border-radius: var(--radius);
  transition: var(--transition);
}
.testimonial-card:hover { border-color: rgba(201, 168, 76, 0.3); transform: translateY(-4px); }
.tc-stars { color: var(--gold); font-size: 1.2rem; margin-bottom: 16px; letter-spacing: 2px; }
.tc-text { font-size: 0.92rem; color: var(--text-secondary); line-height: 1.7; margin-bottom: 20px; font-style: italic; }
.tc-author { display: flex; align-items: center; gap: 12px; }
.tc-avatar {
  width: 40px; height: 40px; border-radius: 50%;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  display: flex; align-items: center; justify-content: center;
  color: var(--bg-primary); font-weight: 700; font-size: 1rem;
}
.tc-author strong { display: block; font-size: 0.9rem; color: var(--ivory); }
.tc-author span { font-size: 0.75rem; color: var(--text-secondary); }
.social-cta { text-align: center; }
.social-cta p { color: var(--text-secondary); font-size: 0.9rem; margin-bottom: 16px; }

/* ── CONTACT ── */
.contact { background: var(--bg-secondary); }
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; }
.contact-desc { color: var(--text-secondary); line-height: 1.7; margin-bottom: 28px; font-size: 0.95rem; }
.contact-details { display: flex; flex-direction: column; gap: 16px; margin-bottom: 28px; }
.contact-item {
  display: flex; align-items: flex-start; gap: 16px;
  padding: 14px; border-radius: var(--radius-sm);
  background: rgba(201, 168, 76, 0.03);
  border: 1px solid rgba(201, 168, 76, 0.08);
  transition: var(--transition);
}
.contact-item:hover { border-color: rgba(201, 168, 76, 0.2); background: rgba(201, 168, 76, 0.06); }
.ci-icon {
  width: 40px; height: 40px; border-radius: 50%;
  background: rgba(201, 168, 76, 0.1); display: flex; align-items: center; justify-content: center;
  color: var(--gold); flex-shrink: 0;
}
.contact-item strong { display: block; font-size: 0.85rem; color: var(--ivory); margin-bottom: 2px; }
.contact-item span { font-size: 0.82rem; color: var(--text-secondary); line-height: 1.4; }
.contact-form-wrap { }
.contact-form {
  background: var(--bg-card); border: 1px solid var(--glass-border);
  border-radius: var(--radius); padding: 32px; margin-bottom: 20px;
}
.contact-form h3 {
  font-family: var(--font-heading); font-size: 1.2rem; color: var(--gold);
  margin-bottom: 24px;
}
.form-group { position: relative; margin-bottom: 20px; }
.form-group input, .form-group textarea {
  width: 100%; padding: 14px 16px; background: rgba(10, 22, 40, 0.6);
  border: 1px solid rgba(201, 168, 76, 0.15); border-radius: var(--radius-sm);
  color: var(--ivory); font-size: 0.9rem; outline: none;
  transition: var(--transition);
}
.form-group input:focus, .form-group textarea:focus { border-color: var(--gold); }
.form-group label {
  position: absolute; left: 16px; top: 14px;
  color: var(--text-secondary); font-size: 0.85rem;
  transition: var(--transition); pointer-events: none;
}
.form-group input:focus ~ label,
.form-group input:not(:placeholder-shown) ~ label,
.form-group textarea:focus ~ label,
.form-group textarea:not(:placeholder-shown) ~ label {
  top: -8px; left: 12px; font-size: 0.7rem; color: var(--gold);
  background: var(--bg-card); padding: 0 6px;
}
.form-group select {
  width: 100%; padding: 14px 16px; background: rgba(10, 22, 40, 0.6);
  border: 1px solid rgba(201, 168, 76, 0.15); border-radius: var(--radius-sm);
  color: var(--ivory); font-size: 0.9rem; outline: none;
  transition: var(--transition); appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='%23c9a84c' viewBox='0 0 16 16'%3E%3Cpath d='M7.247 11.14L2.451 5.658C1.885 5.013 2.345 4 3.204 4h9.592a1 1 0 0 1 .753 1.659l-4.796 5.48a1 1 0 0 1-1.506 0z'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 16px center;
}
.form-group select:focus { border-color: var(--gold); }
.form-group select option { background: var(--bg-primary); color: var(--ivory); }
.map-wrap { border-radius: var(--radius); overflow: hidden; border: 1px solid var(--glass-border); }

/* ── FOOTER ── */
.footer { background: #060e1c; padding: 60px 0 0; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1.5fr; gap: 40px; margin-bottom: 40px; }
.footer-logo { display: flex; align-items: center; gap: 10px; margin-bottom: 16px; }
.footer-logo svg { width: 32px; height: 32px; }
.footer-logo span { font-family: var(--font-heading); color: var(--gold); font-size: 1rem; letter-spacing: 2px; }
.footer-brand p { color: var(--text-secondary); font-size: 0.85rem; line-height: 1.6; margin-bottom: 16px; }
.footer-social { display: flex; gap: 12px; }
.footer-social a {
  width: 40px; height: 40px; border-radius: 50%;
  border: 1px solid rgba(201, 168, 76, 0.2);
  display: flex; align-items: center; justify-content: center;
  color: var(--gold); font-size: 1rem; transition: var(--transition);
}
.footer-social a:hover { background: rgba(201, 168, 76, 0.1); border-color: var(--gold); }
.footer-links h4 {
  font-family: var(--font-heading); font-size: 0.85rem; color: var(--gold);
  margin-bottom: 16px; letter-spacing: 1px;
}
.footer-links a {
  display: block; color: var(--text-secondary); font-size: 0.85rem;
  padding: 4px 0; transition: var(--transition);
}
.footer-links a:hover { color: var(--gold); padding-left: 6px; }
.footer-bottom {
  border-top: 1px solid rgba(201, 168, 76, 0.1);
  padding: 20px 0; text-align: center;
}
.footer-bottom p { font-size: 0.8rem; color: var(--text-secondary); }

/* ── WHATSAPP FAB ── */
.whatsapp-fab {
  position: fixed; bottom: 24px; right: 24px; z-index: 900;
  width: 56px; height: 56px; border-radius: 50%;
  background: #25d366; color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.8rem; box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
  transition: var(--transition);
}
.whatsapp-fab:hover { transform: scale(1.1); box-shadow: 0 6px 28px rgba(37, 211, 102, 0.5); }

/* ═══════════════════════════════════════════════
   RESPONSIVE
   ═══════════════════════════════════════════════ */
@media (max-width: 1024px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .process-timeline { grid-template-columns: repeat(2, 1fr); }
  .timeline-line { display: none; }
  .about-grid { grid-template-columns: 1fr; gap: 40px; }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  section { padding: 60px 0; }
  .nav-links {
    display: none; position: fixed; top: 0; right: 0; bottom: 0;
    width: 280px; flex-direction: column;
    background: rgba(10, 22, 40, 0.97); backdrop-filter: blur(20px);
    padding: 80px 32px 32px; gap: 16px;
    border-left: 1px solid var(--glass-border);
    transform: translateX(100%); transition: var(--transition);
  }
  .nav-links.open { display: flex; transform: translateX(0); }
  .nav-toggle { display: flex; }
  .services-grid { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: 1fr; }
  .gallery-item.large { grid-column: span 1; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .about-highlights { grid-template-columns: 1fr; }
  .hero-stats { flex-direction: column; gap: 16px; }
  .stat-divider { width: 50px; height: 1px; }
  .hero-content { padding: 100px 20px 60px; }
  .process-timeline { grid-template-columns: 1fr; }
  .info-panel { width: 100vw; }
}
