/*
Theme Name: Al-Kausar Pharma & Clinic
Theme URI: https://alkausar.com
Author: Al-Kausar Team
Author URI: https://alkausar.com
Description: A modern, professional WordPress theme for pharmaceutical and clinical services with responsive design and smooth animations.
Version: 1.0.0
License: GPL v2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Text Domain: alkausar-pharma
Domain Path: /languages
Requires at least: 5.0
Requires PHP: 7.4
*/

/* ============================================
   RESET & BASE STYLES
   ============================================ */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  color: #2C3E50;
  background-color: #FFFFFF;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* ============================================
   TYPOGRAPHY
   ============================================ */

@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@600;700;800&family=Inter:wght@400;500;600;700&display=swap');

h1, h2, h3, h4, h5, h6 {
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  line-height: 1.2;
}

h1 {
  font-size: 2.5rem;
}

h2 {
  font-size: 2rem;
}

h3 {
  font-size: 1.5rem;
}

p {
  font-size: 1rem;
  margin-bottom: 1rem;
}

a {
  color: #00A8A8;
  text-decoration: none;
  transition: color 0.3s ease;
}

a:hover {
  color: #008A8A;
}

/* ============================================
   CONTAINER & LAYOUT
   ============================================ */

.container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1rem;
}

@media (min-width: 768px) {
  .container {
    padding: 0 2rem;
  }
}

/* ============================================
   HEADER & NAVIGATION
   ============================================ */

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background-color: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
  border-bottom: 1px solid #E0E7F1;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.75rem 0;
  gap: 1rem;
}

.site-branding {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex: 1;
  min-width: 0;
}

.site-logo {
  width: 6rem;
  height: 6rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  padding: 0.5rem;
}

.site-logo img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

.site-branding > div {
  display: flex;
  flex-direction: column;
  min-width: 0;
}

.site-title {
  margin: 0;
  font-size: 1.125rem;
  font-weight: bold;
  color: #1F3A7F;
  line-height: 1.2;
}

.site-title a {
  color: #1F3A7F;
}

.site-tagline {
  margin: 0;
  font-size: 0.65rem;
  color: #7A8FA3;
  line-height: 1;
}

@media (max-width: 480px) {
  .site-logo {
    width: 4rem;
    height: 4rem;
  }

  .site-title {
    font-size: 1rem;
  }

  .site-tagline {
    font-size: 0.6rem;
  }
}

/* Navigation Menu */
.main-navigation {
  display: none;
}

@media (min-width: 768px) {
  .main-navigation {
    display: flex;
    gap: 2rem;
    align-items: center;
  }
}

.nav-menu {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
  gap: 2rem;
  align-items: center;
}

.nav-menu li {
  margin: 0;
  padding: 0;
}

.nav-menu a {
  color: #2C3E50;
  font-weight: 500;
  text-decoration: none;
  transition: all 0.3s ease;
  padding: 0.5rem 0;
  border-bottom: 2px solid transparent;
}

.nav-menu a:hover {
  color: #00A8A8;
  border-bottom-color: #00A8A8;
}

/* CTA Button */
.header-cta {
  display: none;
  gap: 1rem;
}

@media (min-width: 768px) {
  .header-cta {
    display: flex;
  }
}

.btn-appointment {
  background-color: #7FD856;
  color: #1F3A7F;
  padding: 0.5rem 1.5rem;
  border-radius: 0.5rem;
  border: none;
  font-weight: bold;
  cursor: pointer;
  transition: all 0.3s ease;
  transform: scale(1);
}

.btn-appointment:hover {
  background-color: #6FE846;
  transform: scale(1.05);
}

/* Mobile Menu Toggle */
.menu-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  border: 2px solid #1F3A7F;
  cursor: pointer;
  color: #1F3A7F;
  padding: 0.4rem;
  border-radius: 0.4rem;
  transition: all 0.3s ease;
  flex-shrink: 0;
  width: 2.5rem;
  height: 2.5rem;
}

.menu-toggle:hover {
  background-color: rgba(31, 58, 127, 0.1);
  border-color: #00A8A8;
  color: #00A8A8;
}

.menu-toggle:active {
  transform: scale(0.95);
}

.hamburger {
  display: flex;
  flex-direction: column;
  justify-content: space-around;
  align-items: center;
  width: 1.25rem;
  height: 1rem;
  position: relative;
}

.hamburger::before,
.hamburger::after {
  content: '';
  display: block;
  width: 1.25rem;
  height: 2px;
  background-color: currentColor;
  transition: all 0.3s ease;
}

.hamburger::before {
  transform: translateY(-0.3rem);
}

.hamburger::after {
  transform: translateY(0.3rem);
}

.menu-toggle[aria-expanded="true"] .hamburger::before {
  transform: rotate(45deg) translateY(0);
}

.menu-toggle[aria-expanded="true"] .hamburger::after {
  transform: rotate(-45deg) translateY(0);
}

@media (min-width: 768px) {
  .menu-toggle {
    display: none;
  }
}

/* Mobile Navigation */
.mobile-menu {
  display: none;
  flex-direction: column;
  gap: 0;
  margin-top: 0.5rem;
  padding: 0;
  border-top: 1px solid #E0E7F1;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, opacity 0.4s ease;
  opacity: 0;
}

.mobile-menu.active {
  display: flex;
  max-height: 800px;
  opacity: 1;
}

.mobile-menu-items {
  width: 100%;
  display: flex;
  flex-direction: column;
}

.mobile-menu .menu-list {
  list-style: none;
  margin: 0;
  padding: 0;
  width: 100%;
}

.mobile-menu .menu-list li {
  margin: 0;
  padding: 0;
  width: 100%;
  border-bottom: 1px solid #F0F0F0;
}

.mobile-menu .menu-list li:last-child {
  border-bottom: none;
}

.mobile-menu a,
.mobile-menu .menu-list a {
  color: #1F3A7F;
  font-weight: 600;
  padding: 1.25rem 1.5rem; /* Larger touch targets */
  transition: all 0.3s ease;
  display: block;
  width: 100%;
  box-sizing: border-box;
  text-decoration: none;
  font-size: 1.1rem;
}

.mobile-menu a:hover,
.mobile-menu .menu-list a:hover,
.mobile-menu a:active,
.mobile-menu .menu-list a:active {
  color: #00A8A8;
  background-color: #F5F7FA;
  padding-left: 1.75rem;
}

