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

:root {
  --color-primary: #8B0000;
  --color-secondary: #D4AF37;
  --color-bg-accent: #F0E6D2;
  --color-accent: #6B8E23;
  --color-text: #333333;
  --color-bg: #FDFDFD;
  --color-white: #FDFDFD;
  
  --font-primary: 'Montserrat', sans-serif;
  --font-fallback: 'Open Sans', sans-serif;
  
  --header-height: 72px;
  --container-max: 1200px;
  --transition-fast: 0.2s ease;
  --transition-medium: 0.4s ease;
  --transition-slow: 0.8s ease;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-fallback);
  color: var(--color-text);
  background-color: var(--color-bg);
  line-height: 1.6;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-primary);
  font-weight: 700;
  line-height: 1.2;
}

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

ul, ol {
  list-style: none;
}

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

.container {
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 20px;
}

/* Header */
.header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--color-white);
  box-shadow: 0 2px 10px rgba(0,0,0,0.08);
  transition: all var(--transition-medium);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--header-height);
  padding: 0 24px;
  max-width: var(--container-max);
  margin: 0 auto;
}

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

.logo-text {
  font-family: var(--font-primary);
  font-size: 24px;
  font-weight: 700;
  color: var(--color-primary);
  letter-spacing: -0.5px;
}

.logo-tagline {
  font-family: var(--font-primary);
  font-size: 11px;
  color: var(--color-secondary);
  letter-spacing: 0.5px;
}

.nav-desktop {
  display: none;
}

.nav-desktop ul {
  display: flex;
  gap: 28px;
}

.nav-desktop a {
  font-family: var(--font-primary);
  font-size: 14px;
  font-weight: 500;
  color: var(--color-text);
  position: relative;
  padding: 4px 0;
  transition: color var(--transition-fast);
}

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

.nav-desktop a:hover {
  color: var(--color-primary);
}

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

.header-cta {
  display: none;
}

.hamburger {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  cursor: pointer;
  background: none;
  border: none;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--color-primary);
  transition: all var(--transition-fast);
}

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

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

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

/* Mobile Menu */
.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 100%;
  height: 100vh;
  background: var(--color-white);
  z-index: 999;
  transition: right var(--transition-medium);
  padding: 80px 24px 24px;
  overflow-y: auto;
}

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

.mobile-menu-close {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 44px;
  height: 44px;
  background: none;
  border: none;
  cursor: pointer;
  font-size: 28px;
  color: var(--color-primary);
}

.mobile-nav {
  margin-bottom: 32px;
}

.mobile-nav li {
  margin-bottom: 16px;
}

.mobile-nav a {
  font-family: var(--font-primary);
  font-size: 20px;
  font-weight: 600;
  color: var(--color-text);
  display: block;
  padding: 8px 0;
}

.mobile-menu-cta {
  display: block;
  width: 100%;
  text-align: center;
  margin-bottom: 24px;
}

.mobile-contact-info {
  padding-top: 24px;
  border-top: 1px solid var(--color-bg-accent);
}

.mobile-contact-info a {
  display: block;
  padding: 8px 0;
  font-size: 16px;
}

.mobile-social {
  display: flex;
  gap: 16px;
  margin-top: 24px;
}

.mobile-social a {
  color: var(--color-primary);
  font-size: 24px;
}

/* Hero Section */
.hero {
  position: relative;
  min-height: 85vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  z-index: 1;
}

.hero-bg::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(139,0,0,0.7) 0%, rgba(51,51,51,0.5) 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 24px;
  max-width: 800px;
}

.hero h1 {
  font-size: 42px;
  color: var(--color-white);
  margin-bottom: 16px;
  opacity: 0;
  transform: translateY(30px);
  animation: fadeInUp 0.8s ease forwards;
}

.hero .tagline {
  font-size: 18px;
  color: var(--color-bg-accent);
  margin-bottom: 32px;
  opacity: 0;
  animation: fadeInUp 0.8s ease 0.3s forwards;
}

.hero-cta {
  opacity: 0;
  animation: fadeInUp 0.8s ease 0.5s forwards;
}

/* Buttons */
.btn {
  display: inline-block;
  font-family: var(--font-primary);
  font-size: 16px;
  font-weight: 600;
  padding: 16px 32px;
  border-radius: 6px;
  border: none;
  cursor: pointer;
  transition: all var(--transition-fast);
  text-align: center;
}

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

.btn-primary:hover {
  background: #6B0000;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(139,0,0,0.3);
}

