/* Reset and Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.6;
  color: #333;
  background-color: #fff;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Navigation */
.navbar {
  background: #fff;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 70px;
}

.nav-logo {
  display: flex;
  align-items: center;
  font-size: 1.5rem;
  font-weight: bold;
  color: #2c5aa0;
}

.nav-img {
  width: 150px;
  height: 50px;
}

.nav-logo i {
  margin-right: 10px;
  font-size: 1.8rem;
}

.nav-menu {
  display: flex;
  list-style: none;
  gap: 30px;
}

.nav-link {
  text-decoration: none;
  color: #333;
  font-weight: 500;
  transition: color 0.3s ease;
  position: relative;
}

.nav-link:hover,
.nav-link.active {
  color: #2c5aa0;
}

.nav-link.active::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 100%;
  height: 2px;
  background: #2c5aa0;
}

.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
}

.bar {
  width: 25px;
  height: 3px;
  background: #333;
  margin: 3px 0;
  transition: 0.3s;
}

/* Favicon styles */
.favicon {
  width: 16px;
  height: 16px;
  display: inline-block;
}

/* Hero Section Fixes */
.hero {
  margin-top: 70px;
  position: relative;
  height: 500px;
  overflow: hidden;
}

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

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

.hero-images img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 1s ease-in-out;
}

.hero-images img.active {
  opacity: 1;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.7));
  z-index: 1;
}

.hero-content {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  z-index: 2;
  padding: 0 20px;
}

.hero-text {
  max-width: 800px;
  color: white;
}

.hero-text h1 {
  font-size: 3.5rem;
  margin-bottom: 20px;
  line-height: 1.2;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.hero-text p {
  font-size: 1.3rem;
  margin-bottom: 30px;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

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

.btn {
  padding: 15px 30px;
  text-decoration: none;
  border-radius: 5px;
  font-weight: 600;
  transition: all 0.3s ease;
  display: inline-block;
  text-align: center;
}

.btn-primary {
  background: #2c5aa0;
  color: white;
}

.btn-primary:hover {
  background: #1e3f73;
  transform: translateY(-2px);
}

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

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.2);
  color: white;
}


/* Page Header */
.page-header {
  margin-top: 70px;
  padding: 60px 0;
  background: linear-gradient(135deg, #2c5aa0 0%, #1e3f73 100%);
  color: white;
  text-align: center;
}

.page-header h1 {
  font-size: 2.5rem;
  margin-bottom: 15px;
}

.page-header p {
  font-size: 1.1rem;
  opacity: 0.9;
}

/* Features Section */
.features {
  padding: 80px 0;
  background: #f8f9fa;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
}

.feature-card {
  background: white;
  padding: 40px 30px;
  border-radius: 10px;
  text-align: center;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

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

.feature-card i {
  font-size: 3rem;
  color: #2c5aa0;
  margin-bottom: 20px;
}

.feature-card h3 {
  font-size: 1.3rem;
  margin-bottom: 15px;
  color: #333;
}

/* Staff Section */
.staff-section {
  padding: 80px 0;
  background: white;
}

.section-title {
  text-align: center;
  font-size: 2.5rem;
  color: #2c5aa0;
  margin-bottom: 60px;
}

.staff-slider {
  overflow: hidden;
  position: relative;
}

.staff-track {
  display: flex;
  gap: 30px;
  animation: scroll 20s linear infinite;
}

.staff-card {
  min-width: 250px;
  background: white;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  text-align: center;
}

.staff-card img {
  width: 100%;
  height: 300px;
  object-fit: cover;
}

.staff-card h3 {
  padding: 20px 15px 10px;
  color: #333;
  font-size: 1.2rem;
}

.staff-card p {
  padding: 0 15px 20px;
  color: #666;
}

@keyframes scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-100%);
  }
}

/* Stats Section */
.stats {
  padding: 60px 0;
  background: #2c5aa0;
  color: white;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 40px;
  text-align: center;
}

.stat-item h3 {
  font-size: 3rem;
  margin-bottom: 10px;
}

.stat-item p {
  font-size: 1.1rem;
  opacity: 0.9;
}

/* About Content */
.about-content {
  padding: 80px 0;
}

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

.about-text h2 {
  font-size: 2.2rem;
  color: #2c5aa0;
  margin-bottom: 25px;
}

.about-text p {
  margin-bottom: 20px;
  color: #666;
  line-height: 1.8;
}

.mission-vision {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  margin-top: 40px;
}

.mission,
.vision {
  padding: 30px;
  background: #f8f9fa;
  border-radius: 10px;
}

