/* Voice-Controlled Meditation Assistant App - Main CSS */

/* Color Palette - Pastel High-Contrast Theme */
:root {
  /* Primary Colors */
  --primary-soft-blue: #aae4ff;
  --primary-lavender: #f6f6ff;
  --primary-mint: #F0FFF0;
  --primary-peach: #ffdcbf;
  --primary-sage: #9bad81;
  
  /* Light Shades */
  --light-blue: #F0F8FF;
  --light-lavender: #F8F8FF;
  --light-mint: #F8FFF8;
  --light-peach: #FFF8F0;
  --light-sage: #F5F8F0;
  
  /* Dark Shades */
  --dark-blue: #4989a3;
  --dark-lavender: #8e72eb;
  --dark-mint: #28a424;
  --dark-peach: #c18833;
  --dark-sage: #586330;
  
  /* Neutral Colors */
  --text-primary: #25344d;
  --text-secondary: #6f838d;
  --white: #FFFFFF;
  --light-gray: #F8F9FA;
  --border-color: #e9ecf1;
}

/* Global Styles */
body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.6;
  color: var(--text-primary);
  font-size: 16px;
}

/* Conservative Typography */
.navbar-brand {
  font-size: 1.1rem !important;
  font-weight: 600;
  color: var(--dark-blue);
}

h1 {
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 1rem;
}

h2 {
  font-size: 1.8rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 0.8rem;
}

h3 {
  font-size: 1.4rem;
  font-weight: 500;
  color: var(--text-primary);
  margin-bottom: 0.6rem;
}

p {
  font-size: 1rem;
  color: var(--text-secondary);
  margin-bottom: 1rem;
}

/* Header Styles */
.navbar {
  background-color: var(--white);
  border-bottom: 1px solid var(--border-color);
  padding: 1rem 0;
}

.navbar-nav .nav-link {
  color: var(--text-primary);
  font-weight: 500;
  transition: color 0.3s ease;
}

.navbar-nav .nav-link:hover {
  color: var(--dark-blue);
}

/* Hero Section */
.hero-section {
  background: linear-gradient(135deg, var(--light-blue) 0%, var(--light-lavender) 100%);
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.hero-section::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 600px;
  height: 600px;
  background: var(--primary-soft-blue);
  border-radius: 50%;
  opacity: 0.1;
  z-index: 1;
}

.hero-section::after {
  content: '';
  position: absolute;
  bottom: -20%;
  left: -5%;
  width: 400px;
  height: 400px;
  background: var(--primary-lavender);
  border-radius: 50%;
  opacity: 0.1;
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
    padding-top: 100px;
}

/* About Section */
.about-section {
  background-color: var(--white);
  padding: 5rem 0;
}

.feature-card {
  background: var(--light-mint);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  padding: 2rem;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  height: 100%;
}

.feature-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

.feature-card i {
  font-size: 2.5rem;
  color: var(--dark-mint);
  margin-bottom: 1rem;
}

/* Services Section */
.services-section {
  background-color: var(--light-gray);
  padding: 5rem 0;
}

.service-card {
  background: var(--white);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  padding: 2rem;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  height: 100%;
  margin-bottom: 2rem;
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}

.service-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 1.5rem;
}

.service-price {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--dark-blue);
  margin-top: 1rem;
}

/* Features Section */
.features-section {
  background-color: var(--white);
  padding: 5rem 0;
}

/* Price Plan Section */
.priceplan-section {
  background-color: var(--light-lavender);
  padding: 5rem 0;
}

.price-card {
  background: var(--white);
  border: 2px solid var(--border-color);
  border-radius: 15px;
  padding: 2.5rem;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  height: 100%;
  margin-bottom: 2rem;
  position: relative;
}

.price-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.15);
  border-color: var(--primary-soft-blue);
}

.price-card.featured {
  border-color: var(--dark-blue);
  transform: scale(1.05);
}

.price-card.featured::before {
  content: 'Most Popular';
  position: absolute;
  top: -10px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--dark-blue);
  color: var(--white);
  padding: 0.5rem 1.5rem;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 600;
}