.mobile-menu .btn-appointment {
  margin-top: 1rem;
  width: calc(100% - 2rem);
  margin-left: 1rem;
  margin-right: 1rem;
  padding: 0.75rem 1rem;
  margin-bottom: 1rem;
}

/* ============================================
   HERO SLIDER
   ============================================ */

.hero-slider {
  position: relative;
  width: 100%;
  height: 100vh;
  min-height: 400px;
  overflow: hidden;
  background-color: #f5f5f5;
  margin-top: 3.5rem;
}

@media (max-width: 767px) {
  .hero-slider {
    height: 80vh; /* Increased height for better mobile presence */
    min-height: 450px;
    margin-top: 3.5rem;
  }
}

@media (max-width: 480px) {
  .hero-slider {
    height: 85vh; /* Even taller on very small screens to fit content better */
  }
}

.hero-slides-container {
  position: relative;
  width: 100%;
  height: 100%;
}

.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.7s ease-in-out;
}

.hero-slide.active {
  opacity: 1;
}

.hero-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.4), transparent, rgba(0, 0, 0, 0.3));
}

.hero-content {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: white;
  padding: 2rem;
}

.hero-content h1 {
  font-size: 1.75rem; /* Slightly larger for better readability */
  margin-bottom: 1rem;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.4);
  line-height: 1.2;
  font-weight: 800;
}

@media (min-width: 480px) {
  .hero-content h1 {
    font-size: 2rem;
  }
}

@media (min-width: 768px) {
  .hero-content h1 {
    font-size: 3.5rem;
  }
}

.hero-content p {
  font-size: 1rem; /* Better readability on mobile */
  margin-bottom: 2rem;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
  color: rgba(255, 255, 255, 0.95);
  line-height: 1.5;
}

@media (min-width: 480px) {
  .hero-content p {
    font-size: 1.125rem;
    margin-bottom: 2rem;
  }
}

@media (min-width: 768px) {
  .hero-content p {
    font-size: 1.5rem;
  }
}

.hero-cta {
  background-color: #7FD856;
  color: #1F3A7F;
  padding: 0.6rem 1.5rem;
  border-radius: 0.5rem;
  border: none;
  font-weight: bold;
  cursor: pointer;
  transition: all 0.3s ease;
  transform: scale(1);
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  font-size: 0.9rem;
}

@media (min-width: 480px) {
  .hero-cta {
    padding: 0.75rem 2rem;
    font-size: 1rem;
  }
}

.hero-cta:hover {
  background-color: #6FE846;
  transform: scale(1.05);
}

.hero-cta:active {
  transform: scale(0.98);
}

/* Hero Navigation */
.hero-nav-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 20;
  background-color: rgba(255, 255, 255, 0.15);
  color: white;
  border: none;
  width: 2.25rem; /* Slightly smaller for mobile */
  height: 2.25rem;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  backdrop-filter: blur(4px);
  font-size: 1rem;
}

.hero-nav-btn:hover {
  background-color: rgba(255, 255, 255, 0.4);
}

.hero-nav-btn:active {
  transform: translateY(-50%) scale(0.95);
}

.hero-prev {
  left: 0.5rem;
}

.hero-next {
  right: 0.5rem;
}

@media (min-width: 480px) {
  .hero-nav-btn {
    width: 2.75rem;
    height: 2.75rem;
    font-size: 1.5rem;
  }

  .hero-prev {
    left: 1rem;
  }

  .hero-next {
    right: 1rem;
  }
}

@media (min-width: 768px) {
  .hero-nav-btn {
    width: 3rem;
    height: 3rem;
    font-size: 1.75rem;
  }

  .hero-prev {
    left: 2rem;
  }

  .hero-next {
    right: 2rem;
  }
}

/* Hero Indicators */
.hero-indicators {
  position: absolute;
  bottom: 1.5rem; /* Moved up slightly for mobile */
  left: 50%;
  transform: translateX(-50%);
  z-index: 20;
  display: flex;
  gap: 0.5rem;
}

.indicator {
  width: 0.75rem;
  height: 0.75rem;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.5);
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
}

.indicator.active {
  background-color: #7FD856;
  width: 2rem;
  height: 0.75rem;
}

/* ============================================
   STATISTICS SECTION
   ============================================ */

.stats-section {
  background: linear-gradient(to right, #1F3A7F, #2C5F8D);
  padding: 2rem 0;
  color: white;
}

@media (min-width: 480px) {
  .stats-section {
    padding: 2.5rem 0;
  }
}

@media (min-width: 768px) {
  .stats-section {
    padding: 3rem 0;
  }
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem; /* More space for mobile items */
}

@media (min-width: 480px) {
  .stats-grid {
    gap: 1.5rem;
  }
}

@media (min-width: 768px) {
  .stats-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
  }
}

.stat-item {
  text-align: center;
}

.stat-icon {
  display: flex;
  justify-content: center;
  margin-bottom: 0.5rem;
  font-size: 1.5rem;
  color: #7FD856;
}

@media (min-width: 480px) {
  .stat-icon {
    font-size: 2rem;
    margin-bottom: 0.75rem;
  }
}

.stat-number {
  font-size: 1.5rem;
  font-weight: bold;
  margin-bottom: 0.25rem;
}

@media (min-width: 480px) {
  .stat-number {
    font-size: 2rem;
  }
}

@media (min-width: 768px) {
  .stat-number {
    font-size: 2.5rem;
  }
}

.stat-label {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.75rem;
}

@media (min-width: 480px) {
  .stat-label {
    font-size: 0.875rem;
  }
}

/* ============================================
   SECTIONS
   ============================================ */

section {
  padding: 2rem 0;
}

@media (min-width: 480px) {
  section {
    padding: 3rem 0;
  }
}

@media (min-width: 768px) {
  section {
    padding: 4rem 0;
  }
}

@media (min-width: 1024px) {
  section {
    padding: 6rem 0;
  }
}

.section-header {
  text-align: center;
  margin-bottom: 2rem;
}

@media (min-width: 480px) {
  .section-header {
    margin-bottom: 2.5rem;
  }
}

@media (min-width: 768px) {
  .section-header {
    margin-bottom: 3rem;
  }
}

