@import '@fortawesome/fontawesome-free/css/all.min.css';
@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;600;700;800&family=Inter:wght@300;400;500;600;700&display=swap');

:root {
  /* Premium Bright Medical Palette */
  --bg-color: #f8fafc;
  /* Light blue/gray background */
  --bg-light: var(--bg-light);
  /* Pure white */
  --primary-color: #0f172a;
  /* Dark slate for main text */
  --primary-light: #475569;
  /* Slate 600 for secondary text */

  --accent-color: #0284c7;
  /* Trustworthy Medical Blue */
  --accent-hover: #0369a1;
  /* Deeper Blue */
  --accent-glow: rgba(2, 132, 199, 0.5);

  --success-color: #10B981;
  /* Emerald */

  /* Glassmorphism settings for light mode */
  --glass-bg: rgba(255, 255, 255, 0.85);
  --glass-border: rgba(2, 132, 199, 0.15);
  --glass-blur: blur(20px);

  /* Typography */
  --font-heading: 'Outfit', sans-serif;
  --font-body: 'Inter', sans-serif;

  /* Layout */
  --container-width: 1200px;
  --section-padding: 120px 20px;
  --radius-sm: 12px;
  --radius-md: 20px;
  --radius-lg: 30px;
}

/* Base Styles & Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  background-color: var(--bg-color);
}

body {
  font-family: var(--font-body);
  color: var(--primary-light);
  background-color: var(--bg-color);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  position: relative;
  overflow-x: hidden;
}

/* Ambient Background Glow */
body::before {
  content: "";
  position: fixed;
  top: -20%;
  left: -10%;
  width: 50vw;
  height: 50vw;
  background: radial-gradient(circle, rgba(2, 132, 199, 0.08) 0%, transparent 60%);
  filter: blur(80px);
  z-index: -1;
  pointer-events: none;
}

body::after {
  content: "";
  position: fixed;
  bottom: -20%;
  right: -10%;
  width: 60vw;
  height: 60vw;
  background: radial-gradient(circle, rgba(14, 165, 233, 0.08) 0%, transparent 60%);
  filter: blur(100px);
  z-index: -1;
  pointer-events: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-heading);
  /* color fixed */
  color: var(--primary-color);
  line-height: 1.2;
}

a {
  text-decoration: none;
  color: inherit;
  transition: all 0.3s ease;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* Glass Card Global Class */
.glass-card {
  background: var(--glass-bg);
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg);
  position: relative;
  overflow: hidden;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.05);
  transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275), box-shadow 0.4s ease, border-color 0.4s ease;
}

.glass-card:hover {
  transform: translateY(-8px);
  border-color: rgba(2, 132, 199, 0.3);
  box-shadow: 0 30px 60px -10px rgba(2, 132, 199, 0.1), 0 0 20px 0 rgba(2, 132, 199, 0.05);
}

/* Dynamic Mouse Tracking Glow */
.glass-card::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(600px circle at var(--mouse-x, -500px) var(--mouse-y, -500px), rgba(2, 132, 199, 0.1), transparent 40%);
  opacity: 0;
  transition: opacity 0.5s;
  z-index: 1;
  pointer-events: none;
}

.glass-card:hover::after {
  opacity: 1;
}

/* Inside content must sit above mouse glow */
.glass-card>* {
  position: relative;
  z-index: 2;
}

/* Reveal Animations */
.reveal-up {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s ease-out, transform 0.8s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.reveal-left {
  opacity: 0;
  transform: translateX(-40px);
  transition: opacity 0.8s ease-out, transform 0.8s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.reveal-right {
  opacity: 0;
  transform: translateX(40px);
  transition: opacity 0.8s ease-out, transform 0.8s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.reveal-scale {
  opacity: 0;
  transform: scale(0.9);
  transition: opacity 0.8s ease-out, transform 0.8s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.visible {
  opacity: 1 !important;
  transform: translate(0, 0) scale(1) !important;
}

/* Staggering utility */
.delay-100 {
  transition-delay: 100ms;
}

.delay-200 {
  transition-delay: 200ms;
}

.delay-300 {
  transition-delay: 300ms;
}

.delay-400 {
  transition-delay: 400ms;
}

/* Layout Utilities */
.container {
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 20px;
}

.section {
  padding: var(--section-padding);
}

.section-title {
  text-align: center;
  margin-bottom: 70px;
}

.section-title h2 {
  font-size: 3.2rem;
  font-weight: 800;
  margin-bottom: 20px;
  background: linear-gradient(135deg, var(--primary-color) 20%, var(--accent-color) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  letter-spacing: -1px;
}

.section-title p {
  font-size: 1.2rem;
  color: var(--primary-light);
  max-width: 700px;
  margin: 0 auto;
}

/* Buttons */
.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  color: var(--accent-color);
  font-weight: 700;
  padding: 16px 36px;
  border-radius: 50px;
  font-family: var(--font-heading);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  border: 1px solid var(--accent-color);
  position: relative;
  overflow: hidden;
  cursor: pointer;
  z-index: 1;
  transition: all 0.4s;
  box-shadow: 0 0 20px rgba(2, 132, 199, 0.1);
}

.btn-primary::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, var(--accent-color), #0ea5e9);
  opacity: 0;
  transition: opacity 0.4s ease;
  z-index: -1;
}

.btn-primary:hover {
  color: #030712;
  box-shadow: 0 0 30px rgba(2, 132, 199, 0.4);
  transform: translateY(-2px);
  border-color: transparent;
}

.btn-primary:hover::before {
  opacity: 1;
}

.btn-outline {
  display: inline-block;
  background: transparent;
  /* color fixed */
  color: var(--primary-color);
  font-weight: 600;
  padding: 14px 32px;
  border-radius: 50px;
  border: 1px solid var(--glass-border);
  backdrop-filter: blur(5px);
  transition: all 0.4s ease;
}

.btn-outline:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: var(--primary-color);
  transform: translateY(-2px);
}

/* Header */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  transition: all 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
  padding: 30px 0;
  background-color: rgba(255, 255, 255, 0.3);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.4);
}

