/* ============================================
   SOLUTION ASTROLOGY CONSULTANT — STYLES
   Theme: Deep Navy + Royal Gold (Mystical)
   ============================================ */

:root {
  --navy-deep: #0a1432;
  --navy: #0f1b44;
  --navy-light: #1a2a5e;
  --navy-lighter: #253873;
  --gold: #e8b84a;
  --gold-bright: #ffd872;
  --gold-dark: #b8881e;
  --cream: #f7f1e3;
  --white: #ffffff;
  --text-dark: #1a1a2e;
  --text-muted: #6b7280;
  --bg-light: #fbf8f1;
  --border: rgba(232, 184, 74, 0.25);

  --font-display: 'Cinzel', serif;
  --font-body: 'Cormorant Garamond', serif;
  --font-ui: 'Outfit', sans-serif;

  --shadow-gold: 0 10px 40px rgba(232, 184, 74, 0.3);
  --shadow-navy: 0 20px 60px rgba(10, 20, 50, 0.4);
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

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

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

a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }

.gold { color: var(--gold); }
.eyebrow {
  display: inline-block;
  font-family: var(--font-ui);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold-dark);
  background: rgba(232, 184, 74, 0.1);
  padding: 6px 16px;
  border-radius: 30px;
  margin-bottom: 16px;
  border: 1px solid var(--border);
}

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.2;
  color: var(--navy-deep);
}

h2 { font-size: clamp(32px, 4vw, 48px); margin-bottom: 16px; }
h3 { font-size: 22px; }
h4 { font-size: 18px; }

.section { padding: 100px 0; position: relative; }
.section-head { text-align: center; max-width: 760px; margin: 0 auto 60px; }
.section-head p { color: var(--text-muted); font-size: 18px; font-family: var(--font-body); }

/* ========== BUTTONS ========== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 28px;
  border-radius: 50px;
  font-family: var(--font-ui);
  font-weight: 600;
  font-size: 15px;
  letter-spacing: 0.5px;
  border: none;
  cursor: pointer;
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  white-space: nowrap;
}

.btn-gold {
  background: linear-gradient(135deg, var(--gold-bright), var(--gold), var(--gold-dark));
  color: var(--navy-deep);
  box-shadow: var(--shadow-gold);
}
.btn-gold:hover { transform: translateY(-3px); box-shadow: 0 15px 50px rgba(232, 184, 74, 0.5); }

.btn-outline {
  background: transparent;
  color: var(--gold);
  border: 2px solid var(--gold);
}
.btn-outline:hover { background: var(--gold); color: var(--navy-deep); }

.btn-dark {
  background: var(--navy-deep);
  color: var(--gold);
  border: 2px solid var(--gold);
}
.btn-dark:hover { background: var(--gold); color: var(--navy-deep); }

.btn-wa {
  background: #25D366;
  color: white;
}
.btn-wa:hover { background: #1ebe5a; transform: translateY(-3px); }

.btn-block { width: 100%; justify-content: center; }

/* ========== TOPBAR ========== */
.topbar {
  background: var(--navy-deep);
  color: var(--cream);
  padding: 10px 0;
  font-size: 13px;
  border-bottom: 1px solid var(--border);
}
.topbar-inner { display: flex; justify-content: space-between; align-items: center; gap: 20px; flex-wrap: wrap; }
.topbar-left, .topbar-right { display: flex; gap: 20px; flex-wrap: wrap; }
.topbar a { color: var(--cream); transition: color 0.3s; }
.topbar a:hover { color: var(--gold); }
.topbar i { color: var(--gold); margin-right: 6px; }

/* ========== HEADER ========== */
.site-header {
  background: var(--white);
  padding: 16px 0;
  box-shadow: 0 2px 20px rgba(10, 20, 50, 0.08);
  position: sticky;
  top: 0;
  z-index: 100;
}
.header-inner { display: flex; justify-content: space-between; align-items: center; gap: 24px; }

