/* ======================
   HEALIO GLOBAL STYLES
   ====================== */

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

/* CSS Variables */
:root {
  --primary-color: #009688;
  --dark-color: #00796B;
  --light-color: #B2DFDB;
  --background-color: #FFFFFF;
  --text-color: #333333;
  --accent-color: #1A237E;
  --light-gray: #f8f9fa;
  --shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  --shadow-hover: 0 8px 15px rgba(0, 0, 0, 0.2);
  --transition: all 0.3s ease;
}

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

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

/* Typography */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  margin-bottom: 1rem;
  line-height: 1.3;
}

h1 {
  font-size: 2.5rem;
  font-weight: 700;
}

h2 {
  font-size: 2rem;
}

h3 {
  font-size: 1.5rem;
}

p {
  margin-bottom: 1rem;
}

/* Container */
.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Header & Navigation */
header {
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  border-bottom: 1px solid rgba(0, 150, 136, 0.08);
  position: sticky;
  top: 0;
  z-index: 1000;
  transition: var(--transition);
}

header::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--primary-color), var(--dark-color), var(--accent-color));
  opacity: 0.7;
}

nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.8rem 0;
  position: relative;
}

.logo {
  display: flex;
  align-items: center;
  text-decoration: none;
  position: relative;
}

.logo-img {
  height: 50px;
  width: auto;
  max-width: 150px;
  object-fit: contain;
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 2rem;
  align-items: center;
  background: rgba(255, 255, 255, 0.6);
  padding: 0.5rem 1.5rem;
  border-radius: 40px;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.3);
  box-shadow: 0 2px 15px rgba(0, 0, 0, 0.08);
}

.nav-links a {
  text-decoration: none;
  color: var(--text-color);
  font-weight: 600;
  font-size: 0.9rem;
  position: relative;
  transition: var(--transition);
  padding: 0.4rem 0.8rem;
  border-radius: 20px;
}

.nav-links a:hover {
  color: var(--primary-color);
  background: rgba(0, 150, 136, 0.1);
  transform: translateY(-1px);
}

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

.nav-links a:hover::after {
  width: 80%;
}

/* Mobile Menu Toggle */
.menu-toggle {
  display: none;
  flex-direction: column;
  cursor: pointer;
  background: none;
  border: none;
}

.menu-toggle span {
  width: 25px;
  height: 3px;
  background-color: var(--text-color);
  margin: 2px 0;
  transition: var(--transition);
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 28px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  text-align: center;
  cursor: pointer;
  border: none;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  font-size: 1rem;
  position: relative;
  overflow: hidden;
  letter-spacing: 0.5px;
}

.btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: left 0.6s;
}

.btn:hover::before {
  left: 100%;
}

.btn-primary {
  background: rgba(0, 150, 136, 0.9);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  color: white;
  border: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow: 0 10px 30px rgba(0, 150, 136, 0.2);
  font-weight: 500;
}

.btn-primary:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 15px 40px rgba(0, 150, 136, 0.3);
  background: rgba(0, 150, 136, 1);
  border-color: rgba(255, 255, 255, 0.3);
}

.btn-primary:active {
  transform: translateY(-1px) scale(0.98);
  box-shadow: 0 8px 25px rgba(0, 150, 136, 0.2);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  color: var(--primary-color);
  border: 1px solid rgba(0, 150, 136, 0.3);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.05);
  font-weight: 500;
}

.btn-secondary:hover {
  background: rgba(0, 150, 136, 0.1);
  color: var(--dark-color);
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 12px 35px rgba(0, 150, 136, 0.15);
  border-color: rgba(0, 150, 136, 0.5);
}

/* Subtle Glass CTA Button for Nav */
.nav-cta {
  background: rgba(0, 150, 136, 0.1) !important;
  backdrop-filter: blur(10px) !important;
  -webkit-backdrop-filter: blur(10px) !important;
  border: 1px solid rgba(0, 150, 136, 0.25) !important;
  color: var(--primary-color) !important;
  padding: 8px 20px !important;
  border-radius: 25px !important;
  font-weight: 600 !important;
  font-size: 0.85rem !important;
  letter-spacing: 0.5px !important;
  text-transform: none !important;
  box-shadow: 0 2px 10px rgba(0, 150, 136, 0.1) !important;
  position: relative !important;
  overflow: hidden !important;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1) !important;
  margin-left: 0.5rem !important;
}

