/* =============================================
   SHWETA KOHLE COACHING — VIBRANT & ENERGETIC
   ============================================= */

/* --- CSS Variables --- */
:root {
  --orange:  #ff6b35;
  --pink:    #f72585;
  --purple:  #7209b7;
  --violet:  #4361ee;
  --teal:    #06d6a0;
  --yellow:  #ffd93d;
  --dark:    #0d0d1a;
  --dark2:   #12122a;
  --card-bg: #1a1a35;
  --text:    #e8e8f0;
  --muted:   #9090b0;
  --white:   #ffffff;
  --grad-1: linear-gradient(135deg, #ff6b35, #f72585, #7209b7);
  --grad-2: linear-gradient(135deg, #4361ee, #7209b7, #f72585);
  --grad-3: linear-gradient(135deg, #06d6a0, #4361ee);
  --radius: 20px;
  --shadow: 0 20px 60px rgba(0,0,0,0.4);
}

/* --- Reset & Base --- */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  font-family: 'DM Sans', sans-serif;
  background: var(--dark);
  color: var(--text);
  overflow-x: hidden;
  line-height: 1.7;
}

h1, h2, h3 { font-family: 'Playfair Display', serif; line-height: 1.2; }

a { text-decoration: none; color: inherit; }

img { max-width: 100%; display: block; }

.container { max-width: 1200px; margin: 0 auto; padding: 0 2rem; }
.section-pad { padding: 100px 0; }

/* --- Gradient Text --- */
.gradient-text {
  background: var(--grad-1);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* --- Section Labels --- */
.section-label {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 1rem;
}
.section-label.center { display: block; text-align: center; }

.section-title { font-size: clamp(2rem, 4vw, 3rem); margin-bottom: 1rem; }
.section-title.center { text-align: center; }

.section-sub { color: var(--muted); text-align: center; max-width: 560px; margin: 0 auto 3rem; font-size: 1.05rem; }

/* --- Buttons --- */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--grad-1);
  color: #fff;
  font-weight: 600;
  font-size: 1rem;
  padding: 0.85rem 2rem;
  border-radius: 50px;
  border: none;
  cursor: pointer;
  transition: transform 0.2s, box-shadow 0.2s;
  box-shadow: 0 8px 30px rgba(247,37,133,0.35);
  font-family: 'DM Sans', sans-serif;
}
.btn-primary:hover { transform: translateY(-3px); box-shadow: 0 14px 40px rgba(247,37,133,0.5); }

.btn-secondary {
  display: inline-flex;
  align-items: center;
  color: var(--text);
  font-weight: 500;
  font-size: 1rem;
  padding: 0.85rem 1.5rem;
  border-radius: 50px;
  border: 1px solid rgba(255,255,255,0.2);
  transition: border-color 0.2s, background 0.2s;
}
.btn-secondary:hover { border-color: var(--orange); background: rgba(255,107,53,0.08); }

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

/* =============================================
   NAVIGATION
   ============================================= */
#navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 1.2rem 2rem;
  transition: background 0.3s, box-shadow 0.3s;
}
#navbar.scrolled {
  background: rgba(13,13,26,0.95);
  backdrop-filter: blur(16px);
  box-shadow: 0 2px 30px rgba(0,0,0,0.4);
}
.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo {
  font-family: 'Playfair Display', serif;
  font-size: 1.3rem;
  font-weight: 700;
  background: var(--grad-1);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.nav-links {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 2.5rem;
}
.nav-links a {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--muted);
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--white); }
.nav-cta {
  background: var(--grad-1) !important;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  border: 1px solid rgba(247,37,133,0.4);
  padding: 0.5rem 1.2rem;
  border-radius: 50px;
  color: var(--white) !important;
}
.nav-toggle { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; }
.nav-toggle span { display: block; width: 25px; height: 2px; background: var(--white); border-radius: 2px; transition: 0.3s; }

/* =============================================
   HERO
   ============================================= */