.section-header h2 {
  color: #1F3A7F;
  margin-bottom: 0.75rem;
  font-size: 1.75rem;
}

@media (min-width: 480px) {
  .section-header h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
  }
}

@media (min-width: 768px) {
  .section-header h2 {
    font-size: 2.5rem;
  }
}

.section-header p {
  color: #7A8FA3;
  font-size: 0.95rem;
  max-width: 40rem;
  margin: 0 auto;
  line-height: 1.5;
}

@media (min-width: 480px) {
  .section-header p {
    font-size: 1rem;
  }
}

@media (min-width: 768px) {
  .section-header p {
    font-size: 1.125rem;
  }
}

/* ============================================
   SERVICE CARDS
   ============================================ */

.services-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

@media (min-width: 768px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.service-card {
  background-color: white;
  border-radius: 0.75rem;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  border: 1px solid #E0E7F1;
  overflow: hidden;
  transition: all 0.3s ease;
}

.service-card:hover {
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
  border-color: #00A8A8;
}

.service-card-header {
  background: linear-gradient(135deg, #F5F7FA, #E8EEF5);
  padding: 1.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100px; /* More compact for mobile */
}

@media (min-width: 480px) {
  .service-card-header {
    padding: 2rem;
    min-height: 140px;
  }
}

@media (min-width: 768px) {
  .service-card-header {
    min-height: 150px;
  }
}

.service-card-header img {
  width: 3.5rem;
  height: 3.5rem;
  object-fit: contain;
  transition: transform 0.3s ease;
}

@media (min-width: 480px) {
  .service-card-header img {
    width: 4.5rem;
    height: 4.5rem;
  }
}

@media (min-width: 768px) {
  .service-card-header img {
    width: 5rem;
    height: 5rem;
  }
}

.service-card:hover .service-card-header img {
  transform: scale(1.1);
}

.service-card-content {
  padding: 1rem 1.5rem;
}

@media (min-width: 480px) {
  .service-card-content {
    padding: 1.25rem 1.75rem;
  }
}

@media (min-width: 768px) {
  .service-card-content {
    padding: 1.5rem 2rem;
  }
}

.service-card-title {
  color: #1F3A7F;
  margin-bottom: 0.5rem;
  font-size: 1.25rem;
}

@media (min-width: 480px) {
  .service-card-title {
    font-size: 1.375rem;
    margin-bottom: 0.75rem;
  }
}

@media (min-width: 768px) {
  .service-card-title {
    font-size: 1.5rem;
  }
}

.service-card-description {
  color: #7A8FA3;
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

.service-features {
  list-style: none;
  margin-bottom: 1.5rem;
}

.service-features li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin-bottom: 0.5rem;
  color: #2C3E50;
  font-size: 0.875rem;
}

.service-features li::before {
  content: '✓';
  color: #7FD856;
  font-weight: bold;
  font-size: 1.125rem;
  flex-shrink: 0;
  margin-top: 0.125rem;
}

.service-cta {
  width: 100%;
  background-color: #00A8A8;
  color: white;
  padding: 0.75rem 1rem;
  border: none;
  border-radius: 0.5rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  transform: scale(1);
}

.service-cta:hover {
  background-color: #008A8A;
  transform: scale(1.05);
}

/* ============================================
   INFO BOXES
   ============================================ */

.info-box {
  border-radius: 0.75rem;
  padding: 1.25rem; /* Slightly more compact on mobile */
  border: 1px solid #E0E7F1;
}

@media (min-width: 480px) {
  .info-box {
    padding: 1.75rem 2.5rem;
  }
}

@media (min-width: 768px) {
  .info-box {
    padding: 2rem 3rem;
  }
}

.info-box.light {
  background: linear-gradient(to right, #F5F7FA, #E8EEF5);
}

.info-box.white {
  background-color: white;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.info-box h3 {
  color: #1F3A7F;
  margin-bottom: 1rem;
  font-size: 1.25rem;
}

@media (min-width: 480px) {
  .info-box h3 {
    font-size: 1.375rem;
    margin-bottom: 1.25rem;
  }
}

@media (min-width: 768px) {
  .info-box h3 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
  }
}

.info-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}

@media (min-width: 480px) {
  .info-grid {
    gap: 1.25rem;
  }
}

@media (min-width: 768px) {
  .info-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
  }
}

.info-item h4 {
  color: #00A8A8;
  margin-bottom: 0.5rem;
  font-size: 1rem; /* Slightly larger for mobile readability */
  font-weight: 700;
}

@media (min-width: 480px) {
  .info-item h4 {
    font-size: 0.95rem;
    margin-bottom: 0.5rem;
  }
}

@media (min-width: 768px) {
  .info-item h4 {
    font-size: 1rem;
  }
}

.info-item p {
  color: #7A8FA3;
  font-size: 0.9rem; /* Better readability */
  margin: 0;
  line-height: 1.5;
}

@media (min-width: 480px) {
  .info-item p {
    font-size: 0.85rem;
  }
}

@media (min-width: 768px) {
  .info-item p {
    font-size: 0.875rem;
  }
}

/* ============================================
   DOCTOR PROFILES
   ============================================ */

.doctors-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

@media (min-width: 480px) {
  .doctors-grid {
    gap: 1.75rem;
  }
}

@media (min-width: 768px) {
  .doctors-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
  }
}

