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

:root {
  --brand-blue: #0056b3;
  --brand-blue-dark: #004085;
  --brand-blue-light: #e7f1ff;
  --dark: #212529;
  --gray: #6c757d;
  --light-gray: #f8f9fa;
  --white: #ffffff;
  --red: #dc3545;
  --shadow-sm: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075);
  --shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 1rem 3rem rgba(0, 0, 0, 0.15);
  --transition: all 0.3s ease;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: var(--dark);
  background-color: var(--white);
}

h1, h2, h3, h4, h5, h6 {
  font-weight: 600;
  line-height: 1.2;
  color: var(--dark);
}

h1 { font-size: 2.5rem; }
h2 { font-size: 2rem; }
h3 { font-size: 1.5rem; }
h4 { font-size: 1.25rem; }

p {
  margin-bottom: 1rem;
}

a {
  color: var(--brand-blue);
  text-decoration: none;
  transition: var(--transition);
}

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

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

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

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 1.5rem;
  font-size: 1rem;
  font-weight: 500;
  border-radius: 0.375rem;
  cursor: pointer;
  transition: var(--transition);
  border: 2px solid transparent;
}

.btn-primary {
  background-color: var(--brand-blue);
  color: var(--white);
  border-color: var(--brand-blue);
}

.btn-primary:hover {
  background-color: var(--brand-blue-dark);
  border-color: var(--brand-blue-dark);
  transform: scale(1.01);
  box-shadow: var(--shadow);
}

.btn-secondary {
  background-color: transparent;
  color: var(--brand-blue);
  border-color: var(--brand-blue);
}

.btn-secondary:hover {
  background-color: var(--brand-blue);
  color: var(--white);
}

.section {
  padding: 5rem 0;
}

.section-title {
  text-align: center;
  margin-bottom: 3rem;
}

.section-title h2 {
  margin-bottom: 1rem;
}

.section-title p {
  max-width: 600px;
  margin: 0 auto;
  color: var(--gray);
}

/* Header */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background-color: var(--white);
  z-index: 1000;
  transition: var(--transition);
  box-shadow: var(--shadow-sm);
}

.header.scrolled {
  height: 70px;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
  transition: var(--transition);
}

.header.scrolled .header-inner {
  height: 70px;
}

.logo {
  display: flex;
  flex-direction: column;
}

.logo-primary {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--brand-blue);
}

.logo-secondary {
  font-size: 0.75rem;
  color: var(--gray);
}

.nav-desktop {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.nav-desktop a {
  color: var(--dark);
  font-weight: 500;
  position: relative;
  padding: 0.5rem 0;
}

.nav-desktop a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 2px;
  background-color: var(--brand-blue);
  transition: all 0.3s ease;
  transform: translateX(-50%);
}

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

.nav-desktop a.active {
  color: var(--brand-blue);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.phone-link {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--dark);
  font-weight: 500;
}

.phone-link:hover {
  color: var(--brand-blue);
}

.mobile-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
}

.mobile-toggle span {
  width: 25px;
  height: 2px;
  background-color: var(--dark);
  transition: var(--transition);
}

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

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

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

/* Mobile Menu */
.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 100%;
  max-width: 320px;
  height: 100vh;
  background-color: var(--white);
  box-shadow: var(--shadow-lg);
  transition: right 0.3s ease;
  z-index: 1001;
  overflow-y: auto;
  padding: 2rem;
}

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

.mobile-menu-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
  z-index: 1000;
}

.mobile-menu-overlay.active {
  opacity: 1;
  visibility: visible;
}

.mobile-menu-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 2rem;
}

.mobile-menu-close {
  background: none;
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
  color: var(--dark);
}

.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.mobile-nav a {
  color: var(--dark);
  font-size: 1.125rem;
  font-weight: 500;
  padding: 0.75rem 0;
  border-bottom: 1px solid var(--light-gray);
}

.mobile-menu-cta {
  margin-top: 2rem;
}

.mobile-contact-info {
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 1px solid var(--light-gray);
}

.mobile-contact-info p {
  margin-bottom: 0.5rem;
  font-size: 0.875rem;
}

.mobile-languages {
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 1px solid var(--light-gray);
}

.mobile-languages h4 {
  font-size: 0.875rem;
  margin-bottom: 0.75rem;
  color: var(--gray);
}

/* Hero Section */
.hero {
  min-height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
  padding-top: 80px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(rgba(0, 86, 179, 0.85), rgba(0, 64, 133, 0.9));
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 800px;
  padding: 2rem;
  color: var(--white);
}

.hero-content h1 {
  color: var(--white);
  margin-bottom: 1.5rem;
  font-size: 3rem;
}