.btn-secondary {
  background: transparent;
  color: var(--color-primary);
  border: 2px solid var(--color-primary);
}

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

/* Section Styles */
section {
  padding: 80px 0;
}

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

.section-header h2 {
  font-size: 36px;
  color: var(--color-primary);
  margin-bottom: 16px;
}

.section-header p {
  font-size: 18px;
  color: var(--color-text);
  max-width: 600px;
  margin: 0 auto;
}

/* Welcome Section */
.welcome {
  background: var(--color-white);
}

.welcome-grid {
  display: grid;
  gap: 40px;
}

.welcome-content h2 {
  font-size: 32px;
  color: var(--color-primary);
  margin-bottom: 24px;
}

.welcome-content p {
  font-size: 16px;
  line-height: 1.8;
  color: var(--color-text);
}

.welcome-image {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

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

/* Services Grid */
.services {
  background: var(--color-bg-accent);
}

.services-grid {
  display: grid;
  gap: 24px;
}

.service-card {
  background: var(--color-white);
  padding: 32px;
  border-radius: 12px;
  text-align: center;
  box-shadow: 0 4px 20px rgba(0,0,0,0.06);
  transition: all var(--transition-medium);
}

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

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

.service-icon svg {
  width: 48px;
  height: 48px;
  stroke: var(--color-primary);
  fill: none;
  stroke-width: 1.5;
}

.service-card h3 {
  font-size: 20px;
  color: var(--color-primary);
  margin-bottom: 12px;
}

.service-card p {
  font-size: 15px;
  color: var(--color-text);
  line-height: 1.6;
}

.services-cta {
  text-align: center;
  margin-top: 40px;
}

/* Why Choose Us */
.why-choose-us {
  background: var(--color-white);
}

.why-grid {
  display: grid;
  gap: 40px;
}

.why-content h2 {
  font-size: 32px;
  color: var(--color-primary);
  margin-bottom: 24px;
}

.why-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.why-item {
  display: flex;
  gap: 16px;
}

.why-icon {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.why-icon svg {
  width: 32px;
  height: 32px;
  stroke: var(--color-secondary);
  fill: none;
  stroke-width: 2;
}

.why-item h4 {
  font-size: 18px;
  color: var(--color-text);
  margin-bottom: 4px;
}

.why-item p {
  font-size: 14px;
  color: #666;
}

.why-image {
  border-radius: 12px;
  overflow: hidden;
}

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

/* Testimonials */
.testimonials {
  background: linear-gradient(135deg, var(--color-primary) 0%, #5a0000 100%);
  color: var(--color-white);
  padding: 100px 0;
}

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

.testimonials .section-header p {
  color: var(--color-bg-accent);
}

.testimonial-slider {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.testimonial-quote {
  font-size: 22px;
  font-family: var(--font-primary);
  font-style: italic;
  line-height: 1.6;
  margin-bottom: 24px;
}

.testimonial-author {
  font-size: 16px;
  font-weight: 600;
}

.testimonial-role {
  font-size: 14px;
  opacity: 0.8;
}

.testimonial-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 32px;
}

.testimonial-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255,255,255,0.3);
  cursor: pointer;
  transition: all var(--transition-fast);
}

.testimonial-dot.active {
  background: var(--color-secondary);
  transform: scale(1.2);
}

/* Products Showcase */
.products {
  background: var(--color-bg);
}

.products-grid {
  display: grid;
  gap: 24px;
}

.product-card {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
}

.product-card img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  transition: transform var(--transition-medium);
}

.product-card:hover img {
  transform: scale(1.05);
}

.product-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 24px;
  background: linear-gradient(transparent, rgba(0,0,0,0.8));
  color: var(--color-white);
}

.product-overlay h3 {
  font-size: 22px;
  margin-bottom: 8px;
}

.product-overlay p {
  font-size: 14px;
  opacity: 0.9;
}

/* Insurance Section */
.insurance {
  background: var(--color-bg-accent);
}

.insurance-content {
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
}

.insurance h2 {
  font-size: 32px;
  color: var(--color-primary);
  margin-bottom: 16px;
}

.insurance p {
  font-size: 16px;
  color: var(--color-text);
  margin-bottom: 32px;
}

.insurance-logos {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 24px;
  margin-bottom: 32px;
}

.insurance-logo {
  padding: 12px 24px;
  background: var(--color-white);
  border-radius: 8px;
  font-family: var(--font-primary);
  font-size: 14px;
  font-weight: 600;
  color: var(--color-text);
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}

