@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;600;700&family=Open+Sans:wght@400;600;700&display=swap');

:root {
  --brand-gold: #E4C08D;
  --brand-gold-dark: #8A6F4E;
  --text-dark: #2E2E2E;
  --white: #FFFFFF;
  --off-white: #F7F5F0;
  --transition: all 0.3s ease;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Open Sans', sans-serif;
  color: var(--text-dark);
  line-height: 1.6;
  background-color: var(--white);
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Playfair Display', serif;
  font-weight: 600;
  line-height: 1.3;
}

a {
  text-decoration: none;
  color: inherit;
}

img {
  max-width: 100%;
  height: auto;
}

ul {
  list-style: none;
}

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

.utility-bar {
  background: var(--text-dark);
  color: var(--white);
  padding: 8px 0;
  font-size: 14px;
}

.utility-bar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
}

.utility-bar .contact-info {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.utility-bar a {
  color: var(--white);
  transition: var(--transition);
}

.utility-bar a:hover {
  color: var(--brand-gold);
}

.utility-bar .social-icons {
  display: flex;
  gap: 15px;
}

.utility-bar .social-icons a {
  display: flex;
  align-items: center;
  justify-content: center;
}

header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: var(--white);
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
  z-index: 1000;
  transition: var(--transition);
}

header.scrolled {
  padding: 5px 0;
}

header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 20px;
}

.logo {
  display: flex;
  align-items: center;
}

.logo img {
  height: 60px;
  width: auto;
}

nav ul {
  display: flex;
  gap: 30px;
  align-items: center;
}

nav a {
  font-weight: 600;
  font-size: 15px;
  color: var(--text-dark);
  transition: var(--transition);
  position: relative;
}

nav a::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--brand-gold);
  transition: var(--transition);
}

nav a:hover::after,
nav a.active::after {
  width: 100%;
}

nav a:hover {
  color: var(--brand-gold-dark);
}

.header-cta {
  display: flex;
  align-items: center;
  gap: 20px;
}

.header-phone {
  font-weight: 600;
  color: var(--text-dark);
  transition: var(--transition);
}

.header-phone:hover {
  color: var(--brand-gold-dark);
}

.btn {
  display: inline-block;
  padding: 12px 24px;
  background: var(--brand-gold);
  color: var(--white);
  border: 2px solid var(--brand-gold);
  border-radius: 5px;
  font-weight: 600;
  font-size: 15px;
  cursor: pointer;
  transition: var(--transition);
}

.btn:hover {
  background: var(--brand-gold-dark);
  border-color: var(--brand-gold-dark);
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.btn-secondary {
  background: transparent;
  color: var(--brand-gold-dark);
  border: none;
  padding: 0;
}

.btn-secondary:hover {
  background: transparent;
  color: var(--brand-gold-dark);
  transform: none;
  box-shadow: none;
}

.btn-secondary::after {
  content: ' →';
}

.mobile-menu-btn {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 10px;
}

.mobile-menu-btn span {
  width: 25px;
  height: 3px;
  background: var(--text-dark);
  transition: var(--transition);
}

.mobile-menu-btn.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 6px);
}

.mobile-menu-btn.active span:nth-child(2) {
  opacity: 0;
}

.mobile-menu-btn.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -6px);
}

.mobile-menu {
  display: none;
  position: fixed;
  top: 0;
  right: -100%;
  width: 80%;
  max-width: 400px;
  height: 100vh;
  background: var(--white);
  box-shadow: -5px 0 20px rgba(0,0,0,0.2);
  padding: 80px 30px 30px;
  transition: var(--transition);
  z-index: 999;
  overflow-y: auto;
}

.mobile-menu.active {
  right: 0;
}

.mobile-menu ul {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.mobile-menu a {
  font-size: 18px;
  font-weight: 600;
  color: var(--text-dark);
}

.mobile-menu .btn {
  width: 100%;
  text-align: center;
  margin-top: 20px;
}

.mobile-menu .contact-details {
  margin-top: 30px;
  padding-top: 20px;
  border-top: 1px solid #eee;
}

.mobile-menu .contact-details p {
  margin-bottom: 10px;
  font-size: 14px;
}

.mobile-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.5);
  z-index: 998;
  opacity: 0;
  transition: var(--transition);
}