.header.scrolled {
  background-color: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  padding: 15px 0;
  border-bottom: 1px solid var(--glass-border);
}

.nav-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo-container {
  display: flex;
  align-items: center;
  gap: 15px;
}

.logo-img {
  width: 45px;
  filter: drop-shadow(0 0 10px rgba(2, 132, 199, 0.3));
}

.logo-text {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.3rem;
  line-height: 1.1;
  /* color fixed */
  color: var(--primary-color);
  letter-spacing: 1px;
}

.nav-links {
  display: flex;
  gap: 30px;
  align-items: center;
}

.nav-links a:not(.btn-primary) {
  font-weight: 700;
  color: var(--primary-color);
  font-size: 0.95rem;
  letter-spacing: 0.5px;
  position: relative;
  text-transform: uppercase;
  text-shadow: 0 0 10px rgba(255, 255, 255, 0.8);
}

.nav-links a:not(.btn-primary)::after {
  content: '';
  position: absolute;
  width: 0;
  height: 2px;
  bottom: -6px;
  left: 0;
  background-color: var(--accent-color);
  transition: width 0.3s ease;
  box-shadow: 0 0 10px var(--accent-color);
}

.nav-links a:not(.btn-primary):hover {
  /* color fixed */
  color: var(--primary-color);
}

.nav-links a:not(.btn-primary):hover::after {
  width: 100%;
}

.hamburger {
  display: none;
}

/* Hero Section */
.hero-section {
  position: relative;
  height: 100vh;
  min-height: 700px;
  display: flex;
  align-items: center;
  justify-content: center;
  /* Instead of a static image, let's make it look cooler with a dark overlay over the image */
  background-image: url('figures/top.png');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  /* Parallax effect */
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0.3) 0%, rgba(248, 250, 252, 0.9) 100%);
  z-index: 1;
}

/* Subtle Floating Orbs in Hero */
.orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  z-index: 1;
  opacity: 0.6;
}

.orb-1 {
  width: 300px;
  height: 300px;
  background: rgba(2, 132, 199, 0.4);
  top: 20%;
  left: 15%;
  animation: float 10s ease-in-out infinite alternate;
}

.orb-2 {
  width: 400px;
  height: 400px;
  background: rgba(138, 43, 226, 0.3);
  bottom: 10%;
  right: 10%;
  animation: float 15s ease-in-out infinite alternate-reverse;
}

@keyframes float {
  0% {
    transform: translateY(0) scale(1);
  }

  100% {
    transform: translateY(-50px) scale(1.1);
  }
}

.hero-content {
  position: relative;
  z-index: 2;
  width: 100%;
}

.hero-layout {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 60px;
  width: 100%;
}

.hero-text-area {
  flex: 1.2;
  text-align: left;
  background: rgba(255, 255, 255, 0.6);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  padding: 40px;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(255, 255, 255, 0.8);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.05);
  position: relative;
  overflow: hidden;
}

.hero-text-area>* {
  position: relative;
  z-index: 2;
}

.abstract-graphic-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  pointer-events: none;
  overflow: hidden;
}