.mission h3,
.vision h3 {
  color: #2c5aa0;
  margin-bottom: 15px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.about-image img {
  width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

/* Values Section */
.values-section {
  padding: 80px 0;
  background: #f8f9fa;
}

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

.value-card {
  background: white;
  padding: 40px 30px;
  border-radius: 10px;
  text-align: center;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.value-card i {
  font-size: 3rem;
  color: #2c5aa0;
  margin-bottom: 20px;
}

.value-card h3 {
  font-size: 1.3rem;
  margin-bottom: 15px;
  color: #333;
}

/* Achievements Section */
.achievements {
  padding: 80px 0;
}

.achievements-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
}

.achievement-item {
  text-align: center;
  padding: 30px;
}

.achievement-item i {
  font-size: 3rem;
  color: #2c5aa0;
  margin-bottom: 20px;
}

.achievement-item h3 {
  font-size: 1.2rem;
  margin-bottom: 15px;
  color: #333;
}

/* Services Section */
.services-section {
  padding: 80px 0;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 40px;
}

.service-card {
  background: white;
  border-radius: 15px;
  padding: 40px 30px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
  border: 1px solid #e9ecef;
}

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

.service-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, #2c5aa0, #1e3f73);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 25px;
}

.service-icon i {
  font-size: 2rem;
  color: white;
}

.service-card h3 {
  font-size: 1.4rem;
  color: #2c5aa0;
  margin-bottom: 15px;
}

.service-card p {
  color: #666;
  margin-bottom: 20px;
  line-height: 1.6;
}

.service-features {
  list-style: none;
  margin-bottom: 25px;
}

.service-features li {
  padding: 5px 0;
  color: #666;
  position: relative;
  padding-left: 20px;
}

.service-features li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #28a745;
  font-weight: bold;
}

.service-btn {
  background: #2c5aa0;
  color: white;
  padding: 12px 25px;
  text-decoration: none;
  border-radius: 5px;
  font-weight: 600;
  transition: all 0.3s ease;
  display: inline-block;
}

.service-btn:hover {
  background: #1e3f73;
  transform: translateY(-2px);
}