.mobile-overlay.active {
  opacity: 1;
}

.hero-section {
  position: relative;
  min-height: 600px;
  display: flex;
  align-items: center;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  padding-top: 120px;
}

.hero-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(46, 46, 46, 0.7);
}

.hero-section .container {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: flex-end;
}

.hero-content {
  background: rgba(46, 46, 46, 0.85);
  padding: 50px;
  max-width: 550px;
  border-radius: 10px;
  color: var(--white);
  animation: fadeInUp 0.8s ease;
}

.hero-content h1 {
  font-size: 42px;
  margin-bottom: 20px;
  color: var(--white);
}

.hero-content p {
  font-size: 18px;
  margin-bottom: 30px;
  opacity: 0.9;
  line-height: 1.7;
}

.hero-content .btn {
  padding: 15px 35px;
}

.section {
  padding: 80px 0;
}

.section-header {
  text-align: center;
  margin-bottom: 50px;
}

.section-header h2 {
  font-size: 38px;
  color: var(--text-dark);
  margin-bottom: 15px;
}

.section-header p {
  font-size: 18px;
  color: #666;
  max-width: 600px;
  margin: 0 auto;
}

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

.service-card {
  background: var(--white);
  padding: 40px 30px;
  border-radius: 10px;
  text-align: center;
  box-shadow: 0 5px 20px rgba(0,0,0,0.08);
  transition: var(--transition);
  border: 2px solid transparent;
}

.service-card:hover {
  transform: translateY(-10px);
  border-color: var(--brand-gold);
  box-shadow: 0 15px 40px rgba(0,0,0,0.12);
}

.service-card img {
  width: 70px;
  height: 70px;
  margin-bottom: 20px;
}

.service-card h3 {
  font-size: 24px;
  margin-bottom: 15px;
  color: var(--text-dark);
}

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

.service-card .learn-more {
  color: var(--brand-gold-dark);
  font-weight: 600;
  transition: var(--transition);
}

.service-card .learn-more:hover {
  color: var(--brand-gold);
}

.about-section {
  background: var(--off-white);
}

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

.about-content {
  animation: fadeInUp 0.8s ease;
}

.about-content h2 {
  font-size: 38px;
  margin-bottom: 20px;
  color: var(--text-dark);
}

.about-content p {
  font-size: 18px;
  color: #666;
  margin-bottom: 30px;
  line-height: 1.8;
}

.about-image {
  position: relative;
  border-radius: 10px;
  overflow: hidden;
}

.about-image img {
  width: 100%;
  height: 400px;
  object-fit: cover;
}

.testimonials-section {
  background: var(--white);
}

.testimonials-carousel {
  position: relative;
  max-width: 800px;
  margin: 0 auto;
  overflow: hidden;
}

.testimonials-track {
  display: flex;
  transition: transform 0.5s ease;
}

.testimonial-item {
  min-width: 100%;
  padding: 40px;
  text-align: center;
}

.testimonial-item blockquote {
  font-size: 22px;
  font-style: italic;
  color: var(--text-dark);
  margin-bottom: 25px;
  position: relative;
}

.testimonial-item blockquote::before {
  content: '"';
  font-family: 'Playfair Display', serif;
  font-size: 80px;
  color: var(--brand-gold);
  position: absolute;
  top: -30px;
  left: 50%;
  transform: translateX(-50%);
  opacity: 0.3;
}

.testimonial-item cite {
  font-style: normal;
  font-weight: 600;
  color: var(--brand-gold-dark);
}

.carousel-controls {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  margin-top: 30px;
}

.carousel-btn {
  width: 50px;
  height: 50px;
  border: 2px solid var(--brand-gold);
  background: transparent;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}

.carousel-btn:hover {
  background: var(--brand-gold);
}

.carousel-btn:hover svg {
  stroke: var(--white);
}

.carousel-dots {
  display: flex;
  gap: 10px;
}

.carousel-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #ddd;
  border: none;
  cursor: pointer;
  transition: var(--transition);
}

