.App {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

/* Header Styles - Enhanced with Colors */
header {
  background: linear-gradient(135deg, rgba(243, 243, 243, 0.95) 0%, rgba(243, 243, 243, 0.9) 100%);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  box-shadow: 
    0 4px 24px rgba(5, 77, 45, 0.08),
    0 0 0 1px rgba(243, 243, 243, 0.1),
    inset 0 1px 0 rgba(243, 243, 243, 0.6),
    0 2px 10px rgba(5, 77, 45, 0.05),
    0 2px 10px rgba(5, 77, 45, 0.05);
  position: sticky;
  top: 0;
  z-index: 1000;
  padding: 14px 0;
  border-bottom: 2px solid transparent;
  background-image: linear-gradient(white, white), var(--gradient-emerald-full);
  background-origin: border-box;
  background-clip: padding-box, border-box;
}

.header-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
}

.header-nav {
  position: absolute;
  left: 45%;
  transform: translateX(-50%);
}

/* Force single line header layout */
.header-content {
  flex-wrap: nowrap !important;
  white-space: nowrap;
  overflow: visible;
}

.header-nav {
  flex-shrink: 1;
  min-width: 0;
}

.nav-menu {
  flex-wrap: nowrap;
  overflow: visible;
}

.nav-item {
  flex-shrink: 0;
}

/* Mobile responsive - keep single line but allow scrolling */
@media (max-width: 1024px) {
  .header-content {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }

  .nav-menu {
    gap: 15px;
    padding: 0 10px;
  }

  .nav-link {
    white-space: nowrap;
    flex-shrink: 0;
  }
}

@media (max-width: 768px) {
  .header-content {
    position: relative;
  }

  .nav-menu {
    gap: 12px;
  }

  .nav-link {
    font-size: 0.9rem;
    padding: 6px 0;
  }
}

@media (max-width: 480px) {
  .logo span {
    display: none;
  }

  .logo {
    gap: 0;
    flex-shrink: 0;
  }

  .header-content {
    padding: 0 10px;
  }

  .nav-menu {
    gap: 8px;
  }
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--text-dark);
  letter-spacing: -0.3px;
}

.logo-icon {
  width: 36px;
  height: 36px;
  background: var(--gradient-emerald-full);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-weight: bold;
  font-size: 1.2rem;
  box-shadow: var(--shadow-emerald-full);
  transition: all 0.3s;
  animation: pulse 3s ease-in-out infinite;
}

.logo-icon:hover {
  transform: rotate(360deg) scale(1.1);
  box-shadow: 0 0 30px rgba(5, 77, 45, 0.5), 0 0 60px rgba(5, 77, 45, 0.3);
}

.nav-menu {
  display: flex;
  list-style: none;
  gap: 18px;
  align-items: center;
}

.nav-item {
  position: relative;
}

.nav-link {
  color: var(--text-dark);
  font-weight: 500;
  padding: 8px 0;
  transition: all 0.3s;
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.95rem;
  position: relative;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  right: 0;
  width: 0;
  height: 3px;
  background: var(--gradient-emerald-full);
  border-radius: 2px;
  transition: width 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 2px 8px rgba(5, 77, 45, 0.4);
}

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

.nav-link:hover {
  color: var(--primary-green);
  transform: translateY(-2px);
}

.nav-link:hover::after {
  width: 100%;
  box-shadow: 0 2px 12px rgba(5, 77, 45, 0.6);
}

/* Mega Menu */
.nav-item.has-mega-menu {
  position: relative;
}

.mega-menu {
  position: absolute;
  top: 100%;
  right: 0;
  background: var(--white);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  box-shadow:
    0 8px 32px rgba(5, 77, 45, 0.15),
    0 4px 16px rgba(5, 77, 45, 0.1),
    0 0 0 1px rgba(5, 77, 45, 0.05);
  border-radius: 12px;
  padding: 15px;
  min-width: 320px;
  max-width: 400px;
  display: block;
  margin-top: 12px;
  border: 1px solid rgba(5, 77, 45, 0.1);
  z-index: 1100;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease-in-out, transform 0.3s ease-in-out, visibility 0.3s ease-in-out;
  transform: translateY(-10px);
}

@media (min-width: 769px) {
  .header-content,
  .header-nav,
  .nav-menu {
    overflow: visible !important;
  }
}

.nav-item.has-mega-menu:hover .mega-menu,
.mega-menu:hover {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.mega-menu-item {
  padding: 12px 16px;
  border-radius: 8px;
  transition: all 0.2s ease;
  cursor: pointer;
  border: none;
  color: var(--text-dark);
  font-size: 0.95rem;
  font-weight: 500;
  text-decoration: none;
  text-align: right;
  display: flex;
  align-items: center;
  gap: 8px;
  position: relative;
}

.mega-menu-item::before {
  content: '';
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 0;
  height: 2px;
  background: var(--gradient-emerald-full);
  transition: width 0.3s ease;
  border-radius: 2px;
}

.mega-menu-item:hover {
  background: rgba(5, 77, 45, 0.08);
  color: var(--primary-green);
  transform: translateX(-4px);
}

.mega-menu-item:hover::before {
  width: 4px;
}

/* Desktop: horizontal rectangular mega menu */
@media (min-width: 769px) {
  .mega-menu {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
    gap: 10px;
    min-width: 640px;
    max-width: 860px;
    padding: 14px;
    border-radius: 14px;
  }

  .mega-menu-item {
    flex: 0 0 auto;
    white-space: nowrap;
    padding: 10px 14px;
    border: 1px solid rgba(5, 77, 45, 0.12);
    border-radius: 10px;
    background: rgba(5, 77, 45, 0.03);
  }

  .mega-menu-item::before {
    display: none;
  }

  .mega-menu-item:hover {
    transform: translateY(-2px);
    border-color: rgba(5, 77, 45, 0.28);
    background: rgba(5, 77, 45, 0.09);
  }
}

.mega-menu-services {
  min-width: 720px;
  max-width: 920px;
}

.mega-menu-services-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  width: 100%;
  margin-bottom: 12px;
  padding: 10px 12px;
  border-radius: 12px;
  background: linear-gradient(135deg, rgba(5, 77, 45, 0.1) 0%, rgba(5, 77, 45, 0.04) 100%);
  border: 1px solid rgba(5, 77, 45, 0.12);
}

.mega-menu-services-head-text {
  display: grid;
  gap: 3px;
}

.mega-menu-services-head-text strong {
  color: #0f172a;
  font-size: 0.95rem;
  font-weight: 700;
}

.mega-menu-services-badge {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  padding: 4px 10px;
  border-radius: 999px;
  background: #ffffff;
  color: #054d2d;
  font-size: 0.72rem;
  font-weight: 700;
  border: 1px solid rgba(5, 77, 45, 0.15);
}

.mega-menu-services-all {
  color: #054d2d;
  text-decoration: none;
  font-size: 0.82rem;
  font-weight: 700;
  white-space: nowrap;
  padding: 7px 10px;
  border-radius: 9px;
  background: #ffffff;
  border: 1px solid rgba(5, 77, 45, 0.16);
  transition: all 0.2s ease;
}

.mega-menu-services-all:hover {
  color: #ffffff;
  background: #054d2d;
  border-color: #054d2d;
}

.mega-menu-services-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(220px, 1fr));
  gap: 10px;
  width: 100%;
}

.service-mega-item {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 10px;
  align-items: center;
  border: 1px solid rgba(5, 77, 45, 0.12);
  border-radius: 12px;
  background: #ffffff;
  padding: 11px 12px;
  text-decoration: none;
}

.service-mega-item::before {
  display: none;
}

.service-mega-item-content {
  display: grid;
  gap: 0;
}

.service-mega-item-content strong {
  color: #0f172a;
  font-size: 0.9rem;
  line-height: 1.4;
}

.service-mega-item-arrow {
  color: #054d2d;
  font-size: 0.95rem;
  opacity: 0.7;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.service-mega-item:hover .service-mega-item-arrow {
  opacity: 1;
  transform: translateX(-4px);
}

/* Enhanced Modern Hero Section */
.hero-section {
  position: relative;
  padding: 140px 0 120px;
  overflow: hidden;
  background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 30%, #e2e8f0 70%, #f0f9ff 100%);
  min-height: 95vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  max-width: 100%;
  box-sizing: border-box;
}

.hero-background {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-pattern {
  position: absolute;
  inset: 0;
  opacity: 0.04;
}

.pattern-shape {
  position: absolute;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(5, 77, 45, 0.08) 0%, transparent 60%);
  animation: float 12s ease-in-out infinite;
}

.shape-1 {
  width: 200px;
  height: 200px;
  top: 15%;
  left: 10%;
  animation-delay: 0s;
}

.shape-2 {
  width: 150px;
  height: 150px;
  top: 60%;
  right: 15%;
  animation-delay: 3s;
}

.shape-3 {
  width: 100px;
  height: 100px;
  bottom: 20%;
  left: 20%;
  animation-delay: 6s;
}

.shape-4 {
  width: 80px;
  height: 80px;
  top: 30%;
  right: 5%;
  animation-delay: 9s;
}

.hero-gradient {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 15% 25%, rgba(5, 77, 45, 0.06) 0%, transparent 45%),
    radial-gradient(circle at 85% 75%, rgba(16, 185, 129, 0.04) 0%, transparent 45%),
    radial-gradient(circle at 50% 50%, rgba(59, 130, 246, 0.03) 0%, transparent 50%),
    linear-gradient(135deg, rgba(5, 77, 45, 0.02) 0%, rgba(16, 185, 129, 0.02) 50%, rgba(59, 130, 246, 0.01) 100%);
}

.hero-particles {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.particle {
  position: absolute;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(16, 185, 129, 0.3) 0%, rgba(5, 77, 45, 0.1) 100%);
  animation: particleFloat 15s ease-in-out infinite;
}

.particle-1 {
  width: 6px;
  height: 6px;
  top: 20%;
  left: 15%;
  animation-delay: 0s;
}

.particle-2 {
  width: 4px;
  height: 4px;
  top: 40%;
  right: 20%;
  animation-delay: 2s;
}

.particle-3 {
  width: 8px;
  height: 8px;
  bottom: 30%;
  left: 25%;
  animation-delay: 4s;
}

.particle-4 {
  width: 5px;
  height: 5px;
  top: 70%;
  right: 10%;
  animation-delay: 6s;
}

.particle-5 {
  width: 7px;
  height: 7px;
  bottom: 15%;
  left: 60%;
  animation-delay: 8s;
}

.hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 1200px;
  margin: 0 auto;
  animation: fadeInUp 1s ease-out;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(25px);
  -webkit-backdrop-filter: blur(25px);
  padding: 16px 28px;
  border-radius: 50px;
  font-size: 0.95rem;
  font-weight: 600;
  color: #054d2d;
  margin-bottom: 36px;
  box-shadow: 0 8px 32px rgba(5, 77, 45, 0.15);
  border: 2px solid rgba(5, 77, 45, 0.1);
  animation: fadeInUp 0.8s ease-out 0.2s both;
  position: relative;
  overflow: hidden;
}

.badge-glow {
  position: absolute;
  inset: -2px;
  background: linear-gradient(45deg, transparent, rgba(16, 185, 129, 0.3), transparent);
  border-radius: 50px;
  animation: glowRotate 3s linear infinite;
}

.badge-verified {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-right: 12px;
  font-size: 0.8rem;
  color: #059669;
  font-weight: 700;
}

.badge-verified span:first-child {
  color: #10b981;
}

.badge-icon {
  font-size: 1.4rem;
  z-index: 1;
}

.badge-text {
  font-family: 'Vazirmatn', sans-serif;
  z-index: 1;
}

.hero-title {
  margin-bottom: 32px;
  line-height: 1.1;
  animation: fadeInUp 0.8s ease-out 0.4s both;
}

.hero-title-pre {
  display: block;
  font-size: clamp(1.2rem, 3vw, 1.5rem);
  font-weight: 500;
  color: #6b7280;
  margin-bottom: 16px;
  opacity: 0.9;
}

.hero-title-primary {
  display: block;
  font-size: clamp(2.5rem, 7vw, 4rem);
  font-weight: 900;
  background: linear-gradient(135deg, #054d2d 0%, #047857 50%, #059669 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 12px;
  letter-spacing: -2px;
  position: relative;
}

.hero-highlight {
  position: relative;
  display: inline-block;
}

.hero-highlight::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #10b981, #059669);
  border-radius: 2px;
  animation: highlightGlow 2s ease-in-out infinite alternate;
}

.hero-title-secondary {
  display: block;
  font-size: clamp(2rem, 5vw, 3.2rem);
  font-weight: 800;
  background: linear-gradient(135deg, #059669 0%, #0ea5e9 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 12px;
  letter-spacing: -1.5px;
}

.hero-accent {
  position: relative;
  display: inline-block;
}

.hero-accent::before {
  content: '✨';
  position: absolute;
  top: -8px;
  right: -20px;
  font-size: 1.2em;
  animation: sparkle 2s ease-in-out infinite;
}

.hero-title-post {
  display: block;
  font-size: clamp(1.3rem, 3.5vw, 1.8rem);
  font-weight: 600;
  color: #374151;
  letter-spacing: -0.5px;
  margin-top: 8px;
}

.hero-description-wrapper {
  margin-bottom: 56px;
  animation: fadeInUp 0.8s ease-out 0.6s both;
}

.hero-description {
  font-size: clamp(1.1rem, 2.8vw, 1.35rem);
  color: #4b5563;
  line-height: 1.8;
  margin-bottom: 24px;
  max-width: 650px;
  margin-left: auto;
  margin-right: auto;
  font-weight: 500;
}

.description-highlight {
  color: #054d2d;
  font-weight: 700;
  position: relative;
}

.description-highlight::after {
  content: '';
  position: absolute;
  bottom: 2px;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, #10b981, #059669);
  border-radius: 2px;
  opacity: 0.6;
}

.description-emphasis {
  color: #059669;
  font-weight: 600;
  font-style: italic;
}

.hero-features {
  display: flex;
  gap: 24px;
  justify-content: center;
  flex-wrap: wrap;
  max-width: 500px;
  margin: 0 auto;
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(10px);
  padding: 8px 16px;
  border-radius: 20px;
  border: 1px solid rgba(16, 185, 129, 0.2);
  font-size: 0.9rem;
  font-weight: 500;
  color: #374151;
  transition: all 0.3s ease;
}

.feature-item:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(16, 185, 129, 0.2);
  background: rgba(16, 185, 129, 0.1);
}

.feature-icon {
  font-size: 1.1rem;
}

.hero-actions {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 72px;
  animation: fadeInUp 0.8s ease-out 0.8s both;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 18px 36px;
  border-radius: 16px;
  font-size: 1.1rem;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  border: none;
  cursor: pointer;
  font-family: 'Vazirmatn', sans-serif;
  position: relative;
  overflow: hidden;
}

.btn-content {
  display: flex;
  align-items: center;
  gap: 10px;
  position: relative;
  z-index: 2;
}

.btn-pulse {
  animation: pulseGlow 2s ease-in-out infinite alternate;
}

.btn-glass {
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
}

.btn-primary {
  background: linear-gradient(135deg, #054d2d 0%, #047857 50%, #059669 100%);
  color: white;
  box-shadow: 0 12px 32px rgba(5, 77, 45, 0.4);
}

.btn-primary:hover {
  transform: translateY(-4px) scale(1.02);
  box-shadow: 0 20px 48px rgba(5, 77, 45, 0.5);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.95);
  color: #054d2d;
  border: 2px solid rgba(5, 77, 45, 0.3);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  box-shadow: 0 8px 24px rgba(5, 77, 45, 0.15);
}

.btn-secondary:hover {
  background: rgba(5, 77, 45, 0.1);
  border-color: #054d2d;
  transform: translateY(-4px) scale(1.02);
  box-shadow: 0 16px 40px rgba(5, 77, 45, 0.25);
}

.btn-urgent {
  background: linear-gradient(135deg, #dc2626 0%, #b91c1c 100%);
  color: white;
  box-shadow: 0 8px 24px rgba(220, 38, 38, 0.3);
  animation: urgentPulse 1.5s ease-in-out infinite alternate;
}

.btn-urgent:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(220, 38, 38, 0.4);
}

.btn-ripple {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.3) 0%, transparent 70%);
  transform: scale(0);
  animation: ripple 2s ease-out infinite;
}

.btn-icon {
  font-size: 1.3rem;
  transition: transform 0.3s ease;
}

.btn-text {
  font-weight: 700;
}

.btn-arrow {
  font-size: 1.4rem;
  transition: all 0.3s ease;
}

.btn-primary:hover .btn-arrow {
  transform: translateX(-6px) scale(1.1);
}

.btn-secondary:hover .btn-icon {
  transform: scale(1.1);
}

.hero-stats {
  display: flex;
  gap: 32px;
  justify-content: center;
  flex-wrap: wrap;
  animation: fadeInUp 0.8s ease-out 1s both;
  margin-bottom: 48px;
}

.stat-item {
  text-align: center;
  min-width: 140px;
  padding: 24px;
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(15px);
  border-radius: 20px;
  border: 1px solid rgba(16, 185, 129, 0.2);
  box-shadow: 0 8px 24px rgba(5, 77, 45, 0.1);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.stat-item:hover {
  transform: translateY(-8px) scale(1.05);
  box-shadow: 0 20px 48px rgba(5, 77, 45, 0.2);
}

.stat-item::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(45deg, transparent, rgba(16, 185, 129, 0.1), transparent);
  transform: rotate(45deg);
  transition: all 0.6s ease;
}

.stat-item:hover::before {
  animation: shimmer 1.5s ease-in-out;
}

.stat-icon {
  font-size: 1.8rem;
  margin-bottom: 12px;
  display: block;
}

.stat-number {
  display: inline-flex;
  align-items: baseline;
  font-size: clamp(2.2rem, 4.5vw, 3rem);
  font-weight: 900;
  background: linear-gradient(135deg, #054d2d 0%, #047857 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 8px;
  line-height: 1;
  position: relative;
}

.stat-unit {
  font-size: 0.7em;
  margin-left: 4px;
  opacity: 0.8;
}

.stat-label {
  font-size: 0.95rem;
  color: #6b7280;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  position: relative;
  z-index: 1;
}

.stat-glow {
  position: absolute;
  inset: -2px;
  background: linear-gradient(45deg, rgba(16, 185, 129, 0.2), rgba(5, 77, 45, 0.1));
  border-radius: 20px;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.stat-item:hover .stat-glow {
  opacity: 1;
}

.stat-featured {
  background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%);
  border: 2px solid rgba(245, 158, 11, 0.3);
}

.stat-featured .stat-number {
  background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.stat-stars {
  display: flex;
  gap: 2px;
  justify-content: center;
  margin-top: 8px;
  font-size: 0.8rem;
}

.hero-decoration {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}

.decoration-circle {
  position: absolute;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(5, 77, 45, 0.08) 0%, transparent 70%);
  animation: float 10s ease-in-out infinite;
}

.decoration-circle-1 {
  width: 180px;
  height: 180px;
  top: 8%;
  right: 3%;
  animation-delay: 0s;
}

.decoration-circle-2 {
  width: 120px;
  height: 120px;
  bottom: 15%;
  left: 3%;
  animation-delay: 3s;
}

.decoration-circle-3 {
  width: 90px;
  height: 90px;
  top: 55%;
  right: 8%;
  animation-delay: 6s;
}

.decoration-orb {
  position: absolute;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(16, 185, 129, 0.1) 0%, transparent 60%);
  animation: float 15s ease-in-out infinite reverse;
}

.decoration-orb-1 {
  width: 60px;
  height: 60px;
  top: 25%;
  left: 8%;
  animation-delay: 1s;
}

.decoration-orb-2 {
  width: 40px;
  height: 40px;
  bottom: 35%;
  right: 15%;
  animation-delay: 5s;
}

.scroll-indicator {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  animation: bounce 2s ease-in-out infinite;
  z-index: 1;
}

.scroll-mouse {
  width: 24px;
  height: 36px;
  border: 2px solid rgba(5, 77, 45, 0.3);
  border-radius: 12px;
  position: relative;
}

.scroll-wheel {
  width: 4px;
  height: 8px;
  background: #054d2d;
  border-radius: 2px;
  position: absolute;
  top: 6px;
  left: 50%;
  transform: translateX(-50%);
  animation: scroll 2s ease-in-out infinite;
}

.scroll-text {
  font-size: 0.8rem;
  color: #6b7280;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* Enhanced Responsive Design */
@media (max-width: 1024px) {
  .hero-section {
    padding: 120px 0 100px;
  }

  .hero-features {
    gap: 16px;
  }

  .feature-item {
    font-size: 0.85rem;
    padding: 6px 12px;
  }

  .hero-stats {
    gap: 24px;
  }

  .stat-item {
    min-width: 130px;
    padding: 20px;
  }
}

@media (max-width: 768px) {
  .hero-section {
    padding: 100px 0 80px;
    min-height: auto;
  }

  .hero-badge {
    padding: 14px 20px;
    font-size: 0.85rem;
  }

  .badge-verified {
    font-size: 0.75rem;
  }

  .hero-title-pre {
    font-size: 1rem;
  }

  .hero-title-primary {
    font-size: 2.8rem;
  }

  .hero-title-secondary {
    font-size: 2.2rem;
  }

  .hero-title-post {
    font-size: 1.4rem;
  }

  .hero-description {
    font-size: 1.1rem;
    margin-bottom: 20px;
  }

  .hero-features {
    flex-direction: column;
    align-items: center;
    gap: 12px;
  }

  .feature-item {
    width: 100%;
    max-width: 250px;
    justify-content: center;
  }

  .hero-actions {
    flex-direction: column;
    align-items: center;
    gap: 16px;
    margin-bottom: 56px;
  }

  .btn {
    width: 100%;
    max-width: 300px;
    justify-content: center;
    padding: 16px 24px;
  }

  .btn-urgent {
    max-width: 280px;
  }

  .hero-stats {
    gap: 20px;
    margin-bottom: 40px;
  }

  .stat-item {
    min-width: 120px;
    padding: 16px;
  }

  .stat-number {
    font-size: 2rem;
  }

  .hero-trust {
    gap: 16px;
    margin-bottom: 40px;
  }

  .trust-item {
    font-size: 0.8rem;
    padding: 8px 14px;
  }

  .decoration-circle,
  .decoration-orb {
    display: none;
  }

  .hero-particles .particle {
    display: none;
  }

  .scroll-indicator {
    bottom: 30px;
  }

  .hero-fab {
    bottom: 20px;
    left: 20px;
  }
}

@media (max-width: 480px) {
  .hero-section {
    padding: 80px 0 60px;
  }

  .hero-title-primary {
    font-size: 2rem;
  }

  .hero-title-secondary {
    font-size: 1.8rem;
  }

  .hero-title-accent {
    font-size: 1.5rem;
  }

  .hero-badge {
    padding: 10px 20px;
    font-size: 0.8rem;
  }

  .hero-stats {
    gap: 24px;
  }
}

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

@keyframes float {
  0%, 100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-20px);
  }
}

@keyframes bounce {
  0%, 20%, 50%, 80%, 100% {
    transform: translateX(-50%) translateY(0);
  }
  40% {
    transform: translateX(-50%) translateY(-10px);
  }
  60% {
    transform: translateX(-50%) translateY(-5px);
  }
}

@keyframes scroll {
  0% {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
  }
  100% {
    opacity: 0;
    transform: translateX(-50%) translateY(12px);
  }
}

/* Hero Section - Old (keeping for compatibility) */
.hero {
  background: var(--gradient-2);
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(5, 77, 45, 0.1) 0%, transparent 70%);
  animation: rotate 20s linear infinite;
}

@keyframes rotate {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

.hero-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero-text h1 {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--text-dark);
  margin-bottom: 16px;
  line-height: 1.2;
  letter-spacing: -1px;
  background: var(--gradient-1);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-text p {
  font-size: 1rem;
  color: var(--text-light);
  margin-bottom: 28px;
  font-weight: 400;
  line-height: 1.6;
}

.hero-image {
  text-align: center;
  position: relative;
}

.hero-image::before {
  content: '';
  position: absolute;
  inset: -20px;
  background: var(--gradient-1);
  border-radius: 24px;
  opacity: 0.1;
  z-index: -1;
}

.hero-image > div {
  border-radius: 24px;
  overflow: hidden;
  box-shadow: var(--shadow-xl);
  position: relative;
}

/* Request Call Form */
.request-call-form {
  background: var(--white);
  padding: 32px;
  border-radius: 16px;
  box-shadow: var(--shadow-xl);
  margin-top: 40px;
  position: relative;
  border: 1px solid var(--border-color);
}

/* Removed ::before for request-call-form to remove side line */

.request-call-form h3 {
  color: var(--text-dark);
  margin-bottom: 10px;
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: -0.3px;
}

.request-call-form p {
  color: var(--text-light);
  margin-bottom: 24px;
  font-weight: 400;
  line-height: 1.6;
  font-size: 0.95rem;
}

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

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

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 16px 20px;
  border: 2px solid var(--border-color);
  border-radius: 12px;
  font-size: 1rem;
  font-family: inherit;
  transition: all 0.3s;
  background: var(--white);
}

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

