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

:root {
  /* Colors - Based on mockup (Deep Emerald/Forest Green) */
  --primary: #0a3622;
  --primary-light: #165636;
  --primary-dark: #052115;
  --secondary: #0d47a1; /* Deep Blue Accent */
  --accent: #d4af37; /* Gold Accent */
  --background: #f8f9fa; /* Soft Grey */
  --white: #ffffff;
  --text-main: #333333;
  --text-muted: #666666;
  --border: #e0e0e0;
  
  /* Typography */
  --font-sans: 'Inter', sans-serif;
  --font-heading: 'Outfit', sans-serif;
  
  /* Shadows */
  --shadow-sm: 0 4px 6px rgba(0,0,0,0.04);
  --shadow-md: 0 10px 15px -3px rgba(0,0,0,0.08);
  --shadow-lg: 0 20px 25px -5px rgba(0,0,0,0.1), 0 10px 10px -5px rgba(0,0,0,0.04);
  --shadow-hover: 0 25px 50px -12px rgba(10, 54, 34, 0.25);
  /* Glassmorphism & Liquid Styles */
  --glass-bg: rgba(255, 255, 255, 0.7);
  --glass-border: 1px solid rgba(255, 255, 255, 0.2);
  --glass-shadow: 0 8px 32px 0 rgba(10, 54, 34, 0.1);
  --liquid-gradient: linear-gradient(135deg, rgba(10, 54, 34, 0.05) 0%, rgba(212, 175, 55, 0.02) 100%);
  
  /* Precision Tokens */
  --glow-primary: 0 0 30px rgba(10, 54, 34, 0.15);
  --glow-accent: 0 0 25px rgba(212, 175, 55, 0.15);
  
  /* Transitions */
  --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-normal: 0.4s cubic-bezier(0.23, 1, 0.32, 1);
  --transition-slow: 0.8s cubic-bezier(0.16, 1, 0.3, 1);
  --card-radius: 24px;
}

html {
  scroll-behavior: smooth;
}

/* =========================================
   Elite Precision Animations
   ========================================= */
@keyframes fluid-blob {
  0%, 100% { transform: translate(0, 0) scale(1) rotate(0deg); }
  33% { transform: translate(5vw, -5vh) scale(1.1) rotate(10deg); }
  66% { transform: translate(-3vw, 3vh) scale(0.9) rotate(-10deg); }
}

@keyframes text-reveal-mask {
  0% { clip-path: inset(0 100% 0 0); transform: translateY(20px); opacity: 0; }
  100% { clip-path: inset(0 0 0 0); transform: translateY(0); opacity: 1; }
}

@keyframes reflection-shine {
  0% { left: -100%; top: -100%; }
  100% { left: 100%; top: 100%; }
}

.reveal-mask {
  animation: text-reveal-mask var(--transition-slow) forwards;
}

.liquid-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  overflow: hidden;
  pointer-events: none;
  background: var(--background);
  /* Optimization: Hardware acceleration */
  transform: translateZ(0);
}

.blob {
  position: absolute;
  width: 60vw;
  height: 60vw;
  background: radial-gradient(circle, var(--primary) 0%, transparent 65%);
  /* Reduced blur intensity for performance */
  filter: blur(80px);
  opacity: 0.1;
  border-radius: 50%;
  animation: fluid-blob 25s infinite alternate ease-in-out;
  will-change: transform;
}

.blob-1 { top: -25%; left: -15%; }
.blob-2 { bottom: -25%; right: -15%; background: radial-gradient(circle, var(--secondary) 0%, transparent 65%); animation-delay: -5s; }
.blob-3 { top: 30%; right: 5%; background: radial-gradient(circle, var(--accent) 0%, transparent 65%); opacity: 0.03; animation-delay: -10s; }

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

body {
  font-family: var(--font-sans);
  color: var(--text-main);
  background-color: var(--background);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

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

a {
  text-decoration: none;
  color: inherit;
  transition: color var(--transition-fast);
}

/* =========================================
   Layout & Utilities
   ========================================= */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem; /* Reduced from 2rem for more space on mobile */
}

.section {
  padding: 6rem 0;
}

.bg-white { background-color: var(--white); }
.bg-primary { background-color: var(--primary); color: var(--white); }
.bg-primary h2, .bg-primary p { color: var(--white); }

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

/* =========================================
   Buttons
   ========================================= */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.875rem 1.75rem;
  font-size: 1rem;
  font-weight: 500;
  border-radius: 4px;
  cursor: pointer;
  transition: all var(--transition-normal);
  border: 2px solid transparent;
}

.btn-primary {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
  color: var(--white);
  box-shadow: 0 4px 14px 0 rgba(10, 54, 34, 0.2);
  border-radius: 50px; /* Force rounding on primary buttons for modern feel */
}

.btn-primary:hover {
  background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 100%);
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(10, 54, 34, 0.3);
}

.btn-outline {
  background-color: transparent;
  color: var(--primary);
  border-color: var(--primary);
}

.btn-outline:hover {
  background-color: var(--primary);
  color: var(--white);
  transform: translateY(-2px);
}

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

.btn:active {
  transform: scale(0.96) translateY(0);
  box-shadow: none;
}

/* =========================================
   Navbar
   ========================================= */