.brand { display: flex; align-items: center; gap: 12px; }
.brand-logo { width: 56px; height: 56px; object-fit: contain; border-radius: 50%; background: var(--navy-deep); padding: 4px; }
.brand-text { display: flex; flex-direction: column; line-height: 1; }
.brand-name { font-family: var(--font-display); font-weight: 700; font-size: 18px; color: var(--navy-deep); letter-spacing: 0.5px; }
.brand-sub { font-family: var(--font-ui); font-size: 11px; letter-spacing: 3px; color: var(--gold-dark); text-transform: uppercase; margin-top: 4px; }

.main-nav { display: flex; align-items: center; gap: 6px; }
.main-nav a {
  padding: 10px 16px;
  font-weight: 500;
  font-size: 15px;
  color: var(--navy-deep);
  border-radius: 6px;
  transition: all 0.3s;
  position: relative;
}
.main-nav a:hover { color: var(--gold-dark); }
.main-nav a.nav-cta {
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: var(--navy-deep);
  margin-left: 8px;
  padding: 12px 24px;
  border-radius: 50px;
  font-weight: 600;
  box-shadow: 0 4px 15px rgba(232, 184, 74, 0.3);
}
.main-nav a.nav-cta:hover { transform: translateY(-2px); color: var(--navy-deep); }

.menu-toggle {
  display: none;
  background: transparent;
  border: none;
  font-size: 24px;
  color: var(--navy-deep);
  cursor: pointer;
}

/* ========== HERO ========== */
.hero {
  background: linear-gradient(135deg, var(--navy-deep) 0%, var(--navy) 50%, var(--navy-light) 100%);
  color: white;
  position: relative;
  overflow: hidden;
  padding: 80px 0 0;
  min-height: 90vh;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 20% 40%, rgba(232, 184, 74, 0.15), transparent 50%),
              radial-gradient(circle at 80% 60%, rgba(232, 184, 74, 0.1), transparent 50%);
  pointer-events: none;
}

/* Stars background */
.stars, .stars2, .stars3 {
  position: absolute; inset: 0; pointer-events: none;
  background-image:
    radial-gradient(2px 2px at 20px 30px, white, transparent),
    radial-gradient(1px 1px at 40px 70px, rgba(255,255,255,0.8), transparent),
    radial-gradient(1px 1px at 90px 40px, white, transparent),
    radial-gradient(1.5px 1.5px at 160px 120px, var(--gold-bright), transparent),
    radial-gradient(1px 1px at 220px 50px, rgba(255,255,255,0.9), transparent),
    radial-gradient(2px 2px at 280px 90px, white, transparent),
    radial-gradient(1px 1px at 340px 30px, rgba(255,255,255,0.7), transparent),
    radial-gradient(1.5px 1.5px at 400px 150px, var(--gold-bright), transparent);
  background-size: 450px 200px;
  background-repeat: repeat;
  animation: twinkle 8s ease-in-out infinite;
}
.stars2 { animation-delay: 2s; background-size: 380px 220px; opacity: 0.7; }
.stars3 { animation-delay: 4s; background-size: 500px 250px; opacity: 0.5; }
@keyframes twinkle { 0%, 100% { opacity: 0.4; } 50% { opacity: 1; } }

