* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* Enhanced Design System with better colors and typography */
:root {
  /* Core Colors - Refined Medical Theme */
  --background: hsl(210, 40%, 98%);
  --foreground: hsl(215, 25%, 20%);
  --card: hsl(0, 0%, 100%);
  --card-foreground: hsl(215, 25%, 20%);

  /* Primary - Professional Teal Blue */
  --primary: hsl(195, 85%, 45%);
  --primary-dark: hsl(195, 85%, 35%);
  --primary-foreground: hsl(0, 0%, 100%);
  --primary-soft: hsl(195, 70%, 95%);

  /* Secondary - Calming Mint */
  --secondary: hsl(165, 60%, 88%);
  --secondary-foreground: hsl(165, 60%, 25%);

  /* Accent - Warm Coral */
  --accent: hsl(15, 85%, 60%);
  --accent-foreground: hsl(15, 40%, 15%);
  --accent-soft: hsl(15, 85%, 95%);

  /* Muted - Soft Professional */
  --muted: hsl(210, 30%, 96%);
  --muted-foreground: hsl(215, 15%, 50%);

  --border: hsl(210, 25%, 90%);
  --radius: 1rem;

  /* Shadows - Enhanced depth */
  --shadow-sm: 0 2px 8px -2px rgba(0, 0, 0, 0.08);
  --shadow-md: 0 4px 16px -4px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 8px 32px -8px rgba(0, 0, 0, 0.12);
  --shadow-xl: 0 16px 48px -12px rgba(0, 0, 0, 0.15);

  /* Transitions */
  --transition-smooth: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-bounce: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

/* Base Styles */
html {
  scroll-behavior: smooth;
}

body {
  font-family: "Inter", system-ui, -apple-system, sans-serif;
  background-color: var(--background);
  color: var(--foreground);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 2rem;
}

/* Typography */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.02em;
}

h1 {
  font-family: "Playfair Display", serif;
}

.text-gradient {
  background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Improved button styles with better hover effects */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  border-radius: var(--radius);
  font-weight: 600;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: var(--transition-smooth);
  font-size: 0.9375rem;
  position: relative;
  overflow: hidden;
}

.btn::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  transform: translate(-50%, -50%);
  transition: width 0.6s, height 0.6s;
}

.btn:hover::before {
  width: 300px;
  height: 300px;
}

.btn-primary {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  color: var(--primary-foreground);
  box-shadow: var(--shadow-md);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

.btn-outline {
  background: transparent;
  color: var(--foreground);
  border: 2px solid var(--border);
}

.btn-outline:hover {
  background: var(--muted);
  border-color: var(--primary);
  color: var(--primary);
}

.btn-sm {
  padding: 0.5rem 1rem;
  font-size: 0.875rem;
}

.btn-lg {
  padding: 1rem 2rem;
  font-size: 1rem;
}

.w-full {
  width: 100%;
}

.mt-4 {
  margin-top: 1rem;
}

/* Smooth scroll reveal animations */
.scroll-reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1), transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.scroll-reveal.revealed {
  opacity: 1;
  transform: translateY(0);
}

/* Stagger animation for grid items */
.services-grid .scroll-reveal:nth-child(1) {
  transition-delay: 0.1s;
}
.services-grid .scroll-reveal:nth-child(2) {
  transition-delay: 0.2s;
}
.services-grid .scroll-reveal:nth-child(3) {
  transition-delay: 0.3s;
}
.services-grid .scroll-reveal:nth-child(4) {
  transition-delay: 0.4s;
}
.services-grid .scroll-reveal:nth-child(5) {
  transition-delay: 0.5s;
}
.services-grid .scroll-reveal:nth-child(6) {
  transition-delay: 0.6s;
}

/* Enhanced floating animations */
@keyframes float {
  0%,
  100% {
    transform: translateY(0) rotate(0deg);
  }
  33% {
    transform: translateY(-20px) rotate(5deg);
  }
  66% {
    transform: translateY(-10px) rotate(-5deg);
  }
}