.navbar {
  position: fixed;
  top: 0;
  width: 100%;
  background: var(--glass-bg);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: var(--glass-border);
  z-index: 2000;
  transition: all var(--transition-normal);
  height: 80px;
  display: flex;
  align-items: center;
}

.navbar.scrolled {
  background: var(--primary) !important;
  box-shadow: var(--shadow-lg);
  height: 70px;
}

.navbar.scrolled .nav-links a {
  color: var(--white) !important;
}

.navbar.scrolled .nav-brand {
  color: var(--white) !important;
}

.navbar.scrolled .nav-brand span {
  color: var(--accent) !important;
}

.navbar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 80px;
}

.nav-brand {
  font-family: var(--font-heading);
  font-size: 1.65rem;
  font-weight: 800;
  color: var(--primary);
  letter-spacing: -0.02em;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-shadow: 0 4px 12px rgba(0,0,0,0.05);
  white-space: nowrap;
  text-decoration: none;
}

.nav-brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1;
}

.nav-brand-text span {
  color: var(--primary-light);
  font-size: 1.1rem;
  letter-spacing: 1px;
}

.nav-divider {
  width: 1px;
  height: 20px;
  background: var(--border);
  margin: 0 1rem;
}

.nav-cta {
  padding: 0.6rem 1.2rem !important;
  margin-left: 0.5rem;
  font-size: 0.9rem !important;
}

@media (max-width: 992px) {
  .nav-divider {
    display: none;
  }
  .nav-cta {
    margin-left: 0;
    margin-top: 1rem;
    width: 80% !important;
  }
}

.nav-brand-logo {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
  border: 1.5px solid var(--white);
  box-shadow: 0 4px 15px rgba(10, 54, 34, 0.2);
  image-rendering: -webkit-optimize-contrast;
  transition: transform var(--transition-normal);
}

.nav-brand:hover .nav-brand-logo {
  transform: rotate(15deg) scale(1.1);
}

.nav-brand span {
  font-weight: 800;
  color: inherit;
  font-family: inherit;
  text-transform: none;
  letter-spacing: -0.02em;
  font-size: inherit;
}

/* Language Dropdown */
.language-selector {
  position: relative;
}

.lang-dropdown {
  appearance: none;
  -webkit-appearance: none;
  padding: 0.4rem 2rem 0.4rem 0.75rem;
  border: 1px solid var(--border);
  border-radius: 6px;
  background: var(--white);
  font-family: var(--font-sans);
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--text-main);
  cursor: pointer;
  transition: all var(--transition-fast);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='%23666' viewBox='0 0 16 16'%3E%3Cpath d='M7.247 11.14 2.451 5.658C1.885 5.013 2.345 4 3.204 4h9.592a1 1 0 0 1 .753 1.659l-4.796 5.48a1 1 0 0 1-1.506 0z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0.6rem center;
  background-size: 10px;
  min-width: 110px;
}

.lang-dropdown:hover {
  border-color: var(--primary);
  box-shadow: 0 0 0 2px rgba(10, 54, 34, 0.08);
}

.lang-dropdown:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(10, 54, 34, 0.12);
}

.nav-links {
  display: flex;
  gap: 2rem;
  list-style: none;
}

.nav-links a {
  font-weight: 500;
  font-size: 0.95rem;
  color: var(--text-main);
  position: relative;
  transition: color var(--transition-fast);
}

.nav-links a::after {
  content: '';
  position: absolute;
  width: 0;
  height: 2px;
  bottom: -4px;
  left: 0;
  background-color: var(--primary);
  transition: width var(--transition-fast);
}

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

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

/* =========================================
   Hero Section
   ========================================= */
.hero {
  padding: 10rem 0 6rem;
  background: var(--white);
  position: relative;
  overflow: visible; /* Changed from hidden to show badges */
}

.hero .container {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 2rem;
  align-items: center;
}

.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 120px 0 60px;
  background: var(--white);
  position: relative;
  overflow: visible;
}

.hero-container {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 2rem;
  align-items: center;
  position: relative;
  z-index: 2;
}

.hero-content {
  grid-column: span 7;
}

.hero-content h1 {
  font-size: clamp(2.5rem, 6vw, 4rem);
  line-height: 1.1;
  margin: 1.5rem 0;
}

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

.hero-description {
  margin-top: 1.5rem;
  font-size: 1.25rem;
  max-width: 550px;
  line-height: 1.8;
  opacity: 0.8;
}

.hero-actions {
  margin-top: 3rem;
  display: flex;
  gap: 1.5rem;
  align-items: center;
}

.hero-btn-main {
  padding: 1.2rem 2.5rem !important;
  border-radius: 50px !important;
  box-shadow: var(--glow-primary) !important;
}

.hero-btn-sub {
  border: none !important;
  font-weight: 600 !important;
  color: var(--primary) !important;
}

.hero-btn-sub i {
  margin-left: 10px;
  transition: transform 0.3s ease;
}

.hero-btn-sub:hover i {
  transform: translateX(5px);
}

.hero-image {
  grid-column: span 5;
  position: relative;
}

.image-wrapper {
  position: relative;
  z-index: 2;
}

.hero-img-main {
  width: 100%;
  filter: drop-shadow(0 20px 50px rgba(10, 54, 34, 0.25));
  transition: transform var(--transition-normal);
}

