/* Voice-Controlled Workout Mirror Startup Template */
/* Bootstrap 5 Based - No Overrides Allowed */

:root {
  /* Primary Color Palette - 5 colors with shades */
  --primary-blue: #6366f1;
  --primary-blue-light: #a5b4fc;
  --primary-blue-dark: #4338ca;
  
  --primary-green: #10b981;
  --primary-green-light: #6ee7b7;
  --primary-green-dark: #047857;
  
  --primary-purple: #8b5cf6;
  --primary-purple-light: #c4b5fd;
  --primary-purple-dark: #7c3aed;
  
  --primary-orange: #f59e0b;
  --primary-orange-light: #fcd34d;
  --primary-orange-dark: #d97706;
  
  --primary-pink: #ec4899;
  --primary-pink-light: #f9a8d4;
  --primary-pink-dark: #db2777;
  
  /* Neutral colors */
  --neutral-light: #f8fafc;
  --neutral-dark: #1e293b;
  --text-primary: #334155;
  --text-secondary: #64748b;
}

/* Typography - Conservative sizes */
body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  color: var(--text-primary);
  line-height: 1.6;
}

.navbar-brand {
  font-size: 1.5rem !important; /* Conservative size */
  font-weight: 700;
  color: var(--primary-blue-dark);
}

h1 {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--text-primary);
}

h2 {
  font-size: 2rem;
  font-weight: 600;
  color: var(--text-primary);
}

h3 {
  font-size: 1.5rem;
  font-weight: 600;
}

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

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

.hero-decorative {
  position: absolute;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  background: var(--primary-purple-light);
  opacity: 0.3;
  z-index: 1;
}

.hero-decorative:nth-child(1) {
  top: 20%;
  right: 10%;
}

.hero-decorative:nth-child(2) {
  bottom: 20%;
  left: 5%;
  background: var(--primary-green-light);
}

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

.section-title {
  color: var(--primary-blue-dark);
  margin-bottom: 1rem;
}

.section-subtitle {
  color: var(--text-secondary);
  margin-bottom: 2rem;
}

/* Services Cards */
.service-card {
  transition: transform 0.3s ease;
  border: none;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.07);
}

.service-card:hover {
  transform: translateY(-5px);
}

.price-badge {
  background: var(--primary-green);
  color: white;
  border-radius: 50px;
  padding: 0.5rem 1rem;
  font-weight: 600;
}

/* Features Grid */
.feature-icon {
  width: 64px;
  height: 64px;
  background: var(--primary-blue-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
  color: var(--primary-blue-dark);
}

/* Team Cards */
.team-card img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  border-radius: 10px;
}

/* Testimonials */
.review-card {
  background: var(--neutral-light);
  border-radius: 15px;
  padding: 2rem;
  border: none;
  height: 100%;
}

/* Pricing Cards */
.pricing-card {
  border-radius: 15px;
  transition: transform 0.3s ease;
}

.pricing-card:hover {
  transform: scale(1.05);
}

.pricing-card.featured {
  background: var(--primary-blue);
  color: white;
}

/* Process Steps */
.process-step {
  position: relative;
  text-align: center;
}

.process-step::before {
  content: '';
  position: absolute;
  top: 50%;
  right: -50%;
  width: 100%;
  height: 2px;
  background: var(--primary-blue-light);
  z-index: -1;
}

.process-step:last-child::before {
  display: none;
}

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

/* Timeline */
.timeline-item {
  position: relative;
  padding-left: 3rem;
  margin-bottom: 2rem;
}

.timeline-item::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 3px;
  height: 100%;
  background: var(--primary-green);
}

.timeline-item::after {
  content: '';
  position: absolute;
  left: -6px;
  top: 10px;
  width: 15px;
  height: 15px;
  background: var(--primary-green);
  border-radius: 50%;
}

/* FAQ Cards */
.faq-card {
  margin-bottom: 1rem;
  border: 1px solid #e2e8f0;
  border-radius: 10px;
}

/* Contact Form */
.contact-form {
  background: var(--neutral-light);
  padding: 3rem;
  border-radius: 15px;
}

.form-control:focus {
  border-color: var(--primary-blue);
  box-shadow: 0 0 0 0.2rem rgba(99, 102, 241, 0.25);
}

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

footer a {
  color: var(--primary-blue-light);
  text-decoration: none;
}

footer a:hover {
  color: white;
}

/* Blog Grid */
.blog-card {
  border-radius: 15px;
  overflow: hidden;
  transition: transform 0.3s ease;
}

.blog-card:hover {
  transform: translateY(-5px);
}

/* Gallery */
.gallery-item {
  overflow: hidden;
  border-radius: 10px;
  margin-bottom: 1rem;
}

.gallery-item img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  transition: transform 0.3s ease;
}

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

/* Career Cards */
.career-card {
  border-left: 4px solid var(--primary-green);
  padding: 1.5rem;
  background: var(--neutral-light);
  border-radius: 0 10px 10px 0;
}

/* Core Info Cards */
.coreinfo-card {
  text-align: center;
  padding: 2rem;
  border-radius: 15px;
  background: white;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.07);
  transition: transform 0.3s ease;
}

.coreinfo-card:hover {
  transform: translateY(-5px);
}

/* Animations */
@media (prefers-reduced-motion: no-preference) {
  .sal-animate {
    transition-duration: 0.5s;
  }
}

@media (prefers-reduced-motion: reduce) {
  .sal-animate,
  * {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

/* Utilities */
.bg-gradient-primary {
  background: linear-gradient(135deg, var(--primary-blue) 0%, var(--primary-purple) 100%);
}

.text-gradient {
  background: linear-gradient(135deg, var(--primary-blue) 0%, var(--primary-purple) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.btn-primary-custom {
  background: var(--primary-blue);
  border: none;
  padding: 0.75rem 2rem;
  border-radius: 50px;
  font-weight: 600;
  transition: all 0.3s ease;
}

.btn-primary-custom:hover {
  background: var(--primary-blue-dark);
  transform: translateY(-2px);
}

.hero-section h1 {
    padding-top: 100px;
}


/* Team Social Links - Colorful Style */
.team-social-links {
    margin-top: 22px;
    padding: 16px 0;
}

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

.social-link {
    display: inline-flex;
    width: 48px;
    height: 48px;
    border-radius: 15px;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    font-size: 19px;
    transition: all 0.4s ease;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
    position: relative;
    overflow: hidden;
}

.social-link::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255,255,255,0.3);
    border-radius: 50%;
    transition: all 0.4s ease;
    transform: translate(-50%, -50%);
}

.social-link:hover::before {
    width: 100px;
    height: 100px;
}

.social-link:hover {
    transform: translateY(-4px) scale(1.05);
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
    color: white;
}

.facebook-link {
    background: linear-gradient(45deg, #1877f2, #42a5f5, #64b5f6);
}

.linkedin-link {
    background: linear-gradient(45deg, #0a66c2, #2196f3, #42a5f5);
}

.instagram-link {
    background: linear-gradient(45deg, #e4405f, #f77737, #fcaf45, #ffdc80);
}

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

.x-link::after {
    content: '✕';
    font-weight: 900;
    font-size: 20px;
    z-index: 2;
    position: relative;
}

.x-link i {
    display: none;
}

@media (max-width: 768px) {
    .social-icons-grid {
        gap: 10px;
    }
    
    .social-link {
        width: 42px;
        height: 42px;
        font-size: 16px;
    }
}