/* Emergency Section */
.emergency-section {
  padding: 60px 0;
  background: linear-gradient(135deg, #dc3545, #c82333);
  color: white;
}

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

.emergency-text h2 {
  font-size: 2rem;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 15px;
}

.emergency-features {
  display: flex;
  /* flex-direction: column; */
  justify-content: space-evenly;
  gap: 15px;
  margin: 30px 0;
}

.emergency-feature {
  display: flex;
  align-items: center;
  gap: 15px;
}

.emergency-feature i {
  font-size: 1.5rem;
}

.emergency-number {
  font-size: 2.5rem;
  font-weight: bold;
  color: #fff;
}

.emergency-image img {
  width: 100%;
  height: auto;
  border-radius: 10px;
}

/* Appointment Section */
.appointment-section {
  padding: 80px 0;
  background: #f8f9fa;
}

.appointment-content {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 60px;
}

.appointment-info h2 {
  font-size: 2rem;
  color: #2c5aa0;
  margin-bottom: 25px;
}

.info-list {
  margin-bottom: 40px;
}

.info-item {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 15px;
}

.info-item i {
  color: #28a745;
  font-size: 1.2rem;
}

.contact-info-box {
  background: white;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.contact-info-box h3 {
  color: #2c5aa0;
  margin-bottom: 20px;
}

.contact-info-box p {
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.contact-info-box i {
  color: #2c5aa0;
  width: 20px;
}

/* Form Styles */
.appointment-form-container,
.contact-form-section {
  background: white;
  padding: 40px;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.appointment-form h2,
.contact-form h2 {
  color: #2c5aa0;
  margin-bottom: 30px;
  text-align: center;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 20px;
}

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

.form-group label {
  display: block;
  margin-bottom: 8px;
  font-weight: 600;
  color: #333;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 15px;
  border: 2px solid #e9ecef;
  border-radius: 5px;
  font-size: 1rem;
  transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #2c5aa0;
}

.checkbox-group {
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.checkbox-label {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  cursor: pointer;
  font-size: 0.9rem;
  line-height: 1.4;
}

.checkbox-label input[type="checkbox"] {
  width: auto;
  margin: 0;
}

.checkmark {
  width: 18px;
  height: 18px;
  border: 2px solid #ddd;
  border-radius: 3px;
  position: relative;
  flex-shrink: 0;
  margin-top: 2px;
}

.checkbox-label input[type="checkbox"]:checked + .checkmark {
  background: #2c5aa0;
  border-color: #2c5aa0;
}

.checkbox-label input[type="checkbox"]:checked + .checkmark::after {
  content: "✓";
  position: absolute;
  top: -2px;
  left: 2px;
  color: white;
  font-size: 12px;
  font-weight: bold;
}

.submit-btn {
  background: linear-gradient(135deg, #2c5aa0, #1e3f73);
  color: white;
  padding: 15px 40px;
  border: none;
  border-radius: 5px;
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
}

.submit-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(44, 90, 160, 0.3);
}

/* Success Message */
.success-message {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2000;
}

.success-content {
  background: white;
  padding: 40px;
  border-radius: 15px;
  text-align: center;
  max-width: 500px;
  margin: 20px;
}

.success-content i {
  font-size: 4rem;
  color: #28a745;
  margin-bottom: 20px;
}

.success-content h3 {
  color: #2c5aa0;
  margin-bottom: 15px;
}

.close-btn {
  background: #2c5aa0;
  color: white;
  padding: 10px 30px;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  margin-top: 20px;
}

/* Contact Section */
.contact-section {
  padding: 80px 0;
}

.contact-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
}

.contact-info-section h2 {
  font-size: 2rem;
  color: #2c5aa0;
  margin-bottom: 25px;
}

.contact-methods {
  display: flex;
  flex-direction: column;
  gap: 30px;
  margin-top: 40px;
}

.contact-method {
  display: flex;
  gap: 20px;
  align-items: flex-start;
}

.contact-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #2c5aa0, #1e3f73);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-icon i {
  font-size: 1.5rem;
  color: white;
}

.contact-details h3 {
  color: #2c5aa0;
  margin-bottom: 10px;
}

.contact-details p {
  color: #666;
  line-height: 1.6;
}

/* Map Section */
.map-section {
  padding: 20px 0;
  background: #f8f9fa;
}

.map-container {
  margin-bottom: 40px;
}

.map-placeholder {
  height: 200px;
  background: #e9ecef;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.map-placeholder-content {
  text-align: center;
  display: flex;
  justify-content: space-evenly;
  color: #666;
}

.map-placeholder-content i {
  font-size: 2.5rem;
  color: #2c5aa0;
  margin-bottom: 15px;
}

.map-placeholder-content h3 {
  color: #2c5aa0;
  margin-bottom: 10px;
}

.directions-btn,
.directions-btn-alt {
  background: #2c5aa0;
  color: white;
  padding: 12px 20px;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  font-weight: 600;
  margin-top: 15px;
  display: inline-flex;
  align-items: center;
  /* gap: 8px; */
  text-decoration: none;
}

.directions-btn:hover,
.directions-btn-alt:hover {
  background: #1e3f73;
}

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

.map-info-item {
  display: flex;
  align-items: center;
  gap: 15px;
  background: white;
  padding: 25px;
  border-radius: 10px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.map-info-item i {
  font-size: 2rem;
  color: #2c5aa0;
}

.map-info-item h4 {
  color: #333;
  margin-bottom: 5px;
}

.map-info-item p {
  color: #666;
  font-size: 0.9rem;
}

/* Emergency Contact Banner */
.emergency-contact {
  padding: 40px 0;
}

.emergency-banner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: rgba(255, 255, 255, 0.1);
  padding: 30px;
  border-radius: 10px;
  /* color: white; */
}

.emergency-content {
  display: flex;
  align-items: center;
  gap: 20px;
}

.emergency-content i {
  font-size: 2.5rem;
  color: #fff;
}

.emergency-content h3 {
  margin-bottom: 5px;
}

.emergency-actions {
  display: flex;
  gap: 15px;
}

.emergency-btn {
  background: #fff;
  color: #dc3545;
  padding: 12px 25px;
  text-decoration: none;
  border-radius: 5px;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 8px;
}

.emergency-btn:hover {
  background: #f8f9fa;
}

/* Footer */



/* review contact */
/* Footer Review Form Styles */
.footer-review {
  background: rgba(255, 255, 255, 0.05);
  padding: 30px;
  border-radius: 10px;
  margin: 40px 0;
}

.footer-review h3 {
  color: white;
  text-align: center;
  margin-bottom: 25px;
  font-size: 1.5rem;
}

.footer-review .review-form {
  background: transparent;
  padding: 0;
  box-shadow: none;
}

.footer-review .form-group label {
  color: #ecf0f1;
  font-weight: 500;
}

.footer-review .form-group input,
.footer-review .form-group textarea {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid #5d6d7e;
  color: white;
}

.footer-review .form-group input:focus,
.footer-review .form-group textarea:focus {
  border-color: #2c5aa0;
  background: rgba(255, 255, 255, 0.15);
}

.footer-review .form-group input::placeholder,
.footer-review .form-group textarea::placeholder {
  color: #bdc3c7;
}

.footer-review .submit-btn {
  background: linear-gradient(135deg, #2c5aa0, #1e3f73);
  margin-top: 10px;
}

.footer-review .submit-btn:hover {
  background: linear-gradient(135deg, #1e3f73, #15325a);
}

/* Make the form responsive in footer */
@media (max-width: 768px) {
  .footer-review {
    padding: 20px;
    margin: 30px 0;
  }
  
  .footer-review .form-row {
    grid-template-columns: 1fr;
  }
}
/* review end */
.footer {
  background: #2c3e50;
  color: white;
  padding: 60px 0 20px;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
  margin-bottom: 40px;
}

.footer-section h3 {
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.footer-section h4 {
  margin-bottom: 20px;
  color: #ecf0f1;
}

.footer-section p {
  color: #bdc3c7;
  line-height: 1.6;
  margin-bottom: 20px;
}

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

.footer-section ul li {
  margin-bottom: 10px;
}

.footer-section ul li a {
  color: #bdc3c7;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-section ul li a:hover {
  color: white;
}

.social-links {
  display: flex;
  gap: 15px;
}

.social-links a {
  width: 40px;
  height: 40px;
  background: #34495e;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  text-decoration: none;
  transition: background 0.3s ease;
}

.social-links a:hover {
  background: #2c5aa0;
}

.contact-info p {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
}

.contact-info i {
  width: 20px;
  color: #2c5aa0;
}

.footer-bottom {
  border-top: 1px solid #34495e;
  padding-top: 20px;
  text-align: center;
  color: #bdc3c7;
}


/* validation */
.validation-error {
  color: #dc3545;
  font-size: 0.8rem;
  margin-top: 0.25rem;
}

input.error, select.error, textarea.error {
  border-color: #dc3545 !important;
}

/* Success Modal Styles */
.success-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.7);
  z-index: 1000;
  display: flex;
  justify-content: center;
  align-items: center;
}

.modal-content {
  background: white;
  padding: 2rem;
  border-radius: 8px;
  text-align: center;
  max-width: 400px;
  width: 90%;
}

.modal-icon {
  color: #28a745;
  font-size: 3rem;
  margin-bottom: 1rem;
}

.modal-button {
  background: #28a745;
  color: white;
  border: none;
  padding: 0.5rem 1.5rem;
  border-radius: 4px;
  cursor: pointer;
  margin-top: 1rem;
}

.close-modal {
  position: absolute;
  top: 10px;
  right: 15px;
  font-size: 1.5rem;
  cursor: pointer;
}


/* Responsive Design */
@media (max-width: 768px) {
  .hamburger {
    display: flex;
  }

  .nav-menu {
    position: fixed;
    left: -100%;
    top: 70px;
    flex-direction: column;
    background-color: white;
    width: 100%;
    text-align: center;
    transition: 0.3s;
    box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
    padding: 20px 0;
  }

  .nav-menu.active {
    left: 0;
  }

  .nav-menu li {
    margin: 15px 0;
  }

  .hero-content {
    grid-template-columns: 1fr;
    text-align: center;
  }

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

  .hero-text p {
    font-size: 1.1rem;
  }

  .hero-buttons {
    flex-direction: column;
    align-items: center;
  }

  .btn {
    width: 100%;
    max-width: 250px;
  }

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

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

  .emergency-content {
    grid-template-columns: 1fr;
    text-align: center;
  }

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

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

  .form-row {
    grid-template-columns: 1fr;
  }

  .emergency-banner {
    flex-direction: column;
    gap: 20px;
    text-align: center;
  }

  .emergency-actions {
    justify-content: center;
  }

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

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

@media (max-width: 480px) {
  .container {
    padding: 0 15px;
  }

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

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

  .hero-buttons {
    flex-direction: column;
    align-items: center;
  }

  .btn {
    width: 100%;
    max-width: 250px;
  }

  .page-header h1 {
    font-size: 2rem;
  }

  .section-title {
    font-size: 2rem;
  }

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

  .appointment-form-container,
  .contact-form-section {
    padding: 25px;
  }

  .emergency-content {
    flex-direction: column;
    text-align: center;
  }

  .emergency-actions {
    flex-direction: column;
    width: 100%;
  }

  .emergency-btn,
  .directions-btn-alt {
    width: 100%;
    justify-content: center;
  }
}

/* Animation for staff slider */
@media (prefers-reduced-motion: reduce) {
  .staff-track {
    animation: none;
  }
}

/* Print styles */
@media print {
  .navbar,
  .footer,
  .hero-buttons,
  .submit-btn {
    display: none;
  }

  body {
    font-size: 12pt;
    line-height: 1.4;
  }

  .page-header {
    margin-top: 0;
  }
}