@import url('https://fonts.googleapis.com/css2?family=Cinzel:wght@400;600;700;900&family=Tiro+Tamil:ital@0;1&family=Poppins:wght@300;400;500;600;700&display=swap');

:root{
  --deep-space:#0d0a1a;
  --space-dark:#130f2a;
  --space-mid:#1e1540;
  --purple-rich:#4a2d9c;
  --purple-bright:#6b3fc7;
  --purple-glow:#8b5cf6;
  --violet-light:#c4b5fd;
  --gold-deep:#b8860b;
  --gold-bright:#e0a020;
  --gold-light:#f5c842;
  --gold-shimmer:#fde68a;
  --cream:#fef9e7;
  --white:#ffffff;
  --text-primary:#1a0f3a;
  --text-secondary:#4a3a6a;
  --text-muted:#7a6a9a;
  --card-bg:#fffef9;
  --border-gold:rgba(224,160,32,.3);
  --shadow-purple:rgba(107,63,199,.25);
  --header-gradient:linear-gradient(160deg,#0d0a1a 0%,#2a1560 40%,#4a2d9c 70%,#3a1a7a 100%);
  --btn-gradient:linear-gradient(135deg,#f5c842 0%,#e0a020 50%,#f5c842 100%);
  --section-gradient:linear-gradient(180deg,#f5f0ff 0%,#fff9ec 100%);
  --section-alt-gradient:linear-gradient(180deg,#fff9ec 0%,#f5f0ff 100%);
  --footer-gradient:linear-gradient(135deg,#0d0a1a 0%,#1e1540 60%,#130f2a 100%);

  --container-max:1200px;
  --header-h:72px;
}

*{margin:0;padding:0;box-sizing:border-box;}
html{scroll-behavior:smooth;}

body{
  font-family:'Poppins',sans-serif;
  background:var(--cream);
  color:var(--text-primary);
  overflow-x:hidden;
  line-height:1.55;
}
body.nav-open{overflow:hidden;}

img{max-width:100%;display:block;}
a{text-decoration:none;color:inherit;}
ul{list-style:none;}
button{font-family:inherit;cursor:pointer;border:none;background:none;color:inherit;}

.container{
  max-width:var(--container-max);
  margin:0 auto;
  padding:0 32px;
  width:100%;
}

/* ═══ MARQUEE ═══ */
.marquee-strip{
  background:var(--btn-gradient);
  color:var(--text-primary);
  font-size:13px;
  font-weight:600;
  padding:8px 0;
  overflow:hidden;
  white-space:nowrap;
  position:relative;
  z-index:101;
}
.marquee-inner{
  display:inline-block;
  animation:scroll-marquee 45s linear infinite;
  padding-left:100%;
}
@keyframes scroll-marquee{from{transform:translateX(0)}to{transform:translateX(-100%)}}

/* ═══ HEADER ═══ */
.site-header{
  background:var(--header-gradient);
  position:sticky;
  top:0;
  z-index:100;
  box-shadow:0 4px 20px rgba(0,0,0,.25);
  overflow:hidden;
}
#starsCanvas{
  position:absolute;
  inset:0;
  width:100%;
  height:100%;
  z-index:1;
  pointer-events:none;
}
.header-inner{
  position:relative;
  z-index:2;
  height:var(--header-h);
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:24px;
}
.brand{
  display:flex;
  align-items:center;
  gap:14px;
  flex-shrink:0;
  min-width:0;
}
.mandala-svg{
  width:44px;height:44px;
  opacity:.85;
  animation:spin-slow 25s linear infinite;
  flex-shrink:0;
}
@keyframes spin-slow{to{transform:rotate(360deg)}}

.brand-text{line-height:1.1;min-width:0;}
.brand-title{
  font-family:'Cinzel',serif;
  font-size:17px;
  font-weight:700;
  color:var(--gold-light);
  letter-spacing:1.2px;
  text-shadow:0 0 12px rgba(245,200,66,.35);
  white-space:nowrap;
  overflow:hidden;
  text-overflow:ellipsis;
}
.brand-sub{
  font-size:11px;
  color:rgba(255,255,255,.7);
  letter-spacing:1.5px;
  text-transform:uppercase;
  margin-top:3px;
}

/* Desktop nav */
.top-nav{
  display:flex;
  align-items:center;
  gap:4px;
}
.top-nav .nav-item{
  padding:10px 18px;
  font-size:14px;
  font-weight:500;
  color:rgba(255,255,255,.85);
  border-radius:8px;
  transition:all .25s ease;
  letter-spacing:.5px;
  display:inline-block;
}
.top-nav .nav-item:hover{color:var(--gold-light);background:rgba(245,200,66,.1);}
.top-nav .nav-item.active{
  color:var(--gold-light);
  background:rgba(245,200,66,.15);
  box-shadow:inset 0 0 0 1px rgba(245,200,66,.3);
}
.nav-cta{
  margin-left:12px;
  padding:10px 18px;
  background:var(--btn-gradient);
  color:var(--text-primary);
  border-radius:8px;
  font-weight:600;
  font-size:13px;
  box-shadow:0 4px 14px rgba(245,200,66,.3);
  transition:transform .2s ease;
  white-space:nowrap;
}
.nav-cta:hover{transform:translateY(-2px);}

/* Hamburger */
.nav-toggle{
  display:none;
  flex-direction:column;
  gap:5px;
  padding:10px;
  z-index:105;
  position:relative;
}
.nav-toggle span{
  display:block;
  width:26px;
  height:2px;
  background:var(--gold-light);
  border-radius:2px;
  transition:all .3s ease;
  transform-origin:center;
}
.nav-toggle.open span:nth-child(1){transform:translateY(7px) rotate(45deg);}
.nav-toggle.open span:nth-child(2){opacity:0;}
.nav-toggle.open span:nth-child(3){transform:translateY(-7px) rotate(-45deg);}

/* ═══ HERO ═══ */
.hero{
  position:relative;
  background:var(--header-gradient);
  color:var(--white);
  padding:90px 0 120px;
  overflow:hidden;
  min-height:640px;
}
.hero-bg{
  position:absolute;inset:0;
  background:
    radial-gradient(circle at 20% 30%,rgba(139,92,246,.45) 0%,transparent 50%),
    radial-gradient(circle at 80% 70%,rgba(245,200,66,.2) 0%,transparent 50%);
  pointer-events:none;
  z-index:1;
}
.hero-canvas{
  position:absolute;
  inset:0;
  width:100%;
  height:100%;
  z-index:2;
  pointer-events:none;
}

/* Aurora blobs */
.aurora{
  position:absolute;
  border-radius:50%;
  filter:blur(80px);
  opacity:.45;
  pointer-events:none;
  z-index:1;
  animation:aurora-float 18s ease-in-out infinite;
}
.aurora-1{
  width:400px;height:400px;
  background:radial-gradient(circle,rgba(139,92,246,.6),transparent 70%);
  top:-100px;left:-80px;
}
.aurora-2{
  width:500px;height:500px;
  background:radial-gradient(circle,rgba(245,200,66,.35),transparent 70%);
  bottom:-200px;right:-100px;
  animation-delay:-6s;
}
.aurora-3{
  width:350px;height:350px;
  background:radial-gradient(circle,rgba(107,63,199,.5),transparent 70%);
  top:40%;left:40%;
  animation-delay:-12s;
}
@keyframes aurora-float{
  0%,100%{transform:translate(0,0) scale(1);}
  33%{transform:translate(40px,-30px) scale(1.1);}
  66%{transform:translate(-30px,20px) scale(.95);}
}

/* Floating cosmic symbols */
.cosmic-symbols{
  position:absolute;
  inset:0;
  pointer-events:none;
  z-index:2;
  overflow:hidden;
}
.cosmic-symbol{
  position:absolute;
  font-size:28px;
  color:rgba(245,200,66,.5);
  opacity:0;
  animation:cosmic-drift 20s linear infinite;
  text-shadow:0 0 18px rgba(245,200,66,.4);
  will-change:transform,opacity;
}
@keyframes cosmic-drift{
  0%{opacity:0;transform:translate(0,20px) rotate(0deg);}
  10%{opacity:.7;}
  90%{opacity:.5;}
  100%{opacity:0;transform:translate(var(--drift-x,40px),-120px) rotate(360deg);}
}

/* Hero grid */
.hero-grid{
  position:relative;
  z-index:3;
  display:grid;
  grid-template-columns:1.2fr 1fr;
  gap:60px;
  align-items:center;
  min-height:460px;
}

/* Reveal animations */
.reveal-up{
  opacity:0;
  transform:translateY(24px);
  animation:reveal-up .9s cubic-bezier(.2,.8,.2,1) forwards;
}
.reveal-up{animation-delay:.15s;}
@keyframes reveal-up{to{opacity:1;transform:translateY(0);}}

.reveal-title{overflow:hidden;}
.reveal-title span{
  display:inline-block;
  opacity:0;
  transform:translateY(100%) rotateX(-80deg);
  animation:title-letter .9s cubic-bezier(.2,.8,.2,1) forwards;
  transform-origin:bottom;
}
.reveal-title span:nth-child(1){animation-delay:.2s;}
.reveal-title span:nth-child(2){animation-delay:.38s;}
@keyframes title-letter{to{opacity:1;transform:translateY(0) rotateX(0);}}

.eyebrow{
  font-family:'Cinzel',serif;
  font-size:12px;
  letter-spacing:4px;
  color:var(--gold-light);
  text-transform:uppercase;
  margin-bottom:16px;
}
.hero-title{
  font-family:'Cinzel',serif;
  font-size:64px;
  font-weight:900;
  color:var(--gold-light);
  line-height:1.05;
  margin-bottom:20px;
  text-shadow:0 0 40px rgba(245,200,66,.35);
}
.hero-lead{
  font-family:'Tiro Tamil',serif;
  font-size:18px;
  line-height:1.8;
  color:rgba(255,255,255,.85);
  margin-bottom:32px;
  max-width:550px;
}
.hero-ctas{
  display:flex;
  gap:16px;
  flex-wrap:wrap;
  margin-bottom:32px;
}
.hero-badges{
  display:flex;
  flex-wrap:wrap;
  gap:12px;
}
.badge{
  background:rgba(255,255,255,.08);
  border:1px solid rgba(245,200,66,.3);
  padding:8px 16px;
  border-radius:20px;
  font-size:13px;
  color:var(--gold-shimmer);
  backdrop-filter:blur(8px);
}

/* Hero visual - tilt-enabled */
.hero-visual{
  display:flex;
  justify-content:center;
  align-items:center;
  position:relative;
  perspective:1200px;
}
.zodiac-wheel{
  position:absolute;
  width:420px;
  height:420px;
  opacity:.55;
  animation:spin-slow 60s linear infinite;
  pointer-events:none;
}
.profile-ring{
  position:relative;
  width:340px;
  height:340px;
  display:flex;
  align-items:center;
  justify-content:center;
  transition:transform .15s ease-out;
  transform-style:preserve-3d;
  will-change:transform;
}
.ring-1,.ring-2{
  position:absolute;
  inset:0;
  border-radius:50%;
  border:2px solid rgba(245,200,66,.3);
  animation:spin-slow 20s linear infinite;
}
.ring-2{
  inset:-22px;
  border-color:rgba(139,92,246,.35);
  border-style:dashed;
  animation-duration:30s;
  animation-direction:reverse;
}
.profile-glow{
  position:absolute;
  inset:-40px;
  border-radius:50%;
  background:radial-gradient(circle,rgba(245,200,66,.35),transparent 60%);
  filter:blur(20px);
  animation:glow-pulse 3s ease-in-out infinite;
  pointer-events:none;
}
@keyframes glow-pulse{
  0%,100%{opacity:.6;transform:scale(1);}
  50%{opacity:1;transform:scale(1.08);}
}
.profile-img{
  width:280px;
  height:280px;
  border-radius:50%;
  object-fit:cover;
  border:4px solid var(--gold-light);
  box-shadow:0 0 60px rgba(245,200,66,.4),inset 0 0 30px rgba(107,63,199,.2);
  background:var(--purple-rich);
  position:relative;
  z-index:2;
}

/* Scroll indicator */
.scroll-indicator{
  position:absolute;
  bottom:30px;
  left:50%;
  transform:translateX(-50%);
  width:28px;
  height:46px;
  border:2px solid rgba(245,200,66,.5);
  border-radius:14px;
  z-index:3;
  animation:scroll-fade 2s ease-in-out infinite;
}
.scroll-indicator span{
  position:absolute;
  top:8px;
  left:50%;
  width:4px;
  height:8px;
  background:var(--gold-light);
  border-radius:2px;
  transform:translateX(-50%);
  animation:scroll-dot 2s ease-in-out infinite;
}
@keyframes scroll-dot{
  0%,100%{opacity:0;top:8px;}
  50%{opacity:1;top:24px;}
}
@keyframes scroll-fade{
  0%,100%{opacity:.5;}50%{opacity:1;}
}

/* ═══ BUTTONS ═══ */
.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:8px;
  padding:14px 28px;
  border-radius:10px;
  font-weight:600;
  font-size:15px;
  letter-spacing:.5px;
  transition:all .25s ease;
  white-space:nowrap;
  cursor:pointer;
  border:none;
  font-family:inherit;
}
.btn-primary{
  background:var(--btn-gradient);
  color:var(--text-primary);
  box-shadow:0 6px 20px rgba(245,200,66,.35);
}
.btn-primary:hover{transform:translateY(-2px);box-shadow:0 10px 25px rgba(245,200,66,.45);}
.btn-ghost{
  background:transparent;
  border:1.5px solid rgba(245,200,66,.5);
  color:var(--gold-light);
}
.btn-ghost:hover{background:rgba(245,200,66,.1);border-color:var(--gold-light);}
.btn-gold{
  background:var(--btn-gradient);
  color:var(--text-primary);
  box-shadow:0 6px 20px rgba(245,200,66,.35);
}
.magnetic{transition:transform .25s cubic-bezier(.2,.8,.2,1),box-shadow .25s ease;will-change:transform;}

/* ═══ STATS BAND ═══ */
.stats-band{
  background:var(--space-dark);
  padding:50px 0;
  border-top:1px solid rgba(245,200,66,.15);
  border-bottom:1px solid rgba(245,200,66,.15);
}
.stats-grid{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:30px;
  text-align:center;
}
.stat-box{padding:10px;}
.stat-num{
  display:block;
  font-family:'Cinzel',serif;
  font-size:48px;
  font-weight:900;
  color:var(--gold-light);
  line-height:1;
  margin-bottom:8px;
  text-shadow:0 0 20px rgba(245,200,66,.3);
}
.stat-lbl{
  font-size:13px;
  color:rgba(255,255,255,.7);
  letter-spacing:1.5px;
  text-transform:uppercase;
}

/* ═══ SECTIONS ═══ */
.section{
  padding:80px 0;
  background:var(--section-gradient);
}
.section-alt{background:var(--section-alt-gradient);}
.section-dark{
  background:var(--header-gradient);
  position:relative;
  overflow:hidden;
}
.section-dark::before{
  content:'';
  position:absolute;inset:0;
  background:radial-gradient(circle at 50% 50%,rgba(139,92,246,.2) 0%,transparent 60%);
  pointer-events:none;
}
.section > .container{position:relative;z-index:1;}

.section-header{
  text-align:center;
  margin-bottom:50px;
}
.section-tag{
  font-family:'Cinzel',serif;
  font-size:12px;
  letter-spacing:4px;
  color:var(--purple-bright);
  text-transform:uppercase;
  margin-bottom:12px;
}
.section-tag.gold{color:var(--gold-light);}
.section-title{
  font-family:'Tiro Tamil',serif;
  font-size:40px;
  color:var(--text-primary);
  margin-bottom:10px;
  line-height:1.2;
}
.section-title.light{color:var(--gold-light);}
.section-sub{
  font-size:15px;
  color:var(--text-muted);
  max-width:600px;
  margin:0 auto;
}
.section-sub.light{color:rgba(255,255,255,.7);}
.section-cta{text-align:center;margin-top:40px;}

/* ═══ SERVICE CARDS ═══ */
.services-grid{
  display:grid;
  grid-template-columns:repeat(2,1fr);
  gap:24px;
}
.services-grid-3{grid-template-columns:repeat(3,1fr);}
.service-card{
  background:var(--card-bg);
  border-radius:16px;
  padding:28px;
  border:1px solid var(--border-gold);
  box-shadow:0 6px 20px var(--shadow-purple);
  transition:all .3s ease;
  position:relative;
  overflow:hidden;
}
.service-card::before{
  content:'';
  position:absolute;
  top:0;left:0;right:0;
  height:3px;
  background:var(--btn-gradient);
  transform:scaleX(0);
  transform-origin:left;
  transition:transform .35s ease;
}
.service-card:hover{
  transform:translateY(-6px);
  box-shadow:0 16px 40px var(--shadow-purple);
  border-color:var(--gold-bright);
}
.service-card:hover::before{transform:scaleX(1);}
.card-head{
  display:flex;
  align-items:center;
  gap:14px;
  margin-bottom:20px;
  padding-bottom:16px;
  border-bottom:1px dashed var(--border-gold);
}
.card-icon{
  font-size:36px;
  width:56px;
  height:56px;
  display:flex;
  align-items:center;
  justify-content:center;
  background:linear-gradient(135deg,rgba(245,200,66,.15),rgba(107,63,199,.1));
  border-radius:12px;
  flex-shrink:0;
}
.card-title{
  font-family:'Tiro Tamil',serif;
  font-size:19px;
  font-weight:600;
  color:var(--text-primary);
  line-height:1.3;
}
.pill-wrap{
  display:flex;
  flex-wrap:wrap;
  gap:8px;
}
.pill{
  background:linear-gradient(135deg,rgba(245,200,66,.1),rgba(107,63,199,.06));
  border:1px solid rgba(224,160,32,.25);
  color:var(--text-secondary);
  padding:7px 14px;
  border-radius:20px;
  font-size:13px;
  font-family:'Tiro Tamil',serif;
  cursor:pointer;
  transition:all .25s ease;
}
.pill:hover{
  background:linear-gradient(135deg,var(--purple-bright),var(--gold-bright));
  color:white;
  transform:translateY(-2px);
}

/* CTA Banner */
.cta-banner{
  margin-top:50px;
  background:linear-gradient(135deg,var(--purple-rich),var(--purple-bright));
  border-radius:20px;
  padding:48px 32px;
  text-align:center;
  color:white;
  box-shadow:0 12px 40px var(--shadow-purple);
}
.cta-banner-text{
  font-family:'Tiro Tamil',serif;
  font-size:22px;
  color:var(--gold-light);
  margin-bottom:20px;
}

/* ═══ ZODIAC ═══ */
.zodiac-grid{
  display:grid;
  grid-template-columns:repeat(6,1fr);
  gap:16px;
}
.z-item{
  background:rgba(255,255,255,.06);
  border:1px solid rgba(245,200,66,.2);
  border-radius:14px;
  padding:22px 12px;
  text-align:center;
  cursor:pointer;
  transition:all .3s ease;
  backdrop-filter:blur(8px);
}
.z-item:hover{
  background:rgba(245,200,66,.12);
  border-color:var(--gold-light);
  transform:translateY(-4px);
  box-shadow:0 8px 20px rgba(245,200,66,.2);
}
.z-sym{
  display:block;
  font-size:38px;
  color:var(--gold-light);
  margin-bottom:8px;
}
.z-name{
  display:block;
  font-family:'Tiro Tamil',serif;
  font-size:14px;
  color:rgba(255,255,255,.9);
}

/* ═══ TESTIMONIALS ═══ */
.testi-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:24px;
}
.t-card{
  background:var(--card-bg);
  border-left:4px solid var(--gold-light);
  border-radius:12px;
  padding:28px;
  box-shadow:0 6px 20px var(--shadow-purple);
  transition:all .3s ease;
}
.t-card:hover{transform:translateY(-4px);box-shadow:0 12px 30px var(--shadow-purple);}
.t-stars{color:var(--gold-bright);font-size:18px;letter-spacing:2px;margin-bottom:12px;}
.t-text{
  font-family:'Tiro Tamil',serif;
  font-size:15px;
  color:var(--text-secondary);
  line-height:1.8;
  margin-bottom:16px;
  font-style:italic;
}
.t-author{font-size:13px;color:var(--purple-bright);font-weight:600;}

/* ═══ PAGE HERO (inner pages) ═══ */
.page-hero{
  background:var(--header-gradient);
  color:white;
  padding:70px 0 80px;
  text-align:center;
  position:relative;
  overflow:hidden;
}
.page-hero::before{
  content:'';
  position:absolute;inset:0;
  background:radial-gradient(circle at 50% 100%,rgba(139,92,246,.4) 0%,transparent 60%);
}
.page-hero > .container{position:relative;z-index:1;}
.page-title{
  font-family:'Tiro Tamil',serif;
  font-size:52px;
  color:var(--gold-light);
  margin:12px 0 8px;
  text-shadow:0 0 30px rgba(245,200,66,.3);
}
.page-sub{font-size:16px;color:rgba(255,255,255,.7);letter-spacing:1px;}

/* ═══ ABOUT ═══ */
.about-grid{
  display:grid;
  grid-template-columns:340px 1fr;
  gap:40px;
  align-items:start;
}
.about-side{position:sticky;top:calc(var(--header-h) + 20px);}
.about-portrait{
  background:var(--card-bg);
  border-radius:20px;
  padding:30px;
  text-align:center;
  box-shadow:0 10px 30px var(--shadow-purple);
  margin-bottom:24px;
  border:1px solid var(--border-gold);
}
.about-img{
  width:100%;
  max-width:240px;
  aspect-ratio:1;
  border-radius:16px;
  object-fit:cover;
  margin:0 auto 20px;
  border:3px solid var(--gold-light);
  background:var(--purple-rich);
}
.about-name{
  font-family:'Tiro Tamil',serif;
  font-size:24px;
  color:var(--text-primary);
  margin-bottom:6px;
}
.about-role{
  font-family:'Cinzel',serif;
  font-size:12px;
  letter-spacing:2px;
  color:var(--purple-bright);
  text-transform:uppercase;
}
.stat-row{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:12px;
  background:var(--card-bg);
  border-radius:16px;
  padding:24px 16px;
  border:1px solid var(--border-gold);
  box-shadow:0 6px 20px var(--shadow-purple);
}
.stat-row .stat-num{font-size:28px;color:var(--purple-bright);text-shadow:none;}
.stat-row .stat-lbl{color:var(--text-muted);font-size:11px;}
.about-main{display:flex;flex-direction:column;gap:24px;}
.info-grid{display:grid;grid-template-columns:1fr 1fr;gap:24px;}
.info-card{
  background:var(--card-bg);
  border-radius:16px;
  padding:28px;
  border:1px solid var(--border-gold);
  box-shadow:0 6px 20px var(--shadow-purple);
  transition:transform .3s ease;
}
.info-card:hover{transform:translateY(-3px);}
.info-card h3{
  font-family:'Tiro Tamil',serif;
  font-size:20px;
  color:var(--purple-bright);
  margin-bottom:16px;
  padding-bottom:12px;
  border-bottom:2px solid var(--border-gold);
}
.info-card p{
  font-family:'Tiro Tamil',serif;
  font-size:15px;
  color:var(--text-secondary);
  line-height:1.9;
}
.info-card ul li{
  font-family:'Tiro Tamil',serif;
  font-size:14px;
  color:var(--text-secondary);
  padding:8px 0 8px 26px;
  position:relative;
  border-bottom:1px dashed rgba(224,160,32,.2);
}
.info-card ul li:last-child{border:none;}
.info-card ul li::before{
  content:'✦';
  position:absolute;
  left:4px;
  color:var(--gold-bright);
}
.gold-div{
  height:1px;
  background:linear-gradient(90deg,transparent,var(--gold-bright),transparent);
  margin:20px 0;
}
.addr-lines{
  font-family:'Tiro Tamil',serif;
  font-size:15px;
  color:var(--text-secondary);
  line-height:2.1;
}
.addr-phone{
  display:flex;
  align-items:center;
  gap:10px;
  font-family:'Cinzel',serif;
  font-size:17px;
  color:var(--purple-bright);
  font-weight:600;
}
.cert-chips{
  display:flex;
  gap:12px;
  flex-wrap:wrap;
}
.cert-chip{
  background:linear-gradient(135deg,rgba(245,200,66,.12),rgba(107,63,199,.08));
  border:1px solid var(--border-gold);
  border-radius:10px;
  padding:10px 16px;
  color:var(--text-secondary);
  font-size:13px;
  font-weight:500;
}

/* ═══ CONTACT ═══ */
.contact-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:24px;
}
.c-card{
  background:var(--card-bg);
  border-radius:16px;
  padding:28px;
  border:1px solid var(--border-gold);
  box-shadow:0 6px 20px var(--shadow-purple);
}
.c-card h3{
  font-family:'Tiro Tamil',serif;
  font-size:19px;
  color:var(--purple-bright);
  margin-bottom:20px;
  padding-bottom:12px;
  border-bottom:2px solid var(--border-gold);
}
.c-btn{
  display:flex;
  align-items:center;
  gap:14px;
  padding:16px 18px;
  border-radius:12px;
  color:white;
  margin-bottom:12px;
  transition:all .25s ease;
  box-shadow:0 4px 14px rgba(0,0,0,.15);
}
.c-btn:last-child{margin-bottom:0;}
.c-btn:hover{transform:translateY(-2px);box-shadow:0 8px 20px rgba(0,0,0,.2);}
.btn-ico{
  font-size:24px;
  width:44px;height:44px;
  display:flex;
  align-items:center;
  justify-content:center;
  background:rgba(255,255,255,.18);
  border-radius:10px;
  flex-shrink:0;
}
.btn-tw{flex:1;}
.btn-lbl{font-size:12px;opacity:.85;margin-bottom:2px;letter-spacing:.5px;}
.btn-tw > div:last-child{font-weight:600;font-size:15px;}
.btn-wa{background:linear-gradient(135deg,#128c7e,#25d366);}
.btn-ph{background:linear-gradient(135deg,var(--purple-rich),var(--purple-bright));}
.btn-online{background:linear-gradient(135deg,#3a1a7a,#8b5cf6);}
.btn-mp{background:linear-gradient(135deg,#ea4335,#fbbc04);}
.btn-email{background:linear-gradient(135deg,#2563eb,#0ea5e9);}
.time-row{
  display:flex;
  align-items:center;
  gap:14px;
  padding:14px 0;
  border-bottom:1px dashed var(--border-gold);
}
.time-row.no-border{border:none;}
.time-ico{font-size:24px;width:40px;text-align:center;}
.time-label{
  font-weight:600;
  font-size:14px;
  color:var(--text-primary);
  font-family:'Tiro Tamil',serif;
}
.time-value{font-size:13px;color:var(--text-muted);margin-top:2px;}

/* ═══ MAP + FORM ═══ */
.map-form-grid{
  display:grid;
  grid-template-columns:1fr 1.1fr;
  gap:30px;
  align-items:start;
}
.map-card{
  background:var(--card-bg);
  border-radius:16px;
  padding:24px;
  border:1px solid var(--border-gold);
  box-shadow:0 6px 20px var(--shadow-purple);
  display:flex;
  flex-direction:column;
  gap:16px;
  position:sticky;
  top:calc(var(--header-h) + 20px);
}
.map-card-head{
  display:flex;
  align-items:center;
  gap:14px;
}
.map-card-head > span{font-size:32px;}
.map-title{
  font-family:'Tiro Tamil',serif;
  font-size:18px;
  color:var(--text-primary);
  font-weight:600;
}
.map-sub{font-size:13px;color:var(--text-muted);margin-top:2px;}
.map-frame{
  width:100%;
  height:420px;
  border-radius:12px;
  overflow:hidden;
  border:1px solid var(--border-gold);
  background:#eee;
  position:relative;
}
.map-frame iframe{
  display:block;
  border:0;
  width:100%;
  height:100%;
  filter:contrast(1.05) saturate(1.1);
}
.map-link{
  display:block;
  text-align:center;
  padding:12px;
  background:linear-gradient(135deg,rgba(245,200,66,.1),rgba(107,63,199,.06));
  border:1px solid var(--border-gold);
  border-radius:10px;
  color:var(--purple-bright);
  font-size:14px;
  font-weight:500;
  transition:all .2s ease;
}
.map-link:hover{
  background:linear-gradient(135deg,var(--gold-light),var(--gold-bright));
  color:var(--text-primary);
  transform:translateY(-1px);
}

/* FORM */
.contact-form{
  background:var(--card-bg);
  border-radius:16px;
  padding:32px;
  border:1px solid var(--border-gold);
  box-shadow:0 6px 20px var(--shadow-purple);
}
.form-head{margin-bottom:24px;padding-bottom:18px;border-bottom:2px solid var(--border-gold);}
.form-title{
  font-family:'Tiro Tamil',serif;
  font-size:22px;
  color:var(--purple-bright);
  font-weight:600;
  margin-bottom:4px;
}
.form-sub{font-size:13px;color:var(--text-muted);letter-spacing:.5px;}
.form-grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:18px;
}
.form-field{display:flex;flex-direction:column;gap:6px;}
.form-field-full{grid-column:1/-1;}
.form-field label{
  font-family:'Tiro Tamil',serif;
  font-size:14px;
  color:var(--text-primary);
  font-weight:500;
}
.req{color:#e24141;}
.form-field input,
.form-field select,
.form-field textarea{
  font-family:inherit;
  font-size:14px;
  padding:12px 14px;
  border:1.5px solid var(--border-gold);
  border-radius:10px;
  background:#fffdf5;
  color:var(--text-primary);
  transition:all .2s ease;
  width:100%;
}
.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus{
  outline:none;
  border-color:var(--purple-bright);
  background:#fff;
  box-shadow:0 0 0 4px rgba(107,63,199,.12);
}
.form-field textarea{resize:vertical;min-height:110px;font-family:'Tiro Tamil',serif;}
.form-field input::placeholder,
.form-field textarea::placeholder{color:#b0a2c8;}
.form-field select{
  cursor:pointer;
  appearance:none;
  background-image:url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' width='14' height='8' viewBox='0 0 14 8' fill='none'%3e%3cpath d='M1 1l6 6 6-6' stroke='%234a2d9c' stroke-width='2' stroke-linecap='round'/%3e%3c/svg%3e");
  background-repeat:no-repeat;
  background-position:right 16px center;
  padding-right:40px;
}
.form-actions{
  margin-top:24px;
  display:flex;
  flex-direction:column;
  gap:12px;
  align-items:flex-start;
}
.form-submit{min-width:220px;justify-content:center;}
.form-note{font-size:12px;color:var(--text-muted);}
.form-success{
  margin-top:20px;
  background:linear-gradient(135deg,#16a34a,#22c55e);
  color:white;
  padding:16px 20px;
  border-radius:10px;
  font-family:'Tiro Tamil',serif;
  font-size:14px;
  animation:reveal-up .4s ease;
}

/* ═══ FOOTER ═══ */
.site-footer{
  background:var(--footer-gradient);
  color:rgba(255,255,255,.75);
  padding:60px 0 0;
}
.footer-grid{
  display:grid;
  grid-template-columns:2fr 1fr 1fr 1.3fr;
  gap:40px;
  margin-bottom:40px;
}
.footer-brand{
  font-family:'Tiro Tamil',serif;
  font-size:22px;
  color:var(--gold-light);
  margin-bottom:14px;
}
.footer-text{
  font-family:'Tiro Tamil',serif;
  font-size:14px;
  line-height:1.8;
  color:rgba(255,255,255,.65);
}
.footer-col h4{
  font-family:'Cinzel',serif;
  font-size:14px;
  color:var(--gold-light);
  margin-bottom:18px;
  letter-spacing:2px;
  text-transform:uppercase;
}
.footer-links li{padding:6px 0;font-size:14px;font-family:'Tiro Tamil',serif;}
.footer-links a{color:rgba(255,255,255,.7);transition:color .2s ease;}
.footer-links a:hover{color:var(--gold-light);}
.footer-bottom{
  border-top:1px solid rgba(245,200,66,.15);
  padding:24px 0;
  text-align:center;
  font-size:13px;
  color:rgba(255,255,255,.5);
}

/* ═══ FLOATING BUTTONS ═══ */
.float-btns{
  position:fixed;
  right:24px;
  bottom:24px;
  display:flex;
  flex-direction:column;
  gap:14px;
  z-index:90;
}
.f-btn{
  width:56px;height:56px;
  border-radius:50%;
  display:flex;
  align-items:center;
  justify-content:center;
  box-shadow:0 6px 20px rgba(0,0,0,.3);
  transition:transform .25s ease;
}
.f-btn:hover{transform:scale(1.1);}
.f-wa{background:#25d366;}
.f-ph{background:var(--purple-bright);animation:pulse-ring 2s infinite;}
@keyframes pulse-ring{
  0%,100%{box-shadow:0 6px 20px rgba(0,0,0,.3),0 0 0 0 rgba(107,63,199,.5);}
  50%{box-shadow:0 6px 20px rgba(0,0,0,.3),0 0 0 14px rgba(107,63,199,0);}
}

/* ═══════════════════════════
   RESPONSIVE
═══════════════════════════ */
@media (max-width:1024px){
  .container{padding:0 24px;}
  .hero-title{font-size:48px;}
  .section-title{font-size:32px;}
  .page-title{font-size:40px;}
  .services-grid,.services-grid-3{grid-template-columns:repeat(2,1fr);}
  .stats-grid{grid-template-columns:repeat(2,1fr);gap:24px;}
  .zodiac-grid{grid-template-columns:repeat(4,1fr);}
  .testi-grid{grid-template-columns:1fr;}
  .about-grid{grid-template-columns:1fr;}
  .about-side{position:static;}
  .contact-grid{grid-template-columns:1fr;}
  .map-form-grid{grid-template-columns:1fr;}
  .map-card{position:static;}
  .footer-grid{grid-template-columns:1fr 1fr;gap:32px;}
  .profile-ring{width:280px;height:280px;}
  .profile-img{width:240px;height:240px;}
  .zodiac-wheel{width:360px;height:360px;}
}

@media (max-width:768px){
  .container{padding:0 18px;}
  :root{--header-h:64px;}

  .brand-title{font-size:14px;}
  .brand-sub{font-size:10px;letter-spacing:1px;}
  .mandala-svg{width:36px;height:36px;}

  /* Mobile nav */
  .top-nav{
    position:fixed;
    top:var(--header-h);
    left:0;right:0;
    bottom:auto;
    max-height:calc(100vh - var(--header-h));
    overflow-y:auto;
    background:var(--header-gradient);
    flex-direction:column;
    align-items:stretch;
    padding:20px;
    gap:6px;
    transform:translateY(-120%);
    transition:transform .35s cubic-bezier(.2,.8,.2,1);
    box-shadow:0 20px 40px rgba(0,0,0,.4);
    border-top:1px solid rgba(245,200,66,.25);
    z-index:99;
    visibility:hidden;
  }
  .top-nav.open{
    transform:translateY(0);
    visibility:visible;
  }
  .top-nav .nav-item{
    text-align:left;
    padding:16px 18px;
    font-size:16px;
    border-radius:10px;
  }
  .top-nav .nav-item.active{
    background:rgba(245,200,66,.18);
  }
  .nav-cta{
    margin-left:0;
    margin-top:10px;
    text-align:center;
    padding:14px 18px;
    font-size:15px;
  }
  .nav-toggle{display:flex;}

  /* Hero mobile */
  .hero{padding:50px 0 70px;min-height:auto;}
  .hero-grid{grid-template-columns:1fr;gap:40px;text-align:center;}
  .hero-title{font-size:38px;}
  .hero-lead{font-size:15px;margin:0 auto 28px;}
  .hero-ctas{justify-content:center;}
  .hero-badges{justify-content:center;}
  .profile-ring{width:240px;height:240px;}
  .profile-img{width:200px;height:200px;}
  .zodiac-wheel{width:300px;height:300px;}
  .scroll-indicator{display:none;}

  .section{padding:50px 0;}
  .section-title{font-size:26px;}
  .section-header{margin-bottom:32px;}
  .page-hero{padding:50px 0;}
  .page-title{font-size:32px;}
  .page-sub{font-size:14px;}

  .stats-grid{grid-template-columns:repeat(2,1fr);}
  .stat-num{font-size:36px;}

  .services-grid,.services-grid-3{grid-template-columns:1fr;}
  .zodiac-grid{grid-template-columns:repeat(3,1fr);gap:10px;}
  .z-sym{font-size:30px;}

  .info-grid{grid-template-columns:1fr;}
  .footer-grid{grid-template-columns:1fr;gap:28px;text-align:center;}

  .cta-banner{padding:32px 20px;}
  .cta-banner-text{font-size:18px;}

  .form-grid{grid-template-columns:1fr;}
  .contact-form{padding:24px 20px;}
  .map-frame{height:320px;}

  .float-btns{right:16px;bottom:16px;}
  .f-btn{width:48px;height:48px;}
}

@media (max-width:480px){
  .hero-title{font-size:32px;}
  .page-title{font-size:28px;}
  .zodiac-grid{grid-template-columns:repeat(2,1fr);}
  .stats-grid{grid-template-columns:1fr 1fr;gap:16px;}
  .stat-num{font-size:32px;}
  .brand-title{font-size:12px;letter-spacing:.8px;}
  .brand-sub{display:none;}
  .mandala-svg{width:32px;height:32px;}
}

/* Reduced motion */
@media (prefers-reduced-motion:reduce){
  *,*::before,*::after{animation-duration:.01ms !important;animation-iteration-count:1 !important;transition-duration:.01ms !important;}
}
