/* MEDICAL HERO */
.medical-hero {
  position: relative;
  min-height: 95vh;
  background:
    linear-gradient(rgba(0,0,0,0.75), rgba(0,0,0,0.92)),
    center/cover no-repeat;
  background-attachment: fixed;
  display: flex;
  align-items: center;
  padding: 0 8%;
  overflow: hidden;
  color: #fff;
}

/* GOLD FLOW OVERLAY */
.medical-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    120deg,
    rgba(255,204,0,0.06),
    rgba(255,215,0,0.02),
    rgba(255,204,0,0.06)
  );
  animation: goldFlow 22s linear infinite;
  z-index: 1;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.65);
  z-index: 2;
}

/* CONTENT */
.medical-hero-content {
  position: relative;
  z-index: 3;
  max-width: 700px;
  animation: fadeUp 1.2s ease forwards;
}

/* TAG */
.hero-tag {
  display: inline-block;
  padding: 8px 20px;
  border-radius: 30px;
  background: rgba(255,204,0,0.15);
  color: #ffcc00;
  font-weight: 600;
  letter-spacing: 1px;
  margin-bottom: 20px;
  font-size: 14px;
}

/* TITLE */
.medical-hero-content h1 {
  font-size: 52px;
  line-height: 1.2;
  margin-bottom: 20px;
}

.medical-hero-content h1 span {
  background: linear-gradient(90deg, #ffcc00, #ffd700, #fff3a0);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: goldShine 4s linear infinite;
}

/* TEXT */
.medical-hero-content p {
  font-size: 18px;
  color: #ddd;
  line-height: 1.7;
  margin-bottom: 35px;
}

/* ACTIONS */
.hero-actions {
  display: flex;
  gap: 20px;
}

/* BUTTONS */
.btn-primary {
  padding: 14px 36px;
  border-radius: 40px;
  background: linear-gradient(90deg, #ffcc00, #ffd700);
  color: #0b0b0b;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.4s ease;
  box-shadow: 0 15px 35px rgba(255,204,0,0.35);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 25px 55px rgba(255,204,0,0.55);
}

.btn-outline {
  padding: 14px 36px;
  border-radius: 40px;
  border: 1px solid #ffcc00;
  color: #ffcc00;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.4s ease;
}

.btn-outline:hover {
  background: #ffcc00;
  color: #0b0b0b;
}

/* SCROLL INDICATOR */
.scroll-indicator {
  position: absolute;
  bottom: 25px;
  left: 50%;
  transform: translateX(-50%);
  width: 30px;
  height: 50px;
  border: 2px solid rgba(255,204,0,0.7);
  border-radius: 25px;
  display: flex;
  justify-content: center;
  z-index: 3;
}

.scroll-indicator span {
  width: 6px;
  height: 6px;
  background: #ffcc00;
  border-radius: 50%;
  margin-top: 10px;
  animation: scrollDown 2s infinite;
}

/* ANIMATIONS */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(40px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes goldFlow {
  0% { transform: translateX(-50%) rotate(0deg); }
  100% { transform: translateX(50%) rotate(360deg); }
}

@keyframes goldShine {
  0% { background-position: 0%; }
  100% { background-position: 200%; }
}

@keyframes scrollDown {
  0% { opacity: 0; transform: translateY(0); }
  30% { opacity: 1; }
  100% { opacity: 0; transform: translateY(18px); }
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .medical-hero-content h1 {
    font-size: 36px;
  }

  .hero-actions {
    flex-direction: column;
  }
}
.medical-services {
  padding: 90px 6%;
  background: #0b0b0b;
  color: #fff;
  text-align: center;
}

/* Intro text */
.section-intro {
  max-width: 750px;
  margin: 0 auto 60px;
  color: #ccc;
  font-size: 17px;
  line-height: 1.7;
}

/* Grid */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 35px;
}

/* Service Card */
.service-card {
  background: #111111;
  border-radius: 22px;
  padding: 40px 28px;
  box-shadow: 0 20px 45px rgba(0,0,0,0.65);
  transition: all 0.5s ease;
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    120deg,
    rgba(255,204,0,0.06),
    rgba(255,204,0,0.12),
    rgba(255,204,0,0.06)
  );
  opacity: 0;
  transition: opacity 0.5s ease;
}

.service-card:hover::before {
  opacity: 1;
  animation: shimmer 3s linear infinite;
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 30px 65px rgba(255,204,0,0.4);
}

/* Icon */
.service-icon {
  width: 75px;
  height: 75px;
  margin: 0 auto 20px;
  border-radius: 50%;
  background: rgba(255,204,0,0.12);
  display: flex;
  align-items: center;
  justify-content: center;
}

.service-icon i {
  font-size: 30px;
  color: #ffcc00;
}

/* Title */
.service-card h4 {
  font-size: 20px;
  color: #ffcc00;
  margin-bottom: 12px;
}

/* Text */
.service-card p {
  color: #ddd;
  font-size: 15px;
  line-height: 1.7;
}

/* Responsive */
@media (max-width: 1200px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .services-grid {
    grid-template-columns: 1fr;
  }
}
.medical-trust {
  padding: 100px 6%;
  background: linear-gradient(180deg, #0b0b0b, #050505);
  color: #fff;
  text-align: center;
}

/* Intro */
.trust-intro {
  max-width: 780px;
  margin: 0 auto 65px;
  font-size: 17px;
  color: #cfcfcf;
  line-height: 1.7;
}

/* Grid */
.trust-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 38px;
}

/* Trust Card */
.trust-card {
  background: #0f0f0f;
  padding: 45px 30px;
  border-radius: 24px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 18px 40px rgba(0,0,0,0.7);
  transition: all 0.5s ease;
}

.trust-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    130deg,
    rgba(255,204,0,0.08),
    rgba(255,204,0,0.15),
    rgba(255,204,0,0.08)
  );
  opacity: 0;
  transition: opacity 0.5s ease;
}