@keyframes floatReverse {
  0%,
  100% {
    transform: translateY(0) rotate(0deg);
  }
  33% {
    transform: translateY(20px) rotate(-5deg);
  }
  66% {
    transform: translateY(10px) rotate(5deg);
  }
}

/* Header */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  z-index: 1000;
  transition: var(--transition-smooth);
}

.header.scrolled {
  background: rgba(255, 255, 255, 0.95);
  box-shadow: var(--shadow-sm);
}

.header-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 5rem;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.logo-icon {
  width: 2.5rem;
  height: 2.5rem;
  background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
  border-radius: 0.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-md);
}

.logo-dot {
  width: 1.25rem;
  height: 1.25rem;
  background: white;
  border-radius: 50%;
}

.logo-text {
  font-size: 1.5rem;
  font-weight: 800;
  background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.nav-desktop {
  display: flex;
  align-items: center;
  gap: 2.5rem;
}

.nav-link {
  color: var(--foreground);
  text-decoration: none;
  font-weight: 500;
  position: relative;
  transition: var(--transition-smooth);
}

.nav-link::after {
  content: "";
  position: absolute;
  bottom: -0.5rem;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  transition: width 0.3s ease;
}

.nav-link:hover {
  color: var(--primary);
}

.nav-link:hover::after {
  width: 100%;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.mobile-menu-btn {
  display: none;
  background: none;
  border: none;
  padding: 0.5rem;
  border-radius: var(--radius);
  cursor: pointer;
  transition: var(--transition-smooth);
}

.mobile-menu-btn:hover {
  background: var(--muted);
}

.mobile-menu {
  display: none;
  padding: 1.5rem 0;
  border-top: 1px solid var(--border);
}

.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.mobile-nav-link {
  color: var(--foreground);
  text-decoration: none;
  padding: 0.75rem 0;
  font-weight: 500;
  transition: var(--transition-smooth);
}

.mobile-nav-link:hover {
  color: var(--primary);
  padding-left: 0.5rem;
}

.mobile-contact {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 0;
  font-size: 0.875rem;
  color: var(--muted-foreground);
}

/* Enhanced Hero Section with better spacing and animations */
.hero {
  padding-top: 5rem;
  min-height: 100vh;
  background: linear-gradient(180deg, var(--background) 0%, var(--primary-soft) 100%);
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
}

.floating-element {
  position: absolute;
  border-radius: 50%;
  opacity: 0.4;
  filter: blur(40px);
}

.floating-1 {
  top: 10%;
  right: 10%;
  width: 300px;
  height: 300px;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  animation: float 8s ease-in-out infinite;
}

.floating-2 {
  bottom: 10%;
  left: 5%;
  width: 250px;
  height: 250px;
  background: linear-gradient(135deg, var(--accent), var(--secondary));
  animation: floatReverse 10s ease-in-out infinite;
}

.floating-3 {
  top: 50%;
  left: 50%;
  width: 200px;
  height: 200px;
  background: linear-gradient(135deg, var(--secondary), var(--primary));
  animation: float 12s ease-in-out infinite;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  min-height: 80vh;
  padding: 6rem 0;
  position: relative;
  z-index: 1;
}

.hero-content {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: white;
  color: var(--primary);
  padding: 0.75rem 1.25rem;
  border-radius: 3rem;
  font-size: 0.875rem;
  font-weight: 600;
  width: fit-content;
  box-shadow: var(--shadow-md);
}

.hero-badge i {
  width: 1rem;
  height: 1rem;
  color: var(--accent);
}

.hero-title {
  font-size: 4rem;
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.03em;
}

.hero-description {
  font-size: 1.25rem;
  color: var(--muted-foreground);
  line-height: 1.7;
}

.trust-indicators {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  font-size: 0.9375rem;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 500;
}

.trust-item i {
  width: 1.25rem;
  height: 1.25rem;
  color: var(--primary);
}

.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.social-proof {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding-top: 1rem;
}

.avatars {
  display: flex;
  margin-left: -0.5rem;
}

.avatar {
  width: 3rem;
  height: 3rem;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  border-radius: 50%;
  border: 3px solid white;
  margin-left: -0.75rem;
  box-shadow: var(--shadow-sm);
}

.social-text {
  font-size: 0.9375rem;
}

.social-number {
  font-weight: 700;
  color: var(--foreground);
}

.social-period {
  color: var(--muted-foreground);
  font-size: 0.875rem;
}

/* Enhanced hero image with better floating cards */
.hero-image {
  position: relative;
  animation: float 6s ease-in-out infinite;
}

.image-wrapper {
  position: relative;
  z-index: 10;
  border-radius: 1.5rem;
  overflow: hidden;
  box-shadow: var(--shadow-xl);
}

.image-wrapper img {
  width: 100%;
  display: block;
  transition: transform 0.6s ease;
}

.image-wrapper:hover img {
  transform: scale(1.05);
}

.floating-card {
  position: absolute;
  background: white;
  padding: 1.5rem 2rem;
  border-radius: 1rem;
  box-shadow: var(--shadow-lg);
  backdrop-filter: blur(10px);
  animation: float 4s ease-in-out infinite;
}

.stats-card {
  bottom: -1rem;
  left: -2rem;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
}

.card-number {
  font-size: 2.5rem;
  font-weight: 800;
  color: white;
  line-height: 1;
}

.card-label {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.9);
  margin-top: 0.25rem;
}

.rating-card {
  top: -1rem;
  right: -2rem;
  animation-delay: 2s;
}

.rating-stars {
  display: flex;
  gap: 0.25rem;
  margin-bottom: 0.5rem;
}

.star-filled {
  width: 1.125rem;
  height: 1.125rem;
  color: var(--accent);
  fill: currentColor;
}

.rating-text {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--foreground);
}