.price-amount {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--dark-blue);
  margin: 1rem 0;
}

/* Team Section */
.team-section {
  background-color: var(--white);
  padding: 5rem 0;
}

.team-card {
  background: var(--light-peach);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  padding: 2rem;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  height: 100%;
  margin-bottom: 2rem;
}

.team-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}

.team-photo {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  object-fit: cover;
  margin: 0 auto 1.5rem;
  border: 4px solid var(--white);
}

/* Reviews Section */
.reviews-section {
  background-color: var(--light-gray);
  padding: 5rem 0;
}

.review-card {
  background: var(--white);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  padding: 2rem;
  text-align: center;
  height: 100%;
  margin-bottom: 2rem;
  position: relative;
}

.review-card::before {
  content: '"';
  position: absolute;
  top: -10px;
  left: 20px;
  font-size: 4rem;
  color: var(--primary-soft-blue);
  opacity: 0.3;
}

/* Case Studies Section */
.casestudy-section {
  background-color: var(--white);
  padding: 5rem 0;
}

.casestudy-card {
  background: var(--light-sage);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  padding: 2rem;
  height: 100%;
  margin-bottom: 2rem;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.casestudy-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}

/* Process Section */
.process-section {
  background-color: var(--light-mint);
  padding: 5rem 0;
}

.process-step {
  background: var(--white);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  padding: 2rem;
  text-align: center;
  height: 100%;
  margin-bottom: 2rem;
  position: relative;
}

.step-number {
  background: var(--dark-mint);
  color: var(--white);
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.2rem;
  margin: 0 auto 1rem;
}

/* Timeline Section */
.timeline-section {
  background-color: var(--white);
  padding: 5rem 0;
}

.timeline-item {
  background: var(--light-blue);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  padding: 2rem;
  margin-bottom: 2rem;
  position: relative;
}

.timeline-item::before {
  content: '';
  position: absolute;
  left: -10px;
  top: 50%;
  transform: translateY(-50%);
  width: 20px;
  height: 20px;
  background: var(--dark-blue);
  border-radius: 50%;
}

/* Career Section */
.career-section {
  background-color: var(--light-gray);
  padding: 5rem 0;
}

.career-card {
  background: var(--white);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  padding: 2rem;
  height: 100%;
  margin-bottom: 2rem;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.career-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}

/* Core Info Section */
.coreinfo-section {
  background-color: var(--white);
  padding: 5rem 0;
}

.coreinfo-card {
  background: var(--light-lavender);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  padding: 2rem;
  text-align: center;
  height: 100%;
  margin-bottom: 2rem;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.coreinfo-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}

.coreinfo-card i {
  font-size: 2.5rem;
  color: var(--dark-lavender);
  margin-bottom: 1rem;
}

/* Contact Section */
.contact-section {
  background-color: var(--light-peach);
  padding: 5rem 0;
}

.contact-form {
  background: var(--white);
  border-radius: 12px;
  padding: 3rem;
  box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

.form-control {
  border: 2px solid var(--border-color);
  border-radius: 8px;
  padding: 0.75rem 1rem;
  font-size: 1rem;
  transition: border-color 0.3s ease;
}

.form-control:focus {
  border-color: var(--primary-soft-blue);
  box-shadow: 0 0 0 0.2rem rgba(133, 191, 235, 0.25);
}

.btn-primary {
  background-color: var(--dark-blue);
  border-color: var(--dark-blue);
  padding: 0.8rem 2rem;
  font-weight: 600;
  border-radius: 25px;
  transition: all 0.3s ease;
}

.btn-primary:hover {
  background-color: var(--primary-soft-blue);
  border-color: var(--primary-soft-blue);
  transform: translateY(-2px);
}

.contact-info {
  background: var(--white);
  border-radius: 12px;
  padding: 2rem;
  height: 100%;
}

.contact-info i {
  font-size: 1.5rem;
  color: var(--dark-peach);
  margin-right: 1rem;
}

/* Blog Section */
.blog-section {
  background-color: var(--white);
  padding: 5rem 0;
}

.blog-card {
  background: var(--white);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  height: 100%;
  margin-bottom: 2rem;
}

.blog-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}

