/* Manogati Mental Wellness Styles */
:root {
  --primary: #4f8cff;
  --secondary: #e0f7fa;
  --accent: #6ee7b7;
  --text: #22223b;
  --muted: #6b7280;
  --bg: #f8fafc;
}

html, body {
  margin: 0;
  padding: 0;
  font-family: "Poppins", Helvetica, sans-serif;
  line-height: 1.6;
  color: #333;
  background: #fff;
  scroll-behavior: smooth;
}

.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.site-header {
  background: #fff;
  box-shadow: 0 2px 8px rgba(79,140,255,0.05);
  position: sticky;
  top: 0;
  z-index: 100;
}
.site-header.glassy {
  background: rgba(255,255,255,0.85);
  backdrop-filter: blur(8px);
  box-shadow: 0 4px 24px rgba(79,140,255,0.09);
  border-bottom: 1.5px solid #e0e7ef;
}
.nav-flex {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.2rem 0;
}
.brand {
  font-size: 1.7rem;
  font-weight: 700;
  color: var(--primary);
  text-decoration: none;
  letter-spacing: 1px;
}
.nav-menu {
  display: flex;
  gap: 2rem;
  list-style: none;
  margin: 0;
  padding: 0;
}
.nav-menu a {
  color: var(--text);
  text-decoration: none;
  font-weight: 600;
  font-size: 1.05rem;
  transition: color 0.2s;
  position: relative;
  padding-bottom: 4px;
}
.nav-menu a::after {
  content: '';
  display: block;
  height: 2px;
  width: 0;
  background: var(--primary);
  transition: width 0.3s;
  position: absolute;
  left: 0;
  bottom: 0;
}
.nav-menu a:hover::after, .nav-menu a:focus::after {
  width: 100%;
}
.hero {
  position: relative;
  overflow: hidden;
  min-height: 480px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: 7rem;
  padding-bottom: 5rem;
  background: linear-gradient(120deg, #e0f7fa 0%, #c3e6fc 100%);
  color: #22223b;
  border-bottom-left-radius: 3rem;
  border-bottom-right-radius: 3rem;
  box-shadow: 0 8px 32px rgba(79,140,255,0.07);
}
.hero-logo { display: none; }
.hero-bg-svg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 0;
}
.hero-content {
  position: relative;
  z-index: 1;
  background: rgba(255,255,255,0.92);
  border-radius: 2rem;
  box-shadow: 0 4px 32px rgba(79,140,255,0.07);
  padding: 3rem 2rem 2.5rem 2rem;
  max-width: 540px;
  margin: 0 auto;
  text-align: center;
}
.hero-illustration {
  margin: 0 auto 2rem auto;
  display: flex;
  justify-content: center;
}
.hero-content h1 {
  font-size: 2.8rem;
  margin-bottom: 1.2rem;
  font-weight: 700;
  color: #2563eb;
}
.hero-sub {
  font-size: 1.25rem;
  margin-bottom: 2rem;
  color: #3b4a6b;
}
.cta-btn {
  box-shadow: 0 2px 8px rgba(110,231,183,0.15);
  font-size: 1.15rem;
  letter-spacing: 0.5px;
}
.cta-btn.coming-soon {
  background: #e0e7ef;
  color: #6b7280;
  cursor: not-allowed;
  margin-bottom: 0.5rem;
  animation: none !important;
  transform: none !important;
}
.cta-btn.notify {
  background: linear-gradient(90deg, #4f8cff 60%, #6ee7b7 100%);
  color: #fff;
  box-shadow: 0 2px 12px rgba(79,140,255,0.10);
}
.cta-btn.notify:hover, .cta-btn.notify:focus {
  background: linear-gradient(90deg, #2563eb 60%, #4f8cff 100%);
}
.tagline {
  margin-top: 1.5rem;
  font-size: 1.1rem;
  color: var(--muted);
}
section {
  padding: 4rem 0 3rem 0;
}
.about, .why-matters, .whats-coming, .professionals, .contact, .disclaimer {
  background: #fff;
  border-radius: 2rem;
  margin-bottom: 2rem;
  box-shadow: 0 2px 12px rgba(79,140,255,0.04);
}
.about h2, .why-matters h2, .whats-coming h2, .professionals h2, .contact h2, .disclaimer h2 {
  color: var(--primary);
  font-size: 2rem;
  margin-bottom: 1.2rem;
}
.section-divider {
  width: 100%;
  height: 32px;
  background: linear-gradient(90deg, #e0f7fa 0%, #c3e6fc 100%);
  opacity: 0.5;
  margin: 0 0 2rem 0;
  border-radius: 0 0 2rem 2rem;
}
.card {
  background: #fff;
  border-radius: 1.5rem;
  box-shadow: 0 4px 24px rgba(79,140,255,0.09);
  padding: 2.2rem 1.5rem 1.7rem 1.5rem;
  margin-bottom: 1.5rem;
  transition: box-shadow 0.3s, transform 0.3s;
}
.card:hover, .card:focus-within {
  box-shadow: 0 12px 32px rgba(79,140,255,0.15);
  transform: translateY(-8px) scale(1.04);
}
.icon-svg {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 1rem;
}
.why-grid, .coming-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 2.5rem;
  margin-top: 2rem;
}
.why-item, .coming-item {
  min-width: 220px;
  background: var(--secondary);
  border-radius: 1.2rem;
  padding: 2rem 1.2rem 1.5rem 1.2rem;
  text-align: center;
  box-shadow: 0 1px 6px rgba(79,140,255,0.06);
}
.icon {
  font-size: 2.2rem;
  display: block;
  margin-bottom: 0.7rem;
}
.pro-list {
  list-style: none;
  padding: 0;
  margin: 2rem 0 1.5rem 0;
}
.pro-list li {
  font-size: 1.1rem;
  margin-bottom: 0.8rem;
  display: flex;
  align-items: center;
  gap: 0.7rem;
}
.pro-contact {
  margin-top: 1.2rem;
  font-size: 1.1rem;
}
.contact-list {
  list-style: none;
  padding: 0;
  margin: 2rem 0 0 0;
}
.contact-list li {
  font-size: 1.1rem;
  margin-bottom: 0.7rem;
  display: flex;
  align-items: center;
  gap: 0.7rem;
}
.disclaimer {
  background: #f8fafc;
  color: #6b7280;
  font-size: 1rem;
  border: 1px solid #e0e7ef;
  box-shadow: none;
}
.site-footer {
  background: #fff;
  border-top: 1px solid #e0e7ef;
  padding: 1.5rem 0;
  text-align: center;
  font-size: 1rem;
  color: #6b7280;
}
.footer-flex {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}
.site-footer a {
  color: var(--primary);
  text-decoration: none;
  margin: 0 0.5rem;
}
.site-footer a:hover, .site-footer a:focus {
  text-decoration: underline;
}
@media (max-width: 900px) {
  .container { max-width: 98vw; }
  .hero-content { padding: 2rem 0.7rem 2rem 0.7rem; }
  .why-grid, .coming-grid { gap: 1.2rem; }
  .footer-flex { flex-direction: column; gap: 0.5rem; }
}
@media (max-width: 600px) {
  .nav-menu { gap: 1rem; font-size: 0.98rem; }
  .hero-content { padding: 1.2rem 0.2rem 1.2rem 0.2rem; }
  .card { padding: 1.2rem 0.7rem; }
  .about h2, .why-matters h2, .whats-coming h2, .professionals h2, .contact h2, .disclaimer h2 { font-size: 1.3rem; }
  section { padding: 2.5rem 0 2rem 0; }
}

/* Animations */
[data-animate] { opacity: 0; transform: translateY(40px); transition: opacity 0.8s cubic-bezier(.4,0,.2,1), transform 0.8s cubic-bezier(.4,0,.2,1); }
[data-animate].animated { opacity: 1; transform: none; }
[data-animate="slide-up"] { transform: translateY(40px); }
[data-animate="fade-up"] { transform: translateY(40px); }

.hero-visual { margin: 0 auto 2rem auto; display: flex; justify-content: center; }
.hero-visual svg { max-width: 120px; }
.service-icon svg, .step-number svg { display: block; margin: 0 auto; }
.service-icon, .step-number { background: none; box-shadow: none; }

.services-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  justify-content: center;
  align-items: stretch;
}
@media (max-width: 800px) {
  .services-grid {
    flex-direction: column;
    gap: 1.5rem;
    align-items: stretch;
  }
}

/* 1. Page Load Fade-in */
body, .main-fade {
  opacity: 0;
  transition: opacity 1.2s cubic-bezier(.25,.8,.25,1);
}
body.loaded, .main-fade.loaded {
  opacity: 1;
}

/* 2. Hero Text Entrance */
.hero-headline, .hero-subheadline {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 1s cubic-bezier(.25,.8,.25,1), transform 1s cubic-bezier(.25,.8,.25,1);
}
.hero-text-in .hero-headline {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.2s;
}
.hero-text-in .hero-subheadline {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.5s;
}

/* 3. Scroll-triggered Fade-in+Scale */
.section-fade {
  opacity: 0;
  transform: scale(0.98);
  transition: opacity 1s cubic-bezier(.25,.8,.25,1), transform 1s cubic-bezier(.25,.8,.25,1);
}
.section-fade.visible {
  opacity: 1;
  transform: scale(1);
}

/* 4. Floating/Drift Effect for SVGs/Icons */
.floating {
  animation: floatY 4s ease-in-out infinite alternate;
}
@keyframes floatY {
  0% { transform: translateY(0); }
  100% { transform: translateY(-16px); }
}

/* 5. Animated Gradient Background (Hero) */
.hero-bg-animated {
  background: linear-gradient(120deg, #e0eafc, #cfdef3, #f5f7fa, #e0eafc);
  background-size: 200% 200%;
  animation: gradientMove 18s linear infinite;
}
@keyframes gradientMove {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

/* 6. CTA Button Hover Effect */
.cta-btn {
  transition: transform 0.3s cubic-bezier(.25,.8,.25,1), box-shadow 0.3s cubic-bezier(.25,.8,.25,1);
}
.cta-btn:hover, .cta-btn:focus {
  transform: scale(1.05);
  box-shadow: 0 4px 24px 0 rgba(80, 120, 200, 0.10);
  animation: pulseBtn 1.2s cubic-bezier(.25,.8,.25,1) infinite alternate;
}
@keyframes pulseBtn {
  0% { box-shadow: 0 4px 24px 0 rgba(80,120,200,0.10); }
  100% { box-shadow: 0 8px 32px 0 rgba(80,120,200,0.18); }
}

/* Custom Logo Styling - Removed since we're using proper logo placement */

/* Equal Box Heights for Why Mental Wellness Matters Section */
#why .box_feat {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  padding: 2rem;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  min-height: 200px;
}

#why .box_feat:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 30px rgba(0,0,0,0.12);
}

#why .box_feat h3 {
  margin-bottom: 1rem;
  color: #2c3e50;
  font-weight: 600;
}