.hero-content p {
  font-size: 1.25rem;
  margin-bottom: 2rem;
  opacity: 0.95;
}

.hero-content .btn {
  margin: 0.5rem;
}

.hero-small {
  min-height: 400px;
}

/* About Section */
.about-overview {
  background-color: var(--white);
}

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

.about-text h2 {
  margin-bottom: 1.5rem;
}

.about-text p {
  color: var(--gray);
  margin-bottom: 2rem;
}

.about-image {
  position: relative;
  border-radius: 0.5rem;
  overflow: hidden;
  box-shadow: var(--shadow);
}

/* Services Section */
.services-section {
  background-color: var(--light-gray);
}

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

.service-card {
  background-color: var(--white);
  border-radius: 0.5rem;
  padding: 2rem;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  text-align: center;
}

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

.service-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.service-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.service-card h3 {
  margin-bottom: 1rem;
}

.service-card p {
  color: var(--gray);
  margin-bottom: 1.5rem;
}

/* Testimonials */
.testimonials-section {
  background-color: var(--white);
  position: relative;
  overflow: hidden;
}

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

.testimonial-slide {
  display: none;
  text-align: center;
  padding: 2rem;
  animation: fadeIn 0.5s ease;
}

.testimonial-slide.active {
  display: block;
}

.testimonial-quote {
  font-size: 4rem;
  color: var(--brand-blue);
  opacity: 0.3;
  line-height: 1;
  margin-bottom: 1rem;
}

.testimonial-text {
  font-size: 1.25rem;
  font-style: italic;
  margin-bottom: 1.5rem;
  color: var(--dark);
}

.testimonial-author {
  font-weight: 600;
  color: var(--brand-blue);
}

.testimonial-nav {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-top: 2rem;
}

.testimonial-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: var(--gray);
  opacity: 0.3;
  cursor: pointer;
  transition: var(--transition);
  border: none;
}

.testimonial-dot.active,
.testimonial-dot:hover {
  opacity: 1;
  background-color: var(--brand-blue);
}

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

/* Insurance Section */
.insurance-section {
  background-color: var(--brand-blue);
  color: var(--white);
}

.insurance-section h2 {
  color: var(--white);
}

.insurance-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 3rem;
  margin-top: 3rem;
}

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

.insurance-item h3 {
  color: var(--white);
  margin-bottom: 1rem;
  font-size: 1.25rem;
}

.insurance-list {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
}

.insurance-list li {
  background-color: rgba(255, 255, 255, 0.15);
  padding: 0.5rem 1rem;
  border-radius: 2rem;
  font-size: 0.875rem;
}

.languages-list {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
  margin-top: 1rem;
}

.languages-list li {
  color: var(--white);
  font-size: 1rem;
}

/* CTA Section */
.cta-section {
  background-color: var(--light-gray);
  text-align: center;
}

.cta-content {
  max-width: 600px;
  margin: 0 auto;
}

.cta-content h2 {
  margin-bottom: 1rem;
}

.cta-content p {
  color: var(--gray);
  margin-bottom: 2rem;
}

.cta-info {
  display: flex;
  justify-content: center;
  gap: 2rem;
  margin-top: 2rem;
  flex-wrap: wrap;
}

.cta-info-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--gray);
}

/* Footer */
.footer {
  background-color: var(--dark);
  color: var(--white);
  padding: 4rem 0 2rem;
}

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

.footer-logo {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.footer-logo-primary {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--white);
}

.footer-logo-secondary {
  color: var(--gray);
  font-size: 0.875rem;
}

.footer-mission {
  color: var(--gray);
  font-size: 0.875rem;
  margin-top: 1rem;
}

.footer h4 {
  color: var(--white);
  font-size: 1rem;
  margin-bottom: 1.5rem;
}

.footer-links {
  list-style: none;
}

.footer-links li {
  margin-bottom: 0.75rem;
}

.footer-links a {
  color: var(--gray);
  font-size: 0.875rem;
}

.footer-links a:hover {
  color: var(--white);
}

.footer-contact p {
  color: var(--gray);
  font-size: 0.875rem;
  margin-bottom: 0.5rem;
}

.footer-contact a {
  color: var(--gray);
}

.footer-contact a:hover {
  color: var(--white);
}

.footer-languages {
  list-style: none;
}

.footer-languages li {
  color: var(--gray);
  font-size: 0.875rem;
  margin-bottom: 0.5rem;
}

.social-links {
  display: flex;
  gap: 1rem;
  margin-top: 1.5rem;
}

.social-link {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}

.social-link:hover {
  background-color: var(--brand-blue);
}