.hero-inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 60px;
  align-items: center;
  padding: 40px 24px 80px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(232, 184, 74, 0.15);
  border: 1px solid var(--gold);
  color: var(--gold-bright);
  padding: 8px 18px;
  border-radius: 30px;
  font-size: 13px;
  font-weight: 500;
  margin-bottom: 24px;
}
.hero-badge i { color: var(--gold-bright); }

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(36px, 5.5vw, 64px);
  font-weight: 700;
  line-height: 1.1;
  color: white;
  margin-bottom: 20px;
  letter-spacing: -0.5px;
}
.hero-title .gold {
  background: linear-gradient(135deg, var(--gold-bright), var(--gold));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-sub {
  font-family: var(--font-body);
  font-size: 20px;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 32px;
  max-width: 600px;
  line-height: 1.6;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-bottom: 36px;
  max-width: 560px;
}
.stat {
  text-align: center;
  padding: 16px 8px;
  background: rgba(232, 184, 74, 0.08);
  border: 1px solid var(--border);
  border-radius: 12px;
  backdrop-filter: blur(10px);
}
.stat h3 { font-family: var(--font-display); color: var(--gold-bright); font-size: 28px; margin-bottom: 4px; }
.stat p { font-size: 12px; color: rgba(255,255,255,0.8); letter-spacing: 0.5px; }

.hero-cta { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 20px; }

.hero-quick { display: flex; gap: 12px; }
.quick-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 30px;
  color: white;
  font-size: 14px;
  transition: all 0.3s;
}
.quick-btn:hover { background: rgba(232, 184, 74, 0.2); border-color: var(--gold); }
.quick-btn.whatsapp i { color: #25D366; }

/* Zodiac ring */
.hero-visual { display: flex; justify-content: center; align-items: center; position: relative; }
.zodiac-ring {
  position: relative;
  width: 450px;
  height: 450px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.ring {
  position: absolute;
  border: 2px solid var(--gold);
  border-radius: 50%;
  opacity: 0.3;
}
.ring-1 { width: 100%; height: 100%; border-style: dashed; animation: rotate 60s linear infinite; }
.ring-2 { width: 80%; height: 80%; border-style: dotted; opacity: 0.4; animation: rotate 40s linear infinite reverse; }
.ring-3 { width: 60%; height: 60%; opacity: 0.5; animation: rotate 30s linear infinite; }
@keyframes rotate { from { transform: rotate(0deg); } to { transform: rotate(360deg); } }

.logo-center {
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, var(--navy-light), var(--navy-deep));
  border-radius: 50%;
  border: 3px solid var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  box-shadow: 0 0 60px rgba(232, 184, 74, 0.4), inset 0 0 30px rgba(232, 184, 74, 0.2);
  animation: pulse-glow 3s ease-in-out infinite;
}
.logo-center img { width: 100%; height: 100%; object-fit: contain; }
@keyframes pulse-glow {
  0%, 100% { box-shadow: 0 0 60px rgba(232, 184, 74, 0.4), inset 0 0 30px rgba(232, 184, 74, 0.2); }
  50% { box-shadow: 0 0 100px rgba(232, 184, 74, 0.6), inset 0 0 40px rgba(232, 184, 74, 0.3); }
}

.zodiac-symbol {
  position: absolute;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-bright);
  font-size: 24px;
  transform: rotate(var(--angle)) translateY(-215px) rotate(calc(-1 * var(--angle)));
  transition: all 0.3s;
}
.zodiac-symbol:hover { color: white; transform: rotate(var(--angle)) translateY(-215px) rotate(calc(-1 * var(--angle))) scale(1.3); }

/* Marquee */
.marquee {
  background: linear-gradient(90deg, var(--gold-dark), var(--gold), var(--gold-dark));
  color: var(--navy-deep);
  padding: 16px 0;
  overflow: hidden;
  border-top: 2px solid var(--gold-bright);
  border-bottom: 2px solid var(--gold-bright);
  position: relative;
  z-index: 3;
}
.marquee-track {
  display: inline-flex;
  gap: 50px;
  white-space: nowrap;
  animation: scroll 40s linear infinite;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 16px;
  letter-spacing: 1px;
}
.marquee-track span { padding: 0 20px; }
@keyframes scroll { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ========== ABOUT ========== */
.about { background: var(--bg-light); }
.about-grid { display: grid; grid-template-columns: 1fr 1.2fr; gap: 60px; align-items: center; }

.img-frame {
  position: relative;
  background: linear-gradient(135deg, var(--navy-deep), var(--navy));
  border-radius: 20px;
  padding: 40px;
  box-shadow: var(--shadow-navy);
  border: 3px solid var(--gold);
}
.img-frame img { width: 100%; border-radius: 10px; }
.float-badge {
  position: absolute;
  bottom: -20px;
  right: -20px;
  background: white;
  padding: 16px 20px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow: var(--shadow-gold);
  border: 2px solid var(--gold);
}
.float-badge i { color: var(--gold); font-size: 32px; }
.float-badge strong { display: block; color: var(--navy-deep); font-family: var(--font-display); }
.float-badge small { color: var(--text-muted); font-size: 12px; }

.about-content .lead {
  font-family: var(--font-body);
  font-size: 20px;
  color: var(--navy-light);
  font-style: italic;
  margin-bottom: 16px;
  line-height: 1.5;
}
.about-content > p { color: var(--text-muted); margin-bottom: 28px; font-size: 16px; line-height: 1.7; }

.about-features { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-bottom: 32px; }
.feature { display: flex; gap: 14px; align-items: flex-start; }
.feature i { color: var(--gold); font-size: 22px; flex-shrink: 0; margin-top: 4px; }
.feature strong { display: block; color: var(--navy-deep); font-family: var(--font-display); font-size: 16px; margin-bottom: 2px; }
.feature p { font-size: 14px; color: var(--text-muted); margin: 0; }

/* ========== SERVICES ========== */
.services {
  background: linear-gradient(180deg, var(--white), var(--bg-light));
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 24px;
}
.service-card {
  background: white;
  padding: 32px 28px;
  border-radius: 16px;
  border: 1px solid var(--border);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}
.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold-bright), var(--gold), var(--gold-dark));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s;
}
.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 50px rgba(10, 20, 50, 0.15);
  border-color: var(--gold);
}
.service-card:hover::before { transform: scaleX(1); }