.hero-graphic-area {
  flex: 0.8;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

.medical-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(2, 132, 199, 0.1);
  border: 1px solid rgba(2, 132, 199, 0.2);
  color: var(--accent-color);
  padding: 8px 16px;
  border-radius: 50px;
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 30px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.hero-text-area h1 {
  font-size: 5.5rem;
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 20px;
  color: var(--primary-color);
  letter-spacing: -1px;
}

.text-gradient {
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--accent-color) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.text-accent {
  color: var(--accent-hover);
}

.hero-subtitle {
  font-size: 1.8rem;
  font-weight: 300;
  color: var(--primary-light);
  margin-bottom: 40px;
  line-height: 1.5;
}

.highlight-italic {
  font-style: italic;
  color: var(--accent-color);
  font-weight: 500;
}

.sub-desc {
  display: block;
  font-size: 1.1rem;
  color: var(--primary-light);
  margin-top: 15px;
  font-weight: 500;
  letter-spacing: 0.5px;
  border-left: 3px solid var(--accent-color);
  padding-left: 15px;
}

.hero-actions {
  display: flex;
  gap: 20px;
  align-items: center;
  flex-wrap: wrap;
}

/* Abstract Graphic Styles */
.abstract-graphic {
  position: relative;
  width: 400px;
  height: 400px;
}

.glass-ring {
  position: absolute;
  top: 50%;
  left: 70%;
  /* Move much further right so the 600px rings do not reach the left text area */
  transform: translateY(-50%);
  border-radius: 50%;
  border: 1px solid rgba(2, 132, 199, 0.2);
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.4), rgba(255, 255, 255, 0.1));
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

@keyframes rotateRight {
  0% {
    transform: translateY(-50%) rotate(0deg);
  }

  100% {
    transform: translateY(-50%) rotate(360deg);
  }
}

@keyframes rotateLeft {
  0% {
    transform: translateY(-50%) rotate(0deg);
  }

  100% {
    transform: translateY(-50%) rotate(-360deg);
  }
}

.ring-1 {
  width: 450px;
  height: 450px;
  animation: rotateRight 45s linear infinite;
  border-left-color: var(--accent-color);
  border-bottom-color: var(--accent-hover);
  opacity: 0.25;
}

.ring-2 {
  width: 300px;
  height: 300px;
  animation: rotateLeft 35s linear infinite;
  border-right-color: var(--accent-color);
  opacity: 0.15;
}

.floating-badge {
  position: absolute;
  background: var(--glass-bg);
  backdrop-filter: var(--glass-blur);
  border: 1px solid var(--glass-border);
  padding: 12px 24px;
  border-radius: var(--radius-md);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
  font-weight: 600;
  color: var(--primary-color);
  display: flex;
  align-items: center;
  gap: 10px;
  white-space: nowrap;
  animation: floatBadge 6s ease-in-out infinite;
  z-index: 3;
}

.floating-badge i {
  color: var(--accent-color);
  font-size: 1.2rem;
}

.badge-1 {
  top: 15%;
  right: 25%;
  animation-delay: 0s;
}

.badge-2 {
  top: 35%;
  right: 5%;
  animation-delay: 1.5s;
}

.badge-3 {
  bottom: 35%;
  right: 20%;
  animation-delay: 3s;
}

.badge-4 {
  bottom: 15%;
  right: 35%;
  animation-delay: 2s;
}

.badge-5 {
  bottom: 5%;
  right: 30%;
  animation-delay: 4.5s;
}

.badge-6 {
  top: 5%;
  right: 40%;
  animation-delay: 1s;
}

.badge-7 {
  top: 75%;
  right: 15%;
  animation-delay: 3.5s;
}

@keyframes rotateRight {
  0% {
    transform: translate(-50%, -50%) rotate(0deg);
  }

  100% {
    transform: translate(-50%, -50%) rotate(360deg);
  }
}

@keyframes rotateLeft {
  0% {
    transform: translate(-50%, -50%) rotate(0deg);
  }

  100% {
    transform: translate(-50%, -50%) rotate(-360deg);
  }
}

@keyframes floatBadge {
  0% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-15px);
  }

  100% {
    transform: translateY(0);
  }
}

.scroll-indicator {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  color: var(--primary-light);
  font-size: 0.8rem;
  letter-spacing: 3px;
  text-transform: uppercase;
}

.scroll-indicator .line {
  margin-top: 15px;
  width: 1px;
  height: 80px;
  background: rgba(255, 255, 255, 0.1);
  position: relative;
  overflow: hidden;
}

.scroll-indicator .line::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 50%;
  background: var(--accent-color);
  animation: scrollDown 2s ease-in-out infinite;
  box-shadow: 0 0 10px var(--accent-color);
}

@keyframes scrollDown {
  0% {
    transform: translateY(-100%);
  }

  100% {
    transform: translateY(200%);
  }
}

/* --- Message Section --- */
.message-container {
  display: flex;
  gap: 60px;
  align-items: center;
}

.message-text {
  flex: 1.5;
  font-size: 1.1rem;
  color: var(--primary-light);
}

.highlight-text {
  font-size: 1.5rem;
  /* color fixed */
  color: var(--primary-color);
  font-weight: 600;
  margin-bottom: 30px;
  border-left: 4px solid var(--accent-color);
  padding-left: 25px;
  line-height: 1.6;
}

.message-text p {
  margin-bottom: 20px;
}