.blog-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.blog-card-body {
  padding: 1.5rem;
}

.blog-link {
  color: var(--dark-blue);
  text-decoration: none;
  font-weight: 600;
  transition: color 0.3s ease;
}

.blog-link:hover {
  color: var(--primary-soft-blue);
}

/* FAQ Section */
.faq-section {
  background-color: var(--light-gray);
  padding: 5rem 0;
}

.faq-card {
  background: var(--white);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  padding: 2rem;
  margin-bottom: 1.5rem;
  transition: box-shadow 0.3s ease;
}

.faq-card:hover {
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.faq-question {
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 1rem;
  font-size: 1.1rem;
}

.faq-answer {
  color: var(--text-secondary);
  margin-bottom: 0;
}

/* Gallery Section */
.gallery-section {
  background-color: var(--white);
  padding: 5rem 0;
}

.gallery-item {
  margin-bottom: 1.5rem;
  border-radius: 12px;
  overflow: hidden;
  transition: transform 0.3s ease;
}

.gallery-item:hover {
  transform: scale(1.02);
}

.gallery-item img {
  width: 100%;
  height: 250px;
  object-fit: cover;
}

/* Footer */
.footer {
  background-color: var(--text-primary);
  color: var(--white);
  padding: 3rem 0 1rem;
}

.footer h5 {
  color: var(--white);
  margin-bottom: 1rem;
}

.footer p {
  color: var(--light-gray);
  font-size: 0.9rem;
}

.footer a {
  color: var(--light-gray);
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer a:hover {
  color: var(--white);
}

.footer-bottom {
  border-top: 1px solid #515c6d;
  padding-top: 2rem;
  margin-top: 2rem;
}

/* Section Spacing */
.section {
  padding: 5rem 0;
}

.section-title {
  text-align: center;
  margin-bottom: 3rem;
}

/* Responsive adjustments for prefers-reduced-motion */
@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

/* Utility Classes */
.text-center {
  text-align: center;
}

.mb-4 {
  margin-bottom: 1.5rem;
}

.mt-4 {
  margin-top: 1.5rem;
}

.py-5 {
  padding-top: 3rem;
  padding-bottom: 3rem;
}

/* Breadcrumb Styles */
.breadcrumb {
  background: transparent;
  padding: 1rem 0;
  margin-bottom: 2rem;
}

.breadcrumb-item img {
  width: 20px;
  height: 20px;
  object-fit: cover;
} 


/* Team Social Links - Modern Style */
.team-social-links {
    margin-top: 25px;
    padding: 20px 0;
}

.social-icons-grid {
    display: flex;
    gap: 20px;
    justify-content: center;
    align-items: center;
}

.social-link {
    display: inline-flex;
    width: 52px;
    height: 52px;
    border-radius: 16px;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    font-size: 22px;
    transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
    position: relative;
    overflow: hidden;
}

.social-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: inherit;
    transform: scale(0);
    border-radius: inherit;
    transition: transform 0.5s ease;
}

.social-link:hover::before {
    transform: scale(1.2);
}

.social-link:hover {
    transform: translateY(-8px) rotate(10deg);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
    color: white;
}

.facebook-link {
    background: linear-gradient(45deg, #1877f2, #00c6ff);
}

.linkedin-link {
    background: linear-gradient(45deg, #0a66c2, #0099cc);
}

.instagram-link {
    background: linear-gradient(45deg, #e4405f, #f093fb, #f5576c);
}

.x-link {
    background: linear-gradient(45deg, #000000, #434343);
    position: relative;
}

.x-link::after {
    content: '𝕏';
    font-weight: bold;
    font-size: 24px;
    z-index: 2;
    position: relative;
}

.x-link i {
    display: none;
}

@media (max-width: 768px) {
    .social-icons-grid {
        gap: 15px;
    }
    
    .social-link {
        width: 46px;
        height: 46px;
        font-size: 20px;
    }
}