/* Enhanced Services Section */
.services {
  padding: 8rem 0;
  background: var(--background);
}

.section-header {
  text-align: center;
  margin-bottom: 5rem;
}

.section-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: white;
  color: var(--primary);
  padding: 0.75rem 1.25rem;
  border-radius: 3rem;
  font-size: 0.875rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
  box-shadow: var(--shadow-sm);
}

.section-badge i {
  width: 1rem;
  height: 1rem;
}

.section-title {
  font-size: 3rem;
  font-weight: 800;
  margin-bottom: 1.5rem;
  letter-spacing: -0.02em;
}

.section-description {
  font-size: 1.25rem;
  color: var(--muted-foreground);
  max-width: 48rem;
  margin: 0 auto;
  line-height: 1.7;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2rem;
}

/* Enhanced service cards with better hover effects */
.service-card {
  background: white;
  padding: 2rem;
  border-radius: 1.5rem;
  box-shadow: var(--shadow-sm);
  transition: var(--transition-smooth);
  border: 1px solid var(--border);
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: var(--primary);
}

.service-icon {
  width: 4rem;
  height: 4rem;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  border-radius: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  box-shadow: var(--shadow-md);
  transition: var(--transition-smooth);
}

.service-card:hover .service-icon {
  transform: scale(1.1) rotate(5deg);
}

.service-icon i {
  width: 2rem;
  height: 2rem;
  color: white;
}