.signature-box {
  margin-top: 50px;
  padding-top: 30px;
  border-top: 1px solid var(--glass-border);
}

.signature-title {
  color: var(--accent-hover);
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 0.9rem;
  margin-bottom: 15px;
}

.signature-name-row h3 {
  font-size: 1.8rem;
}

.message-image-box {
  flex: 1;
  display: flex;
  justify-content: center;
}

.doctor-card-preview {
  text-align: center;
  padding: 50px 40px;
}

.preview-img {
  width: 160px;
  height: 160px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid transparent;
  background: linear-gradient(var(--bg-light), var(--bg-light)) padding-box,
    linear-gradient(135deg, var(--accent-color), #8a2be2) border-box;
  margin: 0 auto 25px;
  box-shadow: 0 0 30px rgba(2, 132, 199, 0.2);
}

.doctor-card-preview h3 {
  font-size: 1.6rem;
  margin-bottom: 10px;
}

.preview-title {
  color: var(--accent-color);
  font-weight: 600;
  letter-spacing: 2px;
  font-size: 0.9rem;
  margin-bottom: 25px;
  text-transform: uppercase;
}

.quote {
  font-style: italic;
  color: var(--primary-light);
  margin-bottom: 35px;
}

/* --- Conditions --- */
.condition-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 30px;
}

.condition-card {
  padding: 50px 40px;
}

.condition-icon-wrapper {
  width: 80px;
  height: 80px;
  border-radius: 20px;
  background: rgba(2, 132, 199, 0.05);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 30px;
  border: 1px solid rgba(2, 132, 199, 0.2);
  box-shadow: 0 0 20px rgba(2, 132, 199, 0.1) inset;
  transition: all 0.4s ease;
}

.condition-card:hover .condition-icon-wrapper {
  background: rgba(2, 132, 199, 0.15);
  transform: scale(1.1) rotate(5deg);
}

.condition-icon {
  font-size: 2.5rem;
  color: var(--accent-color);
  filter: drop-shadow(0 0 8px var(--accent-color));
}

.condition-content h3 {
  font-size: 1.6rem;
  margin-bottom: 20px;
}

.condition-content p {
  color: var(--primary-light);
  margin-bottom: 30px;
  font-size: 1rem;
}

.condition-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--accent-hover);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 0.9rem;
}

.condition-link i {
  transition: transform 0.3s;
}

.condition-link:hover i {
  transform: translateX(8px);
}

/* --- Method Section --- */
.method-intro {
  text-align: center;
  font-size: 1.2rem;
  color: var(--primary-light);
  max-width: 800px;
  margin: 0 auto 70px;
}

.science-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

.science-card {
  padding: 60px 40px 40px;
  text-align: center;
  position: relative;
  margin-top: 30px;
}

.science-icon {
  font-size: 3rem;
  /* color fixed */
  color: var(--primary-color);
  margin-bottom: 25px;
  opacity: 0.8;
}

.science-card h3 {
  font-size: 1.4rem;
  margin-bottom: 20px;
}

.science-card p {
  color: var(--primary-light);
}

@media (max-width: 992px) {
  .science-grid {
    grid-template-columns: 1fr;
  }
}

/* --- Safety & Approval --- */
.safety-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
}

.safety-box {
  padding: 50px;
  border-left: 4px solid var(--accent-color);
  border-radius: 0 var(--radius-lg) var(--radius-lg) 0;
}

.safety-desc {
  font-size: 1.1rem;
  margin-bottom: 25px;
}

.approval-list {
  margin-top: 40px;
  padding: 30px;
  background: rgba(2, 132, 199, 0.02);
  border-radius: var(--radius-md);
  border: 1px solid var(--glass-border);
}

.approval-item {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 20px;
  font-size: 1.1rem;
}

.approval-item:last-child {
  margin-bottom: 0;
}

.check-icon {
  color: var(--success-color);
  font-size: 1.4rem;
}

.location-box {
  padding: 50px;
  background: linear-gradient(135deg, rgba(2, 132, 199, 0.05), transparent);
  border: 1px solid rgba(2, 132, 199, 0.1);
  text-align: center;
  border-radius: var(--radius-lg);
}

.location-box h3 {
  font-size: 1.8rem;
  margin-bottom: 30px;
}

.location-list {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  justify-content: center;
  margin-bottom: 40px;
}

.location-list li {
  background: rgba(2, 132, 199, 05);
  padding: 12px 20px;
  border-radius: 50px;
  font-size: 0.95rem;
  border: 1px solid var(--glass-border);
  display: flex;
  align-items: center;
  gap: 10px;
}

.location-list i {
  color: var(--accent-color);
}

.location-link {
  color: var(--accent-color);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 1rem;
}

/* --- Doctors --- */
.doctor-grid {
  display: grid;
  gap: 30px;
  max-width: 900px;
  margin: 0 auto;
}