.hero-badge i {
  color: var(--accent);
  margin-right: 8px;
}

.decorative-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 120%;
  height: 120%;
  background: radial-gradient(circle, rgba(10,54,34,0.05) 0%, transparent 70%);
  z-index: 1;
  pointer-events: none;
}

@media (max-width: 992px) {
  .hero-container {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 4rem;
  }
  .hero-content, .hero-image {
    grid-column: span 12;
  }
  .hero-description {
    margin: 1.5rem auto 0;
  }
  .hero-actions {
    justify-content: center;
  }
}

@media (max-width: 576px) {
  .hero-actions {
    flex-direction: column;
    gap: 1rem;
  }
  .hero-btn-main, .hero-btn-sub {
    width: 100%;
  }
}

/* Hero Badges */
.hero-badge {
  position: absolute;
  z-index: 3;
  transition: all var(--transition-normal);
}

.badge-cases {
  top: 15%;
  right: -10%;
  padding: 1.5rem 2rem;
  background: rgba(255, 255, 255, 0.82);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.6);
  box-shadow: var(--glass-shadow);
}

.badge-num {
  display: block;
  font-weight: 800;
  font-size: 2rem;
  color: var(--primary);
  font-family: var(--font-heading);
  line-height: 1.1;
}

.badge-label {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-weight: 600;
  color: var(--text-muted);
}

.badge-certified {
  bottom: 5%;
  left: -5%;
  padding: 1rem 1.5rem;
  background: var(--primary);
  color: var(--white);
  border-radius: 16px;
  box-shadow: var(--glow-primary);
  font-size: 0.85rem;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 8px;
}

/* Utility / Overline headers */
.overline {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--accent);
  display: block;
  margin-bottom: 0.5rem;
  line-height: normal; /* To prevent clipping */
}

/* Stats Footer underneath hero */
.stats-banner {
  background-color: var(--white);
  border: 1px solid var(--border);
  padding: 2.5rem 1.5rem;
  display: flex;
  justify-content: space-around;
  border-radius: 12px;
  box-shadow: 0 10px 40px rgba(0,0,0,0.05);
  position: relative;
  z-index: 10;
  margin-bottom: 4rem;
}

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

.stat-num {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--primary);
  font-family: var(--font-heading);
}

.stat-label {
  font-size: 0.875rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-top: 0.5rem;
}

/* =========================================
   Cards (Services)
   ========================================= */
.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.card {
  background: var(--white);
  border-radius: 24px;
  padding: 3rem;
  box-shadow: 0 10px 30px rgba(10, 54, 34, 0.05);
  border: 1px solid rgba(10, 54, 34, 0.05);
  transition: all var(--transition-normal);
  position: relative;
  overflow: hidden;
  /* Optimization: Do not use backdrop-filter by default */
  transform: translateZ(0); 
}

.card:hover {
  transform: translateY(-12px) scale(1.02) translateZ(0); 
  box-shadow: 0 40px 80px rgba(10, 54, 34, 0.12);
  border-color: var(--primary-light);
  background: var(--white);
}

.card::after {
  content: '';
  position: absolute;
  width: 150%;
  height: 150%;
  background: linear-gradient(135deg, transparent 45%, rgba(255,255,255,0.4) 50%, transparent 55%);
  top: -150%;
  left: -150%;
  transition: none;
  pointer-events: none;
}

.card:hover::after {
  animation: reflection-shine 1.2s cubic-bezier(0.23, 1, 0.32, 1);
}

/* Green top border effect for cards */
.card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background-color: var(--primary);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--transition-normal);
}

.card:hover::before {
  transform: scaleX(1);
}

.card-icon {
  width: 60px;
  height: 60px;
  background-color: rgba(10, 54, 34, 0.05);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: var(--primary);
  margin-bottom: 1.5rem;
}

.card h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

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

.service-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 4rem;
  align-items: center;
}

.service-grid.reverse {
  direction: ltr;
}

.service-grid.reverse .service-image {
  grid-column: 1 / span 5;
  order: 1;
}

.service-grid.reverse .service-content {
  grid-column: 6 / span 7;
  padding-left: 4rem;
  order: 2;
}

.service-content {
  grid-column: span 7;
}

.service-image {
  grid-column: span 5;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  aspect-ratio: 16/9;
  background: var(--background);
  display: flex;
  align-items: center;
  justify-content: center;
}

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

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

.service-desc {
  color: var(--text-muted);
  font-size: 1.125rem;
  margin-top: 1.5rem;
  line-height: 1.8;
}

.section-subtitle {
  margin-top: 2.5rem;
  margin-bottom: 1rem;
  font-family: var(--font-heading);
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--primary);
}

.small-desc {
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.6;
}

@media (max-width: 992px) {
  .service-grid,
  .service-grid.reverse {
    display: flex !important;
    flex-direction: column !important;
    gap: 2rem !important;
  }
  .service-grid .service-image,
  .service-grid.reverse .service-image {
    width: 100% !important;
    order: 0 !important;
    grid-column: unset !important;
    padding-left: 0 !important;
  }
  .service-grid .service-content,
  .service-grid.reverse .service-content {
    width: 100% !important;
    order: 1 !important;
    grid-column: unset !important;
    padding-left: 0 !important;
  }
}