.carousel-dot.active {
  background: var(--brand-gold);
}

.location-section {
  background: var(--off-white);
}

.location-section .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: start;
}

.location-info h2 {
  font-size: 32px;
  margin-bottom: 30px;
}

.location-info ul {
  margin-bottom: 30px;
}

.location-info li {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  margin-bottom: 20px;
  font-size: 16px;
}

.location-info li svg {
  flex-shrink: 0;
  color: var(--brand-gold);
}

.hours-list li {
  display: flex;
  justify-content: space-between;
  padding: 10px 0;
  border-bottom: 1px solid #ddd;
}

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

.map-container {
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.map-container iframe {
  width: 100%;
  height: 400px;
  border: none;
}

.cta-section {
  background: linear-gradient(135deg, var(--brand-gold) 0%, var(--brand-gold-dark) 100%);
  padding: 80px 0;
  text-align: center;
}

.cta-section h2 {
  font-size: 36px;
  color: var(--white);
  margin-bottom: 20px;
}

.cta-section p {
  font-size: 18px;
  color: var(--white);
  margin-bottom: 30px;
  opacity: 0.9;
}

.cta-section .btn {
  background: var(--white);
  color: var(--brand-gold-dark);
  border-color: var(--white);
}

.cta-section .btn:hover {
  background: var(--text-dark);
  color: var(--white);
  border-color: var(--text-dark);
}

footer {
  background: var(--text-dark);
  color: var(--white);
  padding: 60px 0 20px;
}

footer .container {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1.5fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}

.footer-about .logo {
  margin-bottom: 20px;
}

.footer-about .logo img {
  height: 50px;
}

.footer-about p {
  font-size: 14px;
  opacity: 0.8;
  line-height: 1.7;
}

.footer-links h4,
.footer-contact h4,
.footer-social h4 {
  font-size: 18px;
  margin-bottom: 20px;
  color: var(--brand-gold);
}

.footer-links ul {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-links a {
  font-size: 14px;
  opacity: 0.8;
  transition: var(--transition);
}

.footer-links a:hover {
  opacity: 1;
  color: var(--brand-gold);
}

.footer-contact p {
  font-size: 14px;
  margin-bottom: 12px;
  opacity: 0.8;
}

.footer-social .social-icons {
  display: flex;
  gap: 15px;
  margin-bottom: 20px;
}

.footer-social .social-icons a {
  width: 40px;
  height: 40px;
  border: 1px solid rgba(255,255,255,0.3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}

.footer-social .social-icons a:hover {
  background: var(--brand-gold);
  border-color: var(--brand-gold);
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 20px;
  text-align: center;
}

.footer-bottom p {
  font-size: 14px;
  opacity: 0.6;
}

.internal-hero {
  position: relative;
  min-height: 400px;
  display: flex;
  align-items: center;
  background-size: cover;
  background-position: center;
  padding-top: 120px;
}

.internal-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(46, 46, 46, 0.6);
}

.internal-hero .container {
  position: relative;
  z-index: 1;
  text-align: center;
  color: var(--white);
}

.internal-hero h1 {
  font-size: 48px;
  margin-bottom: 15px;
  color: var(--white);
}

.internal-hero p {
  font-size: 20px;
  opacity: 0.9;
}

.service-categories {
  padding: 80px 0;
}

.service-category {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 50px;
  align-items: start;
  padding: 50px 0;
  border-bottom: 1px solid #eee;
}

.service-category:last-child {
  border-bottom: none;
}

.service-category:nth-child(even) {
  grid-template-columns: 2fr 1fr;
}

.service-category:nth-child(even) .category-content {
  order: 2;
}

.service-category:nth-child(even) .category-image {
  order: 1;
}

.category-content h3 {
  font-size: 32px;
  margin-bottom: 20px;
  color: var(--text-dark);
}

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

.category-content ul {
  margin-bottom: 25px;
}

.category-content li {
  position: relative;
  padding-left: 25px;
  margin-bottom: 12px;
  color: #666;
}

.category-content li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--brand-gold);
  font-weight: bold;
}