@media (min-width: 1024px) {
  .doctors-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.doctor-card {
  background: linear-gradient(135deg, #F5F7FA, #E8EEF5);
  border-radius: 0.75rem;
  padding: 1.5rem;
  text-align: center;
  border: 1px solid #E0E7F1;
  transition: all 0.3s ease;
}

@media (min-width: 480px) {
  .doctor-card {
    padding: 1.75rem;
  }
}

@media (min-width: 768px) {
  .doctor-card {
    padding: 2rem;
  }
}

.doctor-card:hover {
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
}

.doctor-avatar {
  width: 4.5rem;
  height: 4.5rem;
  background: linear-gradient(135deg, #1F3A7F, #00A8A8);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 0.75rem;
  color: white;
  font-size: 1.5rem;
  font-weight: bold;
}

@media (min-width: 480px) {
  .doctor-avatar {
    width: 5.5rem;
    height: 5.5rem;
    font-size: 1.75rem;
    margin-bottom: 1rem;
  }
}

@media (min-width: 768px) {
  .doctor-avatar {
    width: 6rem;
    height: 6rem;
    font-size: 1.875rem;
  }
}

.doctor-name {
  color: #1F3A7F;
  margin-bottom: 0.35rem;
  font-size: 1rem;
}

@media (min-width: 480px) {
  .doctor-name {
    font-size: 1.125rem;
    margin-bottom: 0.5rem;
  }
}

@media (min-width: 768px) {
  .doctor-name {
    font-size: 1.25rem;
  }
}

.doctor-specialty {
  color: #00A8A8;
  font-weight: 600;
  margin-bottom: 0.2rem;
  font-size: 0.85rem;
}

@media (min-width: 480px) {
  .doctor-specialty {
    font-size: 0.9rem;
    margin-bottom: 0.25rem;
  }
}

@media (min-width: 768px) {
  .doctor-specialty {
    font-size: 0.95rem;
  }
}

.doctor-qualification {
  color: #1F3A7F;
  font-size: 0.85rem;
  font-weight: 500;
  margin-bottom: 0.25rem;
}

@media (min-width: 480px) {
  .doctor-qualification {
    font-size: 0.9rem;
    margin-bottom: 0.35rem;
  }
}

.doctor-experience {
  color: #7A8FA3;
  font-size: 0.75rem;
  margin-bottom: 0.75rem;
}

@media (min-width: 480px) {
  .doctor-experience {
    font-size: 0.8rem;
    margin-bottom: 1rem;
  }
}

@media (min-width: 768px) {
  .doctor-experience {
    font-size: 0.875rem;
  }
}

.doctor-cta {
  width: 100%;
  background-color: #7FD856;
  color: #1F3A7F;
  padding: 0.5rem 1rem;
  border: none;
  border-radius: 0.5rem;
  font-weight: bold;
  cursor: pointer;
  transition: all 0.3s ease;
}

.doctor-cta:hover {
  background-color: #6FE846;
}

/* ============================================
   CONTACT SECTION
   ============================================ */

.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

@media (min-width: 480px) {
  .contact-grid {
    gap: 2.5rem;
  }
}

@media (min-width: 768px) {
  .contact-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
  }
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

@media (min-width: 480px) {
  .contact-form {
    gap: 1.25rem;
  }
}

@media (min-width: 768px) {
  .contact-form {
    gap: 1.5rem;
  }
}

.form-group {
  display: flex;
  flex-direction: column;
}

.form-group label {
  color: #1F3A7F;
  font-weight: 600;
  margin-bottom: 0.4rem;
  font-size: 0.8rem;
}

@media (min-width: 480px) {
  .form-group label {
    font-size: 0.875rem;
    margin-bottom: 0.5rem;
  }
}

.form-group input,
.form-group textarea {
  padding: 0.6rem 0.875rem;
  border: 1px solid #E0E7F1;
  border-radius: 0.5rem;
  font-family: 'Inter', sans-serif;
  font-size: 0.95rem;
  transition: all 0.3s ease;
}

@media (min-width: 480px) {
  .form-group input,
  .form-group textarea {
    padding: 0.75rem 1rem;
    font-size: 1rem;
  }
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #00A8A8;
  box-shadow: 0 0 0 3px rgba(0, 168, 168, 0.1);
}

.form-group textarea {
  resize: vertical;
  min-height: 100px;
}

@media (min-width: 480px) {
  .form-group textarea {
    min-height: 120px;
  }
}

.form-submit {
  background-color: #7FD856;
  color: #1F3A7F;
  padding: 0.6rem 1.25rem;
  border: none;
  border-radius: 0.5rem;
  font-weight: bold;
  cursor: pointer;
  transition: all 0.3s ease;
  align-self: flex-start;
  font-size: 0.9rem;
}

@media (min-width: 480px) {
  .form-submit {
    padding: 0.75rem 1.5rem;
    font-size: 1rem;
  }
}

.form-submit:hover {
  background-color: #6FE846;
}

.form-submit:active {
  transform: scale(0.98);
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

@media (min-width: 480px) {
  .contact-info {
    gap: 1.75rem;
  }
}

@media (min-width: 768px) {
  .contact-info {
    gap: 2rem;
  }
}

.location-card {
  background-color: white;
  border-radius: 0.75rem;
  padding: 1.25rem;
  border: 1px solid #E0E7F1;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

@media (min-width: 480px) {
  .location-card {
    padding: 1.5rem;
  }
}

.location-card h4 {
  color: #1F3A7F;
  margin-bottom: 0.75rem;
  font-size: 1rem;
}

@media (min-width: 480px) {
  .location-card h4 {
    margin-bottom: 1rem;
    font-size: 1.1rem;
  }
}

.location-details {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.location-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  color: #7A8FA3;
  font-size: 0.875rem;
}

.location-icon {
  color: #7FD856;
  font-size: 1.125rem;
  flex-shrink: 0;
  margin-top: 0.125rem;
}

/* ============================================
   FOOTER
   ============================================ */

.site-footer {
  background-color: #1F3A7F;
  color: white;
  padding: 3rem 0 1.5rem;
}

.footer-content {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  margin-bottom: 2rem;
}

@media (min-width: 768px) {
  .footer-content {
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
  }
}

.footer-section h4 {
  color: white;
  margin-bottom: 1rem;
  font-size: 1rem;
}

.footer-about {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1rem;
}

.footer-logo {
  width: 2.5rem;
  height: 2.5rem;
  background-color: #7FD856;
  border-radius: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #1F3A7F;
  font-weight: bold;
  font-size: 1rem;
}

.footer-section ul {
  list-style: none;
}

.footer-section li {
  margin-bottom: 0.5rem;
}

.footer-section a {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.875rem;
  transition: color 0.3s ease;
}

.footer-section a:hover {
  color: #7FD856;
}

.footer-section p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.875rem;
  margin: 0;
}

.footer-divider {
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  padding-top: 2rem;
}

.footer-bottom {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: center;
  text-align: center;
}

@media (min-width: 768px) {
  .footer-bottom {
    flex-direction: row;
    justify-content: space-between;
    text-align: left;
  }
}

.footer-bottom p {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.875rem;
  margin: 0;
}

.footer-links {
  display: flex;
  gap: 1.5rem;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.875rem;
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: #7FD856;
}

/* ============================================
   BACKGROUND COLORS
   ============================================ */

.bg-light {
  background-color: #F5F7FA;
}

.bg-white {
  background-color: white;
}

/* ============================================
   RESPONSIVE ADJUSTMENTS
   ============================================ */

@media (max-width: 767px) {
  h1 {
    font-size: 1.75rem;
  }

  h2 {
    font-size: 1.5rem;
  }

  h3 {
    font-size: 1.25rem;
  }

  section {
    padding: 2rem 0;
  }

  .section-header {
    margin-bottom: 2rem;
  }

  .info-box {
    padding: 1.5rem;
  }
}

/* ============================================
   UTILITY CLASSES
   ============================================ */

.text-center {
  text-align: center;
}

.mb-1 {
  margin-bottom: 0.5rem;
}

.mb-2 {
  margin-bottom: 1rem;
}

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

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

.mt-1 {
  margin-top: 0.5rem;
}

.mt-2 {
  margin-top: 1rem;
}

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

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

.transition-all {
  transition: all 0.3s ease;
}


/* ============================================
   CLINIC SERVICES PAGE
   ============================================ */

.clinic-services-section {
  background: linear-gradient(135deg, #F5F7FA 0%, #E8EEF5 100%);
  padding: 3rem 0;
}

@media (max-width: 480px) {
  .clinic-services-section {
    padding: 2rem 0;
  }
}

@media (min-width: 480px) and (max-width: 767px) {
  .clinic-services-section {
    padding: 2.5rem 0;
  }
}

/* Clinic Page Header */
.clinic-header {
  text-align: center;
  margin-bottom: 2rem;
}

@media (min-width: 480px) {
  .clinic-header {
    margin-bottom: 2.5rem;
  }
}

@media (min-width: 768px) {
  .clinic-header {
    margin-bottom: 3rem;
  }
}

.clinic-header h1 {
  color: #1F3A7F;
  font-size: 2rem;
  margin-bottom: 0.75rem;
  line-height: 1.2;
}

@media (min-width: 480px) {
  .clinic-header h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
  }
}

@media (min-width: 768px) {
  .clinic-header h1 {
    font-size: 3rem;
  }
}

.clinic-header p {
  color: #7A8FA3;
  font-size: 0.95rem;
  line-height: 1.5;
}

@media (min-width: 480px) {
  .clinic-header p {
    font-size: 1rem;
  }
}

@media (min-width: 768px) {
  .clinic-header p {
    font-size: 1.125rem;
  }
}

/* Clinic Introduction */
.clinic-intro {
  text-align: center;
  max-width: 50rem;
  margin: 0 auto 2.5rem;
  padding: 1.5rem;
  background-color: white;
  border-radius: 0.75rem;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
  border: 1px solid #E0E7F1;
}

@media (min-width: 480px) {
  .clinic-intro {
    padding: 2rem;
    margin-bottom: 3rem;
  }
}

@media (min-width: 768px) {
  .clinic-intro {
    padding: 2.5rem;
    margin-bottom: 3.5rem;
  }
}

.clinic-intro p {
  color: #7A8FA3;
  font-size: 0.95rem;
  line-height: 1.6;
  margin: 0;
}

@media (min-width: 480px) {
  .clinic-intro p {
    font-size: 1rem;
  }
}

@media (min-width: 768px) {
  .clinic-intro p {
    font-size: 1.05rem;
  }
}

/* Clinic Services Grid */
.clinic-services-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  margin-bottom: 3rem;
}

@media (min-width: 480px) {
  .clinic-services-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.75rem;
  }
}

@media (min-width: 768px) {
  .clinic-services-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
  }
}

@media (min-width: 1024px) {
  .clinic-services-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
  }
}