#why .box_feat p {
  color: #6c757d;
  line-height: 1.6;
  margin: 0;
  flex-grow: 1;
}

/* Ensure equal height for all boxes in the row */
#why .row {
  display: flex;
  flex-wrap: wrap;
}

#why .col-lg-4 {
  display: flex;
  margin-bottom: 2rem;
}

/* Equal Box Heights for What's Coming Section */
#coming .box_feat {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  padding: 2rem;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  min-height: 200px;
}

#coming .box_feat:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 30px rgba(0,0,0,0.12);
}

#coming .box_feat h3 {
  margin-bottom: 1rem;
  color: #2c3e50;
  font-weight: 600;
}

#coming .box_feat p {
  color: #6c757d;
  line-height: 1.6;
  margin: 0;
  flex-grow: 1;
}

/* Ensure equal height for all boxes in the row */
#coming .row {
  display: flex;
  flex-wrap: wrap;
}

#coming .col-lg-4 {
  display: flex;
  margin-bottom: 2rem;
}

/* Small Disclaimer Section */
#disclaimer {
  padding: 1rem 0;
  margin: 2rem 0;
}

.disclaimer-content {
  text-align: center;
  font-size: 0.85rem;
  color: #6c757d;
  line-height: 1.4;
  max-width: 800px;
  margin: 0 auto;
  padding: 1rem;
  background: #f8f9fa;
  border-radius: 8px;
  border-left: 4px solid #007bff;
}