.category-image {
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

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

.why-choose-us {
  background: var(--off-white);
  padding: 80px 0;
}

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

.feature-card {
  text-align: center;
  padding: 30px 20px;
  background: var(--white);
  border-radius: 10px;
  box-shadow: 0 5px 20px rgba(0,0,0,0.05);
  transition: var(--transition);
}

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

.feature-card svg {
  width: 50px;
  height: 50px;
  color: var(--brand-gold);
  margin-bottom: 15px;
}

.feature-card h4 {
  font-size: 16px;
  margin-bottom: 10px;
  color: var(--text-dark);
}

.feature-card p {
  font-size: 14px;
  color: #666;
}

.patient-forms,
.insurance-info,
.faq-section {
  padding: 80px 0;
}

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

.form-card {
  background: var(--white);
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 5px 20px rgba(0,0,0,0.08);
  text-align: center;
  transition: var(--transition);
}

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

.form-card svg {
  width: 50px;
  height: 50px;
  color: var(--brand-gold);
  margin-bottom: 20px;
}

.form-card h3 {
  font-size: 20px;
  margin-bottom: 15px;
}

.form-card a {
  color: var(--brand-gold-dark);
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 5px;
}

.form-card a:hover {
  color: var(--brand-gold);
}

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

.insurance-text p {
  font-size: 18px;
  color: #666;
  margin-bottom: 30px;
  line-height: 1.8;
}

.insurance-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 15px;
}

.insurance-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 16px;
  color: var(--text-dark);
}

.insurance-list li::before {
  content: '✓';
  color: var(--brand-gold);
  font-weight: bold;
}

.insurance-cta {
  background: var(--off-white);
  padding: 30px;
  border-radius: 10px;
  text-align: center;
}

.insurance-cta h4 {
  font-size: 20px;
  margin-bottom: 15px;
}

.faq-container {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  border-bottom: 1px solid #eee;
  margin-bottom: 15px;
}

.faq-question {
  width: 100%;
  background: none;
  border: none;
  padding: 20px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  text-align: left;
}

.faq-question h4 {
  font-size: 18px;
  color: var(--text-dark);
}