/* Clinic Service Card */
.clinic-service-card {
  background-color: white;
  border-radius: 0.75rem;
  padding: 1.5rem;
  border: 1px solid #E0E7F1;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  height: 100%;
}

@media (min-width: 480px) {
  .clinic-service-card {
    padding: 1.75rem;
  }
}

@media (min-width: 768px) {
  .clinic-service-card {
    padding: 2rem;
  }
}

.clinic-service-card:hover {
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
  border-color: #00A8A8;
  transform: translateY(-2px);
}

.clinic-service-icon {
  font-size: 2.5rem;
  margin-bottom: 0.75rem;
  display: block;
}

@media (min-width: 480px) {
  .clinic-service-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
  }
}

.clinic-service-name {
  color: #1F3A7F;
  font-size: 1.125rem;
  margin-bottom: 0.5rem;
  font-weight: 700;
}

@media (min-width: 480px) {
  .clinic-service-name {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
  }
}

@media (min-width: 768px) {
  .clinic-service-name {
    font-size: 1.375rem;
  }
}

.clinic-service-description {
  color: #7A8FA3;
  font-size: 0.875rem;
  margin-bottom: 1rem;
  line-height: 1.5;
}

@media (min-width: 480px) {
  .clinic-service-description {
    font-size: 0.9rem;
    margin-bottom: 1.25rem;
  }
}

@media (min-width: 768px) {
  .clinic-service-description {
    font-size: 0.95rem;
  }
}

/* Clinic Service Features */
.clinic-service-features {
  flex: 1;
  margin-bottom: 1rem;
}

@media (min-width: 480px) {
  .clinic-service-features {
    margin-bottom: 1.25rem;
  }
}