/* Cards */
.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
  margin-top: 40px;
}

.card {
  background: var(--white);
  padding: 28px;
  border-radius: 16px;
  box-shadow: var(--shadow-md);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  border: 1px solid var(--border-color);
  position: relative;
  overflow: hidden;
}

.card::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 3px;
  background: var(--gradient-1);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.4s;
}

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

.card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-xl);
  border-color: var(--primary-green);
}

.card-icon {
  width: 56px;
  height: 56px;
  background: var(--gradient-2);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  font-size: 1.6rem;
  box-shadow: var(--shadow-md);
  transition: all 0.3s;
  color: #054d2d;
}

.card-icon svg {
  width: 32px;
  height: 32px;
  transition: all 0.3s;
}

.card:hover .card-icon {
  transform: scale(1.1) rotate(5deg);
  box-shadow: var(--shadow-lg);
  background: var(--gradient-1);
}

.card:hover .card-icon svg {
  stroke: var(--white);
  color: var(--white);
}

.card h3 {
  color: var(--text-dark);
  margin-bottom: 12px;
  font-size: 1.2rem;
  font-weight: 700;
  letter-spacing: -0.3px;
}

.card p {
  color: var(--text-light);
  line-height: 1.6;
  font-size: 0.9rem;
}

/* Stats */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 24px;
  margin-top: 50px;
}

.stat-card {
  background: var(--white);
  padding: 40px 30px;
  text-align: center;
  border-radius: 20px;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border-color);
  transition: all 0.3s;
  position: relative;
  overflow: hidden;
}

.stat-card::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  background: var(--gradient-1);
  opacity: 0;
  transition: opacity 0.3s;
}

.stat-card:hover::before {
  opacity: 0.05;
}

.stat-card.primary {
  background: var(--gradient-1);
  color: var(--white);
  box-shadow: var(--shadow-lg);
}

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

.stat-number {
  font-size: 4rem;
  font-weight: 800;
  color: var(--primary-green);
  margin-bottom: 12px;
  letter-spacing: -2px;
  position: relative;
  z-index: 1;
}

.stat-card.primary .stat-number {
  color: var(--white);
}

.stat-label {
  color: var(--text-light);
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.6;
  position: relative;
  z-index: 1;
}

.stat-card.primary .stat-label {
  color: rgba(243, 243, 243, 0.95);
}

/* Doctor Cards */
.doctor-card {
  background: var(--white);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  text-align: center;
  border: 1px solid var(--border-color);
  position: relative;
}

.doctor-card::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 4px;
  background: var(--gradient-1);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.4s;
  z-index: 1;
}

.doctor-card:hover::before {
  transform: scaleX(1);
  transform-origin: left;
}

.doctor-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-xl);
  border-color: var(--primary-green);
}

.doctor-image {
  width: 100%;
  height: 300px;
  object-fit: cover;
  background: var(--gradient-2);
  position: relative;
  overflow: hidden;
}

.doctor-image::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, transparent 0%, rgba(5, 77, 45,0.1) 100%);
}

.doctor-info {
  padding: 32px 24px;
}

.doctor-name {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 8px;
  letter-spacing: -0.5px;
}

.doctor-specialty {
  color: var(--primary-green);
  font-weight: 600;
  margin-bottom: 16px;
  font-size: 1rem;
}

/* متن تخصص در کارت‌های مدرن پزشکان (Doctors و DoctorDetail) */
.doctor-specialty-text {
  color: #054d2d;
  font-size: 0.95rem;
  font-weight: 600;
  margin-top: 12px;
  margin-bottom: 16px;
}

.doctor-description {
  color: var(--text-light);
  font-size: 0.95rem;
  margin-bottom: 24px;
  line-height: 1.8;
}

/* Modern Doctor Cards */
.doctor-card-modern {
  background: var(--white);
  border-radius: 24px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  text-align: center;
  border: 1px solid var(--border-color);
  position: relative;
}

.doctor-card-modern:hover {
  transform: translateY(-12px);
  box-shadow: var(--shadow-xl);
  border-color: var(--primary-green);
}

.doctor-image-modern {
  width: 100%;
  height: 320px;
  padding: 40px 20px;
  position: relative;
  background: var(--gradient-2);
}

.doctor-info-modern {
  padding: 32px 24px;
  background: var(--white);
}

.doctor-name-modern {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--text-dark);
  margin: 0;
  letter-spacing: -0.5px;
  text-align: right;
}

.doctor-specialty-modern {
  color: var(--primary-green);
  font-weight: 600;
  margin: 12px 0;
  font-size: 1rem;
  text-align: right;
}

.doctor-experience-modern {
  color: var(--text-light);
  font-size: 0.9rem;
  font-weight: 500;
  text-align: right;
  margin-top: 8px;
}

/* Footer - Enhanced with Emerald Green */
footer {
  background: var(--gradient-emerald-full);
  color: var(--white);
  padding: 80px 0 30px;
  margin-top: auto;
  position: relative;
  box-shadow: 0 -4px 20px rgba(5, 77, 45, 0.2);
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 60px;
  margin-bottom: 60px;
  padding-bottom: 60px;
  border-bottom: 1px solid rgba(243, 243, 243, 0.1);
}

.footer-section h4 {
  margin-bottom: 24px;
  color: var(--white);
  font-weight: 700;
  font-size: 1.2rem;
  letter-spacing: 0.5px;
  text-shadow: 0 2px 4px rgba(5, 77, 45, 0.2);
}

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

.footer-section ul li {
  margin-bottom: 12px;
}

.footer-section a {
  color: rgba(243, 243, 243, 0.8);
  transition: all 0.3s;
  font-weight: 400;
  font-size: 0.95rem;
  display: inline-block;
}

.footer-section a:hover {
  color: var(--white);
  transform: translateX(-4px);
  text-shadow: 0 0 8px rgba(243, 243, 243, 0.5);
}

.footer-bottom {
  text-align: center;
  padding-top: 30px;
  border-top: 1px solid rgba(243, 243, 243, 0.1);
  color: rgba(243, 243, 243, 0.6);
  font-weight: 400;
  font-size: 0.9rem;
}

/* FAQ Styles */
.faq-item {
  background: var(--white);
  border-radius: 16px;
  margin-bottom: 16px;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border-color);
  overflow: hidden;
  transition: all 0.3s;
}

.faq-item:hover {
  box-shadow: var(--shadow-lg);
  border-color: var(--primary-green);
}

.faq-question {
  padding: 24px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: 600;
  color: var(--text-dark);
  font-size: 1.1rem;
}

.faq-answer {
  padding: 0 24px;
  max-height: 0;
  overflow: hidden;
  transition: all 0.3s ease;
  color: var(--text-light);
  line-height: 1.8;
}

.faq-answer.open {
  padding: 0 24px 24px;
  max-height: 500px;
}

.faq-icon {
  color: var(--primary-green);
  font-size: 1.2rem;
  transition: transform 0.3s;
}

.faq-icon.open {
  transform: rotate(180deg);
}

/* Patient Stories */
.story-card {
  background: var(--white);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: all 0.4s;
  border: 1px solid var(--border-color);
  position: relative;
}

.story-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-xl);
  border-color: var(--primary-green);
}

.story-video {
  width: 100%;
  height: 280px;
  background: var(--gradient-2);
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.story-play-btn {
  width: 80px;
  height: 80px;
  background: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  cursor: pointer;
  transition: all 0.3s;
  box-shadow: var(--shadow-lg);
  position: relative;
  z-index: 2;
}

.story-play-btn:hover {
  transform: scale(1.1);
  background: var(--gradient-1);
  color: var(--white);
}

/* Mobile Menu Toggle - Modern Hamburger Icon */
.mobile-menu-toggle {
  display: none !important;
  background: linear-gradient(135deg, rgba(5, 77, 45, 0.1) 0%, rgba(5, 77, 45, 0.05) 100%);
  border: 2px solid rgba(5, 77, 45, 0.2);
  padding: 10px 12px;
  border-radius: 12px;
  color: #054d2d;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 1001;
  position: relative;
  min-width: 44px;
  min-height: 44px;
  touch-action: manipulation;
  -webkit-tap-highlight-color: transparent;
}

.mobile-menu-toggle:hover,
.mobile-menu-toggle:focus {
  background: linear-gradient(135deg, rgba(5, 77, 45, 0.15) 0%, rgba(5, 77, 45, 0.1) 100%);
  border-color: rgba(5, 77, 45, 0.3);
  transform: scale(1.05);
  outline: 2px solid rgba(5, 77, 45, 0.2);
  outline-offset: 2px;
}

.mobile-menu-toggle:active {
  transform: scale(0.95);
}

/* Modern Hamburger Icon */
.hamburger-icon {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: 24px;
  height: 18px;
  position: relative;
}

.hamburger-line {
  display: block;
  width: 100%;
  height: 3px;
  background: #054d2d;
  border-radius: 2px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  transform-origin: center;
}

.mobile-menu-toggle[aria-expanded="true"] .hamburger-line:nth-child(1) {
  transform: translateY(7.5px) rotate(45deg);
}

.mobile-menu-toggle[aria-expanded="true"] .hamburger-line:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}

.mobile-menu-toggle[aria-expanded="true"] .hamburger-line:nth-child(3) {
  transform: translateY(-7.5px) rotate(-45deg);
}

/* Mobile Menu Overlay */
.mobile-menu-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  z-index: 999;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s cubic-bezier(0.4, 0, 0.2, 1), visibility 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  touch-action: none;
}

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

/* Mobile Menu Close Button - Hidden on Desktop */
.mobile-menu-close-wrapper {
  display: none; /* Hidden by default */
}

@media (max-width: 768px) {
  .mobile-menu-close-wrapper {
    display: flex; /* Show only on mobile */
    position: sticky;
    top: 0;
    width: 100%;
    background: linear-gradient(135deg, #054d2d 0%, #0a6b3a 100%);
    padding: 20px 24px;
    align-items: center;
    justify-content: space-between;
    border-bottom: 2px solid rgba(255, 255, 255, 0.1);
    z-index: 10;
    margin: 0;
    list-style: none;
  }

  .mobile-menu-close-wrapper::before {
    content: 'منوی اصلی';
    color: #ffffff;
    font-size: 1.2rem;
    font-weight: 700;
    flex: 1;
    text-align: center;
  }

  .mobile-menu-close {
    background: rgba(255, 255, 255, 0.2);
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 8px;
    color: #ffffff;
    font-size: 2rem;
    line-height: 1;
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    padding: 0;
    touch-action: manipulation;
    -webkit-tap-highlight-color: transparent;
    flex-shrink: 0;
  }

  .mobile-menu-close:hover,
  .mobile-menu-close:focus {
    background: rgba(255, 255, 255, 0.3);
    border-color: rgba(255, 255, 255, 0.5);
    transform: scale(1.1) rotate(90deg);
    outline: 2px solid rgba(255, 255, 255, 0.3);
    outline-offset: 2px;
  }

  .mobile-menu-close:active {
    transform: scale(0.95) rotate(90deg);
  }

  .mobile-menu-close span {
    display: block;
    font-weight: 300;
    transition: transform 0.3s ease;
  }
}

/* Desktop Header Shift to Left */
@media (min-width: 769px) {
  .header-content {
    padding-right: 2%;
    padding-left: 0;
  }
  
  .header-nav {
    left: 43%;
    transform: translateX(-50%);
  }
}

/* Responsive */
@media (max-width: 768px) {
  .hero-content {
    grid-template-columns: 1fr;
    gap: 50px;
  }

  .mobile-menu-toggle {
    display: flex !important;
    align-items: center;
    justify-content: center;
  }

  nav {
    position: relative;
  }

  /* Hide desktop navigation in mobile - but keep nav-menu accessible */
  .header-nav {
    position: static;
    left: auto;
    transform: none;
  }

  .nav-menu {
    flex-direction: column;
    position: fixed;
    top: 0;
    right: -100%;
    background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
    width: 85%;
    max-width: 400px;
    height: 100vh;
    padding: 0;
    margin: 0;
    box-shadow: -4px 0 32px rgba(5, 77, 45, 0.2);
    border: none;
    border-right: 3px solid #054d2d;
    display: flex;
    z-index: 1000;
    border-radius: 0;
    transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    overflow-y: auto;
    overflow-x: hidden;
    -webkit-overflow-scrolling: touch;
    will-change: transform;
    list-style: none;
  }

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

  .nav-item {
    width: 100%;
    border-bottom: 1px solid rgba(5, 77, 45, 0.1);
    margin: 0;
  }

  .nav-item:last-of-type {
    border-bottom: none;
  }

  .nav-link {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px 24px;
    font-size: 1.05rem;
    font-weight: 600;
    color: #111827;
    width: 100%;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    touch-action: manipulation;
    min-height: 56px;
    -webkit-tap-highlight-color: rgba(5, 77, 45, 0.1);
  }

  .nav-link:hover,
  .nav-link:focus,
  .nav-link:active {
    background: linear-gradient(90deg, rgba(5, 77, 45, 0.08) 0%, rgba(5, 77, 45, 0.05) 100%);
    color: #054d2d;
    padding-right: 28px;
    outline: none;
  }

  .nav-link::after {
    display: none;
  }

  .mega-menu {
    position: static;
    display: none;
    flex-direction: column;
    width: 100%;
    margin: 0;
    padding: 0;
    box-shadow: none;
    border: none;
    border-top: 1px solid rgba(5, 77, 45, 0.1);
    border-radius: 0;
    background: rgba(243, 243, 243, 0.5);
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.3s ease;
    opacity: 0;
  }

  .nav-item.has-mega-menu.active .mega-menu {
    display: flex;
    max-height: 500px;
    padding: 12px 0;
    opacity: 1;
  }

  .patient-guide-link {
    min-width: auto !important;
    flex-direction: row;
    align-items: center;
    gap: 16px;
    padding: 16px 24px;
  }
  
  .mega-menu-item {
    padding: 14px 24px 14px 48px;
    font-size: 0.95rem;
    font-weight: 500;
    color: #374151;
    border-bottom: 1px solid rgba(5, 77, 45, 0.05);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    touch-action: manipulation;
    min-height: 48px;
    display: flex;
    align-items: center;
    -webkit-tap-highlight-color: rgba(5, 77, 45, 0.1);
  }

  .mega-menu-item:hover,
  .mega-menu-item:focus,
  .mega-menu-item:active {
    background: rgba(5, 77, 45, 0.08);
    color: #054d2d;
    padding-right: 32px;
    outline: none;
  }

  .mega-menu-item::before {
    content: '→';
    position: absolute;
    right: 24px;
    opacity: 0.5;
    transition: all 0.2s ease;
  }

  .mega-menu-item:hover::before {
    opacity: 1;
    transform: translateX(-4px);
  }

  .mega-menu-services {
    min-width: auto;
    max-width: 100%;
    padding: 8px 0 0;
  }

  .mega-menu-services-head {
    margin: 0 16px 10px;
    padding: 10px 12px;
    border-radius: 10px;
  }

  .mega-menu-services-head-text strong {
    font-size: 0.88rem;
  }

  .mega-menu-services-badge {
    font-size: 0.68rem;
  }

  .mega-menu-services-all {
    font-size: 0.75rem;
    padding: 6px 9px;
  }

  .mega-menu-services-grid {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .service-mega-item {
    border: none;
    border-radius: 0;
    border-bottom: 1px solid rgba(5, 77, 45, 0.08);
    padding: 12px 18px;
    grid-template-columns: 1fr auto;
    background: transparent;
  }

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

  .service-mega-item-content strong {
    font-size: 0.9rem;
  }

  .service-mega-item-arrow {
    font-size: 0.9rem;
    opacity: 0.65;
  }

  .section-title {
    font-size: 2.2rem;
  }

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

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

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

  .footer-content {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .request-call-form {
    padding: 30px;
  }

  .section {
    padding: 80px 0;
  }

  .hero {
    padding: 100px 0;
  }
}

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

.section {
  padding: 80px 0;
  position: relative;
}

.section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(circle at 10% 20%, rgba(5, 77, 45, 0.02) 0%, transparent 50%),
    radial-gradient(circle at 90% 80%, rgba(5, 77, 45, 0.02) 0%, transparent 50%);
  pointer-events: none;
  z-index: 0;
}

.section > .container {
  position: relative;
  z-index: 1;
}

  .hero {
    padding: 80px 0;
  }
}

/* About Section Modern */
.about-section-modern {
  background: linear-gradient(180deg, #f3f3f3 0%, #f3f3f3 100%);
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}

.about-section-modern::before {
  content: '';
  position: absolute;
  top: -100px;
  left: -100px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(5, 77, 45, 0.08) 0%, transparent 70%);
  border-radius: 50%;
  animation: float 20s ease-in-out infinite;
}

.about-section-modern::after {
  content: '';
  position: absolute;
  bottom: -150px;
  right: -150px;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(5, 77, 45, 0.06) 0%, transparent 70%);
  border-radius: 50%;
  animation: float 25s ease-in-out infinite reverse;
}

.about-grid-modern {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.about-image-modern {
  position: relative;
}

.about-image-wrapper-modern {
  position: relative;
  border-radius: 32px;
  overflow: hidden;
  box-shadow: 0 30px 80px rgba(5, 77, 45, 0.2);
  background: var(--white);
  padding: 8px;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.about-image-wrapper-modern::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(5, 77, 45, 0.1) 0%, rgba(5, 77, 45, 0.1) 100%);
  border-radius: 32px;
  z-index: -1;
  opacity: 0;
  transition: opacity 0.4s;
}

.about-image-wrapper-modern:hover {
  transform: translateY(-8px);
  box-shadow: 0 40px 100px rgba(5, 77, 45, 0.3);
}

.about-image-wrapper-modern:hover::before {
  opacity: 1;
}

.about-main-image {
  width: 100%;
  height: 450px;
  object-fit: cover;
  border-radius: 24px;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
}

.about-image-wrapper-modern:hover .about-main-image {
  transform: scale(1.08);
}

.about-image-overlay {
  position: absolute;
  inset: 8px;
  background: linear-gradient(to top, rgba(5, 77, 45, 0.4) 0%, transparent 60%);
  border-radius: 24px;
  z-index: 1;
  pointer-events: none;
  transition: opacity 0.4s;
}

.about-image-wrapper-modern:hover .about-image-overlay {
  opacity: 0.8;
}

.about-badge-image {
  position: absolute;
  bottom: 40px;
  right: 40px;
  background: rgba(243, 243, 243, 0.98);
  backdrop-filter: blur(20px);
  padding: 24px 36px;
  border-radius: 24px;
  text-align: center;
  box-shadow: 0 12px 40px rgba(5, 77, 45, 0.2);
  z-index: 2;
  border: 2px solid rgba(5, 77, 45, 0.2);
  transition: all 0.4s;
  animation: pulse 3s ease-in-out infinite;
}

.about-image-wrapper-modern:hover .about-badge-image {
  transform: scale(1.05);
  box-shadow: 0 16px 50px rgba(5, 77, 45, 0.3);
  border-color: var(--primary-green);
}

.badge-number {
  display: block;
  font-size: 3rem;
  font-weight: 800;
  background: var(--gradient-1);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  margin-bottom: 4px;
}

.badge-text {
  display: block;
  font-size: 0.95rem;
  color: var(--text-light);
  font-weight: 600;
  margin-top: 4px;
}

.about-content-modern {
  animation: fadeInUp 0.8s ease-out;
}

.about-features-modern {
  margin: 40px 0;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.about-feature-item {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  padding: 24px;
  background: rgba(243, 243, 243, 0.8);
  border-radius: 20px;
  border: 2px solid transparent;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.about-feature-item::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 4px;
  height: 0;
  background: var(--gradient-1);
  transition: height 0.4s ease;
}

.about-feature-item:hover {
  border-color: var(--primary-green);
  background: var(--white);
  transform: translateX(-8px);
  box-shadow: 0 8px 30px rgba(5, 77, 45, 0.15);
}

.about-feature-item:hover::before {
  height: 100%;
}

.about-feature-icon {
  width: 56px;
  height: 56px;
  background: linear-gradient(135deg, rgba(5, 77, 45, 0.1) 0%, rgba(5, 77, 45, 0.1) 100%);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  flex-shrink: 0;
  transition: all 0.4s;
  position: relative;
  z-index: 1;
  color: #054d2d;
}

.about-feature-icon svg {
  width: 28px;
  height: 28px;
}

.about-feature-item:hover .about-feature-icon {
  background: var(--gradient-1);
  transform: scale(1.1) rotate(5deg);
  box-shadow: 0 8px 20px rgba(5, 77, 45, 0.3);
}

.about-feature-content {
  flex: 1;
  position: relative;
  z-index: 1;
}

.about-feature-content h4 {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 8px;
  transition: color 0.3s;
}

.about-feature-item:hover .about-feature-content h4 {
  color: var(--primary-green);
}

.about-feature-content p {
  font-size: 0.95rem;
  color: var(--text-light);
  line-height: 1.7;
  margin: 0;
}

.about-description-modern {
  font-size: 1.1rem;
  color: var(--text-light);
  line-height: 1.8;
  margin-bottom: 50px;
}

.stats-grid-modern {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.stat-card-modern {
  background: var(--white);
  padding: 40px 30px;
  border-radius: 24px;
  text-align: center;
  box-shadow: 0 4px 20px rgba(5, 77, 45, 0.08);
  border: 2px solid transparent;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.stat-card-modern::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 4px;
  background: var(--gradient-1);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.4s;
}

.stat-card-modern:hover::before {
  transform: scaleX(1);
  transform-origin: left;
}

.stat-card-modern:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 40px rgba(5, 77, 45, 0.2);
  border-color: var(--primary-green);
}

.stat-card-modern.stat-primary-modern {
  background: var(--gradient-1);
  color: var(--white);
}

.stat-icon-modern {
  font-size: 2.5rem;
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #054d2d;
}

.stat-icon-modern svg {
  width: 40px;
  height: 40px;
}

.stat-card-modern .stat-number-modern {
  font-size: 3.5rem;
  font-weight: 800;
  color: var(--primary-green);
  margin-bottom: 12px;
  line-height: 1;
}

.stat-card-modern.stat-primary-modern .stat-number-modern {
  color: var(--white);
}

.stat-card-modern .stat-label-modern {
  font-size: 1rem;
  color: var(--text-light);
  font-weight: 500;
}

.stat-card-modern.stat-primary-modern .stat-label-modern {
  color: rgba(243, 243, 243, 0.95);
}

/* Services Section Modern */
.services-section-modern {
  background: transparent;
  padding: 60px 0;
}

/* Services Landing (Dedicated Services Page) */
.section-badge-glass {
  background: rgba(255, 255, 255, 0.82);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border: 1px solid rgba(5, 77, 45, 0.12);
  box-shadow: 0 12px 30px rgba(5, 77, 45, 0.12);
  color: var(--primary-green);
}

.services-landing {
  position: relative;
  overflow: hidden;
  padding: 120px 0 140px;
  background: linear-gradient(180deg, #f8faf9 0%, #f3f7f5 100%);
  isolation: isolate;
}

.services-landing > .container {
  position: relative;
  z-index: 2;
}

.services-landing-background {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  transform: translateZ(0);
}

.services-landing-background img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: blur(14px) saturate(1.05) brightness(0.9);
  transform: scale(1.08);
}

.services-landing-gradient {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 30%, rgba(5, 77, 45, 0.18) 0%, transparent 40%),
    radial-gradient(circle at 80% 20%, rgba(5, 77, 45, 0.12) 0%, transparent 32%),
    radial-gradient(circle at 60% 80%, rgba(5, 77, 45, 0.15) 0%, transparent 45%),
    linear-gradient(180deg, rgba(243, 243, 243, 0.6) 0%, rgba(243, 243, 243, 0.9) 100%);
  mix-blend-mode: screen;
  opacity: 0.85;
}

.services-landing-blobs {
  position: absolute;
  inset: -35% -5% auto -10%;
  height: 110%;
  background:
    radial-gradient(circle at 30% 30%, rgba(5, 77, 45, 0.12) 0%, transparent 35%),
    radial-gradient(circle at 70% 40%, rgba(5, 77, 45, 0.1) 0%, transparent 40%),
    radial-gradient(circle at 40% 70%, rgba(4, 120, 87, 0.12) 0%, transparent 42%),
    radial-gradient(circle at 80% 80%, rgba(12, 148, 110, 0.08) 0%, transparent 38%);
  filter: blur(48px);
  opacity: 0.6;
  mix-blend-mode: multiply;
  transform: translateZ(0);
}