.social-link img {
  width: 20px;
  height: 20px;
}

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

.footer-bottom p {
  color: var(--gray);
  font-size: 0.875rem;
  margin: 0;
}

/* Page Hero (for internal pages) */
.page-hero {
  background-color: var(--brand-blue);
  padding: 120px 0 80px;
  text-align: center;
}

.page-hero h1 {
  color: var(--white);
  margin-bottom: 1rem;
}

.page-hero p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.125rem;
  max-width: 600px;
  margin: 0 auto;
}

/* About Page Styles */
.about-hero {
  background: linear-gradient(rgba(0, 86, 179, 0.9), rgba(0, 64, 133, 0.95));
}

.doctor-section {
  padding: 5rem 0;
}

.doctor-grid {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 4rem;
  align-items: start;
}

.doctor-image {
  border-radius: 0.5rem;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.doctor-image img {
  width: 100%;
  height: auto;
}

.doctor-content h2 {
  margin-bottom: 1rem;
}

.doctor-content .subtitle {
  color: var(--brand-blue);
  font-weight: 600;
  margin-bottom: 1.5rem;
}

.doctor-content p {
  color: var(--gray);
}

.clinic-section {
  background-color: var(--light-gray);
  padding: 5rem 0;
}

.clinic-gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
}

.clinic-image {
  border-radius: 0.5rem;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.clinic-image img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  transition: var(--transition);
}

.clinic-image:hover img {
  transform: scale(1.05);
}

.commitment-section {
  padding: 5rem 0;
}

.commitment-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  margin-top: 3rem;
}

.commitment-item {
  text-align: center;
  padding: 2rem;
}

.commitment-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 1.5rem;
  background-color: var(--brand-blue-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
}

.commitment-item h3 {
  margin-bottom: 1rem;
  font-size: 1.125rem;
}

.commitment-item p {
  color: var(--gray);
  font-size: 0.875rem;
}

/* Services Page Styles */
.services-hero {
  background: linear-gradient(rgba(0, 86, 179, 0.9), rgba(0, 64, 133, 0.95));
}

.all-services-section {
  padding: 5rem 0;
}

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

.service-detail-card {
  display: flex;
  gap: 2rem;
  background-color: var(--white);
  border-radius: 0.5rem;
  padding: 2rem;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

.service-detail-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow);
}

.service-detail-icon {
  flex-shrink: 0;
  width: 100px;
  height: 100px;
}

.service-detail-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.service-detail-content h3 {
  margin-bottom: 1rem;
}

.service-detail-content p {
  color: var(--gray);
  margin-bottom: 1rem;
}

.conditions-section {
  background-color: var(--light-gray);
  padding: 5rem 0;
}

.conditions-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.condition-item {
  background-color: var(--white);
  padding: 1.5rem;
  border-radius: 0.5rem;
  text-align: center;
  box-shadow: var(--shadow-sm);
}

.condition-item h4 {
  font-size: 1rem;
  color: var(--brand-blue);
}

/* New Patients Page */
.new-patients-hero {
  background: linear-gradient(rgba(0, 86, 179, 0.9), rgba(0, 64, 133, 0.95));
}

.timeline-section {
  padding: 5rem 0;
}

.timeline {
  position: relative;
  max-width: 800px;
  margin: 0 auto;
}

.timeline::before {
  content: '';
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: 2px;
  height: 100%;
  background-color: var(--brand-blue);
}

.timeline-item {
  display: flex;
  justify-content: flex-end;
  padding-right: calc(50% + 2rem);
  position: relative;
  margin-bottom: 3rem;
}

.timeline-item:nth-child(even) {
  justify-content: flex-start;
  padding-right: 0;
  padding-left: calc(50% + 2rem);
}

.timeline-item::before {
  content: '';
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: 20px;
  height: 20px;
  background-color: var(--brand-blue);
  border-radius: 50%;
  border: 3px solid var(--white);
}

.timeline-content {
  background-color: var(--white);
  padding: 2rem;
  border-radius: 0.5rem;
  box-shadow: var(--shadow-sm);
  max-width: 350px;
}

.timeline-content h3 {
  margin-bottom: 0.75rem;
  color: var(--brand-blue);
}

.timeline-content p {
  color: var(--gray);
  margin: 0;
}

.forms-section {
  background-color: var(--light-gray);
  padding: 5rem 0;
}

.forms-list {
  max-width: 600px;
  margin: 0 auto;
}

.form-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background-color: var(--white);
  padding: 1.5rem;
  border-radius: 0.5rem;
  margin-bottom: 1rem;
  box-shadow: var(--shadow-sm);
}

.form-item h4 {
  margin: 0;
}

