/* MySchedule Website - Component Styles */

/* Hero Component */
.hero-section {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
  padding: 100px 0;
}

/* Feature Cards */
.feature-card {
  padding: 2rem;
  border-radius: 12px;
  background: white;
  border: 1px solid #e9ecef;
}

.feature-card:hover {
  border-color: var(--primary-color);
}

.feature-icon {
  display: block;
  margin-bottom: 1.5rem;
}

/* Hide any Bootstrap icons that might be present */
.feature-icon i,
.feature-icon .bi {
  display: none !important;
}

.feature-icon img {
  width: 64px;
  height: 64px;
  object-fit: contain;
  display: block;
}

/* Pricing Cards */
.pricing-card {
  border-radius: 12px;
  overflow: hidden;
}

.pricing-card.popular {
  border: 2px solid var(--primary-color);
  transform: scale(1.05);
  z-index: 1;
}

.pricing-badge {
  position: absolute;
  top: 10px;
  right: 10px;
  padding: 0.25rem 0.75rem;
  background: var(--primary-color);
  color: white;
  border-radius: 20px;
  font-size: 0.875rem;
  font-weight: 600;
}

/* Testimonial Component */
.testimonial-card {
  border-radius: 12px;
  padding: 2rem;
  background: white;
  border: 1px solid #e9ecef;
  position: relative;
}

.testimonial-card::before {
  content: '"';
  position: absolute;
  top: -20px;
  left: 20px;
  font-size: 5rem;
  color: var(--primary-color);
  opacity: 0.2;
  font-family: Georgia, serif;
}

.testimonial-avatar {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid var(--primary-color);
}

/* FAQ Accordion */
.faq-accordion .accordion-button:not(.collapsed) {
  background-color: var(--primary-color);
  color: white;
}

.faq-accordion .accordion-button:not(.collapsed)::after {
  filter: brightness(0) invert(1);
}

/* Contact Form */
.contact-form {
  max-width: 600px;
  margin: 0 auto;
}

.contact-form .form-control,
.contact-form .form-select {
  padding: 0.75rem 1rem;
  border-radius: 8px;
}

.contact-form .form-control:focus,
.contact-form .form-select:focus {
  border-color: var(--primary-color);
  box-shadow: 0 0 0 0.2rem rgba(13, 110, 253, 0.25);
}

/* Blog Card */
.blog-card {
  border-radius: 12px;
  overflow: hidden;
  transition: all 0.3s ease;
}

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

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

.blog-meta {
  font-size: 0.875rem;
  color: var(--secondary-color);
}

/* CTA Section */
.cta-section {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  padding: 80px 0;
  color: white;
}

/* Badge Styles */
.badge-pill {
  padding: 0.5em 1em;
  border-radius: 50px;
}

/* Social Links */
.social-links a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  transition: all 0.3s ease;
}

.social-links a:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: translateY(-3px);
}

/* Animation Classes */
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

.fade-in {
  animation: fadeIn 0.6s ease;
}

/* Responsive Adjustments */
@media (max-width: 992px) {
  .pricing-card.popular {
    transform: scale(1);
  }
}