.card-link {
  color: var(--primary);
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.card-link:hover {
  gap: 0.75rem;
}

/* =========================================
   Doctor Section (About intro)
   ========================================= */
.doctor-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.doctor-img-wrapper {
  position: relative;
}

.doctor-img {
  max-width: 100%;
  width: auto;
  height: auto;
  display: block;
  margin: 0 auto;
  object-fit: contain;
  border-radius: 8px;
  box-shadow: var(--shadow-lg);
  image-rendering: -webkit-optimize-contrast;
  image-rendering: crisp-edges;
  image-rendering: high-quality;
}

.exp-badge {
  position: absolute;
  bottom: -20px;
  right: -20px;
  background: var(--primary);
  color: var(--white);
  padding: 2rem;
  border-radius: 8px;
  box-shadow: var(--shadow-md);
  text-align: center;
}

.exp-badge .num {
  font-size: 2.5rem;
  font-weight: 800;
  line-height: 1;
  display: block;
}

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

.doctor-content h3 {
  font-size: 1.25rem;
  color: var(--primary-light);
  margin-bottom: 2rem;
}

.doctor-content ul {
  list-style: none;
  margin-bottom: 2rem;
}

.doctor-content ul li {
  position: relative;
  padding-left: 2rem;
  margin-bottom: 1rem;
}

.doctor-content ul li::before {
  content: '\2713';
  position: absolute;
  left: 0;
  color: var(--primary);
  font-weight: bold;
}

/* =========================================
   Forms
   ========================================= */
.form-container {
  background: var(--white);
  padding: 3rem;
  border-radius: 12px;
  box-shadow: var(--shadow-lg);
}

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

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

.form-control {
  width: 100%;
  padding: 0.875rem 1rem;
  border: 1px solid var(--border);
  border-radius: 4px;
  font-family: inherit;
  font-size: 1rem;
  transition: all var(--transition-fast);
  background-color: var(--background);
}

.form-control:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(10, 54, 34, 0.1);
  background-color: var(--white);
}

/* =========================================
   Footer
   ========================================= */
/* Modern Footer Styles */
.footer {
  background: var(--primary-dark);
  color: rgba(255, 255, 255, 0.85);
  padding: 6rem 0 0;
  position: relative;
  overflow: hidden;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
  gap: 4rem;
  padding-bottom: 4rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-logo {
  font-family: var(--font-heading);
  font-size: 2rem;
  color: var(--white);
  margin-bottom: 1.5rem;
  font-weight: 800;
  letter-spacing: -1px;
}

.footer-logo span {
  color: var(--primary-light);
}

.footer-tagline {
  margin-top: 1rem;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.6);
  font-size: 1rem;
}

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

.social-link {
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: var(--white);
  transition: all 0.3s ease;
  font-size: 0.9rem;
}

.social-link:hover {
  background: var(--primary);
  border-color: var(--primary);
  transform: translateY(-5px);
  color: var(--white) !important;
}

.footer h4 {
  color: var(--white);
  margin-bottom: 2rem;
  font-size: 1.1rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-weight: 700;
}

.footer ul {
  list-style: none;
}

.footer ul li {
  margin-bottom: 1rem;
}

.footer ul li a {
  color: rgba(255, 255, 255, 0.6);
  transition: all 0.3s ease;
  font-size: 0.95rem;
}

.footer ul li a:hover {
  color: var(--white);
  padding-left: 5px;
}

.support-link {
  color: var(--accent) !important;
  font-weight: 700 !important;
}

.contact-list li {
  display: flex;
  gap: 1rem;
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.95rem;
  line-height: 1.6;
}

.contact-list li i {
  color: var(--primary-light);
  margin-top: 0.25rem;
}

.footer-bottom {
  padding: 2rem 0;
  text-align: center;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.4);
}

/* =========================================
   Responsive
   ========================================= */
/* =========================================
   Responsive Fixes & Mobile Menu
   ========================================= */
@media (max-width: 992px) {
  .hero .container, .hero-container, .doctor-section, .booking-grid {
    grid-template-columns: 1fr;
    display: flex;
    flex-direction: column;
  }
  .hero-content h1 {
    font-size: 2.5rem !important; /* Fixed huge font on mobile */
  }
  .footer-grid {
    grid-template-columns: 1fr; /* 1 column on mobile for clarity */
    text-align: center;
    gap: 2rem;
  }
  .asymmetric-grid {
    display: flex;
    flex-direction: column;
    gap: 3rem;
  }
  .asymmetric-grid > * {
    grid-column: span 12 !important;
  }
  .asymmetric-grid.reverse {
    flex-direction: column-reverse;
  }
  .service-detail-section {
    padding: 4rem 0 2rem;
  }
  .service-detail-section div[style*="padding-left: 4rem"] {
    padding-left: 0 !important;
  }
  .service-hero {
    padding: 7rem 0 2.5rem !important;
  }
  .service-hero h1 {
    font-size: 2rem !important;
  }
}