.doctor-card {
  cursor: pointer;
}

.doctor-summary {
  display: flex;
  align-items: center;
  padding: 30px 40px;
  gap: 40px;
}

.doctor-thumb {
  width: 130px;
  height: 130px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid transparent;
  background: linear-gradient(var(--bg-light), var(--bg-light)) padding-box,
    linear-gradient(135deg, rgba(255, 255, 255, 0.2), var(--accent-color)) border-box;
}

.doctor-header-info {
  flex-grow: 1;
}

.doctor-name {
  font-size: 1.8rem;
  margin-bottom: 10px;
}

.doctor-title {
  color: var(--accent-color);
  text-transform: uppercase;
  font-size: 0.85rem;
  letter-spacing: 1.5px;
  margin-bottom: 15px;
}

.expand-hint {
  font-size: 0.9rem;
  color: var(--primary-light);
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 600;
  text-transform: uppercase;
}

.doctor-card:hover .expand-hint {
  /* color fixed */
  color: var(--primary-color);
}

.doctor-full-details {
  border-top: 1px solid var(--glass-border);
  background: rgba(2, 132, 199, 0.01);
}

.details-content {
  padding: 30px 0;
}

.bio-text p {
  margin-bottom: 15px;
}

.career-header {
  font-size: 1.2rem;
  /* color fixed */
  color: var(--primary-color);
  margin: 30px 0 15px;
  border-bottom: 1px solid var(--glass-border);
  padding-bottom: 10px;
}

.career-list {
  list-style: none;
}

.career-list li {
  position: relative;
  padding-left: 20px;
  margin-bottom: 10px;
  color: var(--primary-light);
}

.career-list li::before {
  content: "•";
  color: var(--accent-color);
  position: absolute;
  left: 0;
  font-size: 1.2rem;
}

/* --- Clinics --- */
.clinic-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
  gap: 40px;
}

.clinic-card {
  display: flex;
  flex-direction: column;
  padding: 0;
}

.clinic-image-wrapper {
  position: relative;
  height: 250px;
  overflow: hidden;
}

.clinic-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
  opacity: 0.8;
}

.clinic-card:hover .clinic-img {
  transform: scale(1.1);
  opacity: 1;
}

.clinic-badge {
  position: absolute;
  top: 20px;
  right: 20px;
  background: rgba(2, 132, 199, 0.07);
  backdrop-filter: blur(5px);
  /* color fixed */
  color: var(--primary-color);
  padding: 8px 16px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.85rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  border: 1px solid var(--glass-border);
}

.clinic-body {
  padding: 40px;
  flex-grow: 1;
}

.clinic-name {
  font-size: 1.6rem;
  margin-bottom: 30px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--glass-border);
}

.info-group {
  display: flex;
  gap: 20px;
  margin-bottom: 25px;
}

.info-icon {
  width: 40px;
  height: 40px;
  background: rgba(2, 132, 199, 0.1);
  color: var(--accent-color);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 1.1rem;
}

.info-label {
  display: block;
  font-weight: 600;
  /* color fixed */
  color: var(--primary-color);
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 8px;
}

.info-content p {
  font-size: 0.95rem;
}

.info-content ul {
  list-style: none;
  padding: 0;
}

.info-content li {
  font-size: 0.95rem;
  margin-bottom: 10px;
  position: relative;
  padding-left: 15px;
}

.info-content li::before {
  content: "-";
  position: absolute;
  left: 0;
  color: var(--accent-color);
}

.phone-number {
  font-size: 1.4rem !important;
  color: var(--accent-color) !important;
  font-weight: 700;
}

/* --- Flow --- */
.flow-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 30px;
}

.step-card {
  padding: 50px 40px;
}

.step-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 30px;
}

.step-number {
  font-size: 4rem;
  font-weight: 800;
  color: rgba(2, 132, 199, 05);
  font-family: var(--font-heading);
  line-height: 1;
  text-shadow: 0 0 10px rgba(2, 132, 199, 02);
}

.step-icon {
  font-size: 2.5rem;
  color: var(--accent-color);
  opacity: 0.8;
  filter: drop-shadow(0 0 5px var(--accent-color));
}

.step-content h3 {
  font-size: 1.5rem;
  margin-bottom: 20px;
}

.step-desc {
  font-size: 1rem;
  margin-bottom: 25px;
}

.step-details {
  list-style: none;
}

.step-details li {
  font-size: 0.9rem;
  margin-bottom: 12px;
  padding-left: 15px;
  position: relative;
}

.step-details li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: var(--accent-hover);
}

.step-details strong {
  /* color fixed */
  color: var(--primary-color);
}

.case-study-banner {
  margin-top: 60px;
  background: linear-gradient(135deg, rgba(14, 165, 233, 0.1), rgba(2, 132, 199, 0.05));
  border: 1px solid rgba(2, 132, 199, 0.2);
  padding: 60px;
}