/* Location Section */
.location {
  background: var(--color-white);
}

.location-grid {
  display: grid;
  gap: 40px;
}

.location-info h2 {
  font-size: 32px;
  color: var(--color-primary);
  margin-bottom: 24px;
}

.location-details {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 24px;
}

.location-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.location-item svg {
  width: 24px;
  height: 24px;
  stroke: var(--color-secondary);
  fill: none;
  stroke-width: 2;
  flex-shrink: 0;
  margin-top: 2px;
}

.location-item h4 {
  font-size: 16px;
  color: var(--color-text);
  margin-bottom: 4px;
}

.location-item p, .location-item a {
  font-size: 14px;
  color: #666;
}

.hours-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.hours-list li {
  display: flex;
  justify-content: space-between;
  font-size: 14px;
  padding: 8px 0;
  border-bottom: 1px solid var(--color-bg-accent);
}

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

.location-map {
  border-radius: 12px;
  overflow: hidden;
  height: 400px;
  background: var(--color-bg-accent);
}

.location-map iframe {
  width: 100%;
  height: 100%;
  border: none;
}

/* Final CTA */
.final-cta {
  background: var(--color-primary);
  color: var(--color-white);
  text-align: center;
  padding: 80px 24px;
}

.final-cta h2 {
  font-size: 36px;
  margin-bottom: 24px;
}

.final-cta .btn {
  background: var(--color-secondary);
  color: var(--color-text);
}

.final-cta .btn:hover {
  background: #c4a333;
}

/* Footer */
.footer {
  background: var(--color-bg-accent);
  padding: 60px 0 24px;
}

.footer-grid {
  display: grid;
  gap: 40px;
  margin-bottom: 40px;
}

.footer-brand .logo {
  margin-bottom: 16px;
}

.footer-brand p {
  font-size: 14px;
  color: #666;
  margin-bottom: 16px;
}

.footer-contact a {
  display: block;
  font-size: 14px;
  color: var(--color-text);
  margin-bottom: 8px;
  transition: color var(--transition-fast);
}

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

.footer h4 {
  font-size: 16px;
  color: var(--color-primary);
  margin-bottom: 20px;
}

.footer-links a {
  display: block;
  font-size: 14px;
  color: var(--color-text);
  padding: 6px 0;
  transition: color var(--transition-fast);
}

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

.footer-social {
  display: flex;
  gap: 16px;
  margin-top: 20px;
}

.footer-social a {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--color-white);
  border-radius: 50%;
  color: var(--color-primary);
  transition: all var(--transition-fast);
}

.footer-social a:hover {
  background: var(--color-primary);
  color: var(--color-white);
}

.footer-bottom {
  text-align: center;
  padding-top: 24px;
  border-top: 1px solid rgba(0,0,0,0.1);
  font-size: 13px;
  color: #666;
}

/* Scroll to Top */
.scroll-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 50px;
  height: 50px;
  background: var(--color-primary);
  color: var(--color-white);
  border: none;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition-medium);
  z-index: 100;
}

.scroll-top.visible {
  opacity: 1;
  visibility: visible;
}

.scroll-top:hover {
  background: #6B0000;
  transform: translateY(-3px);
}

/* Page Hero */
.page-hero {
  position: relative;
  min-height: 50vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--color-bg-accent);
}

.page-hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
}

.page-hero-bg::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.5);
}

.page-hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 24px;
}

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

.page-hero p {
  font-size: 18px;
  color: var(--color-bg-accent);
}

/* About Page */
.doctors {
  background: var(--color-white);
  padding: 100px 0;
}

.doctor-card {
  display: grid;
  gap: 40px;
  margin-bottom: 80px;
}

.doctor-card:nth-child(even) .doctor-image {
  order: -1;
}