@media (max-width: 992px) {
  body.mobile-menu-active {
    overflow: hidden;
  }

  .navbar {
    padding: 0.5rem 0;
  }

  .nav-brand {
    font-size: 1.3rem !important;
    margin-right: 0 !important;
  }

  .nav-brand-logo {
    width: 32px !important;
    height: 32px !important;
  }

  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    max-width: 400px;
    height: 100vh;
    background: var(--white);
    display: flex !important;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 1rem !important;
    padding: 4rem 2rem !important;
    transition: all 0.5s cubic-bezier(0.7, 0, 0.3, 1);
    z-index: 1999;
    box-shadow: -10px 0 30px rgba(0,0,0,0.1);
    overflow-y: auto;
    border-left: 1px solid var(--border);
    max-height: none;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
  }

  .nav-links.active {
    right: 0;
    opacity: 1;
    visibility: visible;
    pointer-events: all;
  }

  .nav-links a {
    width: 100%;
    text-align: center;
    padding: 1.25rem 2rem;
    font-size: 1.125rem !important;
    font-weight: 600;
    color: var(--primary-dark) !important;
    border-bottom: 1px solid rgba(0,0,0,0.05);
    transition: all 0.3s ease;
  }

  .nav-links a:last-child {
    border-bottom: none;
    margin-top: 1rem;
    width: auto;
    border-radius: 50px;
  }

  .nav-links a::after {
    display: none; /* Remove underline on mobile dropdown */
  }

  .nav-links a:hover {
    background: rgba(10, 54, 34, 0.03);
    color: var(--primary) !important;
  }

  .language-selector {
    padding: 1rem 0;
    width: 100%;
    display: flex;
    justify-content: center;
    border-bottom: 1px solid rgba(0,0,0,0.05);
  }

  .mobile-menu-btn {
    display: flex;
    flex-direction: column;
    gap: 6px;
    background: none;
    border: none;
    cursor: pointer;
    z-index: 2001; /* Above nav-links */
    width: 30px;
    height: 24px;
    align-items: center;
    justify-content: center;
    padding: 0;
    position: relative;
  }

  .mobile-menu-btn span {
    display: block;
    width: 100%;
    height: 2.5px;
    background-color: var(--primary-dark);
    transition: all 0.3s ease;
    border-radius: 2px;
  }

  .navbar.scrolled .mobile-menu-btn span {
    background-color: var(--white);
  }

  .mobile-menu-btn.active span:nth-child(1) {
    transform: translateY(8.5px) rotate(45deg);
    background-color: var(--primary-dark); /* Always dark when active for contrast */
  }
  .mobile-menu-btn.active span:nth-child(2) {
    opacity: 0;
  }
  .mobile-menu-btn.active span:nth-child(3) {
    transform: translateY(-8.5px) rotate(-45deg);
    background-color: var(--primary-dark);
  }

  .footer-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .footer-social {
    justify-content: center;
  }

  .stats-banner {
    flex-direction: column;
    gap: 2.5rem;
  }

  .section {
    padding: 4rem 0;
  }

  /* Hero Badge Responsive Fixes */
  .badge-cases {
    top: auto !important;
    bottom: -15px !important;
    right: 5% !important;
    padding: 0.8rem 1.2rem !important;
    border-radius: 16px !important;
    transform: scale(0.9);
  }

  .badge-num {
    font-size: 1.5rem !important;
  }

  .badge-label {
    font-size: 0.65rem !important;
    letter-spacing: 1px !important;
  }

  .badge-certified {
    bottom: auto !important;
    top: 10px !important;
    left: 5% !important;
    padding: 0.6rem 1rem !important;
    border-radius: 12px !important;
    transform: scale(0.85);
    font-size: 0.75rem !important;
  }

  .hero {
    padding-bottom: 2rem !important;
  }

  .hero-content {
    text-align: center;
  }

  .hero-content p {
    margin: 1.5rem auto 0 !important;
  }

  .hero-actions {
    justify-content: center;
    flex-direction: column;
    gap: 1rem;
  }

  .hero-actions .btn {
    margin-left: 0 !important;
    width: 100%;
    justify-content: center;
  }

  .hero-image {
    max-width: 450px;
    margin: 2rem auto 0 !important;
    background: transparent !important;
    box-shadow: none !important;
    overflow: visible !important;
    position: relative;
    z-index: 2;
  }

  .hero-image img {
    border-radius: 24px;
    box-shadow: var(--shadow-lg);
    width: 100%;
    height: auto;
    max-height: 60vh;
    object-fit: contain;
  }

  .stats-banner {
    display: grid !important;
    grid-template-columns: 1fr 1fr;
    gap: 2rem !important;
    padding: 2rem 1rem !important;
  }

  .stats-banner .stat-item:last-child {
    grid-column: span 2;
  }

  .custom-cursor, .cursor-follower {
    display: none !important;
  }
}

/* =========================================
   Floating Action Buttons & Badges
   ========================================= */
.fab-container { 
  position: fixed; 
  bottom: 1.5rem; 
  right: 1.5rem; 
  display: flex; 
  flex-direction: column; 
  gap: 1rem; 
  z-index: 1000; 
}

@media (max-width: 992px) {
  .fab-container {
    bottom: 1rem;
    right: 1rem;
    gap: 0.75rem;
  }
  .fab-btn {
    width: 50px;
    height: 50px;
    font-size: 1.25rem;
  }
  .exp-badge {
    right: 5% !important;
    bottom: 5% !important;
    transform: scale(0.8);
  }
}