.case-study-content {
  position: relative;
  z-index: 2;
}

.case-study-content h3 {
  font-size: 2rem;
  margin-bottom: 15px;
}

.case-timeline {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 30px;
}

.case-timeline-item {
  display: flex;
  gap: 25px;
  align-items: center;
}

.case-timeline-item span {
  background: rgba(2, 132, 199, 0.1);
  border: 1px solid var(--accent-color);
  color: var(--accent-color);
  padding: 10px 20px;
  border-radius: 8px;
  font-weight: 700;
  font-size: 0.95rem;
  min-width: 110px;
  text-align: center;
}

.case-timeline-item p {
  margin: 0;
  /* color fixed */
  color: var(--primary-color);
}

.case-study-bg {
  position: absolute;
  right: -20px;
  bottom: -50px;
  font-size: 15rem;
  color: rgba(2, 132, 199, 02);
  z-index: 1;
  transform: rotate(-15deg);
}

/* --- Fees --- */
.fees-table {
  width: 100%;
  border-collapse: collapse;
}

.fees-table th {
  background: rgba(2, 132, 199, 0.03);
  padding: 25px 30px;
  text-align: left;
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--primary-light);
  border-bottom: 1px solid var(--glass-border);
}

.fees-table td {
  padding: 30px;
  border-bottom: 1px solid var(--glass-border);
  vertical-align: middle;
}

.fees-table tr:last-child td {
  border-bottom: none;
}

.fees-table tr:hover td {
  background: rgba(2, 132, 199, 02);
}

.cell-count {
  display: block;
  font-weight: 700;
  /* color fixed */
  color: var(--primary-color);
  font-size: 1.2rem;
  margin-bottom: 8px;
}

.note-text {
  display: block;
  font-size: 0.85rem;
  color: var(--primary-light);
}

.price-tag {
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--accent-color);
}

.fees-info-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  margin: 40px 0;
}

.inclusion-box,
.additional-fees {
  padding: 40px;
}

.inclusion-box h3,
.additional-fees h3 {
  font-size: 1.4rem;
  margin-bottom: 25px;
  display: flex;
  align-items: center;
  gap: 15px;
}

.inclusion-box h3 i {
  color: var(--success-color);
}

.additional-fees h3 i {
  color: var(--accent-color);
}

.inclusion-list {
  list-style: none;
}

.inclusion-list li {
  margin-bottom: 15px;
  display: flex;
  gap: 15px;
}

.inclusion-list i {
  color: var(--success-color);
  margin-top: 5px;
}

.add-fee-list {
  list-style: none;
  margin-top: 25px;
}

.add-fee-list li {
  display: flex;
  justify-content: space-between;
  padding: 15px 0;
  border-bottom: 1px dashed rgba(255, 255, 255, 0.1);
}

.fee-label {
  font-weight: 500;
}

.fee-value {
  color: var(--accent-color);
  font-weight: 700;
  font-size: 1.1rem;
}

.payment-info {
  padding: 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-left: 4px solid var(--accent-color);
}

.payment-details p {
  margin-bottom: 10px;
}

.payment-warning {
  color: #fca5a5;
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  gap: 10px;
}

.payment-contact {
  text-align: right;
}

.payment-contact .phone {
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--accent-color);
  display: block;
  margin: 10px 0;
}

/* --- Partners --- */
.partners-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  margin-bottom: 80px;
}

.partner-text-content h3 {
  font-size: 2rem;
  margin-bottom: 25px;
}

.partner-text-content p {
  margin-bottom: 20px;
  font-size: 1.1rem;
}

.partner-list {
  list-style: none;
  margin-top: 30px;
}

.partner-list li {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 20px;
  padding: 20px;
  background: rgba(2, 132, 199, 0.02);
  border-radius: var(--radius-md);
  border: 1px solid var(--glass-border);
}

.partner-list i {
  color: var(--accent-color);
  font-size: 1.4rem;
  width: 30px;
  text-align: center;
}

.partner-features {
  padding: 50px;
}

.partner-features h3 {
  font-size: 1.8rem;
  margin-bottom: 40px;
  text-align: center;
}

.feature-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}

.feature-item {
  text-align: center;
}

.feature-icon {
  width: 60px;
  height: 60px;
  background: rgba(2, 132, 199, 0.05);
  color: var(--accent-color);
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  margin: 0 auto 20px;
  border: 1px solid rgba(2, 132, 199, 0.2);
}

.feature-item h4 {
  font-size: 1.2rem;
  margin-bottom: 15px;
  /* color fixed */
  color: var(--primary-color);
}

.process-container {
  padding: 60px;
  margin-bottom: 80px;
  text-align: center;
}

.process-title {
  font-size: 2rem;
  margin-bottom: 50px;
}