.service-title {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.service-description {
  color: var(--muted-foreground);
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

.service-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.service-features li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.9375rem;
  color: var(--foreground);
}

.service-features li::before {
  content: "";
  width: 0.5rem;
  height: 0.5rem;
  background: var(--primary);
  border-radius: 50%;
  flex-shrink: 0;
}

.services-cta {
  margin-top: 5rem;
  text-align: center;
}

.cta-card {
  background: linear-gradient(135deg, var(--primary-soft), var(--secondary));
  padding: 3rem;
  border-radius: 2rem;
  display: inline-block;
  max-width: 700px;
  box-shadow: var(--shadow-md);
}

.cta-card h3 {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.cta-card p {
  color: var(--muted-foreground);
  margin-bottom: 2rem;
  font-size: 1.125rem;
}

/* Enhanced About Section */
.about {
  padding: 8rem 0;
  background: linear-gradient(180deg, var(--background), var(--muted));
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  margin-bottom: 4rem;
}

.about-content h3 {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 2rem;
}

.about-features {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.about-feature {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.feature-icon {
  width: 3rem;
  height: 3rem;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  border-radius: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: var(--shadow-md);
}

.feature-icon i {
  width: 1.5rem;
  height: 1.5rem;
  color: white;
}

.feature-content h4 {
  font-weight: 700;
  margin-bottom: 0.5rem;
  font-size: 1.125rem;
}

.feature-content p {
  color: var(--muted-foreground);
  line-height: 1.6;
}

.about-images {
  position: relative;
}

.images-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

.about-image {
  border-radius: 1.5rem;
  box-shadow: var(--shadow-lg);
  transition: var(--transition-smooth);
  width: 100%;
  object-fit: cover;
}

.about-image:hover {
  transform: scale(1.05);
  box-shadow: var(--shadow-xl);
}

.about-image-offset {
  margin-top: 3rem;
}

/* Enhanced Appointment Section */
.appointment {
  padding: 8rem 0;
  background: var(--background);
}

.appointment-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 2.5rem;
}

.form-card {
  background: white;
  padding: 3rem;
  border-radius: 1.5rem;
  box-shadow: var(--shadow-lg);
}

.form-header {
  margin-bottom: 2rem;
}

.form-header h3 {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
}

.form-header p {
  color: var(--muted-foreground);
  line-height: 1.6;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin-bottom: 1.5rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
}

.form-group label {
  font-weight: 600;
  font-size: 0.9375rem;
  color: var(--foreground);
}

.form-group input,
.form-group select,
.form-group textarea {
  padding: 1rem;
  border: 2px solid var(--border);
  border-radius: var(--radius);
  font-size: 0.9375rem;
  transition: var(--transition-smooth);
  font-family: inherit;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 4px var(--primary-soft);
}

.form-group textarea {
  min-height: 120px;
  resize: vertical;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.contact-card {
  background: white;
  padding: 2rem;
  border-radius: 1.5rem;
  box-shadow: var(--shadow-md);
}

.contact-card h3 {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
}

.contact-items {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.contact-icon {
  width: 3rem;
  height: 3rem;
  background: var(--primary-soft);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-icon i {
  width: 1.5rem;
  height: 1.5rem;
  color: var(--primary);
}

.contact-primary {
  font-weight: 600;
  color: var(--foreground);
}

.contact-secondary {
  font-size: 0.875rem;
  color: var(--muted-foreground);
}

.hours-title {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.hours-title i {
  width: 1.25rem;
  height: 1.25rem;
  color: var(--primary);
}

.hours-list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  font-size: 0.9375rem;
}

.hours-item {
  display: flex;
  justify-content: space-between;
  padding: 0.5rem 0;
}

.hours-time {
  font-weight: 600;
}

.hours-note {
  padding-top: 1rem;
  margin-top: 1rem;
  border-top: 1px solid var(--border);
  font-size: 0.875rem;
  color: var(--muted-foreground);
}

.emergency-card {
  background: linear-gradient(135deg, var(--accent-soft), var(--secondary));
  padding: 2rem;
  border-radius: 1.5rem;
  text-align: center;
}

.emergency-card h3 {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
}

.emergency-card p {
  font-size: 0.9375rem;
  color: var(--muted-foreground);
  margin-bottom: 1.5rem;
}

/* Enhanced Footer */
.footer {
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: white;
  padding: 5rem 0 2rem;
}

.footer-content {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}

.footer-main {
  max-width: 450px;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
}

.footer-logo-icon {
  width: 2.5rem;
  height: 2.5rem;
  background: white;
  border-radius: 0.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.footer-logo-dot {
  width: 1.25rem;
  height: 1.25rem;
  background: var(--primary);
  border-radius: 50%;
}

.footer-logo-text {
  font-size: 1.5rem;
  font-weight: 800;
}

.footer-description {
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 2rem;
  line-height: 1.7;
}

.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer-contact-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: rgba(255, 255, 255, 0.85);
}

.footer-contact-item i {
  width: 1.125rem;
  height: 1.125rem;
}

.footer-section h3 {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
}

.footer-section ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer-section a {
  color: rgba(255, 255, 255, 0.85);
  text-decoration: none;
  transition: var(--transition-smooth);
}

.footer-section a:hover {
  color: white;
  padding-left: 0.5rem;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  padding-top: 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-copyright {
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.9375rem;
}

.footer-love {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.9375rem;
}

.heart-icon {
  width: 1.125rem;
  height: 1.125rem;
  color: var(--accent);
  fill: currentColor;
  animation: float 2s ease-in-out infinite;
}

/* Modal */
.modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(4px);
  z-index: 2000;
  align-items: center;
  justify-content: center;
}

.modal.show {
  display: flex;
}

.modal-content {
  background: white;
  padding: 3rem;
  border-radius: 1.5rem;
  text-align: center;
  max-width: 500px;
  margin: 1rem;
  box-shadow: var(--shadow-xl);
}

.modal-icon {
  width: 5rem;
  height: 5rem;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 2rem;
}

.modal-icon i {
  width: 2.5rem;
  height: 2.5rem;
  color: white;
}

.modal-content h2 {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.modal-content p {
  color: var(--muted-foreground);
  margin-bottom: 2rem;
  line-height: 1.7;
}

/* Responsive Design with better breakpoints */
@media (max-width: 1024px) {
  .container {
    padding: 0 1.5rem;
  }

  .hero-title {
    font-size: 3rem;
  }

  .section-title {
    font-size: 2.5rem;
  }
}

@media (max-width: 768px) {
  .nav-desktop,
  .header-actions {
    display: none;
  }

  .mobile-menu-btn {
    display: block;
  }

  .hero-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
    text-align: center;
    padding: 4rem 0;
  }

  .hero-title {
    font-size: 2.5rem;
  }

  .hero-description {
    font-size: 1.125rem;
  }

  .hero-buttons {
    justify-content: center;
  }

  .trust-indicators {
    justify-content: center;
  }

  .social-proof {
    justify-content: center;
  }

  .section-title {
    font-size: 2rem;
  }

  .section-description {
    font-size: 1.125rem;
  }

  .services-grid {
    grid-template-columns: 1fr;
  }

  .about-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .appointment-grid {
    grid-template-columns: 1fr;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .footer-content {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 1rem;
    text-align: center;
  }

  .floating-1,
  .floating-2,
  .floating-3 {
    display: none;
  }

  .floating-card {
    display: none;
  }

  .services {
    padding: 5rem 0;
  }

  .about {
    padding: 5rem 0;
  }

  .appointment {
    padding: 5rem 0;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 1rem;
  }

  .hero-title {
    font-size: 2rem;
  }

  .hero-description {
    font-size: 1rem;
  }

  .section-title {
    font-size: 1.75rem;
  }

  .section-description {
    font-size: 1rem;
  }

  .trust-indicators {
    flex-direction: column;
    gap: 1rem;
  }

  .hero-buttons {
    flex-direction: column;
    width: 100%;
  }

  .btn-lg {
    width: 100%;
  }

  .form-card {
    padding: 2rem;
  }

  .contact-card {
    padding: 1.5rem;
  }
}
