/* Voice-Controlled Workout Mirror Startup - Main Styles */

/* Color Palette - Pastel High-Contrast */
:root {
  --primary-color: #5c4cf3;
  --secondary-color: #6099ff;
  --accent-color: #f366a8;
  --success-color: #08cabe;
  --warning-color: #fad86b;
  
  --light-primary: #fefeff;
  --light-secondary: #d5e8fc;
  --light-accent: #f9dfe9;
  --light-success: #e7fff7;
  --light-warning: #e9e4cc;
  
  --dark-primary: #4a36d3;
  --dark-secondary: #434a4b;
  --dark-accent: #df4e96;
  --dark-success: #00a597;
  --dark-warning: #e5a000;
  
  --text-primary: #1f2a2b;
  --text-secondary: #515d5f;
  --text-light: #b3c3ca;
  --bg-light: #F8F9FA;
  --bg-dark: #41494d;
}

/* Base Styles */
body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  color: var(--text-primary);
  line-height: 1.6;
  font-size: 16px;
}

/* Typography - Conservative Sizes */
h1 {
  font-size: 2.62rem;
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: 1rem;
}

h2 {
  font-size: 2rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 0.80rem;
}

h3 {
  font-size: 1.64rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 0.72rem;
}

h4 {
  font-size: 1.36rem;
  font-weight: 500;
  color: var(--text-primary);
  margin-bottom: 0.63rem;
}

p {
  font-size: 1rem;
  color: var(--text-secondary);
  margin-bottom: 1rem;
}

.lead {
  font-size: 1.12rem;
  color: var(--text-secondary);
}

/* Header Styles */
.navbar-brand {
  font-size: 1.61rem;
  font-weight: 700;
  color: var(--primary-color);
}

.navbar-nav .nav-link {
  font-weight: 500;
  color: var(--text-primary);
  transition: color 0.3s ease;
}

.navbar-nav .nav-link:hover {
  color: var(--primary-color);
}

/* Hero Section */
.hero-section {
  min-height: 100vh;
  background: linear-gradient(135deg, var(--light-primary) 0%, var(--light-secondary) 100%);
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.hero-decorative {
  position: absolute;
  width: 200px;
  height: 200px;
  background: var(--accent-color);
  border-radius: 50%;
  opacity: 0.1;
  z-index: 1;
}

.hero-decorative:nth-child(1) {
  top: 10%;
  right: 10%;
}

.hero-decorative:nth-child(2) {
  bottom: 20%;
  left: 15%;
  width: 300px;
  height: 300px;
}

.hero-content {
  position: relative;
  z-index: 2;
    padding-top: 200px;
}

.hero-image {
  position: relative;
  z-index: 2;
}

.hero-image img {
  border-radius: 24px;
  box-shadow: 0 24px 40px rgba(115, 77, 245, 0.20);
}

/* Button Styles */
.btn-primary {
  background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
  border: none;
  padding: 12px 30px;
  font-weight: 600;
  border-radius: 29px;
  transition: all 0.3s ease;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 17px 21px rgba(78, 75, 216, 0.30);
}

.btn-outline-primary {
  border: 2px solid var(--primary-color);
  color: var(--primary-color);
  padding: 12px 30px;
  font-weight: 600;
  border-radius: 29px;
  transition: all 0.3s ease;
}

.btn-outline-primary:hover {
  background: var(--primary-color);
  color: white;
  transform: translateY(-2px);
}

/* Section Styles */
.section-padding {
  padding: 80px 0;
}

.section-title {
  text-align: center;
  margin-bottom: 50px;
}

.section-title h2 {
  position: relative;
  display: inline-block;
}

.section-title h2::after {
  content: '';
  position: absolute;
  bottom: -19px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background: var(--accent-color);
  border-radius: 2px;
}

/* Service Cards */
.service-card {
  background: white;
  border-radius: 15px;
  padding: 30px;
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  height: 100%;
  border: none;
}

.service-card:hover {
  transform: translateY(-14px);
  box-shadow: 0 24px 40px rgba(0, 0, 0, 0.15);
}

.service-card img {
  width: 80px;
  height: 80px;
  object-fit: cover;
  border-radius: 50%;
  margin-bottom: 23px;
}

.service-price {
  font-size: 1.83rem;
  font-weight: 700;
  color: var(--primary-color);
  margin-top: 21px;
}

/* Feature Cards */
.feature-card {
  background: white;
  border-radius: 15px;
  padding: 30px;
  box-shadow: 0 5px 24px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  text-align: center;
  height: 100%;
}

.feature-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12);
}

