/* Responsive Styles */

/* Large Devices (Desktops) */
@media (max-width: 1200px) {
  .container {
    max-width: 992px;
  }

  .hero h1 {
    font-size: 3.2rem;
  }
}

/* Medium Devices (Tablets) */
@media (max-width: 992px) {
  .container {
    max-width: 768px;
  }

  .hero h1 {
    font-size: 2.8rem;
  }

  .section-header h2 {
    font-size: 2.2rem;
  }

  .welcome-content,
  .appointment-content {
    flex-direction: column;
    gap: var(--spacing-xl);
  }

  .welcome-text,
  .welcome-stats,
  .appointment-text,
  .appointment-form {
    width: 100%;
  }

  .service-content {
    flex-direction: column;
  }

  .service-content.reverse {
    flex-direction: column-reverse;
  }

  .service-text,
  .service-image {
    width: 100%;
  }

  .about-content {
    flex-direction: column;
  }

  .about-image,
  .about-text {
    width: 100%;
  }
}

/* Small Devices (Landscape Phones) */
@media (max-width: 768px) {
  .container {
    max-width: 576px;
  }

  .hero h1 {
    font-size: 2.5rem;
  }

  .hero p {
    font-size: 1rem;
  }

  .section-header h2 {
    font-size: 2rem;
  }

  .section-header p {
    font-size: 1rem;
  }

  .services-grid,
  .doctors-grid,
  .why-choose-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .main-nav {
    display: none;
  }

  .mobile-menu-toggle {
    display: block;
  }

  .footer-content {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--spacing-xl);
  }
}

/* Extra Small Devices (Portrait Phones) */
@media (max-width: 576px) {
  .container {
    max-width: 100%;
    padding: 0 var(--spacing-lg);
  }

  .hero h1 {
    font-size: 2rem;
  }

  .hero p {
    font-size: 0.9rem;
  }

  .section-header h2 {
    font-size: 1.8rem;
  }

  .services-grid,
  .doctors-grid,
  .why-choose-grid {
    grid-template-columns: 1fr;
  }

  .footer-content {
    grid-template-columns: 1fr;
  }

  .btn {
    padding: 10px 20px;
    font-size: 0.9rem;
  }

  .stat-item {
    flex: 1 1 100%;
  }
}

/* Updated color palette */
:root {
  --primary-color: #3c4955;
  --secondary-color: #5a6d7f;
  --hover-color: #4a5c6b;
  --white: #ffffff;
  --gray-700: #6a7b8c;
}

.hero h1 {
  color: var(--primary-color);
}

.section-header h2 {
  color: var(--secondary-color);
}