.service-icon {
  width: 64px;
  height: 64px;
  background: linear-gradient(135deg, var(--navy-deep), var(--navy-light));
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  transition: all 0.4s;
}
.service-icon i { color: var(--gold); font-size: 26px; }
.service-card:hover .service-icon {
  background: linear-gradient(135deg, var(--gold-bright), var(--gold-dark));
  transform: rotate(-5deg) scale(1.05);
}
.service-card:hover .service-icon i { color: var(--navy-deep); }

.service-card h3 { margin-bottom: 12px; }
.service-card p { color: var(--text-muted); font-size: 15px; margin-bottom: 20px; line-height: 1.6; }

.service-link {
  color: var(--gold-dark);
  font-weight: 600;
  font-size: 14px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: gap 0.3s;
}
.service-link:hover { gap: 12px; color: var(--navy-deep); }

/* ========== VASTU ========== */
.vastu-section {
  background: var(--navy-deep);
  color: white;
  position: relative;
  overflow: hidden;
}
.vastu-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 10% 20%, rgba(232, 184, 74, 0.1), transparent 40%),
    radial-gradient(circle at 90% 80%, rgba(232, 184, 74, 0.08), transparent 40%);
}
.vastu-section h2 { color: white; }
.vastu-grid { display: grid; grid-template-columns: 1.1fr 1fr; gap: 60px; align-items: center; position: relative; z-index: 2; }
.vastu-content .lead { font-family: var(--font-body); font-size: 20px; color: rgba(255,255,255,0.85); margin-bottom: 32px; font-style: italic; }

.vastu-items { margin-bottom: 32px; }
.vastu-item {
  display: flex;
  gap: 20px;
  padding: 20px 0;
  border-bottom: 1px solid rgba(232, 184, 74, 0.2);
}
.vastu-item:last-child { border-bottom: none; }
.v-num {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 700;
  color: var(--gold);
  min-width: 50px;
}
.vastu-item h4 { color: white; margin-bottom: 6px; }
.vastu-item p { color: rgba(255,255,255,0.75); font-size: 15px; }