.feature-icon {
  font-size: 3rem;
  color: var(--primary-color);
  margin-bottom: 24px;
}

/* Price Plan Cards */
.price-card {
  background: white;
  border-radius: 15px;
  padding: 40px 30px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  text-align: center;
  height: 100%;
  position: relative;
}

.price-card.featured {
  border: 3px solid var(--primary-color);
  transform: scale(1.05);
}

.price-card:hover {
  transform: translateY(-12px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.price-card.featured:hover {
  transform: scale(1.05) translateY(-13px);
}

.price-amount {
  font-size: 3rem;
  font-weight: 700;
  color: var(--primary-color);
  margin: 20px 0;
}

.price-features {
  list-style: none;
  padding: 0;
  margin: 20px 0;
}

.price-features li {
  padding: 8px 0;
  color: var(--text-secondary);
}

.price-features li i {
  color: var(--success-color);
  margin-right: 11px;
}

/* Team Cards */
.team-card {
  background: white;
  border-radius: 15px;
  padding: 30px;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  text-align: center;
  height: 100%;
}

.team-card:hover {
  transform: translateY(-11px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.team-photo {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 20px;
  border: 4px solid var(--light-primary);
}

.team-role {
  color: var(--primary-color);
  font-weight: 600;
  margin-top: 10px;
}

/* Review Cards */
.review-card {
  background: white;
  border-radius: 15px;
  padding: 30px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  height: 100%;
  border: none;
}

.review-stars {
  color: var(--warning-color);
  font-size: 1.22rem;
  margin-bottom: 15px;
}

.review-author {
  font-weight: 600;
  color: var(--text-primary);
  margin-top: 20px;
}

/* FAQ Cards */
.faq-card {
  background: white;
  border-radius: 15px;
  padding: 30px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  margin-bottom: 20px;
  border: none;
}

.faq-question {
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 15px;
}

.faq-answer {
  color: var(--text-secondary);
  line-height: 1.6;
}

/* Gallery */
.gallery-item {
  margin-bottom: 30px;
}

.gallery-item img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  border-radius: 15px;
  transition: transform 0.3s ease;
}

.gallery-item img:hover {
  transform: scale(1.05);
}

/* Contact Form */
.contact-form {
  background: white;
  border-radius: 15px;
  padding: 40px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.form-control {
  border: 2px solid var(--light-primary);
  border-radius: 10px;
  padding: 15px 20px;
  font-size: 1rem;
  transition: border-color 0.3s ease;
}

.form-control:focus {
  border-color: var(--primary-color);
  box-shadow: 0 0 0 0.2rem rgba(84, 89, 216, 0.25);
}

.form-label {
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 8px;
}

/* Footer */
.footer {
  background: var(--bg-dark);
  color: white;
  padding: 50px 0 20px;
}

.footer h5 {
  color: white;
  margin-bottom: 20px;
}

.footer a {
  color: var(--text-light);
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer a:hover {
  color: var(--primary-color);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 20px;
  margin-top: 30px;
  text-align: center;
}

/* Breadcrumb */
.breadcrumb-container {
  background: var(--light-primary);
  padding: 20px 0;
}

.breadcrumb-image {
  width: 30px;
  height: 30px;
  object-fit: cover;
  border-radius: 50%;
}

/* Animations - Reduced Motion Support */
@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

/* Utilities */
.text-gradient {
  background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.bg-gradient {
  background: linear-gradient(135deg, var(--light-primary) 0%, var(--light-secondary) 100%);
}

.shadow-custom {
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

/* Process/Timeline Styles */
.process-item {
  text-align: center;
  padding: 20px;
}

.process-number {
  width: 60px;
  height: 60px;
  background: var(--primary-color);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.56rem;
  margin: 0 auto 20px;
}

.timeline-item {
  position: relative;
  padding-left: 60px;
  margin-bottom: 30px;
}

.timeline-marker {
  position: absolute;
  left: 0;
  top: 0;
  width: 40px;
  height: 40px;
  background: var(--primary-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: 700;
}

/* Case Study Cards */
.case-study-card {
  background: white;
  border-radius: 15px;
  padding: 30px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  height: 100%;
  transition: all 0.3s ease;
}

.case-study-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

/* Career Cards */
.career-card {
  background: white;
  border-radius: 15px;
  padding: 30px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  height: 100%;
  transition: all 0.3s ease;
}

.career-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.career-role {
  color: var(--primary-color);
  font-weight: 600;
  font-size: 1.00rem;
  margin-bottom: 10px;
}

/* Core Info Cards */
.core-info-card {
  background: white;
  border-radius: 15px;
  padding: 25px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  height: 100%;
  text-align: center;
  transition: all 0.3s ease;
}

.core-info-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.core-info-icon {
  font-size: 2.59rem;
  color: var(--primary-color);
  margin-bottom: 15px;
}

/* Blog Cards */
.blog-card {
  background: white;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  height: 100%;
  transition: all 0.3s ease;
}

.blog-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.blog-card-body {
  padding: 25px;
}

.blog-link {
  color: var(--primary-color);
  text-decoration: none;
  font-weight: 600;
  transition: color 0.3s ease;
}

.blog-link:hover {
  color: var(--dark-primary);
}

/* Contact Info */
.contact-info {
  background: var(--light-primary);
  border-radius: 15px;
  padding: 30px;
  margin-bottom: 30px;
}

.contact-info-item {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
}

.contact-info-icon {
  font-size: 1.51rem;
  color: var(--primary-color);
  margin-right: 15px;
  width: 30px;
}

.contact-info-text {
  color: var(--text-primary);
  font-weight: 500;
} 


/* Team Social Links - Elegant Style */
.team-social-links {
    margin-top: 24px;
    padding: 18px 0;
}

.social-icons-grid {
    display: flex;
    gap: 16px;
    justify-content: center;
    align-items: center;
}

.social-link {
    display: inline-flex;
    width: 44px;
    height: 44px;
    border-radius: 12px;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    font-size: 17px;
    transition: all 0.35s cubic-bezier(0.25, 0.8, 0.25, 1);
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    border: 1px solid rgba(255,255,255,0.2);
    backdrop-filter: blur(10px);
}

.social-link:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(0,0,0,0.2);
    color: white;
}

.facebook-link {
    background: rgba(24, 119, 242, 0.9);
}

.facebook-link:hover {
    background: rgba(24, 119, 242, 1);
    box-shadow: 0 8px 30px rgba(24, 119, 242, 0.4);
}

.linkedin-link {
    background: rgba(10, 102, 194, 0.9);
}

.linkedin-link:hover {
    background: rgba(10, 102, 194, 1);
    box-shadow: 0 8px 30px rgba(10, 102, 194, 0.4);
}

.x-link {
    background: rgba(0, 0, 0, 0.9);
    position: relative;
}

.x-link::after {
    content: '𝕏';
    font-weight: bold;
    font-size: 19px;
    z-index: 2;
    position: relative;
}

.x-link:hover {
    background: rgba(0, 0, 0, 1);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.4);
}

.x-link i {
    display: none;
}

@media (max-width: 768px) {
    .social-icons-grid {
        gap: 12px;
    }
    
    .social-link {
        width: 40px;
        height: 40px;
        font-size: 15px;
    }
}