.faq-icon {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  border: 2px solid var(--brand-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}

.faq-item.active .faq-icon {
  background: var(--brand-gold);
}

.faq-item.active .faq-icon::before,
.faq-item.active .faq-icon::after {
  background: var(--white);
}

.faq-icon::before,
.faq-icon::after {
  content: '';
  position: absolute;
  width: 14px;
  height: 2px;
  background: var(--brand-gold);
  transition: var(--transition);
}

.faq-icon::after {
  transform: rotate(90deg);
}

.faq-item.active .faq-icon::after {
  transform: rotate(180deg);
  opacity: 0;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.faq-answer p {
  padding-bottom: 20px;
  color: #666;
  line-height: 1.7;
}

.faq-item.active .faq-answer {
  max-height: 300px;
}

.mission-section {
  padding: 80px 0;
  background: var(--off-white);
}

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

.mission-text h2 {
  font-size: 38px;
  margin-bottom: 25px;
}

.mission-text > p {
  font-size: 18px;
  color: #666;
  margin-bottom: 30px;
  line-height: 1.8;
}

.mission-values ul {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.mission-values li {
  padding: 20px;
  background: var(--white);
  border-radius: 10px;
  box-shadow: 0 3px 15px rgba(0,0,0,0.05);
}

.mission-values li strong {
  display: block;
  color: var(--brand-gold-dark);
  margin-bottom: 8px;
}

.mission-image {
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 10px 40px rgba(0,0,0,0.15);
}

.mission-image img {
  width: 100%;
  height: 400px;
  object-fit: cover;
}

.team-section {
  padding: 80px 0;
}

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

.team-card {
  background: var(--white);
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 20px rgba(0,0,0,0.08);
  transition: var(--transition);
}

.team-card:hover {
  transform: scale(1.02);
}

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

.team-info {
  padding: 25px;
  text-align: center;
}

.team-info h3 {
  font-size: 22px;
  margin-bottom: 5px;
}

.team-info .role {
  color: var(--brand-gold-dark);
  font-weight: 600;
  margin-bottom: 15px;
}

.team-info p {
  font-size: 14px;
  color: #666;
  line-height: 1.7;
}

.facility-section {
  background: var(--off-white);
  padding: 80px 0;
}

.facility-content {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 50px;
  align-items: start;
}

.facility-text p {
  font-size: 18px;
  color: #666;
  line-height: 1.8;
  margin-bottom: 30px;
}

.facility-gallery {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.facility-gallery img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  border-radius: 10px;
  cursor: pointer;
  transition: var(--transition);
}

.facility-gallery img:hover {
  opacity: 0.85;
}

.contact-section {
  padding: 80px 0;
}

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

.contact-form h2 {
  font-size: 32px;
  margin-bottom: 30px;
}

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

.form-group label {
  display: block;
  font-weight: 600;
  margin-bottom: 8px;
  color: var(--text-dark);
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 14px 18px;
  border: 2px solid #ddd;
  border-radius: 5px;
  font-size: 16px;
  font-family: inherit;
  transition: var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--brand-gold);
}

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

.contact-details-card {
  background: var(--off-white);
  padding: 40px;
  border-radius: 10px;
}

.contact-details-card h3 {
  font-size: 24px;
  margin-bottom: 25px;
}

.contact-details-card .detail-item {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  margin-bottom: 25px;
}

.contact-details-card .detail-item svg {
  flex-shrink: 0;
  color: var(--brand-gold);
  width: 24px;
  height: 24px;
}

.contact-details-card .detail-item h4 {
  font-size: 16px;
  margin-bottom: 5px;
}

.contact-details-card .detail-item p {
  font-size: 15px;
  color: #666;
}

.contact-details-card .hours-list {
  margin-top: 20px;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 1024px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .why-choose-us .features-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  
  footer .container {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .team-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .utility-bar .contact-info {
    display: none;
  }
  
  nav ul,
  .header-cta {
    display: none;
  }
  
  .mobile-menu-btn,
  .mobile-menu,
  .mobile-overlay {
    display: flex;
  }
  
  .hero-section {
    min-height: auto;
    padding: 150px 0 60px;
    background-attachment: scroll;
  }
  
  .hero-section .container {
    justify-content: center;
  }
  
  .hero-content {
    padding: 30px;
    max-width: 100%;
    text-align: center;
  }
  
  .hero-content h1 {
    font-size: 28px;
  }
  
  .hero-content p {
    font-size: 16px;
  }
  
  .section {
    padding: 50px 0;
  }
  
  .section-header h2 {
    font-size: 28px;
  }
  
  .services-grid {
    grid-template-columns: 1fr;
  }
  
  .about-section .container {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  
  .about-image {
    order: -1;
  }
  
  .location-section .container {
    grid-template-columns: 1fr;
  }
  
  .map-container iframe {
    height: 300px;
  }
  
  footer .container {
    grid-template-columns: 1fr;
    text-align: center;
  }
  
  .footer-social .social-icons {
    justify-content: center;
  }
  
  .internal-hero {
    min-height: 300px;
    padding: 120px 0 50px;
  }
  
  .internal-hero h1 {
    font-size: 32px;
  }
  
  .service-category {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  
  .service-category:nth-child(even) .category-content {
    order: 1;
  }
  
  .service-category:nth-child(even) .category-image {
    order: 2;
  }
  
  .why-choose-us .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .forms-grid {
    grid-template-columns: 1fr;
  }
  
  .insurance-content {
    grid-template-columns: 1fr;
  }
  
  .mission-content {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  
  .mission-image {
    order: -1;
  }
  
  .mission-values ul {
    grid-template-columns: 1fr;
  }
  
  .team-grid {
    grid-template-columns: 1fr;
  }
  
  .facility-content {
    grid-template-columns: 1fr;
  }
  
  .facility-gallery {
    grid-template-columns: 1fr;
  }
  
  .contact-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .hero-content h1 {
    font-size: 24px;
  }
  
  .section-header h2 {
    font-size: 24px;
  }
  
  .btn {
    padding: 10px 20px;
    font-size: 14px;
  }
  
  .why-choose-us .features-grid {
    grid-template-columns: 1fr;
  }
  
  .insurance-list {
    grid-template-columns: 1fr;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