.vastu-compass {
  width: 420px;
  height: 420px;
  margin: 0 auto;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
.compass-outer {
  width: 100%;
  height: 100%;
  border: 3px solid var(--gold);
  border-radius: 50%;
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 80px rgba(232, 184, 74, 0.2), inset 0 0 40px rgba(232, 184, 74, 0.1);
}
.compass-outer::before {
  content: '';
  position: absolute;
  inset: 20px;
  border: 1px dashed rgba(232, 184, 74, 0.5);
  border-radius: 50%;
}
.compass-outer::after {
  content: '';
  position: absolute;
  inset: 40px;
  border: 1px solid rgba(232, 184, 74, 0.3);
  border-radius: 50%;
}
.dir {
  position: absolute;
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--gold-bright);
  font-size: 18px;
}
.dir.n { top: 20px; }
.dir.s { bottom: 20px; }
.dir.e { right: 20px; }
.dir.w { left: 20px; }
.dir.ne { top: 50px; right: 50px; font-size: 14px; }
.dir.nw { top: 50px; left: 50px; font-size: 14px; }
.dir.se { bottom: 50px; right: 50px; font-size: 14px; }
.dir.sw { bottom: 50px; left: 50px; font-size: 14px; }

.compass-inner {
  width: 220px;
  height: 220px;
  border-radius: 50%;
  background: radial-gradient(circle, var(--navy-light), var(--navy-deep));
  border: 2px solid var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.compass-needle {
  position: absolute;
  width: 4px;
  height: 160px;
  background: linear-gradient(180deg, #ff4444 0%, #ff4444 50%, white 50%, white 100%);
  border-radius: 4px;
  animation: needle-sway 4s ease-in-out infinite;
  transform-origin: center;
  box-shadow: 0 0 20px rgba(232, 184, 74, 0.5);
}
@keyframes needle-sway { 0%, 100% { transform: rotate(-5deg); } 50% { transform: rotate(5deg); } }

.compass-center {
  font-size: 80px;
  color: var(--gold-bright);
  font-family: var(--font-display);
  position: relative;
  z-index: 2;
}

/* ========== KUNDALI ========== */
.kundali-section { background: var(--bg-light); }
.kundali-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 24px;
}
.kundali-card {
  background: white;
  padding: 36px 28px;
  border-radius: 16px;
  text-align: center;
  border: 1px solid var(--border);
  position: relative;
  transition: all 0.4s;
}
.kundali-card::after {
  content: '✦';
  position: absolute;
  top: 20px;
  right: 20px;
  color: var(--gold);
  font-size: 24px;
  opacity: 0.3;
  transition: all 0.4s;
}
.kundali-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-navy);
  background: var(--navy-deep);
  color: white;
}
.kundali-card:hover h3 { color: white; }
.kundali-card:hover p { color: rgba(255,255,255,0.85); }
.kundali-card:hover::after { opacity: 1; transform: rotate(180deg); color: var(--gold-bright); }

.kundali-card i {
  font-size: 48px;
  color: var(--gold);
  margin-bottom: 20px;
  display: inline-block;
  width: 90px;
  height: 90px;
  line-height: 90px;
  background: linear-gradient(135deg, rgba(232,184,74,0.15), rgba(232,184,74,0.05));
  border-radius: 50%;
  border: 2px solid var(--gold);
}
.kundali-card h3 { margin-bottom: 12px; transition: color 0.3s; }
.kundali-card p { color: var(--text-muted); font-size: 15px; transition: color 0.3s; }

/* ========== WHY US ========== */
.why-us { background: white; }
.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 24px;
}
.why-card {
  padding: 32px 28px;
  border-radius: 16px;
  background: linear-gradient(135deg, var(--bg-light), white);
  border: 1px solid var(--border);
  text-align: center;
  transition: all 0.4s;
}
.why-card:hover {
  transform: translateY(-5px);
  border-color: var(--gold);
  box-shadow: 0 15px 40px rgba(232, 184, 74, 0.15);
}
.why-card i {
  font-size: 40px;
  color: var(--gold);
  margin-bottom: 18px;
  display: block;
}
.why-card h3 { margin-bottom: 10px; color: var(--navy-deep); }
.why-card p { color: var(--text-muted); font-size: 15px; }

/* ========== TESTIMONIALS ========== */
.testimonials {
  background: linear-gradient(180deg, var(--bg-light), white);
}
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
  gap: 24px;
}
.testi-card {
  background: white;
  padding: 32px 28px;
  border-radius: 16px;
  border: 1px solid var(--border);
  position: relative;
  transition: all 0.4s;
}
.testi-card::before {
  content: '"';
  position: absolute;
  top: -10px;
  left: 20px;
  font-family: var(--font-display);
  font-size: 100px;
  color: var(--gold);
  opacity: 0.2;
  line-height: 1;
}
.testi-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-navy); }