.clinic-service-features h4 {
  color: #1F3A7F;
  font-size: 0.8rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

@media (min-width: 480px) {
  .clinic-service-features h4 {
    font-size: 0.85rem;
    margin-bottom: 0.75rem;
  }
}

.clinic-service-features ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.clinic-service-features li {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  color: #7A8FA3;
  font-size: 0.8rem;
  margin-bottom: 0.4rem;
  line-height: 1.4;
}

@media (min-width: 480px) {
  .clinic-service-features li {
    font-size: 0.85rem;
    margin-bottom: 0.5rem;
  }
}

@media (min-width: 768px) {
  .clinic-service-features li {
    font-size: 0.9rem;
  }
}

.feature-icon {
  color: #7FD856;
  font-weight: bold;
  flex-shrink: 0;
  margin-top: 0.1rem;
}

/* Clinic Service CTA */
.clinic-service-cta {
  width: 100%;
  background-color: #00A8A8;
  color: white;
  padding: 0.6rem 1rem;
  border: none;
  border-radius: 0.5rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 0.85rem;
}

@media (min-width: 480px) {
  .clinic-service-cta {
    padding: 0.75rem 1.25rem;
    font-size: 0.9rem;
  }
}

@media (min-width: 768px) {
  .clinic-service-cta {
    padding: 0.75rem 1.5rem;
    font-size: 1rem;
  }
}

.clinic-service-cta:hover {
  background-color: #008A8A;
  transform: scale(1.05);
}

.clinic-service-cta:active {
  transform: scale(0.98);
}

/* Why Choose Us Section */
.clinic-why-choose-us {
  background-color: white;
  padding: 2rem 1.5rem;
  border-radius: 0.75rem;
  margin-bottom: 2rem;
  border: 1px solid #E0E7F1;
}

@media (min-width: 480px) {
  .clinic-why-choose-us {
    padding: 2.5rem 2rem;
    margin-bottom: 2.5rem;
  }
}

@media (min-width: 768px) {
  .clinic-why-choose-us {
    padding: 3rem;
    margin-bottom: 3rem;
  }
}

.clinic-why-choose-us h2 {
  color: #1F3A7F;
  text-align: center;
  margin-bottom: 2rem;
  font-size: 1.75rem;
}

@media (min-width: 480px) {
  .clinic-why-choose-us h2 {
    font-size: 2rem;
    margin-bottom: 2.5rem;
  }
}

@media (min-width: 768px) {
  .clinic-why-choose-us h2 {
    font-size: 2.25rem;
  }
}

/* Benefits Grid */
.clinic-benefits-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

@media (min-width: 480px) {
  .clinic-benefits-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.75rem;
  }
}

@media (min-width: 768px) {
  .clinic-benefits-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
  }
}

/* Benefit Item */
.clinic-benefit-item {
  text-align: center;
  padding: 1.5rem;
  background: linear-gradient(135deg, #F5F7FA 0%, #E8EEF5 100%);
  border-radius: 0.75rem;
  border: 1px solid #E0E7F1;
  transition: all 0.3s ease;
}

@media (min-width: 480px) {
  .clinic-benefit-item {
    padding: 1.75rem;
  }
}

@media (min-width: 768px) {
  .clinic-benefit-item {
    padding: 2rem;
  }
}

.clinic-benefit-item:hover {
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  transform: translateY(-2px);
}

.clinic-benefit-icon {
  font-size: 2.5rem;
  margin-bottom: 0.75rem;
  display: block;
}

@media (min-width: 480px) {
  .clinic-benefit-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
  }
}

.clinic-benefit-item h4 {
  color: #1F3A7F;
  font-size: 1rem;
  margin-bottom: 0.5rem;
}

@media (min-width: 480px) {
  .clinic-benefit-item h4 {
    font-size: 1.125rem;
    margin-bottom: 0.75rem;
  }
}

.clinic-benefit-item p {
  color: #7A8FA3;
  font-size: 0.85rem;
  line-height: 1.5;
  margin: 0;
}

@media (min-width: 480px) {
  .clinic-benefit-item p {
    font-size: 0.9rem;
  }
}

@media (min-width: 768px) {
  .clinic-benefit-item p {
    font-size: 0.95rem;
  }
}

/* CTA Section */
.clinic-cta-section {
  background: linear-gradient(135deg, #1F3A7F 0%, #2C5F8D 100%);
  color: white;
  padding: 2rem 1.5rem;
  border-radius: 0.75rem;
  text-align: center;
}

@media (min-width: 480px) {
  .clinic-cta-section {
    padding: 2.5rem 2rem;
  }
}

@media (min-width: 768px) {
  .clinic-cta-section {
    padding: 3rem;
  }
}

.clinic-cta-section h2 {
  color: white;
  margin-bottom: 0.75rem;
  font-size: 1.5rem;
}

@media (min-width: 480px) {
  .clinic-cta-section h2 {
    font-size: 1.75rem;
    margin-bottom: 1rem;
  }
}

@media (min-width: 768px) {
  .clinic-cta-section h2 {
    font-size: 2rem;
  }
}

.clinic-cta-section p {
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 1.5rem;
  font-size: 0.95rem;
}

@media (min-width: 480px) {
  .clinic-cta-section p {
    font-size: 1rem;
    margin-bottom: 2rem;
  }
}

/* CTA Button */
.clinic-cta-button {
  background-color: #7FD856;
  color: #1F3A7F;
  padding: 0.75rem 2rem;
  border: none;
  border-radius: 0.5rem;
  font-weight: bold;
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 0.9rem;
}

@media (min-width: 480px) {
  .clinic-cta-button {
    padding: 0.875rem 2.5rem;
    font-size: 1rem;
  }
}

.clinic-cta-button:hover {
  background-color: #6FE846;
  transform: scale(1.05);
}

.clinic-cta-button:active {
  transform: scale(0.98);
}

/* Background Utility Classes */
.bg-white {
  background-color: white;
}

.bg-light {
  background-color: #F5F7FA;
}


/* ============================================
   PAGE HEADER BANNER
   ============================================ */

.page-header-banner {
  background: linear-gradient(135deg, #1F3A7F 0%, #2C5F8D 100%);
  color: white;
  padding: 3rem 0;
  text-align: center;
  margin-top: 3.5rem;
}

@media (max-width: 480px) {
  .page-header-banner {
    padding: 2rem 0;
    margin-top: 3.5rem;
  }
}

@media (min-width: 480px) and (max-width: 767px) {
  .page-header-banner {
    padding: 2.5rem 0;
  }
}

@media (min-width: 768px) {
  .page-header-banner {
    padding: 4rem 0;
  }
}

.page-header-banner h1 {
  font-size: 2rem;
  margin-bottom: 0.75rem;
  line-height: 1.2;
}

@media (min-width: 480px) {
  .page-header-banner h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
  }
}

@media (min-width: 768px) {
  .page-header-banner h1 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
  }
}

.page-header-banner p {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.9);
  margin: 0;
  line-height: 1.5;
}

@media (min-width: 480px) {
  .page-header-banner p {
    font-size: 1rem;
  }
}

@media (min-width: 768px) {
  .page-header-banner p {
    font-size: 1.125rem;
  }
}


/* ============================================
   ABOUT US PAGE STYLES
   ============================================ */