.hero {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 3rem;
  padding: 140px 6% 80px;
  position: relative;
  overflow: hidden;
  background: radial-gradient(ellipse at 70% 50%, rgba(114,9,183,0.15) 0%, transparent 60%),
              radial-gradient(ellipse at 20% 80%, rgba(255,107,53,0.1) 0%, transparent 50%),
              var(--dark);
}
.hero-bg-shapes { position: absolute; inset: 0; pointer-events: none; }
.shape {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.15;
}
.shape-1 { width: 500px; height: 500px; background: var(--purple); top: -100px; right: -100px; animation: drift 8s ease-in-out infinite alternate; }
.shape-2 { width: 300px; height: 300px; background: var(--orange); bottom: 50px; left: -100px; animation: drift 10s ease-in-out infinite alternate-reverse; }
.shape-3 { width: 200px; height: 200px; background: var(--pink); top: 50%; left: 40%; animation: drift 6s ease-in-out infinite alternate; }

@keyframes drift { from { transform: translate(0,0) scale(1); } to { transform: translate(30px,20px) scale(1.1); } }

.hero-badge {
  display: inline-block;
  background: rgba(255,107,53,0.15);
  border: 1px solid rgba(255,107,53,0.4);
  color: var(--orange);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 0.4rem 1.2rem;
  border-radius: 50px;
  margin-bottom: 1.5rem;
  animation: fadeUp 0.6s ease both;
}
.hero-title {
  font-size: clamp(2.5rem, 5vw, 4rem);
  margin-bottom: 1.5rem;
  animation: fadeUp 0.7s 0.1s ease both;
}
.hero-subtitle {
  font-size: 1.15rem;
  color: var(--muted);
  max-width: 480px;
  margin-bottom: 2.5rem;
  animation: fadeUp 0.7s 0.2s ease both;
}
.hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 3rem;
  animation: fadeUp 0.7s 0.3s ease both;
}
.hero-stats {
  display: flex;
  align-items: center;
  gap: 2rem;
  animation: fadeUp 0.7s 0.4s ease both;
}
.stat { text-align: center; }
.stat-num { display: block; font-size: 1.8rem; font-weight: 700; font-family: 'Playfair Display', serif; background: var(--grad-1); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.stat-label { font-size: 0.75rem; color: var(--muted); letter-spacing: 1px; text-transform: uppercase; }
.stat-divider { width: 1px; height: 40px; background: rgba(255,255,255,0.1); }

.hero-image-wrap {
  position: relative;
  display: flex;
  justify-content: center;
  animation: fadeIn 1s 0.3s ease both;
}
.hero-img-glow {
  position: absolute;
  inset: -20px;
  background: var(--grad-1);
  border-radius: 40px;
  filter: blur(40px);
  opacity: 0.3;
  animation: pulse 3s ease-in-out infinite alternate;
}
@keyframes pulse { from { opacity: 0.2; } to { opacity: 0.4; } }
.hero-img {
  width: 100%;
  max-width: 520px;
  border-radius: 30px;
  object-fit: cover;
  height: 560px;
  position: relative;
  z-index: 1;
  box-shadow: var(--shadow);
}

/* =============================================
   INSPIRATION STRIP
   ============================================= */
.inspire-strip { padding: 0; overflow: hidden; }
.strip-inner {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  height: 260px;
}
.strip-card { position: relative; overflow: hidden; }
.strip-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.strip-card:hover img { transform: scale(1.08); }
.strip-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(13,13,26,0.8), transparent);
  display: flex;
  align-items: flex-end;
  padding: 1.2rem;
  opacity: 0;
  transition: opacity 0.3s;
}
.strip-card:hover .strip-overlay { opacity: 1; }
.strip-overlay span {
  font-family: 'Playfair Display', serif;
  font-size: 1.3rem;
  color: var(--white);
  font-style: italic;
}

/* =============================================
   ABOUT
   ============================================= */