.services-landing-header {
  text-align: center;
  max-width: 780px;
  margin: 0 auto 70px;
  color: var(--text-dark);
}

.services-landing-title {
  font-size: 3rem;
  margin-bottom: 18px;
}

.services-landing-subtitle {
  font-size: 1.1rem;
  line-height: 1.9;
  color: var(--text-medium);
  margin: 0 auto;
  max-width: 720px;
}

.services-landing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 28px;
  position: relative;
  z-index: 2;
}

.service-hero-card {
  background: rgba(255, 255, 255, 0.9);
  border-radius: 32px;
  box-shadow: 0 22px 65px rgba(5, 77, 45, 0.16);
  overflow: hidden;
  border: 1px solid rgba(5, 77, 45, 0.08);
  text-decoration: none;
  display: flex;
  flex-direction: column;
  transition: all 0.35s ease;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.service-hero-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 28px 80px rgba(5, 77, 45, 0.18);
}

.service-hero-card-media {
  position: relative;
  height: 260px;
  overflow: hidden;
}

.service-hero-card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.02);
  transition: transform 0.5s ease;
}

.service-hero-card:hover .service-hero-card-media img {
  transform: scale(1.08);
}

.service-hero-card-media::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(5, 77, 45, 0) 35%, rgba(5, 77, 45, 0.22) 100%);
}

.service-hero-card-check {
  position: absolute;
  left: 18px;
  bottom: 18px;
  width: 40px;
  height: 40px;
  border-radius: 14px;
  background: rgba(243, 243, 243, 0.9);
  color: var(--primary-green);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 26px rgba(5, 77, 45, 0.16);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.service-hero-card-body {
  position: relative;
  padding: 34px 28px 30px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.service-hero-card-icon {
  position: absolute;
  right: 24px;
  top: -34px;
  width: 68px;
  height: 68px;
  border-radius: 18px;
  background: linear-gradient(135deg, #f3f3f3 0%, #ffffff 100%);
  box-shadow: 0 14px 30px rgba(5, 77, 45, 0.12);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.9rem;
  color: var(--primary-green);
}

.service-hero-card-text h3 {
  font-size: 1.4rem;
  color: var(--text-dark);
  margin-bottom: 10px;
}

.service-hero-card-text p {
  margin: 0;
  color: var(--text-medium);
  line-height: 1.8;
  font-size: 1rem;
}

.service-hero-card-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--primary-green);
  font-weight: 700;
  margin-top: 4px;
  font-size: 0.95rem;
}

.service-hero-card:hover .service-hero-card-link {
  gap: 12px;
}

.service-hero-card-link svg {
  transition: transform 0.3s ease;
}

.service-hero-card:hover .service-hero-card-link svg {
  transform: translateX(-2px);
}

.no-services-message {
  text-align: center;
  font-size: 1.05rem;
  color: var(--text-medium);
}

@media (max-width: 768px) {
  .services-landing {
    padding: 80px 0 100px;
  }

  .services-landing-title {
    font-size: 2.2rem;
  }

  .services-landing-header {
    margin-bottom: 50px;
  }

  .service-hero-card-media {
    height: 220px;
  }

  .service-hero-card-icon {
    width: 58px;
    height: 58px;
    font-size: 1.6rem;
    top: -28px;
    right: 20px;
  }
}

/* Education Section Modern */
.education-section-modern {
  background: linear-gradient(135deg, #f3f3f3 0%, #f3f3f3 100%);
  padding: 60px 0;
  position: relative;
  overflow: hidden;
}

.education-section-modern::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(5, 77, 45, 0.08) 0%, transparent 70%);
  border-radius: 50%;
  transform: translate(50%, -50%);
}

.education-section-modern::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(5, 77, 45, 0.06) 0%, transparent 70%);
  border-radius: 50%;
  transform: translate(-50%, 50%);
}

.education-grid-modern {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 30px;
  margin-top: 50px;
  position: relative;
  z-index: 1;
}

/* Education Card - Now uses unified style */
.education-card-modern {
  padding: 40px;
  position: relative;
  overflow: hidden;
}

/* Unified Card Icon - For cards with images (service-card-overlay) */
.service-card-icon-wrapper {
  position: absolute;
  top: -30px;
  right: 32px;
  width: 60px;
  height: 60px;
  background: #f3f3f3;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 18px rgba(5, 77, 45, 0.08);
  z-index: 3;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.service-card-icon {
  font-size: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #054d2d;
  background: transparent;
  box-shadow: none;
}

.service-card-icon svg {
  width: 32px;
  height: 32px;
}

.service-card-overlay:hover .service-card-icon-wrapper {
  background: #f3f3f3;
  transform: scale(1.05);
  box-shadow: 0 8px 22px rgba(5, 77, 45, 0.12);
}

/* Unified Card Icon - For cards without images (education-card-modern) - Smaller */
.education-card-icon-modern {
  width: 56px;
  height: 56px;
  background: #f3f3f3;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  margin-bottom: 20px;
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  z-index: 2;
  color: var(--primary-green);
  box-shadow: 0 8px 20px rgba(5, 77, 45, 0.06);
  border: 1px solid rgba(5, 77, 45, 0.05);
}

.education-card-icon-modern svg {
  width: 28px;
  height: 28px;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.education-card-modern:hover .education-card-icon-modern {
  background: #f3f3f3;
  transform: scale(1.05);
  box-shadow: 0 10px 24px rgba(5, 77, 45, 0.08);
  color: var(--primary-green);
  border-color: rgba(5, 77, 45, 0.07);
}

.education-card-modern:hover .education-card-icon-modern svg {
  color: var(--primary-green);
}

/* Education card title and description now use unified styles above */

.education-card-full-content {
  margin-top: 20px;
  padding-top: 20px;
  border-top: 2px solid rgba(5, 77, 45, 0.1);
}

.education-content-text {
  font-family: inherit;
  font-size: 0.95rem;
  line-height: 1.9;
  color: var(--text-light);
  white-space: pre-wrap;
  margin: 0;
  direction: rtl;
  text-align: right;
}

.education-tips-section {
  margin-top: 80px;
  position: relative;
  z-index: 1;
}

.education-tips-card {
  background: var(--white);
  border-radius: 30px;
  padding: 50px;
  box-shadow: 0 20px 60px rgba(5, 77, 45, 0.15);
  border: 2px solid rgba(5, 77, 45, 0.1);
}

.education-tips-title {
  font-size: 2rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 40px;
  text-align: center;
  padding-bottom: 20px;
  border-bottom: 2px solid rgba(5, 77, 45, 0.1);
}

.education-tips-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

.education-tip-item {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  padding: 24px;
  background: rgba(5, 77, 45, 0.05);
  border-radius: 20px;
  border: 2px solid transparent;
  transition: all 0.3s;
}

.education-tip-item:hover {
  border-color: var(--primary-green);
  background: rgba(5, 77, 45, 0.1);
  transform: translateY(-4px);
}

.education-tip-icon {
  font-size: 2rem;
  flex-shrink: 0;
  color: #054d2d;
  display: flex;
  align-items: center;
  justify-content: center;
}

.education-tip-icon svg {
  width: 32px;
  height: 32px;
}

.education-tip-content h4 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 8px;
}

.education-tip-content p {
  font-size: 0.95rem;
  color: var(--text-light);
  line-height: 1.7;
  margin: 0;
}

/* News and Events Section */
.news-events-section-modern {
  background: linear-gradient(180deg, #f3f3f3 0%, #f3f3f3 100%);
  padding: 100px 0;
}

.news-grid-modern {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 30px;
  margin-top: 50px;
}

/* News Card Modern - Now uses unified style */
.news-card-modern {
  position: relative;
  overflow: hidden;
}

.news-card-image-wrapper {
  position: relative;
  width: 100%;
  height: 220px;
  overflow: hidden;
}

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

.news-card-modern:hover .news-card-image {
  transform: scale(1.1);
}

.news-card-category {
  position: absolute;
  top: 20px;
  right: 20px;
  background: rgba(243, 243, 243, 0.95);
  backdrop-filter: blur(10px);
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--primary-green);
  border: 2px solid var(--primary-green);
  z-index: 2;
}

.news-card-content {
  padding: 28px;
}

.news-card-date {
  font-size: 0.85rem;
  color: var(--text-light);
  margin-bottom: 12px;
  font-weight: 500;
}

/* News card title and summary now use unified styles above */

.section-header-modern {
  text-align: center;
  margin-bottom: 70px;
  position: relative;
  z-index: 1;
}

.section-badge-modern {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--glass-bg);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  padding: 10px 20px;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--primary-green);
  margin-bottom: 20px;
  box-shadow: 
    0 4px 16px rgba(5, 77, 45, 0.1),
    0 0 0 1px var(--glass-border),
    inset 0 1px 0 rgba(243, 243, 243, 0.6);
  border: 1px solid var(--glass-border);
}

.section-title-modern {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--text-dark);
  margin-bottom: 16px;
  line-height: 1.2;
  letter-spacing: -1px;
  background: linear-gradient(135deg, #054d2d 0%, #054d2d 50%, #054d2d 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.section-subtitle-modern {
  font-size: 1.1rem;
  color: var(--text-light);
  line-height: 1.8;
  max-width: 700px;
  margin: 0 auto;
}

.card-grid-modern {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
  gap: 32px;
  margin-top: 60px;
  position: relative;
  z-index: 1;
  align-items: stretch; /* تراز کردن ارتفاع کارت‌ها */
}

.doctors-grid-modern {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 32px;
  margin-top: 60px;
  position: relative;
  z-index: 1;
  align-items: stretch; /* تراز کردن ارتفاع کارت‌ها */
}

.education-grid-modern {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
  margin-top: 60px;
  align-items: stretch; /* تراز کردن ارتفاع کارت‌ها */
}

.stories-grid-modern {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
  gap: 32px;
  margin-top: 60px;
  align-items: stretch; /* تراز کردن ارتفاع کارت‌ها */
}

/* ============================================
   UNIFIED CARD DESIGN - Used for ALL cards
   ============================================ */

/* Base Card Styles - Applied to all card types - Luxury Design - Unified Height */
.service-card-overlay,
.story-card-enhanced,
.story-card-modern,
.education-card-modern,
.news-card-modern {
  position: relative;
  border-radius: 28px;
  overflow: hidden;
  box-shadow: var(--shadow-luxury);
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  background: var(--white);
  cursor: pointer;
  border: 1px solid rgba(243, 243, 243, 0.2);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  display: flex;
  flex-direction: column;
  height: 100%; /* تراز کردن ارتفاع */
  min-height: 500px; /* حداقل ارتفاع یکسان */
}

.service-card-overlay::before,
.story-card-enhanced::before,
.story-card-modern::before,
.education-card-modern::before,
.news-card-modern::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 4px;
  height: 0;
  background: var(--gradient-emerald-full);
  transition: height 0.4s ease;
  z-index: 1;
}

.service-card-overlay:hover,
.story-card-enhanced:hover,
.story-card-modern:hover,
.education-card-modern:hover,
.news-card-modern:hover {
  transform: translateY(-12px) scale(1.02);
  box-shadow: 
    var(--shadow-luxury-hover),
    0 0 0 2px rgba(5, 77, 45, 0.1),
    0 8px 24px rgba(5, 77, 45, 0.15);
  border-color: rgba(5, 77, 45, 0.4);
}

.service-card-overlay:hover::before,
.story-card-enhanced:hover::before,
.story-card-modern:hover::before,
.education-card-modern:hover::before,
.news-card-modern:hover::before {
  height: 100%;
}

/* Luxury Animations */
@keyframes float {
  0%, 100% {
    transform: translateY(0px) translateX(0px);
  }
  33% {
    transform: translateY(-20px) translateX(10px);
  }
  66% {
    transform: translateY(10px) translateX(-10px);
  }
}

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

@keyframes shimmer {
  0% {
    background-position: -200% 0;
  }
  100% {
    background-position: 200% 0;
  }
}

@keyframes rotate {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

/* Unified Image Wrapper - For all cards with images - Fixed Height */
.service-card-image-wrapper,
.story-video-modern,
.news-card-image-wrapper {
  position: relative;
  width: 100%;
  height: 260px; /* ارتفاع یکسان برای همه */
  overflow: hidden;
  flex-shrink: 0; /* جلوگیری از کوچک شدن */
}

.story-video-modern {
  height: 260px; /* یکسان با بقیه */
}

.news-card-image-wrapper {
  height: 260px; /* یکسان با بقیه */
}

/* Unified Image Styles */
.service-card-image,
.story-image-modern,
.news-card-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: blur(2px);
  transition: all 0.5s ease;
}

.story-image-modern,
.news-card-image {
  filter: none;
}

.service-card-overlay:hover .service-card-image,
.story-card-enhanced:hover .story-image-modern,
.news-card-modern:hover .news-card-image {
  filter: blur(1px);
  transform: scale(1.1);
}

.service-card-overlay:hover .service-card-image {
  filter: blur(1px);
  transform: scale(1.05);
}

/* Unified Card Content - Applied to all cards - Luxury Design - Flexible Height */
.service-card-content,
.story-content-modern,
.news-card-content {
  position: relative;
  background: linear-gradient(180deg, rgba(243, 243, 243, 0.95) 0%, rgba(243, 243, 243, 0.98) 100%);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  padding: 36px;
  margin-top: -40px;
  border-radius: 28px 28px 0 0;
  box-shadow: 
    0 -8px 32px rgba(5, 77, 45, 0.08),
    inset 0 1px 0 rgba(243, 243, 243, 0.6);
  z-index: 2;
  border-top: 1px solid rgba(243, 243, 243, 0.3);
  flex: 1; /* پر کردن فضای باقیمانده */
  display: flex;
  flex-direction: column;
  min-height: 0; /* برای جلوگیری از overflow */
}

/* For cards without images (education-card-modern) - Smaller Size */
.education-card-modern {
  padding: 32px;
  margin-top: 0;
  border-radius: 20px;
  background: linear-gradient(135deg, rgba(243, 243, 243, 0.95) 0%, rgba(248, 255, 254, 0.9) 100%);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  box-shadow: var(--shadow-luxury);
  border: 1px solid rgba(243, 243, 243, 0.3);
  display: flex;
  flex-direction: column;
  height: 100%; /* تراز با کارت‌های دیگر */
  min-height: 320px; /* ارتفاع کوچکتر */
}

.service-card-icon-wrapper {
  position: absolute;
  top: -30px;
  right: 32px;
  width: 64px;
  height: 64px;
  background: #f3f3f3;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 18px rgba(5, 77, 45, 0.08);
  z-index: 3;
  border: 1px solid rgba(5, 77, 45, 0.03);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.service-card-icon {
  font-size: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #054d2d;
}

.service-card-icon svg {
  width: 100%;
  height: 100%;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  stroke: currentColor;
}

.service-card-overlay:hover .service-card-icon {
  color: #054d2d;
}

.service-card-overlay:hover .service-card-icon svg {
  stroke: #054d2d;
  color: #054d2d;
}

/* Unified Check Badge - Applied to all cards with images */
.service-card-check,
.story-video-badge,
.story-success-badge,
.news-card-category {
  position: absolute;
  top: 20px;
  left: 20px;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 3;
}

.story-video-badge,
.story-success-badge,
.news-card-category {
  width: auto;
  height: auto;
  padding: 8px 16px;
  border-radius: 8px;
  font-size: 0.85rem;
  font-weight: 600;
  top: 20px;
  left: 20px;
}

.story-success-badge {
  background: var(--gradient-emerald-dark);
  backdrop-filter: blur(10px);
  color: var(--white);
  box-shadow: 0 4px 12px rgba(5, 77, 45, 0.4);
  display: flex;
  align-items: center;
  gap: 6px;
}

.story-video-badge {
  background: rgba(5, 77, 45, 0.8);
  color: var(--white);
  backdrop-filter: blur(10px);
  bottom: 20px;
  right: 20px;
  top: auto;
  left: auto;
}

.news-card-category {
  background: rgba(243, 243, 243, 0.95);
  backdrop-filter: blur(10px);
  color: var(--primary-green);
  border: 2px solid var(--primary-green);
  top: 20px;
  right: 20px;
  left: auto;
}

.service-card-check svg {
  filter: drop-shadow(0 2px 4px rgba(5, 77, 45, 0.3));
}

/* Unified Card Title - Applied to all cards */
.service-card-title,
.story-name-modern,
.education-card-title,
.news-card-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 12px;
  margin-top: 8px;
  letter-spacing: -0.3px;
  line-height: 1.3;
  transition: color 0.3s;
  position: relative;
  z-index: 2;
}

/* Smaller title for education cards */
.education-card-title {
  font-size: 1.25rem;
  margin-bottom: 10px;
}

.service-card-overlay:hover .service-card-title,
.story-card-enhanced:hover .story-name-modern,
.education-card-modern:hover .education-card-title,
.news-card-modern:hover .news-card-title {
  color: var(--primary-green);
  background: var(--gradient-emerald-full);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Unified Card Description - Applied to all cards */
.service-card-description,
.story-text-modern,
.education-card-description,
.news-card-summary {
  color: var(--text-light);
  line-height: 1.8;
  font-size: 1rem;
  margin: 0 0 20px 0;
  position: relative;
  z-index: 2;
}

/* Smaller description for education cards */
.education-card-description {
  font-size: 0.9rem;
  line-height: 1.7;
  margin: 0 0 16px 0;
}

/* Unified Card Link - Applied to all cards */
.service-card-link,
.story-card-link,
.education-card-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--primary-green);
  font-weight: 600;
  font-size: 0.95rem;
  margin-top: auto; /* فشردن به پایین کارت */
  padding: 10px 16px;
  background: rgba(5, 77, 45, 0.08);
  border-radius: 10px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  border: 1px solid rgba(5, 77, 45, 0.2);
  text-decoration: none;
  position: relative;
  z-index: 2;
  align-self: flex-start; /* تراز به راست */
}

/* Smaller link for education cards */
.education-card-link {
  font-size: 0.85rem;
  padding: 8px 14px;
  gap: 6px;
}

.service-card-link svg,
.story-card-link svg,
.education-card-link svg,
.education-link-arrow {
  transition: transform 0.3s;
}

.service-card-overlay:hover .service-card-link,
.story-card-enhanced:hover .story-card-link,
.education-card-modern:hover .education-card-link {
  background: var(--gradient-emerald-full);
  color: var(--white);
  transform: translateX(-4px);
  border-color: var(--primary-green);
  box-shadow: 0 4px 12px rgba(5, 77, 45, 0.3);
}

.service-card-overlay:hover .service-card-link svg,
.story-card-enhanced:hover .story-card-link svg,
.education-card-modern:hover .education-card-link svg,
.education-card-modern:hover .education-link-arrow {
  transform: translateX(-4px);
}

/* Legacy card-modern styles for compatibility */
.card-modern {
  background: var(--white);
  padding: 40px;
  border-radius: 24px;
  box-shadow: 0 4px 20px rgba(5, 77, 45, 0.08);
  border: 2px solid transparent;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.card-icon-modern {
  width: 80px;
  height: 80px;
  background: var(--gradient-2);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
  margin-bottom: 24px;
  box-shadow: 0 8px 20px rgba(5, 77, 45, 0.2);
  transition: all 0.4s;
}

.btn-outline-modern {
  background: transparent;
  color: var(--primary-green);
  border: 2px solid var(--primary-green);
  padding: 16px 32px;
  border-radius: 12px;
  font-size: 1rem;
  font-weight: 600;
  transition: all 0.3s;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
}

.btn-outline-modern:hover {
  background: var(--primary-green);
  color: var(--white);
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(5, 77, 45, 0.3);
}

/* Doctors Section Modern */
.doctors-section-modern {
  background: linear-gradient(135deg, #f3f3f3 0%, #f3f3f3 100%);
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}

.doctors-background-pattern {
  position: absolute;
  inset: 0;
  background-image: 
    radial-gradient(circle at 20% 30%, rgba(5, 77, 45, 0.05) 0%, transparent 50%),
    radial-gradient(circle at 80% 70%, rgba(5, 77, 45, 0.05) 0%, transparent 50%);
  z-index: 0;
}

.doctors-section-modern .container {
  position: relative;
  z-index: 1;
}

.doctors-grid-modern {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 50px;
}

.doctor-card-modern-link {
  text-decoration: none;
  color: inherit;
}

.doctor-card-modern-home {
  background: var(--white);
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(5, 77, 45, 0.08);
  border: 2px solid transparent;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
}

.doctor-card-modern-home::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 4px;
  background: var(--gradient-1);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.4s;
  z-index: 1;
}

.doctor-card-modern-home:hover::before {
  transform: scaleX(1);
  transform-origin: left;
}

.doctor-card-modern-home:hover {
  transform: translateY(-12px) scale(1.02);
  box-shadow: 0 20px 50px rgba(5, 77, 45, 0.25);
  border-color: var(--primary-green);
}

.doctor-image-modern-home {
  position: relative;
  width: 100%;
  height: 320px;
  overflow: hidden;
}

.doctor-photo-modern {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.doctor-card-modern-home:hover .doctor-photo-modern {
  transform: scale(1.1);
}

.doctor-image-overlay-modern {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(5, 77, 45, 0.3) 0%, transparent 50%);
  opacity: 0;
  transition: opacity 0.3s;
}

.doctor-card-modern-home:hover .doctor-image-overlay-modern {
  opacity: 1;
}

.doctor-badge-modern {
  position: absolute;
  top: 20px;
  left: 20px;
  width: 50px;
  height: 50px;
  background: rgba(5, 77, 45, 0.95);
  backdrop-filter: blur(10px);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  box-shadow: 0 4px 12px rgba(5, 77, 45, 0.3);
  z-index: 2;
  color: #054d2d;
}

.doctor-badge-modern svg {
  width: 24px;
  height: 24px;
}

.doctor-info-modern-home {
  padding: 28px;
  background: var(--white);
}

.doctor-name-modern-home {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 8px;
  letter-spacing: -0.3px;
}

.doctor-specialty-modern-home {
  color: var(--primary-green);
  font-weight: 600;
  font-size: 1rem;
  margin-bottom: 6px;
}

.doctor-experience-modern-home {
  color: var(--text-light);
  font-size: 0.9rem;
  font-weight: 500;
}

/* Stories Section Modern */
.stories-section-modern {
  background: linear-gradient(180deg, #f3f3f3 0%, #f3f3f3 100%);
  padding: 60px 0;
}

.stories-grid-modern {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 30px;
  margin-top: 50px;
}

/* Story Card Modern - Now uses unified style */
.story-card-modern {
  position: relative;
  overflow: hidden;
}

.story-video-modern {
  position: relative;
  width: 100%;
  height: 300px;
  overflow: hidden;
}

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

.story-video-modern video.story-image-modern {
  display: block;
}

.story-video-modern .story-play-btn-modern {
  pointer-events: none;
}

.story-card-modern:hover .story-image-modern {
  transform: scale(1.1);
}

.story-video-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(5, 77, 45, 0.4) 0%, transparent 50%);
  z-index: 1;
}

.story-play-btn-modern {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 80px;
  height: 80px;
  background: rgba(243, 243, 243, 0.95);
  backdrop-filter: blur(10px);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s;
  z-index: 2;
  box-shadow: 0 8px 24px rgba(5, 77, 45, 0.2);
}

.story-play-btn-modern:hover {
  transform: translate(-50%, -50%) scale(1.15);
  background: var(--gradient-1);
}

.play-icon {
  color: var(--primary-green);
  font-size: 1.5rem;
  margin-right: -4px;
}

.story-play-btn-modern:hover .play-icon {
  color: var(--white);
}

.story-video-badge {
  position: absolute;
  bottom: 20px;
  right: 20px;
  background: rgba(5, 77, 45, 0.7);
  color: var(--white);
  padding: 8px 16px;
  border-radius: 8px;
  font-size: 0.85rem;
  font-weight: 600;
  z-index: 2;
}

.story-content-modern {
  padding: 32px;
}

.story-header-modern {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 20px;
}

.story-avatar-modern {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  overflow: hidden;
  border: 3px solid var(--pale-green);
}

.story-avatar-modern img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.story-info-modern {
  flex: 1;
}

.story-name-modern {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 4px;
}

.story-details-modern {
  font-size: 0.9rem;
  color: var(--text-light);
}

.story-text-modern {
  color: var(--text-dark);
  line-height: 1.8;
  font-size: 1rem;
  flex: 1;
  margin-bottom: 20px;
}

/* FAQ Section Modern */
.faq-section-modern {
  background: linear-gradient(135deg, #f3f3f3 0%, #f3f3f3 100%);
  padding: 60px 0;
  position: relative;
  overflow: hidden;
}

.faq-section-modern::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(5, 77, 45, 0.1) 0%, transparent 70%);
  border-radius: 50%;
  transform: translate(50%, -50%);
}