.fab-btn { 
  width: 60px; 
  height: 60px; 
  border-radius: 50%; 
  display: flex; 
  align-items: center; 
  justify-content: center; 
  font-size: 1.5rem; 
  color: var(--white) !important; 
  box-shadow: 0 10px 25px rgba(0,0,0,0.15); 
  text-decoration: none; 
  transition: all var(--transition-normal); 
  position: relative;
  border: none;
  cursor: pointer;
}

.fab-btn:hover { 
  transform: translateY(-5px) scale(1.05); 
  color: var(--white) !important; 
  box-shadow: 0 15px 35px rgba(0,0,0,0.25);
}

.fab-whatsapp { 
  background: linear-gradient(135deg, #25D366 0%, #128C7E 100%); 
}

.fab-call { 
  background: linear-gradient(135deg, var(--secondary) 0%, #002171 100%); 
}

.fab-chat-toggle {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
  animation: pulse-ai 2s infinite;
}

@keyframes pulse-ai {
  0% { box-shadow: 0 0 0 0 rgba(10, 54, 34, 0.4); }
  70% { box-shadow: 0 0 0 15px rgba(10, 54, 34, 0); }
  100% { box-shadow: 0 0 0 0 rgba(10, 54, 34, 0); }
}

/* Tooltip labels on hover */
.fab-btn::after {
  content: attr(title);
  position: absolute;
  right: 80px;
  background: rgba(10, 54, 34, 0.95);
  color: white;
  padding: 0.5rem 1rem;
  border-radius: 8px;
  font-size: 0.85rem;
  font-weight: 600;
  white-space: nowrap;
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition-fast);
  pointer-events: none;
}

.fab-btn:hover::after {
  opacity: 1;
  visibility: visible;
  right: 70px;
}

.insurance-banner { background: var(--primary-dark); color: var(--white); padding: 2rem 0; text-align: center; }
.insurance-logos { display: flex; justify-content: center; gap: 2rem; flex-wrap: wrap; margin-top: 1.5rem; }
.badge { display: inline-flex; align-items: center; justify-content: center; padding: 0.5rem 1rem; background: rgba(255,255,255,0.1); border-radius: 4px; border: 1px solid rgba(255,255,255,0.2); font-weight: 500; font-size: 0.875rem; }

/* =========================================
   AI Chat Assistant
   ========================================= */
.chat-widget {
  position: fixed;
  bottom: 2rem;
  right: 6.5rem; /* Next to FABs */
  width: 350px;
  height: 500px;
  max-height: 80vh;
  background: var(--glass-bg);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-radius: 16px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.25);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  z-index: 1001;
  transform: translateY(20px);
  opacity: 0;
  pointer-events: none;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  border: var(--glass-border);
}
.chat-widget.active {
  transform: translateY(0);
  opacity: 1;
  pointer-events: all;
}
.chat-header {
  background: var(--primary);
  color: var(--white);
  padding: 1rem 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.chat-header h4 {
  color: var(--white);
  margin: 0;
  font-size: 1.1rem;
}
.close-chat {
  background: none;
  border: none;
  color: var(--white);
  font-size: 1.5rem;
  cursor: pointer;
}
.chat-body {
  flex: 1;
  padding: 1.5rem;
  overflow-y: auto;
  background: rgba(248, 249, 250, 0.6);
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.chat-msg {
  max-width: 85%;
  padding: 0.8rem 1rem;
  border-radius: 12px;
  font-size: 0.9rem;
  line-height: 1.4;
  animation: fadeIn 0.3s ease;
}
.chat-msg.bot {
  background: var(--white);
  color: var(--text-main);
  border: 1px solid var(--border);
  border-bottom-left-radius: 4px;
  align-self: flex-start;
}
.chat-msg.user {
  background: var(--primary);
  color: var(--white);
  border-bottom-right-radius: 4px;
  align-self: flex-end;
}
.chat-footer {
  padding: 1rem;
  background: var(--white);
  border-top: 1px solid var(--border);
  display: flex;
  gap: 0.5rem;
}
.chat-input {
  flex: 1;
  padding: 0.75rem 1rem;
  border: 1px solid var(--border);
  border-radius: 20px;
  outline: none;
  font-family: inherit;
}
.chat-input:focus {
  border-color: var(--primary);
}
.chat-send {
  background: var(--primary);
  color: var(--white);
  border: none;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}
.typing-indicator {
  display: none;
  align-self: flex-start;
  background: var(--white);
  padding: 0.8rem 1rem;
  border-radius: 12px;
  border: 1px solid var(--border);
  border-bottom-left-radius: 4px;
  margin-bottom: 1rem;
}
.typing-indicator span {
  width: 6px;
  height: 6px;
  background: var(--primary-light);
  display: inline-block;
  border-radius: 50%;
  margin: 0 2px;
  animation: bounce 1.4s infinite ease-in-out both;
}
.typing-indicator span:nth-child(1) { animation-delay: -0.32s; }
.typing-indicator span:nth-child(2) { animation-delay: -0.16s; }

.fab-chat-toggle {
  background-color: var(--primary-dark);
}

@media (max-width: 768px) {
  .chat-widget {
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    max-height: 100vh;
    border-radius: 0;
  }
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes bounce {
  0%, 80%, 100% { transform: scale(0); }
  40% { transform: scale(1); }
}

/* =========================================
   Star Rating Feedback Forms
   ========================================= */
.rating-group {
  display: flex;
  flex-direction: row-reverse;
  justify-content: flex-end;
  gap: 0.5rem;
  font-size: 2rem;
}
.rating-group input {
  display: none;
}
.rating-group label {
  color: var(--border);
  cursor: pointer;
  transition: color 0.2s;
  display: inline-block;
}
.rating-group label:hover,
.rating-group label:hover ~ label,
.rating-group input:checked ~ label {
  color: #FFD700;
}

/* =========================================
   Floating Logo
   ========================================= */
.home-floating-logo {
  position: fixed;
  bottom: 2rem;
  left: 2rem;
  z-index: 1000;
  width: 140px;
  height: auto;
  transition: transform var(--transition-normal);
  filter: drop-shadow(0 10px 15px rgba(0,0,0,0.15));
  background: var(--glass-bg);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: var(--glass-border);
  padding: 10px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.home-floating-logo img {
  width: 100%;
  height: auto;
  border-radius: 50%;
  object-fit: cover;
}

.home-floating-logo:hover {
  transform: scale(1.08) translateY(-5px);
  filter: drop-shadow(0 20px 25px rgba(0,0,0,0.2));
}

@media (max-width: 768px) {
  .home-floating-logo {
    width: 90px;
    bottom: 1rem;
    left: 1rem;
  }
}

@media (max-width: 768px) {
  .floating-logo {
    width: 90px;
    bottom: 1rem;
    left: 1rem;
  }
}

/* =========================================
   Surgical Video Gallery
   ========================================= */
.video-gallery-section {
  padding: 6rem 0;
  background-color: var(--white);
}

.video-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2.5rem;
  margin-top: 3.5rem;
}

.video-card {
  background: var(--white);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border);
  transition: all var(--transition-normal);
}

.video-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: var(--primary-light);
}

.video-wrapper {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  background-color: #000;
}

.video-wrapper video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.video-info {
  padding: 1.5rem;
}

.video-info h4 {
  font-size: 1.125rem;
  margin-bottom: 0.5rem;
  color: var(--primary-dark);
}

.video-info p {
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.5;
}

@media (max-width: 768px) {
  .video-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}

/* =========================================
   Social Media Section
   ========================================= */
.social-section {
  padding: 6rem 0;
  background-color: var(--background);
}

.social-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 3.5rem;
}