.nav-cta::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: left 0.5s ease;
}

.nav-cta:hover {
  background: rgba(0, 150, 136, 0.15) !important;
  border-color: rgba(0, 150, 136, 0.4) !important;
  color: var(--dark-color) !important;
  transform: translateY(-1px) !important;
  box-shadow: 0 4px 20px rgba(0, 150, 136, 0.15) !important;
}

.nav-cta:hover::before {
  left: 100%;
}

.nav-cta span {
  position: relative;
  z-index: 2;
}

/* Sections */
section {
  padding: 4rem 0;
}

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

.section-subtitle {
  text-align: center;
  font-size: 1.1rem;
  color: #666;
  margin-bottom: 3rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

/* Hero Section */
.hero {
  background: linear-gradient(135deg, var(--light-color) 0%, #E0F2F1 100%);
  padding: 6rem 0;
  overflow: hidden;
  position: relative;
}

.hero-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
}

.hero-text {
  text-align: left;
}

.trust-badges {
  display: flex;
  gap: 1rem;
  margin-bottom: 2rem;
  flex-wrap: wrap;
}

.badge {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(10px);
  padding: 0.5rem 1rem;
  border-radius: 25px;
  border: 1px solid rgba(0, 150, 136, 0.2);
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--text-color);
}

.badge i {
  color: var(--primary-color);
  font-size: 0.9rem;
}

.hero h1 {
  font-size: 3.5rem;
  margin-bottom: 1.5rem;
  color: var(--text-color);
  line-height: 1.2;
}