.faq-section-modern::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(5, 77, 45, 0.08) 0%, transparent 70%);
  border-radius: 50%;
  transform: translate(-50%, 50%);
}

.faq-container-modern {
  max-width: 900px;
  margin: 50px auto 0;
  position: relative;
  z-index: 1;
}

.faq-item-modern {
  background: var(--white);
  border-radius: 24px;
  margin-bottom: 20px;
  box-shadow: 0 4px 20px rgba(5, 77, 45, 0.08);
  border: 2px solid transparent;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
}

.faq-item-modern::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 4px;
  height: 0;
  background: var(--gradient-1);
  transition: height 0.4s ease;
  z-index: 1;
}

.faq-item-modern:hover {
  box-shadow: 0 12px 40px rgba(5, 77, 45, 0.2);
  border-color: var(--primary-green);
  transform: translateY(-2px);
}

.faq-item-modern.active {
  border-color: var(--primary-green);
  box-shadow: 0 12px 40px rgba(5, 77, 45, 0.25);
}

.faq-item-modern.active::before {
  height: 100%;
}

.faq-question-modern {
  padding: 28px 32px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: 600;
  color: var(--text-dark);
  font-size: 1.15rem;
  transition: all 0.3s;
  background: var(--white);
  position: relative;
  z-index: 2;
}

.faq-question-modern:hover {
  color: var(--primary-green);
}

.faq-question-content {
  display: flex;
  align-items: center;
  gap: 16px;
  flex: 1;
}

.faq-question-icon {
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, rgba(5, 77, 45, 0.1) 0%, rgba(5, 77, 45, 0.1) 100%);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  flex-shrink: 0;
  transition: all 0.3s;
}

.faq-item-modern.active .faq-question-icon {
  background: var(--gradient-1);
  transform: scale(1.1);
  box-shadow: 0 4px 12px rgba(5, 77, 45, 0.3);
}

.faq-question-text {
  flex: 1;
  line-height: 1.6;
}

.faq-icon-modern {
  color: var(--primary-green);
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  flex-shrink: 0;
  background: rgba(5, 77, 45, 0.1);
  border-radius: 8px;
}

.faq-icon-modern svg {
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-icon-modern.open {
  background: var(--gradient-1);
  color: var(--white);
}

.faq-icon-modern.open svg {
  transform: rotate(180deg);
}

.faq-answer-modern {
  padding: 0 32px;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.6s ease-in-out, padding 0.6s ease-in-out;
  color: var(--text-light);
  line-height: 1.9;
  position: relative;
}

.faq-answer-modern.open {
  padding: 0 32px 28px;
  max-height: 500px;
}

.faq-item-modern.active .faq-answer-modern {
  max-height: 500px;
  padding: 0 32px 32px;
}

.faq-answer-content {
  padding-top: 8px;
  padding-right: 64px;
  position: relative;
}

.faq-answer-content::before {
  content: '';
  position: absolute;
  right: 0;
  top: 0;
  width: 3px;
  height: 100%;
  background: linear-gradient(180deg, var(--primary-green) 0%, rgba(5, 77, 45, 0.3) 100%);
  border-radius: 2px;
  opacity: 0;
  transition: opacity 0.3s;
}

.faq-answer-modern.open .faq-answer-content::before {
  opacity: 1;
}

/* Form Section Modern */
.form-section-modern {
  background: linear-gradient(135deg, #f3f3f3 0%, #f3f3f3 100%);
  padding: 60px 0;
  position: relative;
  overflow: hidden;
}

.form-section-modern::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(5, 77, 45, 0.05) 0%, transparent 70%);
  animation: pulse 20s ease-in-out infinite;
}

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

.request-call-form-modern {
  background: linear-gradient(135deg, rgba(243, 243, 243, 0.95) 0%, rgba(243, 243, 243, 0.9) 100%);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  padding: 60px;
  border-radius: 32px;
  box-shadow: 
    0 30px 80px rgba(5, 77, 45, 0.15),
    0 0 0 1px rgba(243, 243, 243, 0.5) inset,
    0 8px 32px rgba(5, 77, 45, 0.1);
  position: relative;
  border: 2px solid rgba(5, 77, 45, 0.1);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  max-width: 900px;
  margin: 0 auto;
  overflow: hidden;
  z-index: 1;
}

.request-call-form-modern::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(circle at 20% 30%, rgba(5, 77, 45, 0.08) 0%, transparent 50%),
    radial-gradient(circle at 80% 70%, rgba(5, 77, 45, 0.06) 0%, transparent 50%);
  z-index: -1;
  border-radius: 32px;
  opacity: 0.6;
}

.request-call-form-modern::after {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 4px;
  height: 0;
  background: var(--gradient-1);
  transition: height 0.4s ease;
  z-index: 0;
  border-radius: 32px 0 0 32px;
}

.request-call-form-modern:hover {
  box-shadow: 
    0 40px 100px rgba(5, 77, 45, 0.25),
    0 0 0 1px rgba(243, 243, 243, 0.6) inset,
    0 12px 40px rgba(5, 77, 45, 0.15);
  transform: translateY(-6px) scale(1.01);
  border-color: rgba(5, 77, 45, 0.3);
  background: linear-gradient(135deg, rgba(243, 243, 243, 0.98) 0%, rgba(243, 243, 243, 0.95) 100%);
}

.request-call-form-modern:hover::after {
  height: 100%;
}


.form-header-modern {
  margin-bottom: 40px;
}

.form-title-modern {
  font-size: 2rem;
  font-weight: 700;
  color: var(--text-dark);
  margin: 16px 0;
  letter-spacing: -0.3px;
}

.form-description-modern {
  color: var(--text-light);
  font-size: 1.05rem;
  line-height: 1.8;
}

.contact-form-modern {
  margin-top: 40px;
}

.form-grid-modern {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-bottom: 24px;
}

.form-group-modern {
  margin-bottom: 0;
}

.form-group-modern label {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 12px;
  color: var(--text-dark);
  font-weight: 600;
  font-size: 0.95rem;
}

.label-icon {
  color: var(--primary-green);
  opacity: 0.9;
  width: 22px;
  height: 22px;
  flex-shrink: 0;
}

.input-wrapper-modern {
  position: relative;
  display: flex;
  align-items: center;
}

.input-wrapper-modern .input-icon {
  position: absolute;
  right: 18px;
  color: var(--text-light);
  transition: all 0.3s;
  pointer-events: none;
  z-index: 1;
  flex-shrink: 0;
  width: 26px;
  height: 26px;
}

.form-group-modern input {
  width: 100%;
  padding: 18px 24px;
  border: 2px solid rgba(229, 231, 235, 0.5);
  border-radius: 14px;
  font-size: 1rem;
  font-family: inherit;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  background: rgba(243, 243, 243, 0.6);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: 0 2px 8px rgba(5, 77, 45, 0.04),
              0 0 0 1px rgba(243, 243, 243, 0.3) inset;
}

.form-group-modern input::placeholder {
  color: var(--text-light);
  opacity: 0.6;
}

.form-group-modern input:focus {
  outline: none;
  border-color: rgba(5, 77, 45, 0.5);
  background: rgba(243, 243, 243, 0.8);
  box-shadow: 0 0 0 4px rgba(5, 77, 45, 0.15), 
              0 4px 12px rgba(5, 77, 45, 0.1),
              0 0 0 1px rgba(243, 243, 243, 0.4) inset;
  transform: translateY(-2px);
}

.form-group-modern input:focus + .input-icon,
.input-wrapper-modern:focus-within .input-icon {
  color: var(--primary-green);
  transform: scale(1.1);
}

.form-select-modern {
  width: 100%;
  padding: 18px 24px 18px 24px;
  border: 2px solid rgba(229, 231, 235, 0.5);
  border-radius: 14px;
  font-size: 1rem;
  font-family: inherit;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  background: rgba(243, 243, 243, 0.6);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: 0 2px 8px rgba(5, 77, 45, 0.04),
              0 0 0 1px rgba(243, 243, 243, 0.3) inset;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg width='12' height='8' viewBox='0 0 12 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1L6 6L11 1' stroke='%2310b981' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: left 18px center;
  cursor: pointer;
}

.form-select-modern:focus {
  outline: none;
  border-color: rgba(5, 77, 45, 0.5);
  background: rgba(243, 243, 243, 0.8);
  box-shadow: 0 0 0 4px rgba(5, 77, 45, 0.15), 
              0 4px 12px rgba(5, 77, 45, 0.1),
              0 0 0 1px rgba(243, 243, 243, 0.4) inset;
  transform: translateY(-2px);
}

.form-select-modern option {
  padding: 12px;
}

.btn-full-modern {
  width: 100%;
  justify-content: center;
}

.btn-submit-modern {
  position: relative;
  overflow: hidden;
  margin-top: 8px;
  padding: 18px 32px;
  font-size: 1.05rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.btn-submit-modern::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(243, 243, 243, 0.3), transparent);
  transition: left 0.5s;
}

.btn-submit-modern:hover::before {
  left: 100%;
}

.btn-submit-modern:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(5, 77, 45, 0.4);
}

.btn-submit-modern:active {
  transform: translateY(0);
}

.btn-submit-modern svg {
  transition: transform 0.3s;
}

.btn-submit-modern:hover svg {
  transform: translateX(4px);
}

.form-footer-modern {
  margin-top: 40px;
  padding-top: 40px;
  border-top: 1px solid var(--border-color);
}

.form-footer-modern p {
  color: var(--text-light);
  font-size: 1rem;
  line-height: 1.8;
  text-align: center;
}

/* Responsive Design for Modern Sections */
@media (max-width: 1024px) {
  .hero-content-modern {
    grid-template-columns: 1fr;
    gap: 50px;
  }
  
  .hero-title-modern {
    font-size: 2.8rem;
  }
  
  .about-grid-modern {
    grid-template-columns: 1fr;
    gap: 50px;
  }
  
  .about-main-image {
    height: 350px;
  }
  
  .about-features-modern {
    margin: 30px 0;
    gap: 20px;
  }
  
  .about-feature-item {
    padding: 20px;
  }
  
  .about-feature-icon {
    width: 48px;
    height: 48px;
    font-size: 1.5rem;
  }
  
  .stats-grid-modern {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .form-grid-modern {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .request-call-form-modern {
    padding: 40px 30px;
  }
  
  .form-title-modern {
    font-size: 1.75rem;
  }
  
  .form-group-modern input {
    padding: 16px 20px;
  }
  
  .label-icon {
    width: 20px;
    height: 20px;
  }
  
  .card-grid-modern {
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  }
  
  .doctors-grid-modern {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }
  
  .education-grid-modern {
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 24px;
  }
  
  .education-card-modern {
    padding: 32px;
  }
}

@media (max-width: 768px) {
  .hero-modern {
    padding: 80px 0;
    min-height: auto;
  }
  
  .hero-title-modern {
    font-size: 2.2rem;
  }
  
  .section-title-modern {
    font-size: 2rem;
  }
  
  .card-grid-modern {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  
  .doctors-grid-modern {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .education-grid-modern {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .education-card-modern {
    padding: 28px;
  }
  
  .education-card-icon-modern {
    width: 60px;
    height: 60px;
    font-size: 1.8rem;
    margin-bottom: 20px;
  }
  
  .education-card-title {
    font-size: 1.2rem;
  }
  
  .education-tips-card {
    padding: 30px;
  }
  
  .education-tips-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .news-grid-modern {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  
  .news-card-image-wrapper {
    height: 200px;
  }
  
  .service-card-image-wrapper {
    height: 200px;
  }
  
  .service-card-content {
    padding: 24px;
    margin-top: -30px;
  }
  
  .service-card-icon-wrapper {
    width: 54px;
    height: 54px;
    top: -25px;
    right: 24px;
    background: #f3f3f3;
    border-radius: 14px;
    box-shadow: 0 5px 16px rgba(5, 77, 45, 0.08);
  }
  
  .service-card-icon {
    font-size: 1.5rem;
  }
  
  .service-card-check {
    top: 16px;
    left: 16px;
    width: 28px;
    height: 28px;
  }
  
  .service-card-check svg {
    width: 18px;
    height: 18px;
  }
  
  .service-card-title {
    font-size: 1.3rem;
    margin-top: 4px;
  }
  
  .service-card-description {
    font-size: 0.95rem;
  }
  
  .doctors-grid-modern {
    grid-template-columns: 1fr;
  }
  
  .stories-grid-modern {
    grid-template-columns: 1fr;
  }
  
  .stats-grid-modern {
    grid-template-columns: 1fr;
  }
  
  .about-main-image {
    height: 300px;
  }
  
  .about-badge-image {
    bottom: 20px;
    right: 20px;
    padding: 16px 24px;
  }
  
  .badge-number {
    font-size: 2.2rem;
  }
  
  .about-feature-item {
    flex-direction: column;
    text-align: center;
    padding: 20px;
  }
  
  .about-feature-icon {
    margin: 0 auto;
  }
  
  .about-features-modern {
    margin: 30px 0;
    gap: 20px;
  }
  
  .request-call-form-modern {
    padding: 40px 30px;
  }
  
  .hero-floating-card {
    display: none;
  }
  
  .faq-question-modern {
    padding: 20px 24px;
    font-size: 1rem;
  }
  
  .faq-question-icon {
    width: 40px;
    height: 40px;
    font-size: 1.3rem;
  }
  
  .faq-answer-modern.open {
    padding: 0 24px 20px;
  }
  
  .faq-answer-content {
    padding-right: 48px;
    font-size: 0.95rem;
  }
  
  .faq-icon-modern {
    width: 28px;
    height: 28px;
  }
}

@media (max-width: 480px) {
  .service-card-image-wrapper {
    height: 180px;
  }
  
  .service-card-content {
    padding: 20px;
    margin-top: -25px;
  }
  
  .service-card-title {
    font-size: 1.2rem;
  }
  
  .service-card-description {
    font-size: 0.9rem;
  }
  
  .doctors-grid-modern {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  
  .form-section-modern {
    padding: 40px 0;
  }
  
  .request-call-form-modern {
    padding: 30px 24px;
    border-radius: 20px;
  }
  
  .form-title-modern {
    font-size: 1.5rem;
  }
  
  .form-description-modern {
    font-size: 0.95rem;
  }
  
  .form-group-modern input,
  .form-select-modern {
    padding: 14px 18px;
    font-size: 0.95rem;
  }
  
  .form-select-modern {
    background-position: left 14px center;
  }
  
  .label-icon {
    width: 18px;
    height: 18px;
  }
  
  .btn-submit-modern {
    padding: 16px 24px;
    font-size: 1rem;
  }
}

/* About Page Enhanced Styles */
.about-value-item {
  cursor: pointer;
}

.about-value-item:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 32px rgba(5, 77, 45, 0.2), 0 0 0 1px rgba(243, 243, 243, 0.3) inset !important;
  border-color: rgba(5, 77, 45, 0.4) !important;
}

.about-value-item:hover .value-item-accent {
  height: 100%;
}

.about-value-item .card-icon-modern svg {
  color: #f3f3f3 !important;
}

.about-value-item:hover .card-icon-modern {
  background: #054d2d !important;
  transform: translateY(-5px) scale(1.05);
  box-shadow: 0 12px 32px rgba(5, 77, 45, 0.4) !important;
}

.about-value-item:hover .card-icon-modern svg {
  color: #f3f3f3 !important;
}

.about-hero-section h1 {
  color: #f3f3f3 !important;
}

.about-section-icon svg,
.about-section-icon * {
  color: #f3f3f3 !important;
}

.about-mission-card svg,
.about-values-card svg,
.about-credentials-card svg {
  color: #f3f3f3 !important;
}

.about-value-item:hover h3 {
  color: var(--primary-green);
}

.about-mission-card:hover,
.about-values-card:hover,
.about-credentials-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 24px 70px rgba(5, 77, 45, 0.2), 0 0 0 1px rgba(243, 243, 243, 0.5) inset !important;
}

.about-credentials-card ul li:hover {
  transform: translateX(-4px);
  background: rgba(243, 243, 243, 0.8) !important;
  border-color: rgba(5, 77, 45, 0.3) !important;
}

@media (max-width: 768px) {
  .about-mission-card,
  .about-values-card,
  .about-credentials-card {
    padding: 32px 20px !important;
    margin-bottom: 30px !important;
    border-radius: 24px !important;
  }
  
  .about-mission-card h2,
  .about-values-card h2,
  .about-credentials-card h2 {
    font-size: 1.5rem !important;
  }
  
  .about-section-icon {
    width: 50px !important;
    height: 50px !important;
  }
  
  .about-section-icon span {
    font-size: 1.5rem !important;
  }
  
  .card-grid-modern {
    grid-template-columns: 1fr !important;
    gap: 20px !important;
  }
  
  .about-value-item {
    padding: 24px !important;
    border-radius: 16px !important;
  }
  
  .about-value-item h3 {
    font-size: 1.1rem !important;
  }
  
  .stats-grid-modern {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 16px !important;
  }
  
  .stat-card-modern {
    padding: 20px !important;
    border-radius: 16px !important;
  }
  
  .stat-card-modern div:first-of-type {
    width: 50px !important;
    height: 50px !important;
    margin-bottom: 16px !important;
  }
  
  .stat-card-modern div:first-of-type span {
    font-size: 1.5rem !important;
  }
  
  .stat-card-modern div:nth-of-type(2) {
    font-size: 2rem !important;
  }
  
  .stat-card-modern div:nth-of-type(3) {
    font-size: 0.9rem !important;
  }
  
  /* Doctor Specifications Mobile Styles */
  .doctor-specs-card {
    padding: 30px 20px !important;
    margin-top: 30px !important;
    border-radius: 24px !important;
  }
  
  .doctor-specs-card h2 {
    font-size: 1.5rem !important;
  }
  
  .doctor-specs-card > div:first-child {
    display: grid !important;
    grid-template-columns: 1fr !important;
    gap: 30px !important;
  }
  
  .doctor-profile-section {
    text-align: center;
  }
  
  .doctor-profile-section > div > div:first-child {
    width: 150px !important;
    height: 150px !important;
    margin: 0 auto 16px !important;
  }
  
  .doctor-profile-section h3 {
    font-size: 1.4rem !important;
    margin-bottom: 8px !important;
  }
  
  .doctor-profile-section p {
    font-size: 1rem !important;
  }
  
  .doctor-details-section {
    width: 100%;
  }
  
  .doctor-info-item {
    padding: 20px !important;
    border-radius: 14px !important;
    margin-bottom: 16px !important;
    display: block !important;
  }
  
  .doctor-info-item > div:first-child {
    display: flex !important;
    align-items: center !important;
    gap: 10px !important;
    margin-bottom: 12px !important;
    flex-wrap: nowrap !important;
    white-space: nowrap !important;
    width: 100% !important;
  }
  
  .doctor-info-item h4 {
    font-size: 1rem !important;
    white-space: nowrap !important;
    overflow: hidden !important;
    text-overflow: ellipsis !important;
    flex: 1 !important;
    min-width: 0 !important;
  }
  
  .doctor-info-item > div:first-child > span {
    width: 36px !important;
    height: 36px !important;
    flex-shrink: 0 !important;
  }
  
  .doctor-info-item > div:first-child > span > span {
    font-size: 1rem !important;
  }
  
  .doctor-info-item ul {
    display: block !important;
    width: 100% !important;
    padding-right: 46px !important;
    font-size: 0.9rem !important;
    line-height: 1.7 !important;
    margin-top: 0 !important;
  }
  
  .doctor-info-item ul li {
    margin-bottom: 8px !important;
  }
}

/* Enhanced Appointment Form Styles */
.appointment-form-enhanced {
  animation: fadeInUp 0.6s ease-out;
}

.appointment-progress {
  position: relative;
}

.appointment-progress::before {
  content: '';
  position: absolute;
  top: 25px;
  right: 0;
  left: 0;
  height: 3px;
  background: var(--border-color);
  z-index: 1;
  border-radius: 2px;
}

.progress-step {
  animation: fadeInUp 0.5s ease-out;
}

.progress-step:nth-child(1) {
  animation-delay: 0.1s;
}

.progress-step:nth-child(3) {
  animation-delay: 0.2s;
}

.progress-circle {
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.progress-circle:hover {
  transform: scale(1.1);
}

.payment-section-enhanced {
  animation: fadeInUp 0.6s ease-out;
}

.payment-header {
  animation: fadeInUp 0.5s ease-out;
}

@keyframes pulse {
  0%, 100% {
    transform: scale(1);
    box-shadow: 0 8px 24px rgba(5, 77, 45, 0.3);
  }
  50% {
    transform: scale(1.05);
    box-shadow: 0 12px 32px rgba(5, 77, 45, 0.4);
  }
}

@keyframes progressPulse {
  0% {
    transform: scale(1);
    opacity: 0.6;
  }
  50% {
    transform: scale(1.2);
    opacity: 0.2;
  }
  100% {
    transform: scale(1.4);
    opacity: 0;
  }
}

.appointment-summary-card {
  animation: fadeInUp 0.6s ease-out 0.2s both;
  transition: all 0.3s;
}

.appointment-summary-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(5, 77, 45, 0.15);
}

.payment-form-section {
  animation: fadeInUp 0.6s ease-out 0.4s both;
}

/* Enhanced Input Focus States */
.form-group-modern input:focus,
.form-select-modern:focus {
  transform: translateY(-2px);
}

.form-group-modern input:not(:placeholder-shown) {
  border-color: var(--primary-green);
  background: rgba(5, 77, 45, 0.02);
}

/* Smooth Transitions */
.request-call-form-modern {
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Progress Line Animation */
.progress-line {
  position: relative;
  overflow: hidden;
}

.progress-line::after {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 0;
  height: 100%;
  background: var(--gradient-1);
  transition: width 0.6s ease-out;
  border-radius: 2px;
}

/* Progress Container Wrapper */
.progress-container-wrapper {
  animation: fadeInUp 0.6s ease-out;
}

/* Responsive Progress Steps */
@media (max-width: 768px) {
  .progress-container-wrapper {
    padding: 30px 25px !important;
  }

  .appointment-progress {
    gap: 30px !important;
  }
  
  .progress-step .progress-circle {
    width: 60px !important;
    height: 60px !important;
    font-size: 1.3rem !important;
  }
  
  .progress-step span {
    font-size: 0.9rem !important;
  }
  
  .appointment-summary-card {
    padding: 24px;
  }
  
  .payment-header h3 {
    font-size: 1.5rem;
  }
}

/* ============================================
   SERVICE DETAIL PAGE - ENHANCED STYLES
   ============================================ */

/* Service Detail Hero Section */
.service-detail-hero {
  position: relative;
  min-height: 500px;
  display: flex;
  align-items: center;
  padding: 100px 0;
  overflow: hidden;
  margin-bottom: 0;
  isolation: isolate;
}

.service-hero-background {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.service-hero-background > span {
  position: absolute !important;
  inset: 0;
  width: 100% !important;
  height: 100% !important;
}

.service-hero-image {
  object-fit: cover;
  filter: brightness(0.4);
}

.service-hero-overlay {
  position: absolute;
  inset: 0;
  background: transparent;
  z-index: 1;
}

.service-hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
  color: var(--white);
  animation: fadeInUp 0.8s ease-out;
}

.service-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
  padding: 12px 24px;
  border-radius: 50px;
  font-size: 0.95rem;
  font-weight: 600;
  margin-bottom: 30px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: var(--white);
  animation: fadeInUp 0.6s ease-out 0.2s both;
}

.service-hero-icon-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
}

.service-hero-title {
  font-size: 3.5rem;
  font-weight: 800;
  margin-bottom: 20px;
  line-height: 1.2;
  letter-spacing: -1px;
  color: var(--white) !important;
  background: none !important;
  -webkit-background-clip: unset !important;
  -webkit-text-fill-color: var(--white) !important;
  background-clip: unset !important;
  animation: fadeInUp 0.8s ease-out 0.4s both;
}

.service-hero-description {
  font-size: 1.2rem;
  margin-bottom: 40px;
  line-height: 1.8;
  opacity: 0.95;
  color: var(--white);
  animation: fadeInUp 0.8s ease-out 0.6s both;
}

.service-hero-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  animation: fadeInUp 0.8s ease-out 0.8s both;
}

/* Service Detail Section */
.service-detail-section {
  padding: 80px 0;
  background: linear-gradient(180deg, #f3f3f3 0%, #f3f3f3 100%);
}

.service-detail-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 30px;
  margin-bottom: 60px;
}

/* Service Content Card */
.service-content-card {
  background: #ffffff;
  border-radius: 28px;
  padding: 56px;
  box-shadow: var(--shadow-luxury);
  border: 1px solid rgba(243, 243, 243, 0.3);
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.service-content-card:hover {
  box-shadow: var(--shadow-luxury-hover);
  border-color: rgba(5, 77, 45, 0.3);
  transform: translateY(-8px) scale(1.01);
  background: #ffffff;
}

.service-content-header {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 30px;
  position: relative;
  z-index: 2;
}

.service-content-icon {
  width: 80px;
  height: 80px;
  background: rgba(5, 77, 45, 0.1);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-radius: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-green);
  flex-shrink: 0;
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 
    0 8px 24px rgba(5, 77, 45, 0.15),
    inset 0 1px 0 rgba(243, 243, 243, 0.3);
  border: 1px solid rgba(243, 243, 243, 0.2);
}

.service-content-card:hover .service-content-icon {
  background: #054d2d;
  transform: scale(1.15) rotate(8deg);
  box-shadow: 
    0 16px 40px rgba(5, 77, 45, 0.35),
    inset 0 1px 0 rgba(243, 243, 243, 0.2);
  border-color: rgba(243, 243, 243, 0.3);
}

.service-content-icon svg {
  width: 40px;
  height: 40px;
  transition: all 0.3s;
}

.service-content-card:hover .service-content-icon svg {
  stroke: var(--white);
  color: var(--white);
}

.service-content-title {
  font-size: 2rem;
  font-weight: 700;
  color: var(--text-dark);
  margin: 0;
  position: relative;
  z-index: 2;
}

.service-content-text {
  color: var(--text-dark);
  font-size: 1.05rem;
  line-height: 2;
  position: relative;
  z-index: 2;
}

/* Service Features Card */
.service-features-card {
  background: #ffffff;
  border-radius: 28px;
  padding: 48px;
  box-shadow: var(--shadow-luxury);
  border: 1px solid rgba(243, 243, 243, 0.3);
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  height: fit-content;
  position: sticky;
  top: 100px;
}

.service-features-card:hover {
  box-shadow: var(--shadow-luxury-hover);
  border-color: rgba(5, 77, 45, 0.3);
  transform: translateY(-8px) scale(1.02);
  background: #ffffff;
}

.service-features-header {
  margin-bottom: 30px;
  padding-bottom: 20px;
  border-bottom: 2px solid var(--border-color);
}

.service-features-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text-dark);
  margin: 0;
}

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

.service-feature-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 20px;
  background: #f9fafb;
  border-radius: 16px;
  transition: all 0.3s;
  border: 2px solid rgba(5, 77, 45, 0.1);
}