.form-item a {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.insurance-accept-section {
  padding: 5rem 0;
}

.insurance-grid-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.insurance-logos {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
}

.insurance-logo-item {
  background-color: var(--white);
  padding: 1.5rem 2rem;
  border-radius: 0.5rem;
  box-shadow: var(--shadow-sm);
  font-weight: 600;
  color: var(--brand-blue);
  min-width: 150px;
  text-align: center;
}

.faq-section {
  background-color: var(--light-gray);
  padding: 5rem 0;
}

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

.faq-item {
  background-color: var(--white);
  border-radius: 0.5rem;
  margin-bottom: 1rem;
  box-shadow: var(--shadow-sm);
  overflow: hidden;
}

.faq-question {
  width: 100%;
  padding: 1.5rem 2rem;
  background: none;
  border: none;
  text-align: left;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 1rem;
  font-weight: 600;
  color: var(--dark);
}

.faq-question:hover {
  background-color: var(--light-gray);
}

.faq-icon {
  transition: var(--transition);
  font-size: 1.5rem;
  color: var(--brand-blue);
}

.faq-item.active .faq-icon {
  transform: rotate(45deg);
}

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

.faq-answer-content {
  padding: 0 2rem 1.5rem;
  color: var(--gray);
}

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

/* Contact Page */
.contact-hero {
  background: linear-gradient(rgba(0, 86, 179, 0.9), rgba(0, 64, 133, 0.95));
}

.contact-section {
  padding: 5rem 0;
}

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

.contact-info {
  background-color: var(--light-gray);
  padding: 2rem;
  border-radius: 0.5rem;
}

.contact-info h3 {
  margin-bottom: 2rem;
}

.contact-info-item {
  display: flex;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.contact-info-icon {
  width: 40px;
  height: 40px;
  background-color: var(--brand-blue);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-info-icon img {
  width: 20px;
  height: 20px;
  filter: brightness(0) invert(1);
}

.contact-info-text h4 {
  margin-bottom: 0.25rem;
  font-size: 1rem;
}

.contact-info-text p {
  color: var(--gray);
  margin: 0;
  font-size: 0.875rem;
}

.contact-info-text a {
  color: var(--brand-blue);
}

.contact-form {
  background-color: var(--white);
  padding: 2rem;
  border-radius: 0.5rem;
  box-shadow: var(--shadow-sm);
}

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

.form-group {
  margin-bottom: 1.5rem;
}

.form-group label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 500;
  color: var(--dark);
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1px solid #dee2e6;
  border-radius: 0.375rem;
  font-size: 1rem;
  font-family: inherit;
  transition: var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--brand-blue);
  box-shadow: 0 0 0 3px rgba(0, 86, 179, 0.15);
}

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

.form-error {
  color: var(--red);
  font-size: 0.875rem;
  margin-top: 0.25rem;
  display: none;
}

.form-group.error input,
.form-group.error textarea {
  border-color: var(--red);
}

.form-group.error .form-error {
  display: block;
}

.form-success {
  display: none;
  background-color: #d4edda;
  color: #155724;
  padding: 1rem;
  border-radius: 0.375rem;
  margin-bottom: 1rem;
}

.form-success.show {
  display: block;
}

.map-section {
  padding: 0 0 5rem;
}

.map-container {
  border-radius: 0.5rem;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

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

/* Responsive Styles */
@media (max-width: 1024px) {
  .nav-desktop {
    display: none;
  }

  .mobile-toggle {
    display: flex;
  }

  .header-actions .phone-link span {
    display: none;
  }

  .header-actions .btn {
    display: none;
  }

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

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

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

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

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

  .doctor-image {
    max-width: 400px;
    margin: 0 auto;
  }

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

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

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

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

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

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

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

  .section {
    padding: 3rem 0;
  }

  .hero {
    min-height: 500px;
  }

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

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

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

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

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

  .timeline::before {
    left: 20px;
  }

  .timeline-item,
  .timeline-item:nth-child(even) {
    padding-left: 60px;
    padding-right: 0;
    justify-content: flex-start;
  }

  .timeline-item::before,
  .timeline-item:nth-child(even)::before {
    left: 20px;
    transform: translateX(-50%);
  }

  .timeline-content {
    max-width: 100%;
  }

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

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

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

  .clinic-gallery {
    grid-template-columns: 1fr;
  }
}

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

  .hero-content {
    padding: 1rem;
  }

  .btn {
    padding: 0.625rem 1.25rem;
    font-size: 0.875rem;
  }

  .cta-info {
    flex-direction: column;
    align-items: center;
  }
}

/* Scroll animations */
.fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  html {
    scroll-behavior: auto;
  }
}