.gradient-text {
  background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-description {
  font-size: 1.3rem;
  margin-bottom: 2.5rem;
  color: #555;
  line-height: 1.6;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  margin-bottom: 3rem;
  padding: 2rem;
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(10px);
  border-radius: 20px;
  border: 1px solid rgba(0, 150, 136, 0.1);
}

.stat {
  text-align: center;
}

.stat-number {
  font-size: 2rem;
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: 0.5rem;
}

.stat-label {
  font-size: 0.9rem;
  color: #666;
  font-weight: 500;
}

.hero-cta {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.cta-note {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: #666;
  font-size: 0.9rem;
}

.cta-note i {
  color: var(--primary-color);
}

.hero-visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.patient-showcase {
  position: relative;
}

.main-patient {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow-hover);
}

.patient-image {
  width: 400px;
  height: 500px;
  object-fit: cover;
  border-radius: 20px;
}

.patient-badge {
  position: absolute;
  bottom: 20px;
  left: 20px;
  background: rgba(76, 175, 80, 0.95);
  backdrop-filter: blur(10px);
  color: white;
  padding: 0.75rem 1.5rem;
  border-radius: 25px;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 600;
  font-size: 0.9rem;
}

.patient-testimonial-float {
  position: absolute;
  top: -20px;
  right: -50px;
  z-index: 10;
}

.testimonial-bubble {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  padding: 1.5rem;
  border-radius: 20px;
  box-shadow: var(--shadow-hover);
  border: 1px solid rgba(0, 150, 136, 0.1);
  max-width: 250px;
  position: relative;
}

.testimonial-bubble::before {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 30px;
  width: 0;
  height: 0;
  border-left: 10px solid transparent;
  border-right: 10px solid transparent;
  border-top: 10px solid rgba(255, 255, 255, 0.95);
}

.testimonial-bubble p {
  margin: 0 0 0.5rem 0;
  font-size: 0.9rem;
  color: var(--text-color);
  font-style: italic;
}

.testimonial-author {
  font-size: 0.8rem;
  color: var(--primary-color);
  font-weight: 600;
}

/* Grid Layouts */
.grid {
  display: grid;
  gap: 2rem;
}

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

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

.grid-2 {
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
}

/* Grid 4 responsive behavior */
@media (max-width: 1024px) and (min-width: 769px) {
  .grid-4 {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .grid-4 {
    grid-template-columns: 1fr;
  }
}

/* Cards */
.card {
  background-color: white;
  border-radius: 10px;
  padding: 2rem;
  box-shadow: var(--shadow);
  transition: var(--transition);
  text-align: center;
}

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

.card-icon {
  width: 60px;
  height: 60px;
  background-color: var(--light-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  font-size: 1.5rem;
  color: var(--primary-color);
}

.card h3 {
  color: var(--primary-color);
  margin-bottom: 1rem;
}

/* Enhanced Service Cards with Images */
.service-card {
  overflow: hidden;
  padding: 0;
  border-radius: 20px;
  position: relative;
}

.service-image {
  width: 100%;
  height: 200px;
  overflow: hidden;
  position: relative;
}

.service-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.service-card:hover .service-img {
  transform: scale(1.1);
}

.service-image::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(0, 150, 136, 0.8), rgba(26, 35, 126, 0.6));
  opacity: 0;
  transition: opacity 0.4s ease;
}

.service-card:hover .service-image::after {
  opacity: 1;
}

.card-content {
  padding: 2rem;
  position: relative;
}

.service-card .card-icon {
  position: absolute;
  top: -30px;
  left: 50%;
  transform: translateX(-50%);
  background: white;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
  z-index: 2;
  border: 3px solid var(--primary-color);
}

.service-card h3 {
  margin-top: 1rem;
  font-size: 1.4rem;
}

.service-card p {
  margin-bottom: 2rem;
  line-height: 1.6;
}

/* New Service Section Styling */
.service-header {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  margin: 4rem 0;
}

.service-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(0, 150, 136, 0.1);
  color: var(--primary-color);
  padding: 0.5rem 1rem;
  border-radius: 25px;
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.service-subtitle {
  font-size: 1.2rem;
  color: #666;
  margin-bottom: 2rem;
  line-height: 1.6;
}

.service-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.feature {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.feature i {
  color: var(--primary-color);
  font-size: 1.2rem;
  margin-top: 0.2rem;
}

.feature h4 {
  margin: 0 0 0.5rem 0;
  color: var(--text-color);
  font-size: 1rem;
}

.feature p {
  margin: 0;
  color: #666;
  font-size: 0.9rem;
  line-height: 1.4;
}

.service-benefits {
  margin-bottom: 2.5rem;
}

.service-benefits h4 {
  margin-bottom: 1rem;
  color: var(--text-color);
}

.benefits-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.benefit-tag {
  background: rgba(0, 150, 136, 0.1);
  color: var(--primary-color);
  padding: 0.5rem 1rem;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 500;
  border: 1px solid rgba(0, 150, 136, 0.2);
}

.service-cta {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

/* Steps/Process */
.steps {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 2rem;
  margin: 3rem 0;
}

.step {
  flex: 1;
  text-align: center;
  position: relative;
}

.step-number {
  width: 50px;
  height: 50px;
  background-color: var(--primary-color);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.2rem;
  margin: 0 auto 1rem;
}

.step::after {
  content: '';
  position: absolute;
  top: 25px;
  right: -50%;
  width: 100%;
  height: 2px;
  background-color: var(--light-color);
  z-index: -1;
}

.step:last-child::after {
  display: none;
}

/* Form Styles */
.form-group {
  margin-bottom: 1.5rem;
}

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

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 15px;
  border: 2px solid #ddd;
  border-radius: 8px;
  font-size: 1rem;
  transition: var(--transition);
  font-family: 'Open Sans', sans-serif;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--primary-color);
  box-shadow: 0 0 0 3px rgba(0, 150, 136, 0.1);
}

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

/* Contact Info */
.contact-info {
  background-color: var(--light-gray);
  padding: 2rem;
  border-radius: 10px;
}

.contact-item {
  display: flex;
  align-items: center;
  margin-bottom: 1rem;
}

.contact-item:last-child {
  margin-bottom: 0;
}

.contact-icon {
  width: 40px;
  height: 40px;
  background-color: var(--primary-color);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 1rem;
  flex-shrink: 0;
}

/* Enhanced Testimonials with Patient Photos */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.testimonial-card {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  padding: 2rem;
  border-radius: 20px;
  border: 1px solid rgba(0, 150, 136, 0.1);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  position: relative;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.testimonial-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
  border-color: rgba(0, 150, 136, 0.3);
}

.testimonial-image {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1.5rem;
}

.patient-avatar {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid var(--primary-color);
  box-shadow: 0 4px 15px rgba(0, 150, 136, 0.3);
}

.rating {
  display: flex;
  gap: 0.2rem;
}

.rating i {
  color: #ffc107;
  font-size: 0.9rem;
}

.testimonial-content {
  text-align: left;
}

.testimonial-quote {
  font-style: italic;
  font-size: 1.1rem;
  margin-bottom: 1.5rem;
  color: #555;
  line-height: 1.6;
  position: relative;
}

.testimonial-quote::before {
  content: '"';
  position: absolute;
  top: -10px;
  left: -15px;
  font-size: 2.5rem;
  font-family: serif;
  color: var(--primary-color);
  opacity: 0.3;
}

.testimonial-author strong {
  color: var(--text-color);
  font-size: 1.1rem;
  font-weight: 600;
}

.testimonial-author span {
  display: block;
  color: #666;
  font-size: 0.9rem;
  margin-top: 0.3rem;
}

/* Legacy testimonial styles for other pages */
.testimonial {
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  padding: 3rem 2.5rem;
  border-radius: 20px;
  border: 1px solid rgba(0, 150, 136, 0.2);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.05);
  text-align: center;
  position: relative;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.testimonial::before {
  content: '"';
  position: absolute;
  top: 1rem;
  left: 2rem;
  font-size: 4rem;
  font-family: serif;
  color: var(--primary-color);
  opacity: 0.3;
  line-height: 1;
}

.testimonial:hover {
  transform: translateY(-5px);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.1);
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(0, 150, 136, 0.3);
}