.service-feature-item:hover {
  background: var(--white);
  border-color: var(--primary-green);
  transform: translateX(-8px);
  box-shadow: 0 4px 16px rgba(5, 77, 45, 0.1);
}

.service-feature-icon {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.service-feature-text {
  color: var(--text-dark);
  font-size: 1rem;
  line-height: 1.7;
  font-weight: 500;
}

/* Service Stats Section */
.service-stats-section {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 60px;
}

.service-stat-card {
  background: var(--white);
  border-radius: 24px;
  padding: 40px 30px;
  text-align: center;
  box-shadow: 0 4px 20px rgba(5, 77, 45, 0.08);
  border: 2px solid transparent;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.service-stat-card::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 4px;
  background: #054d2d;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.4s;
}

.service-stat-card:hover::before {
  transform: scaleX(1);
  transform-origin: left;
}

.service-stat-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 40px rgba(5, 77, 45, 0.2);
  border-color: var(--primary-green);
}

.service-stat-card.service-stat-primary {
  background: #054d2d;
  color: var(--white);
}

.service-stat-icon {
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-green);
}

.service-stat-card.service-stat-primary .service-stat-icon {
  color: var(--white);
}

.service-stat-icon svg {
  width: 48px;
  height: 48px;
}

.service-stat-number {
  font-size: 3.5rem;
  font-weight: 800;
  color: var(--primary-green);
  margin-bottom: 12px;
  line-height: 1;
}

.service-stat-card.service-stat-primary .service-stat-number {
  color: var(--white);
}

.service-stat-label {
  font-size: 1.1rem;
  color: var(--text-light);
  font-weight: 600;
}

.service-stat-card.service-stat-primary .service-stat-label {
  color: rgba(243, 243, 243, 0.95);
}

/* Service CTA Section */
.service-cta-section {
  margin-bottom: 60px;
}

.service-cta-card {
  background: #054d2d;
  border-radius: 30px;
  padding: 60px;
  text-align: center;
  box-shadow: 0 20px 60px rgba(5, 77, 45, 0.25);
  position: relative;
  overflow: hidden;
}

.service-cta-card::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(243, 243, 243, 0.1) 0%, transparent 70%);
  animation: pulse 20s ease-in-out infinite;
}

.service-cta-content {
  position: relative;
  z-index: 2;
  margin-bottom: 40px;
}

.service-cta-title {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 16px;
  line-height: 1.2;
}

.service-cta-description {
  font-size: 1.2rem;
  color: rgba(243, 243, 243, 0.9);
  line-height: 1.8;
  max-width: 600px;
  margin: 0 auto;
}

.service-cta-actions {
  position: relative;
  z-index: 2;
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.service-cta-actions .btn-primary-modern {
  background: var(--white);
  color: var(--primary-green);
}

.service-cta-actions .btn-primary-modern:hover {
  background: rgba(243, 243, 243, 0.95);
  transform: translateY(-3px);
}

.service-cta-actions .btn-secondary-modern {
  background: rgba(243, 243, 243, 0.2);
  color: var(--white);
  border-color: rgba(243, 243, 243, 0.5);
}

.service-cta-actions .btn-secondary-modern:hover {
  background: rgba(243, 243, 243, 0.3);
  border-color: var(--white);
}

/* Service Related Section */
.service-related-section {
  background: linear-gradient(180deg, #f3f3f3 0%, #f3f3f3 100%);
  padding: 80px 0;
}

/* Responsive Design for Service Detail */
@media (max-width: 1024px) {
  .service-detail-grid {
    grid-template-columns: 1fr;
  }
  
  .service-features-card {
    position: static;
  }
  
  .service-stats-section {
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
  }
  
  .service-hero-title {
    font-size: 2.8rem;
  }
}

@media (max-width: 768px) {
  .service-detail-hero {
    min-height: 400px;
    padding: 80px 0;
  }
  
  .service-hero-title {
    font-size: 2.2rem;
  }
  
  .service-hero-description {
    font-size: 1rem;
  }
  
  .service-content-card {
    padding: 32px 24px;
  }
  
  .service-content-header {
    flex-direction: column;
    text-align: center;
  }
  
  .service-content-title {
    font-size: 1.5rem;
  }
  
  .service-features-card {
    padding: 32px 24px;
  }
  
  .service-stats-section {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .service-cta-card {
    padding: 40px 30px;
  }
  
  .service-cta-title {
    font-size: 1.8rem;
  }
  
  .service-cta-description {
    font-size: 1rem;
  }
  
  .service-hero-actions,
  .service-cta-actions {
    flex-direction: column;
    width: 100%;
  }
  
  .service-hero-actions .btn-primary-modern,
  .service-hero-actions .btn-secondary-modern,
  .service-cta-actions .btn-primary-modern,
  .service-cta-actions .btn-secondary-modern {
    width: 100%;
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .service-hero-title {
    font-size: 1.8rem;
  }
  
  .service-content-card {
    padding: 24px 20px;
  }
  
  .service-features-card {
    padding: 24px 20px;
  }
  
  .service-feature-item {
    padding: 16px;
  }
  
  .service-cta-card {
    padding: 30px 24px;
  }
  
  .service-cta-title {
    font-size: 1.5rem;
  }
}

/* ============================================
   DOCTOR DETAIL PAGE - ENHANCED STYLES
   ============================================ */

/* Doctor Detail Hero Section */
.doctor-detail-hero {
  position: relative;
  min-height: 500px;
  display: flex;
  align-items: center;
  padding: 100px 0;
  overflow: hidden;
  margin-bottom: 0;
}

.doctor-hero-background {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.doctor-hero-background > span {
  position: absolute !important;
  inset: 0;
  width: 100% !important;
  height: 100% !important;
}

.doctor-hero-image {
  object-fit: cover;
  filter: brightness(0.4);
}

.doctor-hero-overlay {
  position: absolute;
  inset: 0;
  background: transparent;
  z-index: 1;
}

.doctor-hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
  color: var(--white);
  animation: fadeInUp 0.8s ease-out;
}

.doctor-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
  padding: 12px 24px;
  border-radius: 50px;
  font-size: 0.95rem;
  font-weight: 600;
  margin-bottom: 30px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: var(--white);
  animation: fadeInUp 0.6s ease-out 0.2s both;
}

.doctor-hero-icon-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
}

.doctor-hero-title {
  font-size: 3.5rem;
  font-weight: 800;
  margin-bottom: 16px;
  line-height: 1.2;
  letter-spacing: -1px;
  color: var(--white) !important;
  background: none !important;
  -webkit-background-clip: unset !important;
  -webkit-text-fill-color: var(--white) !important;
  background-clip: unset !important;
  animation: fadeInUp 0.8s ease-out 0.4s both;
}

.doctor-hero-specialty {
  font-size: 1.3rem;
  margin-bottom: 20px;
  opacity: 0.95;
  font-weight: 600;
  color: var(--white);
  animation: fadeInUp 0.8s ease-out 0.5s both;
}

.doctor-hero-description {
  font-size: 1.2rem;
  margin-bottom: 40px;
  line-height: 1.8;
  opacity: 0.95;
  color: var(--white);
  animation: fadeInUp 0.8s ease-out 0.6s both;
}

.doctor-hero-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  animation: fadeInUp 0.8s ease-out 0.8s both;
}

/* Doctor Detail Section */
.doctor-detail-section {
  padding: 80px 0;
  background: linear-gradient(180deg, #f3f3f3 0%, #f3f3f3 100%);
}

.doctor-detail-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  margin-bottom: 60px;
}

/* Doctor Info Card */
.doctor-info-card {
  background: #ffffff;
  border-radius: 28px;
  padding: 56px;
  box-shadow: var(--shadow-luxury);
  border: 1px solid rgba(243, 243, 243, 0.3);
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.doctor-info-card:hover {
  box-shadow: var(--shadow-luxury-hover);
  border-color: rgba(5, 77, 45, 0.3);
  transform: translateY(-8px) scale(1.01);
  background: #ffffff;
}

.doctor-info-header {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-bottom: 30px;
  padding-bottom: 30px;
  border-bottom: 2px solid var(--border-color);
  position: relative;
  z-index: 2;
}

.doctor-info-image-wrapper {
  width: 120px;
  height: 120px;
  border-radius: 20px;
  overflow: hidden;
  border: 3px solid var(--pale-green);
  box-shadow: 0 8px 24px rgba(5, 77, 45, 0.2);
  flex-shrink: 0;
}

.doctor-info-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.doctor-info-basic {
  flex: 1;
}

.doctor-info-name {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 8px;
  position: relative;
  z-index: 2;
}

.doctor-info-specialty {
  color: var(--primary-green);
  font-weight: 600;
  font-size: 1.1rem;
  position: relative;
  z-index: 2;
}

.doctor-info-details {
  display: flex;
  flex-direction: column;
  gap: 20px;
  position: relative;
  z-index: 2;
}

.doctor-info-item {
  display: block;
  padding: 20px;
  background: #f9fafb;
  border-radius: 16px;
  transition: all 0.3s;
  border: 2px solid rgba(5, 77, 45, 0.1);
}

.doctor-info-item:hover {
  background: var(--white);
  border-color: var(--primary-green);
  transform: translateX(-8px);
  box-shadow: 0 4px 16px rgba(5, 77, 45, 0.1);
}

/* Doctor Info Item Title - Keep in one line */
.doctor-info-item > div:first-child {
  display: flex !important;
  align-items: center !important;
  gap: 12px !important;
  flex-wrap: nowrap !important;
  white-space: nowrap !important;
  width: 100% !important;
  margin-bottom: 12px !important;
}

.doctor-info-item > div:first-child > span {
  flex-shrink: 0 !important;
}

.doctor-info-item h4 {
  white-space: nowrap !important;
  overflow: hidden !important;
  text-overflow: ellipsis !important;
  flex: 1 !important;
  min-width: 0 !important;
  margin: 0 !important;
}

/* Doctor Info Item Content - Below title */
.doctor-info-item ul {
  display: block !important;
  width: 100% !important;
  margin-top: 0 !important;
}

.doctor-info-icon {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  background: rgba(5, 77, 45, 0.1);
  border-radius: 12px;
  color: var(--primary-green);
}

.doctor-info-content {
  flex: 1;
}

.doctor-info-label {
  font-size: 0.9rem;
  color: var(--text-light);
  margin-bottom: 6px;
  font-weight: 500;
}

.doctor-info-value {
  font-size: 1rem;
  color: var(--text-dark);
  font-weight: 600;
  line-height: 1.6;
}

/* Doctor Articles Card */
.doctor-articles-card {
  background: #ffffff;
  border-radius: 28px;
  padding: 48px;
  box-shadow: var(--shadow-luxury);
  border: 1px solid rgba(243, 243, 243, 0.3);
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  height: fit-content;
  position: sticky;
  top: 100px;
}

.doctor-articles-card:hover {
  box-shadow: var(--shadow-luxury-hover);
  border-color: rgba(5, 77, 45, 0.3);
  transform: translateY(-8px) scale(1.02);
  background: #ffffff;
}

.doctor-articles-header {
  margin-bottom: 30px;
  padding-bottom: 20px;
  border-bottom: 2px solid var(--border-color);
}

.doctor-articles-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text-dark);
  margin: 0;
}

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

.doctor-article-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 20px;
  background: #f9fafb;
  border-radius: 16px;
  transition: all 0.3s;
  border: 2px solid rgba(5, 77, 45, 0.1);
}

.doctor-article-item:hover {
  background: var(--white);
  border-color: var(--primary-green);
  transform: translateX(-8px);
  box-shadow: 0 4px 16px rgba(5, 77, 45, 0.1);
}

.doctor-article-icon {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-green);
}

.doctor-article-text {
  color: var(--text-dark);
  font-size: 1rem;
  line-height: 1.7;
  font-weight: 500;
}

/* Doctor Stats Section */
.doctor-stats-section {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 60px;
}

.doctor-stat-card {
  background: var(--white);
  border-radius: 24px;
  padding: 40px 30px;
  text-align: center;
  box-shadow: 0 4px 20px rgba(5, 77, 45, 0.08);
  border: 2px solid transparent;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.doctor-stat-card::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 4px;
  background: #054d2d;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.4s;
}

.doctor-stat-card:hover::before {
  transform: scaleX(1);
  transform-origin: left;
}

.doctor-stat-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 40px rgba(5, 77, 45, 0.2);
  border-color: var(--primary-green);
}

.doctor-stat-card.doctor-stat-primary {
  background: #054d2d;
  color: var(--white);
}

.doctor-stat-icon {
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-green);
}

.doctor-stat-card.doctor-stat-primary .doctor-stat-icon {
  color: var(--white);
}

.doctor-stat-icon svg {
  width: 48px;
  height: 48px;
}

.doctor-stat-number {
  font-size: 3.5rem;
  font-weight: 800;
  color: var(--primary-green);
  margin-bottom: 12px;
  line-height: 1;
}

.doctor-stat-card.doctor-stat-primary .doctor-stat-number {
  color: var(--white);
}

.doctor-stat-label {
  font-size: 1.1rem;
  color: var(--text-light);
  font-weight: 600;
}

.doctor-stat-card.doctor-stat-primary .doctor-stat-label {
  color: rgba(243, 243, 243, 0.95);
}

/* Doctor CTA Section */
.doctor-cta-section {
  margin-bottom: 60px;
}

.doctor-cta-card {
  background: #054d2d;
  border-radius: 30px;
  padding: 60px;
  text-align: center;
  box-shadow: 0 20px 60px rgba(5, 77, 45, 0.25);
  position: relative;
  overflow: hidden;
}

.doctor-cta-card::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(243, 243, 243, 0.1) 0%, transparent 70%);
  animation: pulse 20s ease-in-out infinite;
}

.doctor-cta-content {
  position: relative;
  z-index: 2;
  margin-bottom: 40px;
}

.doctor-cta-title {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 16px;
  line-height: 1.2;
}

.doctor-cta-description {
  font-size: 1.2rem;
  color: rgba(243, 243, 243, 0.9);
  line-height: 1.8;
  max-width: 600px;
  margin: 0 auto;
}

.doctor-cta-actions {
  position: relative;
  z-index: 2;
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.doctor-cta-actions .btn-primary-modern {
  background: var(--white);
  color: var(--primary-green);
}

.doctor-cta-actions .btn-primary-modern:hover {
  background: rgba(243, 243, 243, 0.95);
  transform: translateY(-3px);
}

.doctor-cta-actions .btn-secondary-modern {
  background: rgba(243, 243, 243, 0.2);
  color: var(--white);
  border-color: rgba(243, 243, 243, 0.5);
}

.doctor-cta-actions .btn-secondary-modern:hover {
  background: rgba(243, 243, 243, 0.3);
  border-color: var(--white);
}

/* Doctor Related Section */
.doctor-related-section {
  background: linear-gradient(180deg, #f3f3f3 0%, #f3f3f3 100%);
  padding: 80px 0;
}

/* Responsive Design for Doctor Detail */
@media (max-width: 1024px) {
  .doctor-detail-grid {
    grid-template-columns: 1fr;
  }
  
  .doctor-articles-card {
    position: static;
  }
  
  .doctor-stats-section {
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
  }
  
  .doctor-hero-title {
    font-size: 2.8rem;
  }
}

@media (max-width: 768px) {
  .doctor-detail-hero {
    min-height: 400px;
    padding: 80px 0;
  }
  
  .doctor-hero-title {
    font-size: 2.2rem;
  }
  
  .doctor-hero-specialty {
    font-size: 1.1rem;
  }
  
  .doctor-hero-description {
    font-size: 1rem;
  }
  
  .doctor-info-card {
    padding: 32px 24px;
  }
  
  .doctor-info-header {
    flex-direction: column;
    text-align: center;
  }
  
  .doctor-info-image-wrapper {
    margin: 0 auto;
  }
  
  .doctor-articles-card {
    padding: 32px 24px;
  }
  
  .doctor-stats-section {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .doctor-cta-card {
    padding: 40px 30px;
  }
  
  .doctor-cta-title {
    font-size: 1.8rem;
  }
  
  .doctor-cta-description {
    font-size: 1rem;
  }
  
  .doctor-hero-actions,
  .doctor-cta-actions {
    flex-direction: column;
    width: 100%;
  }
  
  .doctor-hero-actions .btn-primary-modern,
  .doctor-hero-actions .btn-secondary-modern,
  .doctor-cta-actions .btn-primary-modern,
  .doctor-cta-actions .btn-secondary-modern {
    width: 100%;
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .doctor-hero-title {
    font-size: 1.8rem;
  }
  
  .doctor-info-card {
    padding: 24px 20px;
  }
  
  .doctor-articles-card {
    padding: 24px 20px;
  }
  
  .doctor-article-item {
    padding: 16px;
  }
  
  .doctor-cta-card {
    padding: 30px 24px;
  }
  
  .doctor-cta-title {
    font-size: 1.5rem;
  }
}

/* ============================================
   PATIENT STORIES PAGE - ENHANCED STYLES
   ============================================ */

/* Stories Hero Section */
.stories-hero-section {
  position: relative;
  min-height: 400px;
  display: flex;
  align-items: center;
  padding: 100px 0;
  overflow: hidden;
  background: linear-gradient(135deg, #f3f3f3 0%, #f3f3f3 50%, #f3f3f3 100%);
  margin-bottom: 0;
}

.stories-hero-background {
  position: absolute;
  inset: 0;
  z-index: 0;
  background-image: 
    radial-gradient(circle at 20% 50%, rgba(5, 77, 45, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 80% 80%, rgba(5, 77, 45, 0.1) 0%, transparent 50%);
  animation: float 20s ease-in-out infinite;
}

.stories-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(5, 77, 45, 0.05) 0%, rgba(5, 77, 45, 0.05) 100%);
  z-index: 1;
}

.stories-hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
  animation: fadeInUp 0.8s ease-out;
}

.stories-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: rgba(243, 243, 243, 0.95);
  backdrop-filter: blur(10px);
  padding: 12px 24px;
  border-radius: 50px;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--primary-green);
  margin-bottom: 30px;
  box-shadow: 0 8px 24px rgba(5, 77, 45, 0.2);
  animation: fadeInUp 0.6s ease-out 0.2s both;
}

.stories-hero-title {
  font-size: 3.5rem;
  font-weight: 800;
  margin-bottom: 20px;
  line-height: 1.2;
  letter-spacing: -1px;
  color: var(--text-dark);
  animation: fadeInUp 0.8s ease-out 0.4s both;
}

.stories-hero-description {
  font-size: 1.2rem;
  color: var(--text-light);
  line-height: 1.8;
  max-width: 600px;
  margin: 0 auto;
  animation: fadeInUp 0.8s ease-out 0.6s both;
}

/* Stories Main Section */
.stories-main-section {
  padding: 80px 0;
  background: linear-gradient(180deg, #f3f3f3 0%, #f3f3f3 100%);
}

/* Enhanced Story Card */
/* Story Card Enhanced - Now uses unified style */
.story-card-enhanced {
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.story-video-modern {
  position: relative;
  width: 100%;
  height: 320px;
  overflow: hidden;
  flex-shrink: 0;
}

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

.story-card-enhanced:hover .story-image-modern {
  transform: scale(1.1);
}

.story-video-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(5, 77, 45, 0.5) 0%, transparent 50%);
  z-index: 1;
  opacity: 0;
  transition: opacity 0.3s;
}

.story-card-enhanced:hover .story-video-overlay {
  opacity: 1;
}

.story-play-btn-modern {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 90px;
  height: 90px;
  background: rgba(243, 243, 243, 0.95);
  backdrop-filter: blur(10px);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s;
  z-index: 2;
  box-shadow: 0 8px 24px rgba(5, 77, 45, 0.2);
  border: 3px solid rgba(243, 243, 243, 0.5);
}

.story-play-btn-modern:hover {
  transform: translate(-50%, -50%) scale(1.15);
  background: var(--gradient-1);
  box-shadow: 0 12px 32px rgba(5, 77, 45, 0.4);
}

.play-icon {
  color: var(--primary-green);
  font-size: 1.8rem;
  margin-right: -4px;
  transition: color 0.3s;
}

.story-play-btn-modern:hover .play-icon {
  color: var(--white);
}

.story-video-badge {
  position: absolute;
  bottom: 20px;
  right: 20px;
  background: rgba(5, 77, 45, 0.8);
  color: var(--white);
  padding: 8px 16px;
  border-radius: 8px;
  font-size: 0.85rem;
  font-weight: 600;
  z-index: 2;
  backdrop-filter: blur(10px);
}

.story-success-badge {
  position: absolute;
  top: 20px;
  left: 20px;
  background: rgba(5, 77, 45, 0.95);
  backdrop-filter: blur(10px);
  color: var(--white);
  padding: 8px 16px;
  border-radius: 8px;
  font-size: 0.85rem;
  font-weight: 600;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 6px;
  box-shadow: 0 4px 12px rgba(5, 77, 45, 0.3);
}

.story-success-badge svg {
  width: 16px;
  height: 16px;
}

/* Story content modern - duplicate removed, using unified style above */

.story-header-modern {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 24px;
  padding-bottom: 20px;
  border-bottom: 2px solid var(--border-color);
}

.story-avatar-modern {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  overflow: hidden;
  border: 3px solid var(--pale-green);
  flex-shrink: 0;
  box-shadow: 0 4px 12px rgba(5, 77, 45, 0.2);
}

.story-avatar-modern img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.story-info-modern {
  flex: 1;
}

/* Story name now uses unified title style above */
.story-details-modern {
  font-size: 0.95rem;
  color: var(--text-light);
  font-weight: 500;
  position: relative;
  z-index: 2;
}

/* Story Treatment Info */
.story-treatment-info {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 24px;
  padding: 20px;
  background: var(--white);
  border-radius: 16px;
  border: 2px solid var(--primary-green);
  transition: all 0.3s;
}

.story-card-enhanced:hover .story-treatment-info {
  background: var(--white);
  border-color: var(--primary-green);
  box-shadow: 0 4px 16px rgba(5, 77, 45, 0.1);
}

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

.story-treatment-icon {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  background: rgba(5, 77, 45, 0.1);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-green);
}

.story-treatment-content {
  flex: 1;
}

.story-treatment-label {
  font-size: 0.85rem;
  color: var(--text-light);
  margin-bottom: 4px;
  font-weight: 500;
}

.story-treatment-value {
  font-size: 0.95rem;
  color: var(--text-dark);
  font-weight: 600;
}

/* Story text now uses unified description style above */