.stars-row { color: var(--gold); font-size: 18px; margin-bottom: 16px; letter-spacing: 2px; }
.testi-card p { font-family: var(--font-body); font-size: 17px; color: var(--navy-deep); margin-bottom: 24px; line-height: 1.6; font-style: italic; }

.testi-author { display: flex; align-items: center; gap: 14px; padding-top: 16px; border-top: 1px solid var(--border); }
.avatar {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: var(--navy-deep);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-family: var(--font-display);
  font-size: 20px;
}
.testi-author strong { display: block; color: var(--navy-deep); font-family: var(--font-display); font-size: 16px; }
.testi-author small { color: var(--text-muted); font-size: 13px; }

/* ========== BRANCHES ========== */
.branches { background: var(--navy-deep); color: white; position: relative; overflow: hidden; }
.branches::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(1px 1px at 50px 50px, rgba(232,184,74,0.5), transparent),
    radial-gradient(1px 1px at 150px 120px, rgba(232,184,74,0.3), transparent),
    radial-gradient(2px 2px at 250px 80px, rgba(232,184,74,0.4), transparent);
  background-size: 300px 200px;
  background-repeat: repeat;
  opacity: 0.4;
}
.branches h2 { color: white; }
.branches .section-head p { color: rgba(255,255,255,0.8); }

.branches-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  position: relative;
  z-index: 2;
}

.branch-card {
  background: linear-gradient(135deg, rgba(232,184,74,0.08), rgba(232,184,74,0.02));
  border: 2px solid var(--gold);
  border-radius: 20px;
  padding: 40px;
  transition: all 0.4s;
  backdrop-filter: blur(10px);
}
.branch-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 25px 60px rgba(232, 184, 74, 0.3);
  background: linear-gradient(135deg, rgba(232,184,74,0.15), rgba(232,184,74,0.05));
}

.branch-head { display: flex; align-items: center; gap: 18px; margin-bottom: 28px; padding-bottom: 24px; border-bottom: 1px solid rgba(232,184,74,0.3); }
.branch-icon {
  width: 70px;
  height: 70px;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--gold-bright), var(--gold-dark));
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--navy-deep);
  font-size: 30px;
}
.branch-head h3 { color: white; margin-bottom: 2px; font-size: 26px; }
.branch-head .muted { color: var(--gold); font-size: 13px; letter-spacing: 2px; text-transform: uppercase; margin: 0; }

.branch-body { margin-bottom: 28px; }
.info-row { display: flex; align-items: center; gap: 16px; padding: 14px 0; border-bottom: 1px dashed rgba(232,184,74,0.2); }
.info-row:last-child { border-bottom: none; }
.info-row > i {
  width: 44px;
  height: 44px;
  background: rgba(232,184,74,0.15);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-bright);
  font-size: 18px;
  flex-shrink: 0;
}
.info-row small { display: block; color: var(--gold); font-size: 12px; letter-spacing: 1px; text-transform: uppercase; margin-bottom: 2px; }
.info-row strong, .info-row a { color: white; font-size: 16px; transition: color 0.3s; }
.info-row a:hover { color: var(--gold-bright); }

.branch-actions { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }

/* ========== CONTACT ========== */
.contact { background: var(--bg-light); }
.contact-grid { display: grid; grid-template-columns: 1fr 1.2fr; gap: 50px; align-items: start; }

.contact-left p { font-family: var(--font-body); font-size: 18px; color: var(--text-muted); margin-bottom: 32px; line-height: 1.6; }