.testimonial .testimonial-quote {
  font-style: italic;
  font-size: 1.2rem;
  margin-bottom: 2rem;
  color: #666;
  line-height: 1.7;
  font-weight: 300;
}

.testimonial .testimonial-author {
  font-weight: 600;
  color: var(--primary-color);
  font-size: 1rem;
}

/* Modern Premium Footer */
footer {
  background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
  color: white;
  padding: 5rem 0 0;
  margin-top: 6rem;
  position: relative;
  overflow: hidden;
}

footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(circle at 20% 10%, rgba(0, 150, 136, 0.15) 0%, transparent 40%),
    radial-gradient(circle at 80% 30%, rgba(26, 35, 126, 0.2) 0%, transparent 50%),
    radial-gradient(circle at 40% 70%, rgba(0, 150, 136, 0.1) 0%, transparent 30%);
  z-index: 1;
}

footer::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--primary-color), var(--accent-color), transparent);
  z-index: 3;
}

.footer-content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.2fr;
  gap: 4rem;
  margin-bottom: 3rem;
  position: relative;
  z-index: 2;
}

.footer-section {
  position: relative;
}

.footer-section h3 {
  font-size: 2rem;
  font-weight: 700;
  background: linear-gradient(135deg, var(--primary-color), #64ffda);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 1.5rem;
  position: relative;
}

.footer-section h3::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 40px;
  height: 3px;
  background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
  border-radius: 2px;
}

.footer-section p {
  color: #b8c5d1;
  line-height: 1.7;
  margin-bottom: 2rem;
  font-size: 1.05rem;
}

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

.footer-social a {
  width: 45px;
  height: 45px;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #b8c5d1;
  text-decoration: none;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  font-size: 1.2rem;
}

.footer-social a:hover {
  background: rgba(0, 150, 136, 0.2);
  border-color: var(--primary-color);
  color: var(--primary-color);
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(0, 150, 136, 0.3);
}

.footer-section h3:not(:first-child) {
  font-size: 1.3rem;
  font-weight: 600;
  color: white;
  margin-bottom: 1.5rem;
  background: none;
  -webkit-text-fill-color: white;
}

.footer-section h3:not(:first-child)::after {
  width: 30px;
  height: 2px;
}

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

.footer-section ul li {
  margin-bottom: 1rem;
  position: relative;
  padding-left: 1.5rem;
}

.footer-section ul li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 6px;
  height: 6px;
  background: var(--primary-color);
  border-radius: 50%;
  opacity: 0.7;
}