/* Page Header Banner */
.about-page-header {
  background: linear-gradient(135deg, #1F3A7F 0%, #00A8A8 100%);
  color: white;
  padding: 60px 20px;
  text-align: center;
  margin-bottom: 40px;
}

.about-header-content {
  max-width: 800px;
  margin: 0 auto;
}

.about-page-title {
  font-size: 2.5rem;
  font-weight: 800;
  margin-bottom: 15px;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.about-page-subtitle {
  font-size: 1.25rem;
  font-weight: 400;
  opacity: 0.95;
}

/* Introduction Section */
.about-intro-section {
  padding: 60px 20px;
  background-color: #F5F7FA;
}

.about-intro-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}

.intro-text h2 {
  font-size: 2rem;
  color: #1F3A7F;
  margin-bottom: 20px;
}

.intro-text p {
  font-size: 1rem;
  color: #2C3E50;
  margin-bottom: 15px;
  line-height: 1.8;
}

.intro-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.stat-box {
  background: white;
  padding: 25px;
  border-radius: 10px;
  text-align: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.stat-box:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}

.stat-number {
  font-size: 2.5rem;
  font-weight: 800;
  color: #00A8A8;
  margin-bottom: 10px;
}

.stat-label {
  font-size: 0.95rem;
  color: #7A8FA3;
  font-weight: 600;
}

/* Mission & Vision Section */
.about-mission-vision {
  padding: 60px 20px;
  background-color: white;
}

.mission-vision-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.mission-card,
.vision-card,
.values-card {
  background: linear-gradient(135deg, #F5F7FA 0%, #FFFFFF 100%);
  padding: 40px;
  border-radius: 12px;
  border-left: 4px solid #00A8A8;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
}

.mission-card:hover,
.vision-card:hover,
.values-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
}

.card-icon {
  font-size: 3rem;
  margin-bottom: 15px;
}

.mission-card h3,
.vision-card h3,
.values-card h3 {
  font-size: 1.5rem;
  color: #1F3A7F;
  margin-bottom: 15px;
}

.mission-card p,
.vision-card p,
.values-card p {
  color: #2C3E50;
  line-height: 1.8;
  font-size: 0.95rem;
}

/* Why Choose Us Section */
.about-why-choose {
  padding: 60px 20px;
  background-color: #F5F7FA;
}

.about-why-choose .section-title {
  text-align: center;
  font-size: 2.2rem;
  color: #1F3A7F;
  margin-bottom: 50px;
}

.why-choose-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.why-choose-card {
  background: white;
  padding: 35px;
  border-radius: 12px;
  text-align: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
}

.why-choose-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.15);
  border-top: 3px solid #00A8A8;
}

.why-icon {
  font-size: 3rem;
  margin-bottom: 20px;
  display: inline-block;
}

.why-choose-card h3 {
  font-size: 1.3rem;
  color: #1F3A7F;
  margin-bottom: 15px;
}

.why-choose-card p {
  color: #2C3E50;
  line-height: 1.7;
  font-size: 0.95rem;
}

/* Our Services Section */
.about-services {
  padding: 60px 20px;
  background-color: white;
}

.about-services .section-title {
  text-align: center;
  font-size: 2.2rem;
  color: #1F3A7F;
  margin-bottom: 50px;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}