.trust-card:hover::before {
  opacity: 1;
  animation: shimmer 3s linear infinite;
}

.trust-card:hover {
  transform: translateY(-12px);
  box-shadow: 0 30px 70px rgba(255,204,0,0.35);
}

/* Icon */
.trust-icon {
  width: 78px;
  height: 78px;
  margin: 0 auto 22px;
  border-radius: 50%;
  background: rgba(255,204,0,0.12);
  display: flex;
  align-items: center;
  justify-content: center;
}

.trust-icon i {
  font-size: 32px;
  color: #ffcc00;
}

/* Title */
.trust-card h4 {
  font-size: 20px;
  color: #ffcc00;
  margin-bottom: 14px;
}

/* Text */
.trust-card p {
  font-size: 15px;
  color: #ddd;
  line-height: 1.7;
}

/* Responsive */
@media (max-width: 1200px) {
  .trust-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .trust-grid {
    grid-template-columns: 1fr;
  }
}
.medical-cta {
  position: relative;
  padding: 120px 6%;
  background: url('../../assets/images/about-us.png') center/cover no-repeat;
  color: #fff;
  text-align: center;
  overflow: hidden;
}

/* Dark overlay */
.medical-cta-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    rgba(0,0,0,0.82),
    rgba(0,0,0,0.9)
  );
  z-index: 1;
}

/* Content */
.medical-cta-content {
  position: relative;
  z-index: 2;
  max-width: 900px;
  margin: auto;
}

/* Title */
.medical-cta h2 {
  font-size: 42px;
  font-weight: 700;
  margin-bottom: 20px;
  color: #ffcc00;
}

/* Text */
.medical-cta p {
  font-size: 18px;
  color: #ddd;
  line-height: 1.8;
  margin-bottom: 40px;
}

/* Buttons */
.cta-actions {
  display: flex;
  justify-content: center;
  gap: 22px;
  flex-wrap: wrap;
}

.cta-btn {
  padding: 16px 34px;
  border-radius: 50px;
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  letter-spacing: 0.5px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: all 0.4s ease;
}

/* Primary */
.cta-btn.primary {
  background: linear-gradient(135deg, #ffcc00, #e6b800);
  color: #000;
  box-shadow: 0 12px 30px rgba(255,204,0,0.4);
}

.cta-btn.primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 20px 45px rgba(255,204,0,0.6);
}

/* Outline */
.cta-btn.outline {
  border: 1px solid rgba(255,204,0,0.6);
  color: #ffcc00;
  background: transparent;
}

.cta-btn.outline:hover {
  background: rgba(255,204,0,0.1);
  transform: translateY(-3px);
}

/* Note */
.cta-note {
  display: block;
  margin-top: 30px;
  font-size: 14px;
  color: #aaa;
}

/* Responsive */
@media (max-width: 768px) {
  .medical-cta h2 {
    font-size: 32px;
  }

  .medical-cta p {
    font-size: 16px;
  }
}
.doctor-watermark {
  position: absolute;
  right: -80px;
  bottom: -40px;
  width: 500px;
  height: 500px;
  background: url('../../assets/icons/about-us.png') center/contain no-repeat;
  opacity: 0.04;
  animation: floatDoctor 14s ease-in-out infinite;
  z-index: 1;
}

@keyframes floatDoctor {
  0% { transform: translateY(0); }
  50% { transform: translateY(-25px); }
  100% { transform: translateY(0); }
}
.privacy-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 20px;
  border-radius: 40px;
  background: rgba(255,204,0,0.12);
  border: 1px solid rgba(255,204,0,0.35);
  color: #ffcc00;
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 25px;
  backdrop-filter: blur(6px);
}

.privacy-badge i {
  font-size: 15px;
}
.heartbeat-line {
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  height: 80px;
  background: url('../../assets/icons/about-us.png') repeat-x center;
  opacity: 0.06;
  animation: heartbeatMove 20s linear infinite;
  z-index: 1;
}

@keyframes heartbeatMove {
  from { background-position-x: 0; }
  to { background-position-x: 2000px; }
}
.reveal {
  opacity: 0;
  transform: translateY(50px);
  transition: all 1.2s ease;
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}