.process-steps-wide {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.p-step {
  flex: 1;
}

.p-num {
  width: 60px;
  height: 60px;
  background: rgba(2, 132, 199, 0.03);
  border: 2px solid var(--accent-color);
  color: var(--accent-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 1.5rem;
  margin: 0 auto 20px;
  box-shadow: 0 0 15px rgba(2, 132, 199, 0.2) inset;
}

.p-text strong {
  /* color fixed */
  color: var(--primary-color);
  font-size: 1.1rem;
  display: block;
  margin-bottom: 5px;
}

.p-arrow {
  color: rgba(255, 255, 255, 0.1);
  font-size: 1.5rem;
}

.partner-cta {
  padding: 70px 40px;
  text-align: center;
  background: linear-gradient(135deg, rgba(14, 165, 233, 0.1), transparent);
  border: 1px solid rgba(14, 165, 233, 0.2);
}

.partner-cta-content h2 {
  font-size: 2.5rem;
  margin-bottom: 25px;
}

.partner-cta-content p {
  font-size: 1.1rem;
  margin-bottom: 40px;
  opacity: 0.9;
}

/* --- Contact Form --- */
.contact-section {
  position: relative;
}

.form-wrapper {
  max-width: 900px;
  margin: 0 auto;
  padding: 60px;
}

.form-section {
  margin-bottom: 50px;
  padding-bottom: 40px;
  border-bottom: 1px dashed rgba(255, 255, 255, 0.1);
}

.form-section.pb-0 {
  padding-bottom: 0;
  border-bottom: none;
  margin-bottom: 0;
}

.form-section-title {
  display: flex;
  align-items: center;
  gap: 20px;
  font-size: 1.6rem;
  /* color fixed */
  color: var(--primary-color);
  margin-bottom: 40px;
}

.step-badge {
  background: var(--accent-color);
  color: var(--bg-color);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  font-weight: 800;
  box-shadow: 0 0 15px var(--accent-glow);
}

.form-group {
  margin-bottom: 25px;
}

.form-group label {
  display: block;
  font-weight: 500;
  color: var(--primary-light);
  margin-bottom: 12px;
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.required {
  color: #fb7185;
  margin-left: 5px;
}

.form-control {
  width: 100%;
  padding: 18px 20px;
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 1rem;
  /* color fixed */
  color: var(--primary-color);
  background-color: rgba(2, 132, 199, 0.02);
  transition: all 0.3s ease;
}

.form-control:focus {
  outline: none;
  border-color: var(--accent-color);
  background-color: rgba(2, 132, 199, 0.04);
  box-shadow: 0 0 0 4px rgba(2, 132, 199, 0.1);
}

.radio-group,
.checkbox-group {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.radio-label,
.checkbox-label {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  cursor: pointer;
  /* color fixed */
  color: var(--primary-color);
  font-size: 1rem;
}

.radio-label input,
.checkbox-label input {
  width: 20px;
  height: 20px;
  margin-top: 2px;
  margin-right: 4px;
  flex-shrink: 0;
  accent-color: var(--accent-color);
}

.input-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 25px;
}

.privacy-box {
  background: rgba(2, 132, 199, 0.02);
  padding: 25px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--glass-border);
  font-size: 0.9rem;
  color: var(--primary-light);
  line-height: 1.6;
}

.agree-label {
  display: flex;
  justify-content: center;
  font-size: 1.1rem;
  margin-top: 25px;
}

/* Success Modal */
.success-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(3, 7, 18, 0.9);
  backdrop-filter: blur(10px);
  z-index: 10;
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
}

.success-modal {
  text-align: center;
  padding: 60px;
  max-width: 500px;
  border: 1px solid rgba(2, 132, 199, 0.3);
  box-shadow: 0 0 50px rgba(2, 132, 199, 0.1);
}

.success-icon {
  font-size: 5rem;
  color: var(--success-color);
  margin-bottom: 25px;
  filter: drop-shadow(0 0 10px rgba(16, 185, 129, 0.3));
}

.success-modal h2 {
  font-size: 2.2rem;
  margin-bottom: 20px;
}

.success-modal p {
  color: var(--primary-light);
  margin-bottom: 40px;
  font-size: 1.1rem;
}

/* --- Footer --- */
.footer {
  border-top: 1px solid var(--glass-border);
  padding-top: 80px;
  position: relative;
  z-index: 2;
  background: rgba(2, 132, 199, 0.03);
}

.footer-content {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 50px;
  margin-bottom: 70px;
}

.footer-brand {
  flex: 1;
  min-width: 300px;
  max-width: 400px;
}

.footer-logo {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  margin-bottom: 25px;
}

.footer-logo-text {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.5rem;
  /* color fixed */
  color: var(--primary-color);
  line-height: 1.2;
}

.footer-mission {
  color: var(--primary-light);
  line-height: 1.6;
  margin-bottom: 35px;
}

.social-links {
  display: flex;
  gap: 15px;
}

.social-link {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  background: rgba(2, 132, 199, 05);
  border: 1px solid var(--glass-border);
  display: flex;
  align-items: center;
  justify-content: center;
  /* color fixed */
  color: var(--primary-color);
  transition: all 0.3s ease;
  font-size: 1.2rem;
}

.social-link:hover {
  background: var(--accent-color);
  color: var(--bg-color);
  border-color: var(--accent-color);
  transform: translateY(-3px);
}

.footer-links-group {
  display: flex;
  flex-wrap: wrap;
  gap: 50px;
  flex: 2;
  justify-content: space-between;
}

.footer-column h3 {
  font-size: 1.2rem;
  /* color fixed */
  color: var(--primary-color);
  margin-bottom: 30px;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.footer-links {
  list-style: none;
}

.footer-links li {
  margin-bottom: 15px;
}

.footer-links a {
  color: var(--primary-light);
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: var(--accent-color);
  padding-left: 5px;
}

.contact-column p {
  color: var(--primary-light);
  margin-bottom: 15px;
}

.footer-phone {
  font-size: 1.6rem !important;
  color: var(--primary-color) !important;
  font-weight: 800;
  display: flex;
  align-items: center;
  gap: 15px;
}

.footer-hours {
  font-size: 0.9rem !important;
  margin-bottom: 30px !important;
}

.footer-btn {
  display: inline-block;
  border: 1px solid var(--glass-border);
  /* color fixed */
  color: var(--primary-color);
  padding: 12px 30px;
  border-radius: 50px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: all 0.3s ease;
}

.footer-btn:hover {
  background: var(--accent-color);
  color: var(--bg-color);
  border-color: var(--accent-color);
}

.footer-bottom {
  border-top: 1px solid var(--glass-border);
  padding: 30px 0;
  text-align: center;
}

.copyright {
  color: #475569;
  font-size: 0.95rem;
}

/* Responsive adjustments */
@media (max-width: 992px) {
  .nav-links {
    display: none;
  }

  .hamburger {
    display: flex;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
  }

  .bar {
    width: 30px;
    height: 3px;
    background: var(--primary-color);
    transition: 0.3s;
  }

  .hamburger.active .bar:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
  }

  .hamburger.active .bar:nth-child(2) {
    opacity: 0;
  }

  .hamburger.active .bar:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
  }

  .nav-links.active {
    display: flex;
    position: absolute;
    top: 100%;
    right: 0;
    flex-direction: column;
    background: rgba(3, 7, 18, 0.95);
    backdrop-filter: blur(20px);
    width: 280px;
    padding: 40px 30px;
    border-radius: 0 0 0 20px;
    border-left: 1px solid var(--glass-border);
    border-bottom: 1px solid var(--glass-border);
  }

  .message-container {
    flex-direction: column;
  }

  .safety-grid {
    grid-template-columns: 1fr;
  }

  .safety-box {
    border-left: none;
    border-top: 4px solid var(--accent-color);
    border-radius: var(--radius-lg);
  }

  .footer-content {
    flex-direction: column;
  }

  .footer-links-group {
    flex-wrap: wrap;
    justify-content: flex-start;
    gap: 40px;
  }
}