.service-item {
  background: linear-gradient(135deg, #F5F7FA 0%, #FFFFFF 100%);
  padding: 35px;
  border-radius: 12px;
  border-left: 4px solid #7FD856;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
}

.service-item:hover {
  transform: translateX(8px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}

.service-item h3 {
  font-size: 1.3rem;
  color: #1F3A7F;
  margin-bottom: 15px;
}

.service-item p {
  color: #2C3E50;
  line-height: 1.7;
  font-size: 0.95rem;
}

/* Locations Section */
.about-locations {
  padding: 60px 20px;
  background-color: #F5F7FA;
}

.about-locations .section-title {
  text-align: center;
  font-size: 2.2rem;
  color: #1F3A7F;
  margin-bottom: 50px;
}

.locations-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.location-card {
  background: white;
  padding: 40px;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  border-top: 4px solid #00A8A8;
  transition: all 0.3s ease;
}

.location-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
}

.location-card h3 {
  font-size: 1.4rem;
  color: #1F3A7F;
  margin-bottom: 20px;
}

.location-details p {
  color: #2C3E50;
  margin-bottom: 10px;
  font-size: 0.95rem;
  line-height: 1.6;
}

.location-details p strong {
  color: #1F3A7F;
  font-weight: 600;
}

/* CTA Section */
.about-cta {
  padding: 60px 20px;
  background: linear-gradient(135deg, #1F3A7F 0%, #00A8A8 100%);
  color: white;
  text-align: center;
}

.about-cta h2 {
  font-size: 2.2rem;
  margin-bottom: 15px;
  color: white;
}

.about-cta p {
  font-size: 1.1rem;
  margin-bottom: 30px;
  opacity: 0.95;
}

.cta-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

.btn {
  padding: 12px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
  display: inline-block;
  border: none;
  cursor: pointer;
  font-size: 1rem;
}

.btn-primary {
  background-color: #7FD856;
  color: white;
}

.btn-primary:hover {
  background-color: #6bc63f;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(127, 216, 86, 0.3);
}

.btn-secondary {
  background-color: transparent;
  color: white;
  border: 2px solid white;
}

.btn-secondary:hover {
  background-color: white;
  color: #1F3A7F;
  transform: translateY(-2px);
}

/* Responsive Design for About Us Page */

@media (max-width: 1024px) {
  .about-page-title {
    font-size: 2rem;
  }

  .about-page-subtitle {
    font-size: 1.1rem;
  }

  .about-intro-content {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .intro-stats {
    grid-template-columns: repeat(2, 1fr);
  }

  .mission-vision-grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

  .services-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .about-page-header {
    padding: 40px 15px;
    margin-bottom: 30px;
  }

  .about-page-title {
    font-size: 1.75rem;
  }

  .about-page-subtitle {
    font-size: 1rem;
  }

  .about-intro-section {
    padding: 40px 15px;
  }

  .intro-text h2 {
    font-size: 1.5rem;
  }

  .intro-text p {
    font-size: 0.95rem;
  }

  .intro-stats {
    grid-template-columns: 1fr 1fr;
    gap: 15px;
  }

  .stat-box {
    padding: 20px;
  }

  .stat-number {
    font-size: 2rem;
  }

  .mission-vision-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .mission-card,
  .vision-card,
  .values-card {
    padding: 30px;
  }

  .card-icon {
    font-size: 2.5rem;
  }

  .about-why-choose {
    padding: 40px 15px;
  }

  .about-why-choose .section-title {
    font-size: 1.75rem;
    margin-bottom: 30px;
  }

  .why-choose-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .why-choose-card {
    padding: 25px;
  }

  .why-icon {
    font-size: 2.5rem;
  }

  .why-choose-card h3 {
    font-size: 1.15rem;
  }

  .about-services {
    padding: 40px 15px;
  }

  .about-services .section-title {
    font-size: 1.75rem;
    margin-bottom: 30px;
  }

  .services-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .service-item {
    padding: 25px;
  }

  .service-item h3 {
    font-size: 1.15rem;
  }

  .about-locations {
    padding: 40px 15px;
  }

  .about-locations .section-title {
    font-size: 1.75rem;
    margin-bottom: 30px;
  }

  .about-cta {
    padding: 40px 15px;
  }

  .about-cta h2 {
    font-size: 1.75rem;
  }

  .about-cta p {
    font-size: 1rem;
  }

  .cta-buttons {
    gap: 15px;
  }

  .btn {
    padding: 10px 25px;
    font-size: 0.95rem;
  }
}

@media (max-width: 480px) {
  .about-page-header {
    padding: 30px 10px;
  }

  .about-page-title {
    font-size: 1.5rem;
  }

  .about-page-subtitle {
    font-size: 0.9rem;
  }

  .about-intro-section {
    padding: 30px 10px;
  }

  .intro-text h2 {
    font-size: 1.3rem;
  }

  .intro-text p {
    font-size: 0.9rem;
  }

  .intro-stats {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .stat-box {
    padding: 15px;
  }

  .stat-number {
    font-size: 1.75rem;
  }

  .stat-label {
    font-size: 0.85rem;
  }

  .mission-card,
  .vision-card,
  .values-card {
    padding: 20px;
  }

  .card-icon {
    font-size: 2rem;
  }

  .mission-card h3,
  .vision-card h3,
  .values-card h3 {
    font-size: 1.2rem;
  }

  .mission-card p,
  .vision-card p,
  .values-card p {
    font-size: 0.9rem;
  }

  .about-why-choose .section-title {
    font-size: 1.5rem;
    margin-bottom: 20px;
  }

  .why-choose-card {
    padding: 20px;
  }

  .why-icon {
    font-size: 2rem;
  }

  .why-choose-card h3 {
    font-size: 1.1rem;
  }

  .why-choose-card p {
    font-size: 0.9rem;
  }

  .about-services .section-title {
    font-size: 1.5rem;
    margin-bottom: 20px;
  }

  .service-item {
    padding: 20px;
  }

  .service-item h3 {
    font-size: 1.1rem;
  }

  .service-item p {
    font-size: 0.9rem;
  }

  .about-locations .section-title {
    font-size: 1.5rem;
    margin-bottom: 20px;
  }

  .location-card {
    padding: 25px;
  }

  .location-card h3 {
    font-size: 1.2rem;
  }

  .location-details p {
    font-size: 0.9rem;
  }

  .about-cta {
    padding: 30px 10px;
  }

  .about-cta h2 {
    font-size: 1.5rem;
  }

  .about-cta p {
    font-size: 0.95rem;
  }

  .cta-buttons {
    flex-direction: column;
    gap: 10px;
  }

  .btn {
    width: 100%;
    padding: 12px 20px;
    font-size: 0.9rem;
  }
}

/* ============================================
   CONTACT US PAGE STYLES
   ============================================ */

.contact-page-header {
  background: linear-gradient(135deg, #1F3A7F 0%, #00A8A8 100%);
  color: white;
  padding: 60px 20px;
  text-align: center;
  margin-bottom: 40px;
}

.contact-header-content {
  max-width: 800px;
  margin: 0 auto;
}

.contact-page-title {
  font-size: 2.5rem;
  font-weight: 800;
  margin-bottom: 15px;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.contact-page-subtitle {
  font-size: 1.25rem;
  font-weight: 400;
  opacity: 0.95;
}

.contact-section {
  padding: 60px 0;
  background-color: #F5F7FA;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 40px;
  align-items: start;
}

@media (max-width: 991px) {
  .contact-grid {
    grid-template-columns: 1fr;
  }
}

/* Contact Info Cards */
.contact-info {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.info-card {
  background: white;
  padding: 25px;
  border-radius: 12px;
  display: flex;
  gap: 20px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease;
  border-left: 4px solid #00A8A8;
}

.info-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}

.info-icon {
  font-size: 2rem;
  background: #F5F7FA;
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  flex-shrink: 0;
}

.info-text h3 {
  font-size: 1.2rem;
  color: #1F3A7F;
  margin-bottom: 8px;
}

.info-text p {
  color: #2C3E50;
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.6;
}

/* Contact Form Container */
.contact-form-container {
  background: white;
  padding: 40px;
  border-radius: 15px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.form-wrapper h3 {
  font-size: 1.8rem;
  color: #1F3A7F;
  margin-bottom: 10px;
}

.form-wrapper p {
  color: #7A8FA3;
  margin-bottom: 30px;
}

.contact-form .form-group {
  margin-bottom: 20px;
}

.contact-form label {
  display: block;
  margin-bottom: 8px;
  font-weight: 600;
  color: #2C3E50;
  font-size: 0.9rem;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 12px 15px;
  border: 1px solid #E0E7F1;
  border-radius: 8px;
  font-family: inherit;
  font-size: 1rem;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: #00A8A8;
  box-shadow: 0 0 0 3px rgba(0, 168, 168, 0.1);
}

.btn-submit {
  background-color: #1F3A7F;
  color: white;
  width: 100%;
  padding: 15px;
  font-size: 1.1rem;
  margin-top: 10px;
}

.btn-submit:hover {
  background-color: #162a5c;
  transform: translateY(-2px);
}

/* Map Section */
.contact-map {
  line-height: 0;
}

.map-placeholder {
  filter: grayscale(0.2);
}