.doctor-image {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

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

.doctor-info h2 {
  font-size: 28px;
  color: var(--color-primary);
  margin-bottom: 8px;
}

.doctor-title {
  font-size: 16px;
  color: var(--color-secondary);
  margin-bottom: 20px;
}

.doctor-info p {
  font-size: 16px;
  line-height: 1.8;
  color: var(--color-text);
}

/* Philosophy Section */
.philosophy {
  background: var(--color-bg-accent);
  text-align: center;
}

.philosophy-quote {
  font-size: 24px;
  font-family: var(--font-primary);
  font-style: italic;
  color: var(--color-primary);
  max-width: 800px;
  margin: 0 auto 48px;
  line-height: 1.6;
}

.philosophy-grid {
  display: grid;
  gap: 24px;
}

.pillar {
  background: var(--color-white);
  padding: 32px;
  border-radius: 12px;
  text-align: center;
}

.pillar-icon {
  width: 56px;
  height: 56px;
  margin: 0 auto 16px;
}

.pillar-icon svg {
  width: 48px;
  height: 48px;
  stroke: var(--color-secondary);
  fill: none;
  stroke-width: 1.5;
}

.pillar h3 {
  font-size: 20px;
  color: var(--color-primary);
  margin-bottom: 12px;
}

.pillar p {
  font-size: 15px;
  color: var(--color-text);
}

/* Office Tour */
.office-tour {
  background: var(--color-white);
}

.tour-grid {
  display: grid;
  gap: 24px;
}

.tour-image {
  border-radius: 12px;
  overflow: hidden;
}

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

.tour-text {
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
}

.tour-text h2 {
  font-size: 32px;
  color: var(--color-primary);
  margin-bottom: 16px;
}

.tour-text p {
  font-size: 16px;
  line-height: 1.8;
  color: var(--color-text);
}

/* Community */
.community {
  background: var(--color-bg-accent);
}

.community-content {
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
}

.community h2 {
  font-size: 32px;
  color: var(--color-primary);
  margin-bottom: 20px;
}

.community p {
  font-size: 16px;
  line-height: 1.8;
  color: var(--color-text);
}

/* Services Page */
.services-list {
  background: var(--color-white);
}

.service-detail {
  border-bottom: 1px solid var(--color-bg-accent);
}

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

.service-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px 0;
  cursor: pointer;
}

.service-header h3 {
  font-size: 20px;
  color: var(--color-primary);
}

.service-toggle {
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-secondary);
  transition: transform var(--transition-fast);
}

.service-detail.active .service-toggle {
  transform: rotate(45deg);
}

.service-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height var(--transition-medium);
}

.service-detail.active .service-content {
  max-height: 1000px;
}

.service-body {
  padding-bottom: 24px;
}

.service-body p {
  font-size: 15px;
  line-height: 1.8;
  color: var(--color-text);
  margin-bottom: 16px;
}

.service-body ul {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.service-body li {
  padding: 6px 12px;
  background: var(--color-bg-accent);
  border-radius: 4px;
  font-size: 13px;
  color: var(--color-text);
}

/* Steps */
.steps {
  background: var(--color-bg-accent);
}

.steps-grid {
  display: grid;
  gap: 32px;
}

.step {
  display: flex;
  gap: 20px;
}

.step-number {
  width: 48px;
  height: 48px;
  background: var(--color-primary);
  color: var(--color-white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-primary);
  font-size: 20px;
  font-weight: 700;
  flex-shrink: 0;
}

.step h4 {
  font-size: 18px;
  color: var(--color-text);
  margin-bottom: 8px;
}

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

/* FAQ Section */
.faq {
  background: var(--color-white);
}

.faq-item {
  border-bottom: 1px solid var(--color-bg-accent);
}

.faq-item:last-child {
  border-bottom: none;
}

.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 0;
  cursor: pointer;
}

.faq-question h4 {
  font-size: 16px;
  color: var(--color-text);
  font-weight: 600;
}

.faq-toggle {
  color: var(--color-secondary);
  font-size: 20px;
  transition: transform var(--transition-fast);
}

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

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height var(--transition-medium);
}

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

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

/* Products Page */
.product-section {
  background: var(--color-white);
  padding: 80px 0;
}

.product-row {
  display: grid;
  gap: 40px;
  margin-bottom: 80px;
}

.product-row:nth-child(even) .product-text {
  order: -1;
}

.product-text h2 {
  font-size: 28px;
  color: var(--color-primary);
  margin-bottom: 16px;
}

.product-text p {
  font-size: 15px;
  line-height: 1.8;
  color: var(--color-text);
  margin-bottom: 20px;
}

.product-text ul {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.product-text li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: var(--color-text);
}

.product-text li::before {
  content: '✓';
  color: var(--color-secondary);
  font-weight: bold;
}

.product-image {
  border-radius: 12px;
  overflow: hidden;
}

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

/* Brands */
.brands {
  background: var(--color-bg-accent);
}

.brands-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 24px;
}

.brand-item {
  padding: 20px 32px;
  background: var(--color-white);
  border-radius: 8px;
  font-family: var(--font-primary);
  font-size: 16px;
  font-weight: 600;
  color: var(--color-text);
}

/* Patient Info */
.info-section {
  background: var(--color-white);
  padding: 80px 0;
}