.about { background: var(--dark2); }
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 5rem;
  align-items: center;
}
.about-img-wrap { position: relative; }
.about-img-bg {
  position: absolute;
  top: 20px; left: 20px; right: -20px; bottom: -20px;
  background: var(--grad-2);
  border-radius: 30px;
  opacity: 0.25;
}
.about-img {
  border-radius: 30px;
  width: 100%;
  height: 520px;
  object-fit: cover;
  position: relative;
  z-index: 1;
  box-shadow: var(--shadow);
}
.about-badge-float {
  position: absolute;
  bottom: 30px;
  right: -20px;
  background: var(--grad-1);
  color: white;
  padding: 1rem 1.4rem;
  border-radius: 16px;
  display: flex;
  align-items: center;
  gap: 0.7rem;
  z-index: 2;
  box-shadow: 0 10px 30px rgba(247,37,133,0.4);
  font-weight: 600;
  font-size: 0.85rem;
}
.about-badge-float i { font-size: 1.4rem; }
.about-text p {
  color: var(--muted);
  margin-bottom: 1.2rem;
  font-size: 1.02rem;
}
.about-pillars {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin: 1.8rem 0 2rem;
}
.pillar {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  padding: 0.5rem 1rem;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--text);
}
.pillar i { color: var(--orange); }

/* =============================================
   SERVICES
   ============================================= */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.service-card {
  background: var(--card-bg);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: var(--radius);
  padding: 2rem;
  transition: transform 0.3s, box-shadow 0.3s, border-color 0.3s;
  position: relative;
  overflow: hidden;
}
.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--grad-1);
  opacity: 0;
  transition: opacity 0.3s;
}
.service-card:hover { transform: translateY(-8px); box-shadow: 0 30px 60px rgba(0,0,0,0.4); border-color: rgba(247,37,133,0.3); }
.service-card:hover::before { opacity: 1; }
.featured-card { border-color: rgba(247,37,133,0.4); background: linear-gradient(135deg, rgba(247,37,133,0.08), rgba(114,9,183,0.08)); }
.featured-tag {
  display: inline-block;
  background: var(--grad-1);
  color: white;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 0.25rem 0.8rem;
  border-radius: 50px;
  margin-bottom: 1rem;
}
.service-icon {
  width: 56px; height: 56px;
  background: rgba(255,255,255,0.06);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.2rem;
  font-size: 1.4rem;
  color: var(--ic);
  border: 1px solid rgba(255,255,255,0.08);
}
.service-card h3 { font-size: 1.15rem; margin-bottom: 0.8rem; color: var(--white); }
.service-card p { color: var(--muted); font-size: 0.93rem; margin-bottom: 1.2rem; }
.service-link { color: var(--orange); font-size: 0.9rem; font-weight: 600; transition: gap 0.2s; }
.service-link:hover { color: var(--pink); }

/* =============================================
   TESTIMONIALS
   ============================================= */
.testimonials { background: var(--dark2); }
.rating-summary {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  margin-bottom: 3.5rem;
}
.big-rating {
  font-size: 5rem;
  font-family: 'Playfair Display', serif;
  font-weight: 900;
  background: var(--grad-1);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
}
.stars { font-size: 1.8rem; color: var(--yellow); letter-spacing: 3px; }
.rating-sub { color: var(--muted); font-size: 0.9rem; margin-top: 0.3rem; }
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.tcard {
  background: var(--card-bg);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: var(--radius);
  padding: 2rem;
  transition: transform 0.3s, box-shadow 0.3s;
}
.tcard:hover { transform: translateY(-6px); box-shadow: 0 20px 50px rgba(0,0,0,0.3); }
.tcard-stars { color: var(--yellow); font-size: 1rem; margin-bottom: 1rem; letter-spacing: 2px; }
.tcard p { color: var(--muted); font-size: 0.93rem; font-style: italic; margin-bottom: 1.5rem; }
.tcard-author { display: flex; align-items: center; gap: 0.8rem; }
.tcard-avatar {
  width: 42px; height: 42px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1rem;
  color: white;
  flex-shrink: 0;
}
.tcard-author strong { display: block; font-size: 0.9rem; color: var(--white); }
.tcard-author span { font-size: 0.78rem; color: var(--muted); }