.contact-quick { display: grid; gap: 14px; }
.cq-card {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 18px 20px;
  background: white;
  border: 1px solid var(--border);
  border-radius: 14px;
  transition: all 0.3s;
}
.cq-card:hover { transform: translateX(6px); border-color: var(--gold); box-shadow: var(--shadow-gold); }
.cq-card i {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--navy-deep), var(--navy-light));
  color: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  flex-shrink: 0;
}
.cq-card.wa i { background: linear-gradient(135deg, #25D366, #128C7E); color: white; }
.cq-card small { display: block; color: var(--text-muted); font-size: 12px; letter-spacing: 1px; text-transform: uppercase; margin-bottom: 2px; }
.cq-card strong { color: var(--navy-deep); font-size: 15px; word-break: break-all; }

.contact-form {
  background: white;
  padding: 40px;
  border-radius: 20px;
  box-shadow: var(--shadow-navy);
  border: 1px solid var(--border);
}
.contact-form h3 { margin-bottom: 24px; font-size: 28px; color: var(--navy-deep); }

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-bottom: 16px; }
.contact-form label { display: block; margin-bottom: 16px; }
.contact-form label > span { display: block; font-size: 13px; font-weight: 600; color: var(--navy-deep); margin-bottom: 6px; letter-spacing: 0.5px; }

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid rgba(10, 20, 50, 0.15);
  border-radius: 10px;
  font-family: var(--font-ui);
  font-size: 15px;
  transition: all 0.3s;
  background: white;
  color: var(--navy-deep);
}
.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(232, 184, 74, 0.15);
}
.contact-form textarea { resize: vertical; }

.form-note { margin-top: 14px; text-align: center; color: var(--text-muted); font-size: 13px; }
.form-note i { color: var(--gold); margin-right: 4px; }

/* ========== CTA BANNER ========== */
.cta-banner {
  background: linear-gradient(135deg, var(--gold-dark), var(--gold), var(--gold-dark));
  padding: 50px 0;
  position: relative;
  overflow: hidden;
}
.cta-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 20% 50%, rgba(10,20,50,0.1), transparent 50%);
}
.cta-inner { display: flex; justify-content: space-between; align-items: center; gap: 40px; position: relative; z-index: 2; flex-wrap: wrap; }
.cta-inner h2 { color: var(--navy-deep); margin-bottom: 8px; }
.cta-inner p { color: var(--navy-deep); font-family: var(--font-body); font-size: 18px; }
.cta-btns { display: flex; gap: 14px; flex-wrap: wrap; }

/* ========== FOOTER ========== */
.site-footer {
  background: var(--navy-deep);
  color: rgba(255,255,255,0.75);
  padding: 70px 0 0;
  position: relative;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.5fr;
  gap: 40px;
  padding-bottom: 50px;
}
.footer-col h4 { color: white; margin-bottom: 20px; font-size: 18px; position: relative; padding-bottom: 12px; }
.footer-col h4::after { content: ''; position: absolute; bottom: 0; left: 0; width: 40px; height: 2px; background: var(--gold); }

.footer-col .brand { margin-bottom: 16px; }
.footer-col .brand-name { color: white; }
.footer-col p { font-size: 14px; margin-bottom: 20px; line-height: 1.7; }

.socials { display: flex; gap: 10px; }
.socials a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(232,184,74,0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  transition: all 0.3s;
}
.socials a:hover { background: var(--gold); color: var(--navy-deep); transform: translateY(-3px); }

.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 10px; font-size: 14px; }
.footer-col ul a { color: rgba(255,255,255,0.75); transition: all 0.3s; display: inline-flex; align-items: center; gap: 8px; }
.footer-col ul a::before { content: '✦'; color: var(--gold); font-size: 10px; }
.footer-col ul a:hover { color: var(--gold); padding-left: 4px; }

.contact-list li { display: flex; gap: 12px; align-items: flex-start; margin-bottom: 16px; }
.contact-list li::before { display: none; }
.contact-list i { color: var(--gold); font-size: 16px; margin-top: 4px; }
.contact-list small { display: block; font-size: 11px; color: var(--gold); letter-spacing: 1px; text-transform: uppercase; margin-bottom: 2px; }
.contact-list a, .contact-list strong { color: white; font-size: 14px; word-break: break-word; }