.info-grid {
  display: grid;
  gap: 40px;
}

.info-content h2 {
  font-size: 28px;
  color: var(--color-primary);
  margin-bottom: 16px;
}

.info-content p {
  font-size: 15px;
  line-height: 1.8;
  color: var(--color-text);
  margin-bottom: 24px;
}

.info-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 16px;
}

.info-tag {
  padding: 12px 16px;
  background: var(--color-bg-accent);
  border-radius: 6px;
  text-align: center;
  font-size: 14px;
  font-weight: 500;
  color: var(--color-text);
}

/* Forms */
.forms {
  background: var(--color-bg-accent);
}

.form-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
  background: var(--color-white);
  border-radius: 8px;
  margin-bottom: 12px;
}

.form-item h4 {
  font-size: 16px;
  color: var(--color-text);
}

.form-item .btn {
  padding: 10px 20px;
  font-size: 14px;
}

/* Contact Page */
.contact-section {
  background: var(--color-white);
  padding: 80px 0;
}

.contact-grid {
  display: grid;
  gap: 40px;
}

.contact-info h2 {
  font-size: 28px;
  color: var(--color-primary);
  margin-bottom: 24px;
}

.contact-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.contact-item {
  display: flex;
  gap: 16px;
}

.contact-icon {
  width: 48px;
  height: 48px;
  background: var(--color-bg-accent);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-icon svg {
  width: 24px;
  height: 24px;
  stroke: var(--color-secondary);
  fill: none;
  stroke-width: 2;
}

.contact-item h4 {
  font-size: 16px;
  color: var(--color-text);
  margin-bottom: 4px;
}

.contact-item p, .contact-item a {
  font-size: 14px;
  color: #666;
}

.hours-full {
  margin-top: 20px;
}

.hours-full h4 {
  font-size: 16px;
  color: var(--color-text);
  margin-bottom: 12px;
}

.hours-full ul {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.hours-full li {
  display: flex;
  justify-content: space-between;
  font-size: 14px;
}

.hours-full li span {
  color: #666;
}

/* Contact Form */
.contact-form-wrapper h2 {
  font-size: 28px;
  color: var(--color-primary);
  margin-bottom: 24px;
}

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

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

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 14px 16px;
  border: 2px solid var(--color-bg-accent);
  border-radius: 6px;
  font-family: var(--font-fallback);
  font-size: 15px;
  transition: border-color var(--transition-fast);
}

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

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

/* Social Section */
.social-section {
  background: var(--color-bg-accent);
  text-align: center;
}

.social-section h2 {
  font-size: 28px;
  color: var(--color-primary);
  margin-bottom: 24px;
}

.social-icons {
  display: flex;
  justify-content: center;
  gap: 16px;
}

.social-icon {
  width: 56px;
  height: 56px;
  background: var(--color-white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-primary);
  font-size: 24px;
  transition: all var(--transition-fast);
}

.social-icon:hover {
  background: var(--color-primary);
  color: var(--color-white);
}

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

.animate-on-scroll {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.6s ease;
}

.animate-on-scroll.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Responsive */
@media (min-width: 768px) {
  .nav-desktop {
    display: flex;
    align-items: center;
    gap: 32px;
  }

  .header-cta {
    display: block;
  }

  .hamburger {
    display: none;
  }

  .hero h1 {
    font-size: 56px;
  }

  .welcome-grid {
    grid-template-columns: 1fr 1fr;
    align-items: center;
  }

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

  .why-grid {
    grid-template-columns: 1fr 1fr;
    align-items: center;
  }

  .products-grid {
    grid-template-columns: repeat(3, 1fr);
  }

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

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

  .doctor-card {
    grid-template-columns: 1fr 1fr;
    align-items: center;
  }

  .philosophy-grid {
    grid-template-columns: repeat(3, 1fr);
  }

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

  .product-row {
    grid-template-columns: 1fr 1fr;
    align-items: center;
  }

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

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

  section {
    padding: 100px 0;
  }
}

@media (min-width: 1024px) {
  .header-inner {
    padding: 0 48px;
  }

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

  .products-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .products-grid .product-card:first-child {
    grid-column: span 2;
  }

  .hero {
    min-height: 90vh;
  }

  .hero h1 {
    font-size: 64px;
  }

  section {
    padding: 120px 0;
  }

  .page-hero {
    min-height: 60vh;
  }

  .page-hero h1 {
    font-size: 52px;
  }
}

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

  .hero-bg {
    transform: none !important;
  }
}