.disclaimer-content p {
  margin: 0;
}

/* Center Notify Me form and privacy note */
#coming .text-center {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
#notify-form {
  display: flex !important;
  gap: 8px;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 0.5rem;
}
#coming .text-center small {
  margin-top: 0.5rem;
  color: #888;
  text-align: center;
}
#notify-thankyou {
  display: none;
  margin-top: 0.5rem;
  color: #28a745;
  font-weight: 500;
  text-align: center;
}
#notify-email:invalid {
  border-color: #dc3545;
  box-shadow: 0 0 0 0.2rem rgba(220, 53, 69, 0.25);
}

/* Logo Animation */
@keyframes logoFadeIn {
  0% {
    opacity: 0;
    transform: scale(0.8) translateY(-20px);
  }
  50% {
    opacity: 0.7;
    transform: scale(1.05) translateY(-5px);
  }
  100% {
    opacity: 1;
    transform: scale(1) translateY(0);
  }
}

/* Navigation Button Styling */
header .main-menu .nav-btn {
  display: inline-block;
  padding: 8px 16px;
  margin: 0 4px;
  background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
  color: #4a5568 !important;
  text-decoration: none;
  border-radius: 8px;
  font-weight: 500;
  font-size: 0.95rem;
  transition: all 0.3s ease;
  border: 1px solid #e2e8f0;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
  position: relative;
  overflow: hidden;
}

header .main-menu .nav-btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(79, 140, 255, 0.1), transparent);
  transition: left 0.5s;
}

header .main-menu .nav-btn:hover::before {
  left: 100%;
}

header .main-menu .nav-btn:hover {
  background: linear-gradient(135deg, #4f8cff 0%, #6ee7b7 100%);
  color: white !important;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(79, 140, 255, 0.3);
  border-color: #4f8cff;
}

header .main-menu .nav-btn:active {
  transform: translateY(0);
  box-shadow: 0 2px 8px rgba(79, 140, 255, 0.2);
}

/* Active state for current section */
header .main-menu .nav-btn.active {
  background: linear-gradient(135deg, #4f8cff 0%, #6ee7b7 100%);
  color: white !important;
  box-shadow: 0 4px 12px rgba(79, 140, 255, 0.3);
  border-color: #4f8cff;
} 