.footer-bottom {
  border-top: 1px solid rgba(232,184,74,0.2);
  padding: 20px 0;
  font-size: 13px;
}
.footer-bottom .container { display: flex; justify-content: space-between; flex-wrap: wrap; gap: 10px; }

/* ========== FAB ========== */
.fab-container {
  position: fixed;
  bottom: 24px;
  right: 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  z-index: 99;
}
.fab {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 22px;
  box-shadow: 0 8px 25px rgba(0,0,0,0.3);
  transition: all 0.3s;
  position: relative;
}
.fab:hover { transform: scale(1.1); }
.fab-wa { background: #25D366; animation: pulse-wa 2s infinite; }
@keyframes pulse-wa { 0%, 100% { box-shadow: 0 8px 25px rgba(37, 211, 102, 0.5); } 50% { box-shadow: 0 8px 35px rgba(37, 211, 102, 0.8), 0 0 0 10px rgba(37,211,102,0.15); } }
.fab-call { background: linear-gradient(135deg, var(--gold-bright), var(--gold-dark)); color: var(--navy-deep); }
.fab-call2 { background: linear-gradient(135deg, var(--navy-light), var(--navy-deep)); color: var(--gold); }
.fab-mail { background: #4285F4; }

.fab-tooltip {
  position: absolute;
  right: 68px;
  background: var(--navy-deep);
  color: white;
  padding: 8px 14px;
  border-radius: 6px;
  font-size: 13px;
  white-space: nowrap;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s;
  border: 1px solid var(--gold);
}
.fab-tooltip::after {
  content: '';
  position: absolute;
  right: -6px;
  top: 50%;
  transform: translateY(-50%);
  border: 6px solid transparent;
  border-left-color: var(--navy-deep);
}
.fab:hover .fab-tooltip { opacity: 1; visibility: visible; right: 72px; }

/* ========== RESPONSIVE ========== */
@media (max-width: 980px) {
  .hero-inner { grid-template-columns: 1fr; text-align: center; }
  .hero-stats { max-width: 100%; }
  .hero-cta, .hero-quick { justify-content: center; }
  .hero-visual { order: -1; }
  .zodiac-ring { width: 320px; height: 320px; }
  .logo-center { width: 150px; height: 150px; padding: 15px; }
  .zodiac-symbol { transform: rotate(var(--angle)) translateY(-150px) rotate(calc(-1 * var(--angle))); font-size: 18px; }

  .about-grid, .vastu-grid, .contact-grid { grid-template-columns: 1fr; gap: 40px; }
  .about-features { grid-template-columns: 1fr; }
  .vastu-compass { width: 320px; height: 320px; }
  .compass-inner { width: 170px; height: 170px; }
  .compass-needle { height: 120px; }
  .compass-center { font-size: 60px; }

  .branches-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }

  .main-nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    background: var(--navy-deep);
    flex-direction: column;
    align-items: flex-start;
    padding: 80px 24px 30px;
    gap: 4px;
    transition: right 0.4s;
    box-shadow: -10px 0 30px rgba(0,0,0,0.3);
  }
  .main-nav.open { right: 0; }
  .main-nav a { color: white; width: 100%; padding: 12px 16px; border-bottom: 1px solid rgba(232,184,74,0.15); }
  .main-nav a.nav-cta { margin-left: 0; margin-top: 16px; }
  .menu-toggle { display: block; z-index: 101; }
}

@media (max-width: 600px) {
  .section { padding: 70px 0; }
  .hero-stats { grid-template-columns: 1fr 1fr; }
  .form-row { grid-template-columns: 1fr; gap: 0; }
  .branch-actions { grid-template-columns: 1fr; }
  .branch-card { padding: 28px 22px; }
  .contact-form { padding: 28px 22px; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom .container { flex-direction: column; text-align: center; }
  .cta-inner { flex-direction: column; text-align: center; }
  .topbar-inner { justify-content: center; text-align: center; }
  .topbar-left, .topbar-right { justify-content: center; }
  .hide-sm { display: none; }
  .brand-text { display: none; }
  .fab-container { bottom: 16px; right: 16px; }
  .fab { width: 50px; height: 50px; font-size: 20px; }
}