.social-card {
  background: var(--white);
  padding: 3rem 2rem;
  border-radius: 16px;
  text-align: center;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border);
  transition: all var(--transition-normal);
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.social-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  transition: height 0.3s ease;
  z-index: -1;
}

.social-card.facebook::before { background: #1877F2; }
.social-card.instagram::before { background: linear-gradient(45deg, #f09433 0%,#e6683c 25%,#dc2743 50%,#cc2366 75%,#bc1888 100%); }
.social-card.youtube::before { background: #FF0000; }

.social-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-lg);
  color: var(--white);
}

.social-card:hover::before {
  height: 100%;
}

.social-card i {
  font-size: 3rem;
  margin-bottom: 1.5rem;
  transition: transform 0.3s ease;
}

.social-card.facebook i { color: #1877F2; }
.social-card.instagram i { color: #dc2743; }
.social-card.youtube i { color: #FF0000; }

.social-card:hover i {
  color: var(--white);
  transform: scale(1.1);
}

.social-card h4 {
  font-size: 1.5rem;
  margin-bottom: 0.75rem;
  transition: color 0.3s ease;
}

.social-card p {
  color: var(--text-muted);
  margin-bottom: 1.5rem;
  transition: color 0.3s ease;
}

.social-card:hover h4, .social-card:hover p {
  color: var(--white);
}

/* Footer Social Icons */
.footer-social {
  display: flex;
  gap: 1rem;
  margin-top: 1.5rem;
}

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

.social-link-item:hover {
  background: var(--accent);
  transform: translateY(-3px);
}

/* =========================================
   Donation Section
   ========================================= */
.donation-section {
  padding: 8rem 0;
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  position: relative;
  overflow: hidden;
}

.donation-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 4rem;
  align-items: center;
}

.donation-content h2 {
  font-size: 3rem;
  color: var(--primary);
  margin-bottom: 1.5rem;
  line-height: 1.1;
}

.donation-content p {
  font-size: 1.125rem;
  color: var(--text-muted);
  margin-bottom: 2.5rem;
  line-height: 1.6;
}

.donation-image-wrapper {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: var(--shadow-xl);
  border: 8px solid var(--white);
  transform: rotate(2deg);
  transition: transform 0.5s ease;
}

.donation-image-wrapper:hover {
  transform: rotate(0deg) scale(1.02);
}

.donation-image-wrapper img {
  width: 100%;
  height: auto;
  display: block;
}

@media (max-width: 991px) {
  .donation-grid {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 3rem;
  }
  .donation-image-wrapper {
    max-width: 500px;
    margin: 0 auto;
    transform: rotate(0);
  }
}

/* =========================================
   AI Voice Assistant Styles
   ========================================= */
.chat-controls {
  display: flex;
  gap: 0.5rem;
  align-items: center;
}

.voice-toggle {
  background: none;
  border: none;
  font-size: 1.25rem;
  cursor: pointer;
  color: var(--white);
  padding: 0 0.5rem;
}

.chat-footer {
  position: relative;
}

.mic-btn {
  background: none;
  border: none;
  font-size: 1.2rem;
  cursor: pointer;
  color: var(--text-muted);
  padding: 0.5rem;
  transition: all 0.3s ease;
  z-index: 10;
}

.mic-btn.active {
  color: #ef4444;
  animation: pulseMic 1.5s infinite;
}

@keyframes pulseMic {
  0% { transform: scale(1); }
  50% { transform: scale(1.2); text-shadow: 0 0 10px rgba(239, 68, 68, 0.5); }
  100% { transform: scale(1); }
}

.chat-input {
  flex: 1;
  padding-left: 1rem;
}

/* =========================================
   Billion Dollar Final Polish (Animations & Polish)
   ========================================= */

/* Fluid Typography */
h1 { font-size: clamp(2.2rem, 7vw, 4rem) !important; line-height: 1.15 !important; }
h2 { font-size: clamp(1.8rem, 5vw, 2.8rem) !important; line-height: 1.2 !important; }
p { font-size: clamp(1rem, 3vw, 1.1rem) !important; }

/* Page Preloader */
#preloader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--white);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
  transition: opacity 0.8s ease, visibility 0.8s ease;
}

.loader-content {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
}

.loader-logo {
  width: 80px;
  height: 80px;
  animation: pulseLogo 2s infinite ease-in-out;
}

.loader-bar {
  width: 200px;
  height: 3px;
  background: #eee;
  border-radius: 10px;
  position: relative;
  overflow: hidden;
}

.loader-bar::after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: var(--primary);
  animation: loadingBar 1.5s infinite ease-in-out;
}

@keyframes pulseLogo {
  0% { transform: scale(1); opacity: 0.8; }
  50% { transform: scale(1.1); opacity: 1; }
  100% { transform: scale(1); opacity: 0.8; }
}

@keyframes loadingBar {
  0% { left: -100%; }
  50% { left: 0; }
  100% { left: 100%; }
}

#preloader.fade-out {
  opacity: 0;
  visibility: hidden;
}

/* Premium Card Effects */
.card, .social-card, .video-card {
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(10, 54, 34, 0.1) !important;
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1) !important;
}