.footer-section ul li a,
.footer-section ul li {
  color: #b8c5d1;
  text-decoration: none;
  transition: all 0.3s ease;
  font-size: 1rem;
  line-height: 1.6;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.footer-section ul li a:hover {
  color: var(--primary-color);
  transform: translateX(8px);
  text-shadow: 0 0 10px rgba(0, 150, 136, 0.3);
}

.footer-section ul li i {
  color: var(--primary-color);
  font-size: 1.1rem;
  width: 20px;
}

.footer-bottom {
  background: rgba(0, 0, 0, 0.3);
  backdrop-filter: blur(10px);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  position: relative;
  z-index: 2;
}

.footer-bottom-content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-bottom-content p {
  color: #9aa5b1;
  font-size: 0.95rem;
  margin: 0;
}

.footer-bottom-content a {
  color: var(--primary-color);
  text-decoration: none;
  transition: all 0.3s ease;
  font-weight: 500;
}

.footer-bottom-content a:hover {
  color: #64ffda;
  text-shadow: 0 0 10px rgba(0, 150, 136, 0.4);
}

.developer-credit {
  text-align: right;
  font-size: 0.95rem;
  color: #9aa5b1;
  font-weight: 500;
}

.developer-credit a {
  color: var(--primary-color);
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  position: relative;
}

.developer-credit a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--primary-color);
  transition: width 0.3s ease;
}

.developer-credit a:hover::after {
  width: 100%;
}

.developer-credit a:hover {
  color: #64ffda;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .hero-content {
    grid-template-columns: 1fr;
    gap: 3rem;
    text-align: center;
  }
  
  .hero-text {
    text-align: center;
  }
  
  .hero-stats {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .patient-testimonial-float {
    position: static;
    margin-top: 2rem;
  }
  
  .footer-content {
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
  }
}

@media (max-width: 768px) {
  .hero {
    padding: 4rem 0;
  }
  
  .hero h1 {
    font-size: 2.5rem;
  }
  
  .hero-description {
    font-size: 1.1rem;
  }
  
  .trust-badges {
    justify-content: center;
  }
  
  .hero-stats {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin-bottom: 2rem;
  }
  
  .hero-cta {
    flex-direction: column;
    gap: 1rem;
  }
  
  .patient-image {
    width: 300px;
    height: 380px;
  }
  
  .testimonials-grid {
    grid-template-columns: 1fr;
  }
  
  .logo-img {
    height: 40px;
    max-width: 120px;
  }
  
  .nav-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    flex-direction: column;
    padding: 1.5rem 1rem;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    border-radius: 0 0 20px 20px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    gap: 0.5rem;
  }
  
  .nav-links.active {
    display: flex;
  }
  
  .nav-links a {
    padding: 0.8rem 1rem;
    text-align: center;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.3);
  }
  
  .nav-cta {
    margin: 1rem 0 0 0 !important;
    padding: 12px 24px !important;
    font-size: 0.9rem !important;
    background: rgba(0, 150, 136, 0.15) !important;
    backdrop-filter: blur(15px) !important;
    -webkit-backdrop-filter: blur(15px) !important;
    border: 1px solid rgba(0, 150, 136, 0.3) !important;
  }
  
  .menu-toggle {
    display: flex;
  }
  
  .steps {
    flex-direction: column;
  }
  
  .step::after {
    display: none;
  }
  
  .grid-3,
  .grid-2 {
    grid-template-columns: 1fr;
  }
  
  .service-header {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .service-features {
    grid-template-columns: 1fr;
  }
  
  .service-cta {
    flex-direction: column;
  }
  
  .footer-content {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  
  .footer-bottom-content {
    flex-direction: column;
    text-align: center;
    gap: 1rem;
  }
  
  .developer-credit {
    text-align: center;
  }
  
  section {
    padding: 2rem 0;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 15px;
  }
  
  .hero {
    padding: 3rem 0;
  }
  
  .hero h1 {
    font-size: 2rem;
  }
  
  .hero-stats {
    grid-template-columns: 1fr;
    padding: 1.5rem;
  }
  
  .trust-badges {
    flex-direction: column;
    align-items: center;
  }
  
  .patient-image {
    width: 280px;
    height: 350px;
  }
  
  .card {
    padding: 1.5rem;
  }
  
  .footer-content {
    padding: 0 1rem;
  }
  
  .footer-section h3 {
    font-size: 1.5rem;
  }
}

/* Utility Classes */
.text-center {
  text-align: center;
}

.mb-1 { margin-bottom: 1rem; }
.mb-2 { margin-bottom: 2rem; }
.mb-3 { margin-bottom: 3rem; }

.mt-1 { margin-top: 1rem; }
.mt-2 { margin-top: 2rem; }
.mt-3 { margin-top: 3rem; }

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

.animate-fade-in {
  animation: fadeInUp 0.6s ease-out;
}