/* Stories CTA Section */
.stories-cta-section {
  padding: 80px 0;
  background: linear-gradient(135deg, #f3f3f3 0%, #f3f3f3 100%);
  position: relative;
  overflow: hidden;
}

.stories-cta-section::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(5, 77, 45, 0.05) 0%, transparent 70%);
  animation: pulse 20s ease-in-out infinite;
}

.stories-cta-card {
  background: var(--white);
  border-radius: 30px;
  padding: 60px;
  text-align: center;
  box-shadow: 0 20px 60px rgba(5, 77, 45, 0.15);
  border: 2px solid rgba(5, 77, 45, 0.1);
  position: relative;
  z-index: 1;
  max-width: 800px;
  margin: 0 auto;
  transition: all 0.3s;
}

.stories-cta-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 30px 80px rgba(5, 77, 45, 0.2);
  border-color: var(--primary-green);
}

.stories-cta-icon {
  margin-bottom: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-green);
}

.stories-cta-title {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--text-dark);
  margin-bottom: 20px;
  line-height: 1.2;
}

.stories-cta-description {
  font-size: 1.1rem;
  color: var(--text-light);
  line-height: 1.8;
  margin-bottom: 40px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.stories-cta-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* Responsive Design for Stories Page */
@media (max-width: 1024px) {
  .stories-hero-title {
    font-size: 2.8rem;
  }
  
  .stories-grid-modern {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .stories-hero-section {
    min-height: 300px;
    padding: 80px 0;
  }
  
  .stories-hero-title {
    font-size: 2.2rem;
  }
  
  .stories-hero-description {
    font-size: 1rem;
  }
  
  .stories-grid-modern {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  
  .story-video-modern {
    height: 280px;
  }
  
  .story-content-modern {
    padding: 24px;
  }
  
  .story-treatment-info {
    grid-template-columns: 1fr;
    gap: 12px;
  }
  
  .stories-cta-card {
    padding: 40px 30px;
  }
  
  .stories-cta-title {
    font-size: 1.8rem;
  }
  
  .stories-cta-description {
    font-size: 1rem;
  }
  
  .stories-cta-actions {
    flex-direction: column;
    width: 100%;
  }
  
  .stories-cta-actions .btn-primary-modern,
  .stories-cta-actions .btn-secondary-modern {
    width: 100%;
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .stories-hero-title {
    font-size: 1.8rem;
  }
  
  .story-video-modern {
    height: 240px;
  }
  
  .story-play-btn-modern {
    width: 70px;
    height: 70px;
  }
  
  .play-icon {
    font-size: 1.4rem;
  }
  
  .story-content-modern {
    padding: 20px;
  }
  
  .story-header-modern {
    flex-direction: column;
    text-align: center;
  }
  
  .story-avatar-modern {
    margin: 0 auto;
  }
  
  .stories-cta-card {
    padding: 30px 24px;
  }
  
  .stories-cta-title {
    font-size: 1.5rem;
  }
}

/* ============================================
   STORY DETAIL PAGE - ENHANCED STYLES
   ============================================ */

/* Story Detail Hero */
.story-detail-hero {
  position: relative;
  min-height: 500px;
  display: flex;
  align-items: center;
  padding: 100px 0;
  overflow: hidden;
  margin-bottom: 0;
}

.story-detail-hero-background {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.story-detail-hero-background > span {
  position: absolute !important;
  inset: 0;
  width: 100% !important;
  height: 100% !important;
}

.story-detail-hero-image {
  object-fit: cover;
  filter: brightness(0.4);
}

.story-detail-hero-overlay {
  position: absolute;
  inset: 0;
  background: transparent;
  z-index: 1;
}

.story-detail-hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
  color: var(--white);
  animation: fadeInUp 0.8s ease-out;
}

.story-detail-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: rgba(243, 243, 243, 0.2);
  backdrop-filter: blur(10px);
  padding: 12px 24px;
  border-radius: 50px;
  font-size: 0.95rem;
  font-weight: 600;
  margin-bottom: 30px;
  border: 1px solid rgba(243, 243, 243, 0.3);
  animation: fadeInUp 0.6s ease-out 0.2s both;
}

.story-detail-hero-title {
  font-size: 3.5rem;
  font-weight: 800;
  margin-bottom: 16px;
  line-height: 1.2;
  letter-spacing: -1px;
  color: var(--white) !important;
  background: none !important;
  -webkit-background-clip: unset !important;
  -webkit-text-fill-color: var(--white) !important;
  background-clip: unset !important;
  animation: fadeInUp 0.8s ease-out 0.4s both;
}

.story-detail-hero-subtitle {
  font-size: 1.3rem;
  margin-bottom: 20px;
  opacity: 0.95;
  font-weight: 600;
  animation: fadeInUp 0.8s ease-out 0.5s both;
}

.story-detail-hero-description {
  font-size: 1.2rem;
  margin-bottom: 40px;
  line-height: 1.8;
  opacity: 0.95;
  animation: fadeInUp 0.8s ease-out 0.6s both;
}

.story-detail-hero-icon-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
}

.story-detail-hero-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  animation: fadeInUp 0.8s ease-out 0.8s both;
}

/* Story Detail Section */
.story-detail-section {
  padding: 80px 0;
  background: linear-gradient(180deg, #f3f3f3 0%, #f3f3f3 100%);
}

.story-detail-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 30px;
  margin-bottom: 60px;
}

/* Story Detail Video Card */
.story-detail-video-card {
  background: var(--white);
  border-radius: 24px;
  padding: 0;
  box-shadow: 0 4px 20px rgba(5, 77, 45, 0.08);
  border: 2px solid transparent;
  transition: all 0.3s;
  overflow: hidden;
}

.story-detail-video-card:hover {
  box-shadow: 0 12px 40px rgba(5, 77, 45, 0.15);
  border-color: var(--primary-green);
  transform: translateY(-4px);
}

.story-detail-video-wrapper {
  position: relative;
  width: 100%;
  height: 450px;
  overflow: hidden;
}

.story-detail-video-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.story-detail-video-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(5, 77, 45, 0.6) 0%, transparent 50%);
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}

.story-detail-play-btn {
  width: 100px;
  height: 100px;
  background: rgba(243, 243, 243, 0.95);
  backdrop-filter: blur(10px);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s;
  border: 3px solid rgba(243, 243, 243, 0.5);
  box-shadow: 0 8px 24px rgba(5, 77, 45, 0.2);
}

.story-detail-play-btn:hover {
  transform: scale(1.15);
  background: var(--gradient-1);
  box-shadow: 0 12px 32px rgba(5, 77, 45, 0.4);
}

.story-detail-play-icon {
  color: var(--primary-green);
  font-size: 2rem;
  margin-right: -6px;
  transition: color 0.3s;
}

.story-detail-play-btn:hover .story-detail-play-icon {
  color: var(--white);
}

.story-detail-video-badge {
  position: absolute;
  top: 20px;
  left: 20px;
  background: rgba(5, 77, 45, 0.95);
  backdrop-filter: blur(10px);
  color: var(--white);
  padding: 8px 16px;
  border-radius: 8px;
  font-size: 0.85rem;
  font-weight: 600;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 6px;
  box-shadow: 0 4px 12px rgba(5, 77, 45, 0.3);
}

/* Story Detail Info Card */
.story-detail-info-card {
  background: var(--white);
  border-radius: 24px;
  padding: 40px;
  box-shadow: 0 4px 20px rgba(5, 77, 45, 0.08);
  border: 2px solid transparent;
  transition: all 0.3s;
  height: fit-content;
  position: sticky;
  top: 100px;
}

.story-detail-info-card:hover {
  box-shadow: 0 12px 40px rgba(5, 77, 45, 0.15);
  border-color: var(--primary-green);
  transform: translateY(-4px);
}

.story-detail-info-header {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 30px;
  padding-bottom: 30px;
  border-bottom: 2px solid var(--border-color);
}

.story-detail-avatar {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  overflow: hidden;
  border: 3px solid var(--pale-green);
  flex-shrink: 0;
  box-shadow: 0 4px 12px rgba(5, 77, 45, 0.2);
}

.story-detail-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.story-detail-info-basic {
  flex: 1;
}

.story-detail-info-name {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 8px;
}

.story-detail-info-diagnosis {
  color: var(--primary-green);
  font-weight: 600;
  font-size: 1rem;
}

.story-detail-info-items {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.story-detail-info-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 20px;
  background: var(--white);
  border-radius: 16px;
  transition: all 0.3s;
  border: 2px solid var(--primary-green);
}

.story-detail-info-item:hover {
  background: var(--white);
  border-color: var(--primary-green);
  transform: translateX(-8px);
  box-shadow: 0 4px 16px rgba(5, 77, 45, 0.1);
}

.story-detail-info-icon {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  background: rgba(5, 77, 45, 0.1);
  border-radius: 12px;
  color: var(--primary-green);
}

.story-detail-info-content {
  flex: 1;
}

.story-detail-info-label {
  font-size: 0.9rem;
  color: var(--text-light);
  margin-bottom: 6px;
  font-weight: 500;
}

.story-detail-info-value {
  font-size: 1rem;
  color: var(--text-dark);
  font-weight: 600;
  line-height: 1.6;
}

/* Story Detail Full Story Card */
.story-detail-full-story-card {
  background: var(--white);
  border-radius: 24px;
  padding: 50px;
  box-shadow: 0 4px 20px rgba(5, 77, 45, 0.08);
  border: 2px solid transparent;
  transition: all 0.3s;
  margin-bottom: 60px;
  position: relative;
  overflow: hidden;
}

.story-detail-full-story-card::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 4px;
  height: 0;
  background: var(--gradient-1);
  transition: height 0.4s ease;
  z-index: 1;
}

.story-detail-full-story-card:hover {
  box-shadow: 0 12px 40px rgba(5, 77, 45, 0.15);
  border-color: var(--primary-green);
  transform: translateY(-4px);
}

.story-detail-full-story-card:hover::before {
  height: 100%;
}

.story-detail-full-story-title {
  font-size: 2rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 30px;
  padding-bottom: 20px;
  border-bottom: 2px solid var(--border-color);
  position: relative;
  z-index: 2;
}

.story-detail-full-story-text {
  color: var(--text-dark);
  line-height: 2;
  font-size: 1.05rem;
  position: relative;
  z-index: 2;
}

.story-detail-full-story-text p {
  margin-bottom: 24px;
}

.story-detail-full-story-text p:last-child {
  margin-bottom: 0;
}

/* Story Detail Related Section */
.story-detail-related-section {
  margin-bottom: 60px;
}

.story-detail-related-title {
  font-size: 2rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 40px;
  text-align: center;
}

/* Story Detail Actions */
.story-detail-actions {
  text-align: center;
  margin-top: 40px;
}

/* Story Card Link in Stories Page */
.story-card-enhanced .story-card-link {
  margin-top: auto;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--primary-green);
  font-weight: 600;
  font-size: 0.95rem;
  padding: 10px 16px;
  background: rgba(5, 77, 45, 0.1);
  border-radius: 10px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  border: 1px solid transparent;
  text-decoration: none;
}

.story-card-enhanced .story-card-link svg {
  transition: transform 0.3s;
}

.story-card-enhanced:hover .story-card-link {
  background: var(--gradient-1);
  color: var(--white);
  transform: translateX(-4px);
  border-color: var(--primary-green);
}

.story-card-enhanced:hover .story-card-link svg {
  transform: translateX(-4px);
}

/* Responsive Design for Story Detail */
@media (max-width: 1024px) {
  .story-detail-grid {
    grid-template-columns: 1fr;
  }
  
  .story-detail-info-card {
    position: static;
  }
  
  .story-detail-hero-title {
    font-size: 2.8rem;
  }
}

@media (max-width: 768px) {
  .story-detail-hero {
    min-height: 400px;
    padding: 80px 0;
  }
  
  .story-detail-hero-title {
    font-size: 2.2rem;
  }
  
  .story-detail-hero-subtitle {
    font-size: 1.1rem;
  }
  
  .story-detail-hero-description {
    font-size: 1rem;
  }
  
  .story-detail-hero-actions {
    flex-direction: column;
    width: 100%;
  }
  
  .story-detail-hero-actions .btn-primary-modern,
  .story-detail-hero-actions .btn-secondary-modern {
    width: 100%;
    justify-content: center;
  }
  
  .story-detail-video-wrapper {
    height: 350px;
  }
  
  .story-detail-info-card {
    padding: 32px 24px;
  }
  
  .story-detail-info-header {
    flex-direction: column;
    text-align: center;
  }
  
  .story-detail-avatar {
    margin: 0 auto;
  }
  
  .story-detail-full-story-card {
    padding: 32px 24px;
  }
  
  .story-detail-full-story-title {
    font-size: 1.5rem;
  }
}

@media (max-width: 480px) {
  .story-detail-hero-title {
    font-size: 1.8rem;
  }
  
  .story-detail-video-wrapper {
    height: 280px;
  }
  
  .story-detail-play-btn {
    width: 80px;
    height: 80px;
  }
  
  .story-detail-play-icon {
    font-size: 1.6rem;
  }
  
  .story-detail-full-story-card {
    padding: 24px 20px;
  }
}

/* ============================================
   MODERN COLORFUL ENHANCEMENTS
   ============================================ */

/* Enhanced Button Styles with Vibrant Colors */
.btn-primary-modern {
  background: var(--gradient-rainbow);
  color: var(--white);
  box-shadow: var(--shadow-colored-rainbow);
  position: relative;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.btn-primary-modern::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(243, 243, 243, 0.3), transparent);
  transition: left 0.5s;
}

.btn-primary-modern:hover::before {
  left: 100%;
}

.btn-primary-modern:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: var(--shadow-colored-rainbow), 0 0 30px rgba(5, 77, 45, 0.4);
}

.btn-secondary-modern {
  background: var(--white);
  color: var(--primary-green);
  border: 2px solid var(--primary-green);
  box-shadow: var(--shadow-md);
  transition: all 0.3s;
}

.btn-secondary-modern:hover {
  background: var(--gradient-forest);
  color: var(--white);
  border-color: transparent;
  transform: translateY(-2px);
  box-shadow: var(--shadow-colored-green);
}

.btn-outline-modern {
  background: transparent;
  color: var(--primary-green);
  border: 2px solid var(--primary-green);
  position: relative;
  overflow: hidden;
  transition: all 0.3s;
}

.btn-outline-modern::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: var(--gradient-1);
  transform: translate(-50%, -50%);
  transition: width 0.6s, height 0.6s;
  z-index: -1;
}

.btn-outline-modern:hover::before {
  width: 300px;
  height: 300px;
}

.btn-outline-modern:hover {
  color: var(--white);
  border-color: transparent;
  transform: translateY(-2px);
}

/* Colorful Card Variations */
.card-rainbow {
  background: var(--gradient-rainbow);
  color: var(--white);
  box-shadow: var(--shadow-colored-rainbow);
}

.card-sunset {
  background: var(--gradient-sunset);
  color: var(--white);
  box-shadow: var(--shadow-colored-orange);
}

.card-ocean {
  background: var(--gradient-ocean);
  color: var(--white);
  box-shadow: var(--shadow-colored-cyan);
}

.card-purple-dream {
  background: var(--gradient-purple-dream);
  color: var(--white);
  box-shadow: var(--shadow-colored-purple);
}

.card-pink-bliss {
  background: var(--gradient-pink-bliss);
  color: var(--white);
  box-shadow: var(--shadow-colored-pink);
}

/* Enhanced Service Cards with Color Variations */
.service-card-overlay:nth-child(1) .service-card-icon,
.service-card-overlay:nth-child(2) .service-card-icon,
.service-card-overlay:nth-child(3) .service-card-icon,
.service-card-overlay:nth-child(4) .service-card-icon,
.service-card-overlay:nth-child(5) .service-card-icon,
.service-card-overlay:nth-child(6) .service-card-icon {
  background: transparent;
  box-shadow: none;
}

/* Colorful Badges */
.badge-rainbow {
  background: var(--gradient-rainbow);
  color: var(--white);
  padding: 6px 16px;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  box-shadow: var(--shadow-colored-rainbow);
}

.badge-blue {
  background: var(--gradient-ocean);
  color: var(--white);
  box-shadow: var(--shadow-colored-blue);
}

.badge-purple {
  background: var(--gradient-purple-dream);
  color: var(--white);
  box-shadow: var(--shadow-colored-purple);
}

.badge-pink {
  background: var(--gradient-pink-bliss);
  color: var(--white);
  box-shadow: var(--shadow-colored-pink);
}

.badge-orange {
  background: var(--gradient-sunset);
  color: var(--white);
  box-shadow: var(--shadow-colored-orange);
}

.badge-green {
  background: var(--gradient-forest);
  color: var(--white);
  box-shadow: var(--shadow-colored-green);
}

/* Enhanced Hero Section with More Colors */
.hero-modern {
  background: 
    linear-gradient(135deg, rgba(5, 77, 45, 0.05) 0%, rgba(5, 77, 45, 0.08) 50%, rgba(5, 77, 45, 0.05) 100%),
    linear-gradient(45deg, rgba(243, 243, 243, 0.4) 0%, rgba(243, 243, 243, 0.3) 100%),
    linear-gradient(225deg, rgba(219, 234, 254, 0.3) 0%, rgba(233, 213, 255, 0.2) 100%);
}

.hero-title-modern {
  background: var(--gradient-rainbow);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  background-size: 200% 200%;
  animation: gradient-shift 5s ease infinite;
}

/* Colorful Floating Cards */
.hero-floating-card {
  animation: float 6s ease-in-out infinite;
}

.hero-floating-card.card-1 {
  background: var(--gradient-ocean);
  box-shadow: var(--shadow-colored-cyan);
  animation-delay: 0s;
}

.hero-floating-card.card-2 {
  background: var(--gradient-purple-dream);
  box-shadow: var(--shadow-colored-purple);
  animation-delay: 2s;
}

/* Enhanced Education Cards */
.education-card-modern {
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.education-card-modern::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: var(--gradient-rainbow);
  opacity: 0.1;
  transition: left 0.5s;
  z-index: 0;
}

.education-card-modern:hover::before {
  left: 100%;
}

.education-card-modern:nth-child(1) .education-card-icon-modern,
.education-card-modern:nth-child(2) .education-card-icon-modern,
.education-card-modern:nth-child(3) .education-card-icon-modern,
.education-card-modern:nth-child(4) .education-card-icon-modern,
.education-card-modern:nth-child(5) .education-card-icon-modern,
.education-card-modern:nth-child(6) .education-card-icon-modern {
  background: #f3f3f3;
  box-shadow: 0 8px 20px rgba(5, 77, 45, 0.06);
  border: 1px solid rgba(5, 77, 45, 0.05);
}


/* Enhanced Form Styles */
.input-wrapper-modern {
  position: relative;
  transition: all 0.3s;
}

.input-wrapper-modern:focus-within {
  transform: translateY(-2px);
}

.input-wrapper-modern:focus-within .input-icon {
  color: var(--accent-purple);
  transform: scale(1.1);
}

.contact-form-modern input:focus {
  border-color: var(--accent-purple);
  box-shadow: 0 0 0 3px rgba(5, 77, 45, 0.1);
}

.btn-submit-modern {
  background: var(--gradient-rainbow);
  box-shadow: var(--shadow-colored-rainbow);
}

.btn-submit-modern:hover {
  background: var(--gradient-rainbow);
  background-size: 200% 200%;
  animation: gradient-shift 2s ease infinite;
}

/* Colorful Scrollbar */
::-webkit-scrollbar {
  width: 10px;
}

::-webkit-scrollbar-track {
  background: linear-gradient(180deg, var(--pastel-blue) 0%, var(--pastel-purple) 100%);
}

::-webkit-scrollbar-thumb {
  background: var(--gradient-rainbow);
  border-radius: 5px;
  box-shadow: inset 0 0 6px rgba(5, 77, 45, 0.1);
}

::-webkit-scrollbar-thumb:hover {
  background: var(--gradient-vibrant);
}

/* Enhanced Footer - Override with Emerald Green */
footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(circle at 20% 30%, rgba(243, 243, 243, 0.05) 0%, transparent 50%),
    radial-gradient(circle at 80% 70%, rgba(243, 243, 243, 0.05) 0%, transparent 50%);
  pointer-events: none;
}

/* Responsive Enhancements */
@media (max-width: 768px) {
  .section-title-modern {
    font-size: clamp(1.75rem, 6vw, 2.5rem);
  }
  
  .section-badge-modern {
    font-size: 0.85rem;
    padding: 8px 16px;
  }
  
  .btn-primary-modern,
  .btn-secondary-modern {
    font-size: 0.9rem;
    padding: 12px 24px;
  }
}

/* Hero Image Wrapper Responsive */
@media (max-width: 768px) {
  .hero-image-wrapper-modern {
    padding: 20px;
    border-radius: 20px;
  }

  .hero-image-wrapper-modern:hover {
    transform: none;
  }

  .hero-main-image {
    height: 300px;
    border-radius: 15px;
  }

  .hero-main-image:hover {
    transform: none;
  }

  .hero-image-decoration {
    top: 20px;
    left: 20px;
    right: 20px;
    bottom: 20px;
    width: calc(100% - 40px);
    height: calc(100% - 40px);
    border-radius: 15px;
  }

  .hero-floating-card.card-1 {
    top: 25px;
    left: -10px;
  }

  .hero-floating-card.card-2 {
    bottom: 25px;
    right: -10px;
  }
}

@media (max-width: 480px) {
  .hero-image-wrapper-modern {
    padding: 15px;
    border-radius: 15px;
  }

  .hero-main-image {
    height: 250px;
    border-radius: 12px;
  }

  .hero-image-decoration {
    top: 15px;
    left: 15px;
    right: 15px;
    bottom: 15px;
    width: calc(100% - 30px);
    height: calc(100% - 30px);
    border-radius: 12px;
  }

  .hero-floating-card {
    padding: 12px 16px;
    border-radius: 12px;
  }

  .hero-floating-card.card-1,
  .hero-floating-card.card-2 {
    top: 20px;
    bottom: auto;
    left: -8px;
    right: auto;
  }

  .hero-floating-card.card-2 {
    left: auto;
    right: -8px;
  }
}

/* Patient Guides Styles */
.patient-guides-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 2rem;
  margin: 2rem 0;
}

.patient-guide-card {
  background: var(--white);
  border-radius: 12px;
  padding: 2rem;
  box-shadow: 0 4px 20px rgba(5, 77, 45, 0.08);
  border: 1px solid rgba(5, 77, 45, 0.1);
  transition: all 0.3s ease;
  text-align: center;
}

.patient-guide-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 30px rgba(5, 77, 45, 0.15);
}

.guide-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.guide-title {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 0.5rem;
}

.guide-category {
  display: inline-block;
  background: var(--gradient-emerald-light);
  color: var(--primary-green);
  padding: 0.25rem 0.75rem;
  border-radius: 20px;
  font-size: 0.875rem;
  font-weight: 500;
  margin-bottom: 1.5rem;
}

.guide-actions {
  display: flex;
  gap: 0.5rem;
  justify-content: center;
  flex-wrap: wrap;
}

.patient-guide-single {
  max-width: 800px;
  margin: 0 auto;
}

.patient-guide-single .entry-header {
  text-align: center;
  margin-bottom: 3rem;
}

.patient-guide-single .guide-meta {
  margin-bottom: 1rem;
}

.patient-guide-single .guide-category {
  background: var(--gradient-emerald-light);
  color: var(--primary-green);
  padding: 0.5rem 1rem;
  border-radius: 25px;
  font-weight: 600;
  display: inline-block;
}

.patient-guide-single .entry-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--text-dark);
  margin: 1rem 0 2rem;
}

.pdf-download {
  margin: 2rem 0;
}

.patient-guide-single .entry-content {
  font-size: 1.125rem;
  line-height: 1.8;
  color: var(--text-muted);
  margin-bottom: 3rem;
}

.guide-navigation {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(5, 77, 45, 0.1);
}

.nav-link {
  color: var(--primary-green);
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
}

.nav-link:hover {
  color: var(--primary-green-dark);
}

.nav-link.home {
  background: var(--gradient-emerald-light);
  color: var(--primary-green);
  padding: 0.75rem 1.5rem;
  border-radius: 25px;
  font-weight: 600;
}

/* Enhanced Mega Menu for Patient Guides */
.patient-guide-link {
  display: flex !important;
  align-items: center;
  gap: 1rem;
  padding: 1.5rem !important;
  text-decoration: none;
  border-radius: 8px;
  transition: all 0.3s ease;
  min-width: 300px;
}

.patient-guide-link:hover {
  background: rgba(5, 77, 45, 0.05);
  transform: translateX(-4px);
}

.patient-guide-link .guide-icon {
  font-size: 2rem;
  color: var(--primary-green);
}

.patient-guide-link .guide-content h4 {
  color: var(--primary-green);
  font-size: 1.1rem;
  font-weight: 600;
  margin: 0 0 0.5rem 0;
}