@media (max-width: 768px) {
  .hero-layout {
    flex-direction: column;
    text-align: center;
    gap: 30px;
  }

  .hero-text-area {
    text-align: center;
    padding-top: 40px;
  }

  .hero-text-area h1 {
    font-size: 3rem;
  }

  .hero-subtitle {
    font-size: 1.2rem;
  }

  .hero-actions {
    justify-content: center;
  }

  .abstract-graphic-bg {
    display: none;
  }

  .doctor-summary {
    flex-direction: column;
    text-align: center;
  }

  .fees-table thead {
    display: none;
  }

  .fees-table,
  .fees-table tbody,
  .fees-table tr,
  .fees-table td {
    display: block;
    width: 100%;
  }

  .fees-table tr {
    margin-bottom: 20px;
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-md);
  }

  .fees-table td {
    text-align: right;
    padding-left: 50%;
    position: relative;
    border-bottom: 1px solid var(--glass-border);
  }

  .fees-table td::before {
    content: attr(data-label);
    position: absolute;
    left: 20px;
    font-weight: 700;
    color: var(--primary-light);
    text-transform: uppercase;
    font-size: 0.8rem;
  }

  .fees-info-grid {
    grid-template-columns: 1fr;
  }

  .payment-info {
    flex-direction: column;
    text-align: center;
    gap: 25px;
  }

  .payment-contact {
    text-align: center;
  }

  .partners-grid {
    grid-template-columns: 1fr;
  }

  .process-steps-wide {
    flex-direction: column;
    gap: 30px;
  }

  .p-arrow {
    transform: rotate(90deg);
  }

  .input-grid {
    grid-template-columns: 1fr;
  }
}