/* =============================================
   CONTACT
   ============================================= */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 3rem;
  align-items: start;
}
.contact-info { display: flex; flex-direction: column; gap: 1.2rem; }
.info-card {
  display: flex;
  align-items: center;
  gap: 1rem;
  background: var(--card-bg);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 16px;
  padding: 1.2rem 1.4rem;
  transition: border-color 0.2s;
}
.info-card:hover { border-color: rgba(247,37,133,0.3); }
.info-card i { font-size: 1.3rem; color: var(--orange); width: 28px; text-align: center; }
.info-card strong { display: block; font-size: 0.8rem; color: var(--muted); font-weight: 500; text-transform: uppercase; letter-spacing: 1px; }
.info-card a { color: var(--text); font-weight: 500; font-size: 0.97rem; transition: color 0.2s; }
.info-card a:hover { color: var(--orange); }

.contact-form {
  background: var(--card-bg);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: var(--radius);
  padding: 2.5rem;
}
.contact-form h3 {
  font-size: 1.4rem;
  margin-bottom: 1.8rem;
  color: var(--white);
}
.form-group { display: flex; flex-direction: column; gap: 0.4rem; margin-bottom: 1.2rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-group label { font-size: 0.82rem; font-weight: 600; color: var(--muted); letter-spacing: 0.5px; }
.form-group input,
.form-group textarea {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 10px;
  padding: 0.85rem 1rem;
  color: var(--text);
  font-family: 'DM Sans', sans-serif;
  font-size: 0.95rem;
  transition: border-color 0.2s, background 0.2s;
  outline: none;
  resize: vertical;
}
.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--pink);
  background: rgba(247,37,133,0.05);
}
.form-msg {
  margin-top: 1rem;
  font-size: 0.9rem;
  font-weight: 500;
  text-align: center;
  min-height: 1.4rem;
}
.form-msg.success { color: var(--teal); }
.form-msg.error { color: #ff6b6b; }

/* =============================================
   FOOTER
   ============================================= */
.footer {
  background: var(--dark2);
  border-top: 1px solid rgba(255,255,255,0.06);
  padding: 3rem 2rem;
  text-align: center;
}
.footer-inner { max-width: 700px; margin: 0 auto; }
.footer-logo {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  font-weight: 700;
  background: var(--grad-1);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 0.5rem;
}
.footer-tagline { color: var(--muted); font-size: 0.9rem; margin-bottom: 1.5rem; }
.footer-links { display: flex; justify-content: center; gap: 2rem; flex-wrap: wrap; margin-bottom: 2rem; }
.footer-links a { color: var(--muted); font-size: 0.9rem; transition: color 0.2s; }
.footer-links a:hover { color: var(--orange); }
.footer-copy { color: rgba(144,144,176,0.5); font-size: 0.8rem; }

/* =============================================
   ANIMATIONS
   ============================================= */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }

/* =============================================
   RESPONSIVE
   ============================================= */
@media (max-width: 1024px) {
  .hero { grid-template-columns: 1fr; padding: 120px 6% 60px; text-align: center; }
  .hero-subtitle { margin: 0 auto 2.5rem; }
  .hero-actions { justify-content: center; }
  .hero-stats { justify-content: center; }
  .hero-image-wrap { display: none; }
  .about-grid { grid-template-columns: 1fr; gap: 3rem; }
  .about-img-wrap { max-width: 500px; margin: 0 auto; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .testimonials-grid { grid-template-columns: repeat(2, 1fr); }
  .contact-grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .nav-links { display: none; flex-direction: column; position: fixed; inset: 0; top: 70px; background: rgba(13,13,26,0.98); padding: 2rem; gap: 1.5rem; z-index: 999; }
  .nav-links.open { display: flex; }
  .nav-toggle { display: flex; }
  .strip-inner { grid-template-columns: repeat(3, 1fr); }
  .strip-card:nth-child(4), .strip-card:nth-child(5) { display: none; }
  .services-grid { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .hero-stats { flex-direction: column; gap: 1rem; }
  .stat-divider { width: 80px; height: 1px; }
}