.patient-guide-link .guide-content p {
  color: var(--text-muted);
  font-size: 0.9rem;
  margin: 0;
  line-height: 1.4;
}

/* Responsive Design for Patient Guides */
@media (max-width: 768px) {
  .patient-guides-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .patient-guide-card {
    padding: 1.5rem;
  }

  .guide-actions {
    flex-direction: column;
  }

  .guide-actions .btn {
    width: 100%;
  }

  .patient-guide-single .entry-title {
    font-size: 2rem;
  }

  .guide-navigation {
    flex-direction: column;
    gap: 1rem;
  }

  .guide-navigation .nav-link {
    text-align: center;
  }

  .patient-guide-link {
    flex-direction: column !important;
    text-align: center;
    padding: 1rem !important;
  }

  .patient-guide-link .guide-content h4 {
    margin-top: 0.5rem;
  }
}

/* Footer Map Styles */
.footer-map .map-container {
  transition: all 0.3s ease;
}

.footer-map .map-container:hover {
  box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.footer-map iframe {
  transition: all 0.3s ease;
}

.footer-map iframe:hover {
  transform: scale(1.02);
}

/* Print Styles */
@media print {
  .btn-primary-modern,
  .btn-secondary-modern,
  .section-badge-modern {
    background: var(--primary-green) !important;
    color: var(--white) !important;
    -webkit-text-fill-color: var(--white) !important;
  }
}

/* Enhanced Hero Animations */
@keyframes particleFloat {
  0%, 100% { transform: translateY(0px) translateX(0px); opacity: 0.3; }
  25% { transform: translateY(-20px) translateX(10px); opacity: 0.7; }
  50% { transform: translateY(-10px) translateX(-10px); opacity: 1; }
  75% { transform: translateY(-30px) translateX(5px); opacity: 0.5; }
}

@keyframes glowRotate {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

@keyframes highlightGlow {
  0% { opacity: 0.6; transform: scaleX(0.8); }
  100% { opacity: 1; transform: scaleX(1.2); }
}

@keyframes sparkle {
  0%, 100% { opacity: 0; transform: scale(0.8) rotate(0deg); }
  50% { opacity: 1; transform: scale(1.2) rotate(180deg); }
}

@keyframes pulseGlow {
  0% { box-shadow: 0 12px 32px rgba(5, 77, 45, 0.4), 0 0 0 0 rgba(16, 185, 129, 0.7); }
  100% { box-shadow: 0 12px 32px rgba(5, 77, 45, 0.4), 0 0 0 20px rgba(16, 185, 129, 0); }
}

@keyframes urgentPulse {
  0% { box-shadow: 0 8px 24px rgba(220, 38, 38, 0.3); }
  100% { box-shadow: 0 8px 24px rgba(220, 38, 38, 0.6), 0 0 0 10px rgba(220, 38, 38, 0.1); }
}

@keyframes ripple {
  0% { transform: scale(0); opacity: 1; }
  100% { transform: scale(2); opacity: 0; }
}

@keyframes shimmer {
  0% { transform: translateX(-100%) rotate(45deg); }
  100% { transform: translateX(100%) rotate(45deg); }
}

/* Trust Indicators */
.hero-trust {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 48px;
  animation: fadeInUp 0.8s ease-out 1.2s both;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(10px);
  padding: 10px 18px;
  border-radius: 20px;
  border: 1px solid rgba(16, 185, 129, 0.2);
  font-size: 0.85rem;
  font-weight: 500;
  color: #374151;
  transition: all 0.3s ease;
}

.trust-item:hover {
  transform: translateY(-2px);
  background: rgba(16, 185, 129, 0.1);
  border-color: rgba(16, 185, 129, 0.4);
}

.trust-icon {
  font-size: 1.1rem;
}

/* Enhanced Scroll Indicator */
.scroll-indicator {
  position: absolute;
  bottom: 50px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  animation: bounce 3s ease-in-out infinite;
  z-index: 1;
}

.scroll-mouse {
  width: 28px;
  height: 40px;
  border: 3px solid rgba(5, 77, 45, 0.4);
  border-radius: 14px;
  position: relative;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
}

.scroll-wheel {
  width: 6px;
  height: 10px;
  background: linear-gradient(135deg, #054d2d, #059669);
  border-radius: 3px;
  position: absolute;
  top: 8px;
  left: 50%;
  transform: translateX(-50%);
  animation: scroll 2s ease-in-out infinite;
}

.scroll-progress {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 0;
  background: linear-gradient(135deg, #10b981, #059669);
  border-radius: 0 0 12px 12px;
  animation: scrollProgress 3s ease-in-out infinite;
}

.scroll-text {
  font-size: 0.85rem;
  color: #6b7280;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}

.scroll-arrow {
  font-size: 1.2rem;
  animation: bounce 2s ease-in-out infinite;
}

/* Floating Action Button */

@keyframes scrollProgress {
  0%, 100% { height: 0; }
  50% { height: 20px; }
}

/* Service Single Page Styles */
.service-single-section {
  background: linear-gradient(180deg, #f8fafc 0%, #ffffff 100%);
  padding: 60px 0 100px;
}

.service-single-wrapper {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.service-single-header {
  text-align: center;
  margin-bottom: 50px;
}

.service-badge-modern {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, rgba(5, 77, 45, 0.1) 0%, rgba(5, 77, 45, 0.05) 100%);
  padding: 10px 20px;
  border-radius: 50px;
  font-size: 0.9rem;
  font-weight: 600;
  color: #054d2d;
  margin-bottom: 24px;
  border: 1px solid rgba(5, 77, 45, 0.1);
  backdrop-filter: blur(10px);
}

.service-single-title {
  font-size: 3rem;
  font-weight: 800;
  color: #054d2d;
  margin: 0;
  line-height: 1.2;
  letter-spacing: -0.5px;
}

.service-single-image-wrapper {
  margin-bottom: 50px;
  text-align: center;
}

.service-single-image {
  width: 100%;
  max-width: 1200px;
  height: auto;
  max-height: 600px;
  object-fit: cover;
  border-radius: 24px;
  box-shadow: 0 20px 60px rgba(5, 77, 45, 0.15);
  transition: transform 0.3s ease;
}

.service-single-image:hover {
  transform: scale(1.02);
}

.service-single-content {
  max-width: 900px;
  margin: 0 auto;
}

.service-entry-content {
  background: #ffffff;
  padding: 50px;
  border-radius: 24px;
  box-shadow: 0 4px 24px rgba(5, 77, 45, 0.08);
  border: 1px solid rgba(5, 77, 45, 0.1);
  line-height: 1.9;
  font-size: 1.15rem;
  color: #374151;
  margin-bottom: 40px;
}

.service-entry-content h2,
.service-entry-content h3,
.service-entry-content h4 {
  color: #054d2d;
  font-weight: 700;
  margin-top: 35px;
  margin-bottom: 20px;
}

.service-entry-content h2 {
  font-size: 2rem;
}

.service-entry-content h3 {
  font-size: 1.6rem;
}

.service-entry-content p {
  margin-bottom: 20px;
}

.service-entry-content ul,
.service-entry-content ol {
  margin: 20px 0;
  padding-right: 30px;
}

.service-entry-content li {
  margin-bottom: 12px;
}

.service-single-cta {
  text-align: center;
  margin-top: 50px;
}

/* Responsive Design for Service Single */
@media (max-width: 1024px) {
  .service-single-image {
    max-height: 500px;
  }
  
  .service-entry-content {
    padding: 40px 30px;
  }
}

@media (max-width: 768px) {
  .service-single-title {
    font-size: 2.2rem;
  }
  
  .service-single-image {
    max-height: 400px;
    border-radius: 16px;
  }
  
  .service-entry-content {
    padding: 30px 20px;
    font-size: 1rem;
  }
  
  .service-entry-content h2 {
    font-size: 1.6rem;
  }
  
  .service-entry-content h3 {
    font-size: 1.3rem;
  }
}

/* Patient Guide Single Page Styles */
.guide-single-section {
  background: linear-gradient(180deg, #f8fafc 0%, #ffffff 100%);
  padding: 60px 0 100px;
}

.patient-guide-single-modern {
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 20px;
}

.guide-single-header {
  text-align: center;
  margin-bottom: 50px;
}

.guide-meta-modern {
  margin-bottom: 24px;
}

.guide-category-modern {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: linear-gradient(135deg, rgba(5, 77, 45, 0.1) 0%, rgba(5, 77, 45, 0.05) 100%);
  padding: 12px 24px;
  border-radius: 50px;
  font-size: 0.95rem;
  font-weight: 600;
  color: #054d2d;
  border: 1px solid rgba(5, 77, 45, 0.1);
  backdrop-filter: blur(10px);
}

.guide-icon {
  font-size: 1.2rem;
}

.guide-single-title {
  font-size: 3rem;
  font-weight: 800;
  color: #054d2d;
  margin: 0 0 30px 0;
  line-height: 1.2;
  letter-spacing: -0.5px;
}

.pdf-download-modern {
  margin-top: 30px;
}

.pdf-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 32px;
  font-size: 1.05rem;
  font-weight: 600;
}

.guide-entry-content-modern {
  background: #ffffff;
  padding: 50px;
  border-radius: 24px;
  box-shadow: 0 4px 24px rgba(5, 77, 45, 0.08);
  border: 1px solid rgba(5, 77, 45, 0.1);
  line-height: 1.9;
  font-size: 1.15rem;
  color: #374151;
  margin-bottom: 50px;
}

.guide-entry-content-modern h2,
.guide-entry-content-modern h3,
.guide-entry-content-modern h4 {
  color: #054d2d;
  font-weight: 700;
  margin-top: 35px;
  margin-bottom: 20px;
}

.guide-entry-content-modern h2 {
  font-size: 2rem;
}

.guide-entry-content-modern h3 {
  font-size: 1.6rem;
}

.guide-entry-content-modern p {
  margin-bottom: 20px;
}

.guide-entry-content-modern ul,
.guide-entry-content-modern ol {
  margin: 20px 0;
  padding-right: 30px;
}

.guide-entry-content-modern li {
  margin-bottom: 12px;
}

.guide-footer-modern {
  margin-top: 60px;
  padding-top: 40px;
  border-top: 2px solid rgba(5, 77, 45, 0.1);
}

.guide-navigation-modern {
  margin-top: 30px;
}

.guide-nav-links {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

.guide-nav-link {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px 24px;
  background: #ffffff;
  border: 2px solid rgba(5, 77, 45, 0.1);
  border-radius: 16px;
  color: #054d2d;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 2px 8px rgba(5, 77, 45, 0.05);
  flex: 1;
  min-width: 200px;
  justify-content: center;
}

.guide-nav-link:hover {
  background: linear-gradient(135deg, #10b981 0%, #059669 100%);
  color: #ffffff;
  border-color: #054d2d;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(5, 77, 45, 0.2);
}

.home-link {
  flex: 0 0 auto;
  min-width: auto;
}

.nav-link-text {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 4px;
}

.nav-link-label {
  font-size: 0.85rem;
  opacity: 0.8;
}

.nav-link-title {
  font-size: 1rem;
  font-weight: 700;
}

.guide-nav-link:hover .nav-link-label {
  opacity: 1;
}

/* Attractive single patient guide page */
.guide-single-attractive {
  background: linear-gradient(165deg, #f0fdf4 0%, #ecfdf5 20%, #f8fafc 50%, #ffffff 100%);
  padding: 40px 0 100px;
}

.guide-breadcrumb {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
  font-size: 0.9rem;
  margin-bottom: 32px;
  padding: 12px 0;
}

.guide-breadcrumb a {
  color: var(--primary-green, #054d2d);
  text-decoration: none;
  font-weight: 500;
  transition: opacity 0.2s;
}

.guide-breadcrumb a:hover {
  opacity: 0.85;
  text-decoration: underline;
}

.breadcrumb-sep {
  color: #9ca3af;
  user-select: none;
}

.breadcrumb-current {
  color: #374151;
  font-weight: 600;
  max-width: 200px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.guide-single-header-attractive {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(240, 253, 244, 0.5) 100%);
  border-radius: 24px;
  padding: 48px 40px 40px;
  margin-bottom: 40px;
  border: 1px solid rgba(5, 77, 45, 0.12);
  box-shadow: 0 4px 24px rgba(5, 77, 45, 0.06), 0 0 0 1px rgba(255, 255, 255, 0.8) inset;
}

.guide-single-thumb-wrap {
  border-radius: 20px;
  overflow: hidden;
  margin-bottom: 28px;
  box-shadow: 0 12px 40px rgba(5, 77, 45, 0.12);
  max-width: 720px;
  margin-right: auto;
  margin-left: auto;
}

.guide-single-thumb {
  width: 100%;
  height: auto;
  display: block;
  vertical-align: middle;
}

.guide-single-excerpt {
  font-size: 1.15rem;
  line-height: 1.75;
  color: #4b5563;
  margin: 0 0 28px 0;
  max-width: 720px;
  margin-right: auto;
  margin-left: auto;
}

.guide-single-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-top: 28px;
}

.pdf-btn-attractive {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 18px 36px;
  font-size: 1.05rem;
  font-weight: 600;
  background: linear-gradient(135deg, #059669 0%, #047857 100%);
  color: #fff;
  border-radius: 16px;
  box-shadow: 0 8px 24px rgba(5, 77, 45, 0.25);
  transition: transform 0.2s, box-shadow 0.2s;
  text-decoration: none;
  border: none;
}

.pdf-btn-attractive:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(5, 77, 45, 0.35);
  color: #fff;
}

.pdf-btn-icon {
  font-size: 1.25rem;
}

.pdf-btn-arrow {
  font-size: 1.1rem;
  opacity: 0.9;
}

.guide-back-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #054d2d;
  font-weight: 600;
  text-decoration: none;
  font-size: 0.95rem;
  padding: 12px 20px;
  border-radius: 12px;
  background: rgba(5, 77, 45, 0.08);
  border: 1px solid rgba(5, 77, 45, 0.15);
  transition: background 0.2s, border-color 0.2s;
}

.guide-back-link:hover {
  background: rgba(5, 77, 45, 0.12);
  border-color: rgba(5, 77, 45, 0.25);
  color: #054d2d;
}

.guide-entry-content-attractive {
  box-shadow: 0 8px 32px rgba(5, 77, 45, 0.06), 0 0 0 1px rgba(5, 77, 45, 0.06);
}

.guide-single-footer-modern {
  margin-top: 48px;
  padding-top: 32px;
  border-top: 1px solid rgba(5, 77, 45, 0.1);
  text-align: center;
}

.guide-back-link-bottom {
  display: inline-flex;
}

/* Responsive Design for Guide Single */
@media (max-width: 768px) {
  .guide-single-title {
    font-size: 2.2rem;
  }
  .guide-single-header-attractive {
    padding: 32px 24px 28px;
  }
  .guide-single-actions {
    flex-direction: column;
  }
  .breadcrumb-current {
    max-width: 160px;
  }
  
  .guide-entry-content-modern {
    padding: 30px 20px;
    font-size: 1rem;
  }
  
  .guide-entry-content-modern h2 {
    font-size: 1.6rem;
  }
  
  .guide-entry-content-modern h3 {
    font-size: 1.3rem;
  }
  
  .guide-nav-links {
    flex-direction: column;
  }
  
  .guide-nav-link {
    width: 100%;
    justify-content: space-between;
  }
  
  .home-link {
    width: 100%;
  }
}

/* Patient Story Single Page Styles */
.story-single-section {
  background: linear-gradient(180deg, #f3f3f3 0%, #ffffff 100%);
  padding: 60px 0 100px;
}

.story-single-wrapper {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.story-single-header {
  text-align: center;
  margin-bottom: 50px;
}

.story-badge-modern {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, rgba(5, 77, 45, 0.1) 0%, rgba(5, 77, 45, 0.05) 100%);
  padding: 10px 20px;
  border-radius: 50px;
  font-size: 0.9rem;
  font-weight: 600;
  color: #054d2d;
  margin-bottom: 24px;
  border: 1px solid rgba(5, 77, 45, 0.1);
  backdrop-filter: blur(10px);
}

.story-single-title {
  font-size: 3rem;
  font-weight: 800;
  color: #054d2d;
  margin: 0 0 30px 0;
  line-height: 1.2;
  letter-spacing: -0.5px;
}

.story-single-meta {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
  margin-top: 20px;
}

.story-meta-item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #ffffff;
  padding: 10px 20px;
  border-radius: 50px;
  font-size: 1rem;
  font-weight: 600;
  color: #374151;
  box-shadow: 0 2px 8px rgba(5, 77, 45, 0.08);
  border: 1px solid rgba(5, 77, 45, 0.1);
}

.story-meta-item.status-badge {
  background: linear-gradient(135deg, rgba(16, 185, 129, 0.1) 0%, rgba(5, 150, 105, 0.1) 100%);
  color: #054d2d;
  border-color: rgba(16, 185, 129, 0.2);
}

.meta-icon {
  font-size: 1.1rem;
}

.story-single-image-wrapper {
  position: relative;
  margin-bottom: 50px;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(5, 77, 45, 0.15);
}

.story-single-video-wrapper {
  margin-bottom: 50px;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(5, 77, 45, 0.15);
  background: #000;
}

.story-single-video-wrapper iframe,
.story-single-video-wrapper video,
.story-single-video-wrapper .wp-video,
.story-single-video-wrapper .mejs-container {
  width: 100% !important;
  max-width: 100%;
}

.story-single-image {
  width: 100%;
  max-width: 1200px;
  height: auto;
  max-height: 600px;
  object-fit: cover;
  display: block;
  margin: 0 auto;
}

.story-single-status-overlay {
  position: absolute;
  bottom: 30px;
  right: 30px;
  z-index: 2;
}

.story-success-badge-large {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(243, 243, 243, 0.95);
  backdrop-filter: blur(10px);
  padding: 14px 24px;
  border-radius: 50px;
  font-size: 1.1rem;
  font-weight: 700;
  color: #054d2d;
  box-shadow: 0 8px 24px rgba(5, 77, 45, 0.3);
  border: 2px solid rgba(5, 77, 45, 0.2);
}

.story-info-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
  margin-bottom: 50px;
}

.story-info-card {
  background: #ffffff;
  padding: 30px;
  border-radius: 20px;
  box-shadow: 0 4px 20px rgba(5, 77, 45, 0.08);
  border: 2px solid rgba(5, 77, 45, 0.1);
  display: flex;
  align-items: flex-start;
  gap: 20px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.story-info-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 30px rgba(5, 77, 45, 0.15);
  border-color: rgba(5, 77, 45, 0.3);
}

.story-info-card.status-card {
  background: linear-gradient(135deg, rgba(16, 185, 129, 0.05) 0%, rgba(5, 150, 105, 0.05) 100%);
  border-color: rgba(16, 185, 129, 0.2);
}

.story-info-icon {
  font-size: 2.5rem;
  flex-shrink: 0;
  width: 70px;
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(5, 77, 45, 0.1) 0%, rgba(5, 77, 45, 0.05) 100%);
  border-radius: 16px;
}

.story-info-content {
  flex: 1;
}

.story-info-label {
  font-size: 0.9rem;
  color: #6b7280;
  font-weight: 600;
  margin-bottom: 8px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.story-info-value {
  font-size: 1.2rem;
  color: #054d2d;
  font-weight: 700;
  line-height: 1.4;
}

.story-single-content {
  max-width: 900px;
  margin: 0 auto;
}

.story-entry-content {
  background: #ffffff;
  padding: 50px;
  border-radius: 24px;
  box-shadow: 0 4px 24px rgba(5, 77, 45, 0.08);
  border: 1px solid rgba(5, 77, 45, 0.1);
  line-height: 1.9;
  font-size: 1.15rem;
  color: #374151;
}

.story-entry-content h2,
.story-entry-content h3,
.story-entry-content h4 {
  color: #054d2d;
  font-weight: 700;
  margin-top: 35px;
  margin-bottom: 20px;
}

.story-entry-content h2 {
  font-size: 2rem;
}

.story-entry-content h3 {
  font-size: 1.6rem;
}

.story-entry-content p {
  margin-bottom: 20px;
}

.story-entry-content ul,
.story-entry-content ol {
  margin: 20px 0;
  padding-right: 30px;
}

.story-entry-content li {
  margin-bottom: 12px;
}

/* Related Stories Section */
.related-stories-section {
  margin-top: 100px;
  padding-top: 80px;
  border-top: 2px solid rgba(5, 77, 45, 0.1);
}

/* Responsive Design for Story Single */
@media (max-width: 1024px) {
  .story-single-image {
    max-height: 500px;
  }
  
  .story-entry-content {
    padding: 40px 30px;
  }
}

@media (max-width: 768px) {
  .story-single-title {
    font-size: 2.2rem;
  }
  
  .story-single-meta {
    flex-direction: column;
    gap: 12px;
  }
  
  .story-single-image {
    max-height: 400px;
    border-radius: 16px;
  }
  
  .story-single-status-overlay {
    bottom: 20px;
    right: 20px;
  }
  
  .story-success-badge-large {
    padding: 10px 18px;
    font-size: 1rem;
  }
  
  .story-info-cards {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .story-info-card {
    padding: 24px;
  }
  
  .story-entry-content {
    padding: 30px 20px;
    font-size: 1rem;
  }
  
  .story-entry-content h2 {
    font-size: 1.6rem;
  }
  
  .story-entry-content h3 {
    font-size: 1.3rem;
  }
  
  .related-stories-section {
    margin-top: 60px;
    padding-top: 50px;
  }
}

/* News Single Page Styles */
.news-single-section {
  background: linear-gradient(180deg, #f8fafc 0%, #ffffff 100%);
  padding: 60px 0 100px;
}

.news-single-wrapper {
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 20px;
}

.news-single-header {
  text-align: center;
  margin-bottom: 50px;
}

.news-badge-modern {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, rgba(5, 77, 45, 0.1) 0%, rgba(5, 77, 45, 0.05) 100%);
  padding: 10px 20px;
  border-radius: 50px;
  font-size: 0.9rem;
  font-weight: 600;
  color: #054d2d;
  margin-bottom: 24px;
  border: 1px solid rgba(5, 77, 45, 0.1);
  backdrop-filter: blur(10px);
}

.news-single-title {
  font-size: 3rem;
  font-weight: 800;
  color: #054d2d;
  margin: 0 0 30px 0;
  line-height: 1.2;
  letter-spacing: -0.5px;
}

.news-single-meta {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
  margin-top: 20px;
}

.news-meta-item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #ffffff;
  padding: 10px 20px;
  border-radius: 50px;
  font-size: 1rem;
  font-weight: 600;
  color: #374151;
  box-shadow: 0 2px 8px rgba(5, 77, 45, 0.08);
  border: 1px solid rgba(5, 77, 45, 0.1);
}

.news-single-image-wrapper {
  margin-bottom: 50px;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(5, 77, 45, 0.15);
}

.news-single-image {
  width: 100%;
  max-width: 1200px;
  height: auto;
  max-height: 600px;
  object-fit: cover;
  display: block;
  margin: 0 auto;
  transition: transform 0.3s ease;
}

.news-single-image:hover {
  transform: scale(1.02);
}

.news-single-content {
  max-width: 900px;
  margin: 0 auto;
}

.news-entry-content {
  background: #ffffff;
  padding: 50px;
  border-radius: 24px;
  box-shadow: 0 4px 24px rgba(5, 77, 45, 0.08);
  border: 1px solid rgba(5, 77, 45, 0.1);
  line-height: 1.9;
  font-size: 1.15rem;
  color: #374151;
  margin-bottom: 50px;
}

.news-entry-content h2,
.news-entry-content h3,
.news-entry-content h4 {
  color: #054d2d;
  font-weight: 700;
  margin-top: 35px;
  margin-bottom: 20px;
}

.news-entry-content h2 {
  font-size: 2rem;
}

.news-entry-content h3 {
  font-size: 1.6rem;
}

.news-entry-content p {
  margin-bottom: 20px;
}

.news-entry-content ul,
.news-entry-content ol {
  margin: 20px 0;
  padding-right: 30px;
}

.news-entry-content li {
  margin-bottom: 12px;
}

.news-navigation-modern {
  margin-top: 60px;
  padding-top: 40px;
  border-top: 2px solid rgba(5, 77, 45, 0.1);
}

.news-nav-links {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

.news-nav-link {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px 24px;
  background: #ffffff;
  border: 2px solid rgba(5, 77, 45, 0.1);
  border-radius: 16px;
  color: #054d2d;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 2px 8px rgba(5, 77, 45, 0.05);
  flex: 1;
  min-width: 200px;
  justify-content: center;
}

.news-nav-link:hover {
  background: linear-gradient(135deg, #10b981 0%, #059669 100%);
  color: #ffffff;
  border-color: #054d2d;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(5, 77, 45, 0.2);
}

.news-nav-link.home-link {
  flex: 0 0 auto;
  min-width: auto;
}

/* Responsive Design for News Single */
@media (max-width: 768px) {
  .news-single-title {
    font-size: 2.2rem;
  }
  
  .news-single-meta {
    flex-direction: column;
    gap: 12px;
  }
  
  .news-single-image {
    max-height: 400px;
    border-radius: 16px;
  }
  
  .news-entry-content {
    padding: 30px 20px;
    font-size: 1rem;
  }
  
  .news-entry-content h2 {
    font-size: 1.6rem;
  }
  
  .news-entry-content h3 {
    font-size: 1.3rem;
  }
  
  .news-nav-links {
    flex-direction: column;
  }
  
  .news-nav-link {
    width: 100%;
    justify-content: space-between;
  }
  
  .news-nav-link.home-link {
    width: 100%;
  }
}

/* Colleague Centers Archive Styles */
.centers-section-modern {
  background: linear-gradient(180deg, #f8fafc 0%, #ffffff 100%);
  padding: 80px 0;
}

.centers-grid-modern {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 30px;
  margin-top: 50px;
}

.center-card-enhanced {
  position: relative;
  border-radius: 28px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(5, 77, 45, 0.08);
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  background: #ffffff;
  cursor: pointer;
  border: 1px solid rgba(243, 243, 243, 0.2);
  display: flex;
  flex-direction: column;
  height: 100%;
}

.center-card-enhanced:hover {
  transform: translateY(-12px) scale(1.02);
  box-shadow: 0 20px 60px rgba(5, 77, 45, 0.15);
  border-color: rgba(5, 77, 45, 0.4);
}

.center-image-wrapper {
  position: relative;
  width: 100%;
  height: 250px;
  overflow: hidden;
  flex-shrink: 0;
}

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

.center-card-enhanced:hover .center-image-modern {
  transform: scale(1.1);
}

.center-image-placeholder {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(5, 77, 45, 0.1) 0%, rgba(5, 77, 45, 0.05) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
}

.center-content-modern {
  padding: 32px;
  flex: 1;
  display: flex;
  flex-direction: column;
  background: linear-gradient(180deg, rgba(243, 243, 243, 0.95) 0%, rgba(243, 243, 243, 0.98) 100%);
}

.center-name-modern {
  font-size: 1.5rem;
  font-weight: 700;
  color: #111827;
  margin-bottom: 16px;
  transition: color 0.3s;
}

.center-card-enhanced:hover .center-name-modern {
  color: #054d2d;
}

.center-location-modern {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #6b7280;
  font-size: 0.95rem;
  margin-bottom: 12px;
  font-weight: 500;
}

.center-address-modern {
  color: #6b7280;
  line-height: 1.7;
  font-size: 0.95rem;
  margin-bottom: 20px;
  flex: 1;
}

.center-card-link {
  margin-top: auto;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #054d2d;
  font-weight: 600;
  font-size: 0.95rem;
  padding: 10px 16px;
  background: rgba(5, 77, 45, 0.1);
  border-radius: 10px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  border: 1px solid transparent;
}

.center-card-enhanced:hover .center-card-link {
  background: linear-gradient(135deg, #10b981 0%, #059669 100%);
  color: #ffffff;
  transform: translateX(-4px);
  border-color: #054d2d;
}

/* Colleague Center Single Page Styles */
.center-single-section {
  background: linear-gradient(180deg, #f8fafc 0%, #ffffff 100%);
  padding: 60px 0 100px;
}

.center-single-wrapper {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.center-single-header {
  text-align: center;
  margin-bottom: 50px;
}

.center-badge-modern {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, rgba(5, 77, 45, 0.1) 0%, rgba(5, 77, 45, 0.05) 100%);
  padding: 10px 20px;
  border-radius: 50px;
  font-size: 0.9rem;
  font-weight: 600;
  color: #054d2d;
  margin-bottom: 24px;
  border: 1px solid rgba(5, 77, 45, 0.1);
  backdrop-filter: blur(10px);
}

.center-single-title {
  font-size: 3rem;
  font-weight: 800;
  color: #054d2d;
  margin: 0 0 30px 0;
  line-height: 1.2;
  letter-spacing: -0.5px;
}

.center-single-meta {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
  margin-top: 20px;
}

.center-meta-item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #ffffff;
  padding: 10px 20px;
  border-radius: 50px;
  font-size: 1rem;
  font-weight: 600;
  color: #374151;
  box-shadow: 0 2px 8px rgba(5, 77, 45, 0.08);
  border: 1px solid rgba(5, 77, 45, 0.1);
}

.center-single-image-wrapper {
  margin-bottom: 50px;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(5, 77, 45, 0.15);
}

.center-single-image {
  width: 100%;
  max-width: 1200px;
  height: auto;
  max-height: 600px;
  object-fit: cover;
  display: block;
  margin: 0 auto;
  transition: transform 0.3s ease;
}

.center-single-image:hover {
  transform: scale(1.02);
}

.center-info-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
  margin-bottom: 50px;
}

.center-info-card {
  background: #ffffff;
  padding: 30px;
  border-radius: 20px;
  box-shadow: 0 4px 20px rgba(5, 77, 45, 0.08);
  border: 2px solid rgba(5, 77, 45, 0.1);
  display: flex;
  align-items: flex-start;
  gap: 20px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.center-info-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 30px rgba(5, 77, 45, 0.15);
  border-color: rgba(5, 77, 45, 0.3);
}

.center-info-icon {
  font-size: 2.5rem;
  flex-shrink: 0;
  width: 70px;
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(5, 77, 45, 0.1) 0%, rgba(5, 77, 45, 0.05) 100%);
  border-radius: 16px;
}

.center-info-content {
  flex: 1;
}

.center-info-label {
  font-size: 0.9rem;
  color: #6b7280;
  font-weight: 600;
  margin-bottom: 8px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.center-info-value {
  font-size: 1.1rem;
  color: #054d2d;
  font-weight: 600;
  line-height: 1.4;
}

.center-single-content {
  max-width: 900px;
  margin: 0 auto;
}

.center-description-modern {
  background: #ffffff;
  padding: 40px;
  border-radius: 20px;
  box-shadow: 0 4px 20px rgba(5, 77, 45, 0.08);
  border: 1px solid rgba(5, 77, 45, 0.1);
  margin-bottom: 40px;
}

.center-entry-content {
  background: #ffffff;
  padding: 50px;
  border-radius: 24px;
  box-shadow: 0 4px 24px rgba(5, 77, 45, 0.08);
  border: 1px solid rgba(5, 77, 45, 0.1);
  line-height: 1.9;
  font-size: 1.15rem;
  color: #374151;
}

.center-entry-content h2,
.center-entry-content h3,
.center-entry-content h4 {
  color: #054d2d;
  font-weight: 700;
  margin-top: 35px;
  margin-bottom: 20px;
}

.center-entry-content h2 {
  font-size: 2rem;
}

.center-entry-content h3 {
  font-size: 1.6rem;
}

.center-entry-content p {
  margin-bottom: 20px;
}

/* Responsive Design for Centers */
@media (max-width: 768px) {
  .centers-grid-modern {
    grid-template-columns: 1fr;
  }
  
  .center-single-title {
    font-size: 2.2rem;
  }
  
  .center-single-meta {
    flex-direction: column;
    gap: 12px;
  }
  
  .center-single-image {
    max-height: 400px;
    border-radius: 16px;
  }
  
  .center-info-cards {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .center-info-card {
    padding: 24px;
  }
  
  .center-entry-content {
    padding: 30px 20px;
    font-size: 1rem;
  }
}

/* Minimal Hero Section Styles */
.hero-section-minimal {
  position: relative;
  padding: 120px 0 100px;
  background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
  min-height: 85vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-section-minimal::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 50%;
  height: 100%;
  background: radial-gradient(circle at top right, rgba(5, 77, 45, 0.03) 0%, transparent 70%);
  pointer-events: none;
}

.hero-content-minimal {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 900px;
  margin: 0 auto;
  animation: fadeInUp 0.8s ease-out;
}

.hero-badge-minimal {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: linear-gradient(135deg, rgba(5, 77, 45, 0.08) 0%, rgba(5, 77, 45, 0.05) 100%);
  padding: 12px 24px;
  border-radius: 50px;
  font-size: 0.9rem;
  font-weight: 600;
  color: #054d2d;
  margin-bottom: 32px;
  border: 1px solid rgba(5, 77, 45, 0.1);
  backdrop-filter: blur(10px);
  animation: fadeInUp 0.8s ease-out 0.2s both;
}

.hero-title-minimal {
  font-size: 3.5rem;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 24px;
  color: #111827;
  letter-spacing: -1px;
  animation: fadeInUp 0.8s ease-out 0.4s both;
}

.hero-title-accent {
  color: #054d2d;
  display: block;
  margin-top: 8px;
}

.hero-description-minimal {
  font-size: 1.25rem;
  color: #6b7280;
  line-height: 1.8;
  margin-bottom: 40px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  animation: fadeInUp 0.8s ease-out 0.6s both;
}

.hero-actions-minimal {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  margin-bottom: 60px;
  flex-wrap: wrap;
  animation: fadeInUp 0.8s ease-out 0.8s both;
}

.hero-stats-minimal {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 60px;
  flex-wrap: wrap;
  padding-top: 60px;
  border-top: 1px solid rgba(5, 77, 45, 0.1);
  animation: fadeInUp 0.8s ease-out 1s both;
}

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

.stat-number-minimal {
  font-size: 2.5rem;
  font-weight: 800;
  color: #054d2d;
  margin-bottom: 8px;
  line-height: 1;
}

.stat-label-minimal {
  font-size: 1rem;
  color: #6b7280;
  font-weight: 500;
}

/* Responsive Design for Minimal Hero */
@media (max-width: 1024px) {
  .hero-title-minimal {
    font-size: 3rem;
  }
  
  .hero-stats-minimal {
    gap: 40px;
  }
}

@media (max-width: 768px) {
  .hero-section-minimal {
    padding: 100px 0 80px;
    min-height: auto;
  }
  
  .hero-title-minimal {
    font-size: 2.2rem;
  }
  
  .hero-description-minimal {
    font-size: 1.1rem;
    margin-bottom: 32px;
  }
  
  .hero-actions-minimal {
    flex-direction: column;
    width: 100%;
  }
  
  .hero-actions-minimal .btn {
    width: 100%;
    max-width: 300px;
  }
  
  .hero-stats-minimal {
    gap: 30px;
    padding-top: 40px;
  }
  
  .stat-number-minimal {
    font-size: 2rem;
  }
  
  .stat-label-minimal {
    font-size: 0.9rem;
  }
}

/* Educational Material Single Page Styles */
.education-single-section {
  background: linear-gradient(180deg, #f8fafc 0%, #ffffff 100%);
  padding: 60px 0 100px;
}

.education-single-wrapper {
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 20px;
}

.education-single-header {
  text-align: center;
  margin-bottom: 50px;
}

.education-badge-modern {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, rgba(5, 77, 45, 0.1) 0%, rgba(5, 77, 45, 0.05) 100%);
  padding: 10px 20px;
  border-radius: 50px;
  font-size: 0.9rem;
  font-weight: 600;
  color: #054d2d;
  margin-bottom: 24px;
  border: 1px solid rgba(5, 77, 45, 0.1);
  backdrop-filter: blur(10px);
}

.education-single-title {
  font-size: 3rem;
  font-weight: 800;
  color: #054d2d;
  margin: 0 0 30px 0;
  line-height: 1.2;
  letter-spacing: -0.5px;
}

.education-single-meta {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
  margin-top: 20px;
}

.education-meta-item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #ffffff;
  padding: 10px 20px;
  border-radius: 50px;
  font-size: 1rem;
  font-weight: 600;
  color: #374151;
  box-shadow: 0 2px 8px rgba(5, 77, 45, 0.08);
  border: 1px solid rgba(5, 77, 45, 0.1);
}

.education-single-image-wrapper {
  margin-bottom: 50px;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(5, 77, 45, 0.15);
}

.education-single-image {
  width: 100%;
  max-width: 1200px;
  height: auto;
  max-height: 600px;
  object-fit: cover;
  display: block;
  margin: 0 auto;
  transition: transform 0.3s ease;
}

.education-single-image:hover {
  transform: scale(1.02);
}

.education-single-content {
  max-width: 900px;
  margin: 0 auto;
}

.education-entry-content {
  background: #ffffff;
  padding: 50px;
  border-radius: 24px;
  box-shadow: 0 4px 24px rgba(5, 77, 45, 0.08);
  border: 1px solid rgba(5, 77, 45, 0.1);
  line-height: 1.9;
  font-size: 1.15rem;
  color: #374151;
  margin-bottom: 50px;
}

.education-entry-content h2,
.education-entry-content h3,
.education-entry-content h4 {
  color: #054d2d;
  font-weight: 700;
  margin-top: 35px;
  margin-bottom: 20px;
}

.education-entry-content h2 {
  font-size: 2rem;
}

.education-entry-content h3 {
  font-size: 1.6rem;
}

.education-entry-content p {
  margin-bottom: 20px;
}

.education-entry-content ul,
.education-entry-content ol {
  margin: 20px 0;
  padding-right: 30px;
}

.education-entry-content li {
  margin-bottom: 12px;
}

.education-navigation-modern {
  margin-top: 60px;
  padding-top: 40px;
  border-top: 2px solid rgba(5, 77, 45, 0.1);
}

.education-nav-links {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

.education-nav-link {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px 24px;
  background: #ffffff;
  border: 2px solid rgba(5, 77, 45, 0.1);
  border-radius: 16px;
  color: #054d2d;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 2px 8px rgba(5, 77, 45, 0.05);
  flex: 1;
  min-width: 200px;
  justify-content: center;
}

.education-nav-link:hover {
  background: linear-gradient(135deg, #10b981 0%, #059669 100%);
  color: #ffffff;
  border-color: #054d2d;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(5, 77, 45, 0.2);
}

.education-nav-link.home-link {
  flex: 0 0 auto;
  min-width: auto;
}

/* Enhanced Patient Guide Single Styles */
.guide-single-section {
  background: linear-gradient(180deg, #f8fafc 0%, #ffffff 100%);
  padding: 60px 0 100px;
}

.patient-guide-single-modern {
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 20px;
}

.guide-single-header {
  text-align: center;
  margin-bottom: 50px;
  padding: 40px;
  background: linear-gradient(135deg, rgba(5, 77, 45, 0.03) 0%, rgba(5, 77, 45, 0.01) 100%);
  border-radius: 24px;
  border: 1px solid rgba(5, 77, 45, 0.1);
}

.guide-single-title {
  font-size: 3rem;
  font-weight: 800;
  color: #054d2d;
  margin: 24px 0 30px 0;
  line-height: 1.2;
  letter-spacing: -0.5px;
}

.pdf-download-modern {
  margin-top: 30px;
}

.pdf-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 18px 36px;
  font-size: 1.1rem;
  font-weight: 600;
  background: linear-gradient(135deg, #10b981 0%, #059669 100%);
  color: #ffffff;
  border-radius: 16px;
  box-shadow: 0 8px 24px rgba(5, 77, 45, 0.2);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  text-decoration: none;
}

.pdf-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(5, 77, 45, 0.3);
}

.guide-entry-content-modern {
  background: #ffffff;
  padding: 50px;
  border-radius: 24px;
  box-shadow: 0 4px 24px rgba(5, 77, 45, 0.08);
  border: 1px solid rgba(5, 77, 45, 0.1);
  line-height: 1.9;
  font-size: 1.15rem;
  color: #374151;
  margin-bottom: 50px;
}

/* Responsive Design for Education Single */
@media (max-width: 768px) {
  .education-single-title {
    font-size: 2.2rem;
  }
  
  .education-single-meta {
    flex-direction: column;
    gap: 12px;
  }
  
  .education-single-image {
    max-height: 400px;
    border-radius: 16px;
  }
  
  .education-entry-content {
    padding: 30px 20px;
    font-size: 1rem;
  }
  
  .education-entry-content h2 {
    font-size: 1.6rem;
  }
  
  .education-entry-content h3 {
    font-size: 1.3rem;
  }
  
  .education-nav-links {
    flex-direction: column;
  }
  
  .education-nav-link {
    width: 100%;
    justify-content: space-between;
  }
  
  .education-nav-link.home-link {
    width: 100%;
  }
  
  .guide-single-header {
    padding: 30px 20px;
  }
  
  .guide-single-title {
    font-size: 2.2rem;
  }
  
  .guide-entry-content-modern {
    padding: 30px 20px;
    font-size: 1rem;
  }
}

/* About Page Mobile Small (480px) */
@media (max-width: 480px) {
  .about-mission-card,
  .about-values-card,
  .about-credentials-card,
  .doctor-specs-card {
    padding: 24px 16px !important;
    border-radius: 20px !important;
  }
  
  .about-mission-card h2,
  .about-values-card h2,
  .about-credentials-card h2,
  .doctor-specs-card h2 {
    font-size: 1.3rem !important;
  }
  
  .about-section-icon {
    width: 45px !important;
    height: 45px !important;
  }
  
  .about-section-icon span {
    font-size: 1.3rem !important;
  }
  
  .about-value-item {
    padding: 20px !important;
  }
  
  .about-value-item h3 {
    font-size: 1rem !important;
  }
  
  .about-value-item p {
    font-size: 0.9rem !important;
  }
  
  .stats-grid-modern {
    grid-template-columns: 1fr !important;
    gap: 12px !important;
  }
  
  .stat-card-modern {
    padding: 16px !important;
  }
  
  .stat-card-modern div:first-of-type {
    width: 45px !important;
    height: 45px !important;
    margin-bottom: 12px !important;
  }
  
  .stat-card-modern div:first-of-type span {
    font-size: 1.3rem !important;
  }
  
  .stat-card-modern div:nth-of-type(2) {
    font-size: 1.8rem !important;
  }
  
  .stat-card-modern div:nth-of-type(3) {
    font-size: 0.85rem !important;
  }
  
  .doctor-profile-section > div > div:first-child {
    width: 120px !important;
    height: 120px !important;
  }
  
  .doctor-profile-section h3 {
    font-size: 1.2rem !important;
  }
  
  .doctor-profile-section p {
    font-size: 0.9rem !important;
  }
  
  .doctor-info-item {
    padding: 16px !important;
    display: block !important;
  }
  
  .doctor-info-item > div:first-child {
    gap: 8px !important;
    margin-bottom: 10px !important;
    display: flex !important;
    flex-wrap: nowrap !important;
    white-space: nowrap !important;
    width: 100% !important;
  }
  
  .doctor-info-item h4 {
    font-size: 0.95rem !important;
    white-space: nowrap !important;
    overflow: hidden !important;
    text-overflow: ellipsis !important;
    flex: 1 !important;
    min-width: 0 !important;
  }
  
  .doctor-info-item > div:first-child > span {
    width: 32px !important;
    height: 32px !important;
    flex-shrink: 0 !important;
  }
  
  .doctor-info-item > div:first-child > span > span {
    font-size: 0.9rem !important;
  }
  
  .doctor-info-item ul {
    display: block !important;
    width: 100% !important;
    padding-right: 40px !important;
    font-size: 0.85rem !important;
    line-height: 1.6 !important;
    margin-top: 0 !important;
  }
  
  .about-credentials-card ul li {
    padding: 12px !important;
    font-size: 0.9rem !important;
  }
  
  .about-credentials-card ul li span:first-child {
    width: 28px !important;
    height: 28px !important;
  }
}

/* Patient Guide Single - Extra Attractive Enhancements */
.guide-single-section.guide-single-attractive {
  position: relative;
  background:
    radial-gradient(circle at 12% 18%, rgba(16, 185, 129, 0.08) 0%, transparent 40%),
    radial-gradient(circle at 88% 22%, rgba(59, 130, 246, 0.06) 0%, transparent 45%),
    linear-gradient(180deg, #f8fafc 0%, #ffffff 100%);
  overflow: hidden;
}

.guide-single-section.guide-single-attractive::before {
  content: '';
  position: absolute;
  inset: -20% -10% auto -10%;
  height: 320px;
  background: linear-gradient(135deg, rgba(5, 77, 45, 0.12), rgba(16, 185, 129, 0.06), rgba(59, 130, 246, 0.04));
  filter: blur(40px);
  opacity: 0.7;
  pointer-events: none;
}

.guide-single-header-attractive {
  position: relative;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(255, 255, 255, 0.9) 100%);
  border: 1px solid rgba(5, 77, 45, 0.12);
  box-shadow:
    0 12px 36px rgba(5, 77, 45, 0.12),
    inset 0 1px 0 rgba(255, 255, 255, 0.7);
  border-radius: 28px;
  padding: 48px 48px 36px;
}

.guide-single-header-attractive::after {
  content: '';
  position: absolute;
  inset: 8px;
  border-radius: 22px;
  border: 1px dashed rgba(5, 77, 45, 0.12);
  pointer-events: none;
}

.guide-single-thumb-wrap {
  border-radius: 22px;
  overflow: hidden;
  box-shadow: 0 16px 40px rgba(5, 77, 45, 0.18);
  margin: 0 auto 28px;
  max-width: 900px;
}

.guide-single-thumb {
  width: 100%;
  height: auto;
  display: block;
  transform: scale(1.01);
  transition: transform 0.5s ease;
}

.guide-single-thumb-wrap:hover .guide-single-thumb {
  transform: scale(1.04);
}

.guide-meta-modern {
  display: flex;
  justify-content: center;
  margin-bottom: 16px;
}

.guide-category-modern {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 18px;
  border-radius: 999px;
  background: rgba(5, 77, 45, 0.06);
  color: #054d2d;
  font-weight: 700;
  border: 1px solid rgba(5, 77, 45, 0.12);
  backdrop-filter: blur(6px);
}

.guide-single-title {
  font-size: clamp(2.2rem, 4vw, 3.4rem);
  margin: 18px 0 22px;
  position: relative;
}

.guide-single-title::after {
  content: '';
  display: block;
  width: 120px;
  height: 5px;
  margin: 18px auto 0;
  border-radius: 6px;
  background: linear-gradient(90deg, #10b981, #059669);
  box-shadow: 0 6px 16px rgba(5, 77, 45, 0.25);
}

.guide-single-excerpt {
  font-size: 1.1rem;
  line-height: 1.9;
  color: #4b5563;
  margin: 0 auto 20px;
  max-width: 760px;
}

.guide-single-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: center;
  align-items: center;
  margin-top: 26px;
  padding: 18px 20px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid rgba(5, 77, 45, 0.08);
  box-shadow: 0 6px 20px rgba(5, 77, 45, 0.08);
}

.pdf-btn-attractive {
  position: relative;
  background: linear-gradient(135deg, #10b981 0%, #059669 70%, #047857 100%);
  border-radius: 18px;
  padding: 18px 32px;
  font-size: 1.05rem;
  box-shadow: 0 14px 30px rgba(5, 77, 45, 0.22);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.pdf-btn-attractive:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 40px rgba(5, 77, 45, 0.3);
}

.pdf-btn-attractive .pdf-btn-arrow {
  transition: transform 0.3s ease;
}

.pdf-btn-attractive:hover .pdf-btn-arrow {
  transform: translateX(-6px);
}

.guide-back-link {
  font-weight: 700;
  padding: 12px 18px;
  border-radius: 999px;
  border: 1px solid rgba(5, 77, 45, 0.2);
  background: rgba(5, 77, 45, 0.04);
  transition: all 0.3s ease;
}

.guide-back-link:hover {
  background: rgba(5, 77, 45, 0.12);
  border-color: rgba(5, 77, 45, 0.4);
  transform: translateY(-2px);
}

.guide-entry-content-attractive {
  position: relative;
  background: #ffffff;
  border: 1px solid rgba(5, 77, 45, 0.12);
  box-shadow:
    0 10px 30px rgba(5, 77, 45, 0.1),
    inset 0 1px 0 rgba(255, 255, 255, 0.8);
}

.guide-entry-content-attractive::before {
  content: '';
  position: absolute;
  top: 16px;
  left: 16px;
  right: 16px;
  height: 6px;
  border-radius: 999px;
  background: linear-gradient(90deg, #10b981, #059669, #0ea5e9);
  opacity: 0.9;
}

.guide-entry-content-attractive > *:first-child {
  margin-top: 24px;
}

.guide-single-footer-modern {
  text-align: center;
}

@media (max-width: 768px) {
  .guide-single-header-attractive {
    padding: 28px 20px 24px;
  }

  .guide-single-title::after {
    width: 90px;
  }

  .guide-single-actions {
    padding: 16px;
  }

  .pdf-btn-attractive {
    width: 100%;
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .guide-single-actions {
    gap: 12px;
  }

  .guide-back-link {
    width: 100%;
    justify-content: center;
  }
}