.card:hover, .social-card:hover {
  transform: translateY(-10px) scale(1.02) !important;
  box-shadow: 0 30px 60px rgba(10, 54, 34, 0.15) !important;
  border-color: var(--primary) !important;
}

/* Navbar mobile glass */
@media (max-width: 768px) {
  .nav-links {
    backdrop-filter: blur(25px);
    -webkit-backdrop-filter: blur(25px);
    background: rgba(255, 255, 255, 0.98) !important;
    border-bottom: 2px solid var(--primary);
  }

  /* When navbar is scrolled, dropdown should match its background (dark) */
  .navbar.scrolled .nav-links {
    background: var(--primary) !important;
    border-top: 1px solid rgba(255,255,255,0.1);
  }

  .navbar.scrolled .nav-links a {
    color: var(--white) !important;
    border-bottom-color: rgba(255,255,255,0.1);
  }

  .navbar.scrolled .nav-links a:hover {
    background: rgba(255,255,255,0.05);
  }
}

/* Smooth Scroll ProgressBar */
#scrollProgress {
  position: fixed;
  top: 0;
  left: 0;
  height: 4px;
  background: var(--primary);
  z-index: 10001;
  width: 0%;
  transition: width 0.1s ease;
}

/* AI Chat Native Mobile UI */
@media (max-width: 992px) {
  .chat-widget.active {
    width: 100vw !important;
    height: 100vh !important;
    right: 0 !important;
    bottom: 0 !important;
    border-radius: 0 !important;
  }
}


/* =========================================
   Support the Cause Section
   ========================================= */
.support-section {
  padding: 8rem 0;
  background: linear-gradient(135deg, var(--white) 0%, #f0f7f3 100%);
  position: relative;
  overflow: hidden;
}

.support-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 5rem;
  align-items: center;
}

.support-content h2 {
  font-size: 3rem;
  margin-bottom: 2rem;
  color: var(--primary-dark);
}

.support-content p {
  font-size: 1.15rem;
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 2.5rem;
}

.support-card {
  background: var(--white);
  padding: 2.5rem;
  border-radius: 30px;
  box-shadow: 0 30px 60px rgba(10, 54, 34, 0.1);
  border: 1px solid rgba(10, 54, 34, 0.05);
  text-align: center;
  position: relative;
  transition: transform var(--transition-normal);
}

.support-card:hover {
  transform: translateY(-10px);
}

.qr-wrapper {
  background: #f8f9fa;
  padding: 1.5rem;
  border-radius: 20px;
  display: inline-block;
  margin-bottom: 1.5rem;
  border: 1px dashed var(--primary-light);
}

.qr-image {
  width: 220px;
  height: 220px;
  display: block;
  object-fit: contain;
}

.support-tag {
  display: inline-block;
  padding: 0.5rem 1.2rem;
  background: rgba(212, 175, 55, 0.1);
  color: var(--accent);
  font-weight: 700;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  border-radius: 50px;
  margin-bottom: 1rem;
}

@media (max-width: 992px) {
  .support-grid {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 3rem;
  }
}
