/* CSS VARIABLES & LOGO-MATCHED COLOR PALETTE  */
:root {
  --primary-red: #d71920;
  --primary-dark-red: #b01419;
  --primary-blue: #4a90e2;
  --primary-dark-blue: #2e5c8a;
  --accent-red: #ef4444;
  --accent-blue: #60a5fa;
  --dark-bg: #1a1a2e;
  --darker-bg: #0f0f1e;
  --success-green: #10b981;
  --bg-light: #f8fafc;
  --bg-gradient: linear-gradient(135deg, #d71920 0%, #4a90e2 100%);
  --card-shadow: 0 20px 60px rgba(0, 0, 0, 0.12);
  --card-hover-shadow: 0 30px 90px rgba(0, 0, 0, 0.2);
  --transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

/* RESET & BASE STYLES */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family:
    "Inter",
    -apple-system,
    BlinkMacSystemFont,
    sans-serif;
  background: var(--bg-light);
  color: #1e293b;
  line-height: 1.6;
  overflow-x: hidden;
}

/*  WHATSAPP FLOATING BUTTON  */
.whatsapp-float {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 65px;
  height: 65px;
  background: linear-gradient(135deg, #25d366 0%, #128c7e 100%);
  border-radius: 50%;
  display: flex;
  text-decoration: none;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 32px;
  z-index: 9999;
  box-shadow: 0 10px 30px rgba(37, 211, 102, 0.4);
  transition: var(--transition);
  animation: whatsappPulse 2s infinite;
}

.whatsapp-float:hover {
  transform: scale(1.15) rotate(5deg);
  box-shadow: 0 15px 40px rgba(37, 211, 102, 0.6);
}

.whatsapp-tooltip {
  position: absolute;
  right: 75px;
  background: #1e293b;
  color: white;
  padding: 8px 16px;
  border-radius: 8px;
  font-size: 14px;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: var(--transition);
}

.whatsapp-float:hover .whatsapp-tooltip {
  opacity: 1;
  right: 80px;
}

@keyframes whatsappPulse {
  0%,
  100% {
    box-shadow: 0 10px 30px rgba(37, 211, 102, 0.4);
  }
  50% {
    box-shadow:
      0 10px 40px rgba(37, 211, 102, 0.7),
      0 0 0 15px rgba(37, 211, 102, 0.1);
  }
}

/* HEADER  */
.main-header {
  background: white;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  position: sticky;
  top: 0;
  z-index: 1000;
  animation: slideDown 0.6s ease;
}

@keyframes slideDown {
  from {
    transform: translateY(-100%);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

.header-container {
  max-width: 1200px;
  margin: auto;
  padding: 16px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.header-logo img {
  height: 62px;
  width: auto;
  margin-top: 6px;
  transform: scale(3.5);
  transition: var(--transition);
}

.header-logo img:hover {
  transform: scale(3.7);
}

.header-right {
  display: flex;
  align-items: center;
  gap: 35px;
}

.social-icons a {
  width: 38px;
  height: 38px;
  border: 2px solid var(--primary-blue);
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-blue);
  text-decoration: none;
  font-size: 15px;
  transition: var(--transition);
}

.social-icons a:hover {
  background: linear-gradient(135deg, var(--primary-red), var(--primary-blue));
  color: white;
  transform: translateY(-3px) rotate(10deg);
  border-color: transparent;
}

.call-us {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  transition: var(--transition);
}

.call-us:hover {
  transform: translateY(-2px);
}

.call-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: #10b981;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 20px;
  animation: phoneRing 1.5s infinite;
}

@keyframes phoneRing {
  0%,
  100% {
    transform: rotate(0deg);
  }
  10%,
  30% {
    transform: rotate(-10deg);
  }
  20% {
    transform: rotate(10deg);
  }
}

.call-text span {
  font-size: 13px;
  color: #64748b;
  display: block;
}

.call-text strong {
  font-size: 16px;
  color: var(--primary-red);
  font-weight: 700;
}

/* HERO SECTION */
.hero {
  position: relative;
  background: linear-gradient(135deg, #fff5f5 0%, #eff6ff 50%, #f0f9ff 100%);
  padding: 60px 0;
  overflow: hidden;
  min-height: auto;
}

.hero-background-animation {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background:
    radial-gradient(
      circle at 20% 50%,
      rgba(215, 25, 32, 0.08) 0%,
      transparent 50%
    ),
    radial-gradient(
      circle at 80% 80%,
      rgba(74, 144, 226, 0.08) 0%,
      transparent 50%
    );
  animation: backgroundFloat 20s ease-in-out infinite;
}

@keyframes backgroundFloat {
  0%,
  100% {
    transform: translate(0, 0) scale(1);
  }
  50% {
    transform: translate(30px, -30px) scale(1.1);
  }
}

.container {
  max-width: 1200px;
  margin: auto;
  padding: 0 20px;
}

.hero-layout {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.8fr 1fr;
  align-items: start;
  gap: 40px;
}

.hero-left {
  display: flex;
  flex-direction: column;
}

.badge-certified {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: white;
  padding: 10px 24px;
  border-radius: 50px;
  font-size: 15px;
  font-weight: 600;
  color: var(--primary-blue);
  box-shadow: 0 8px 25px rgba(74, 144, 226, 0.15);
  margin-bottom: 25px;
  width: fit-content;
  animation: slideInLeft 0.8s ease;
}

.badge-certified i {
  color: var(--primary-red);
  font-size: 18px;
}

@keyframes slideInLeft {
  from {
    transform: translateX(-50px);
    opacity: 0;
  }
  to {
    transform: translateX(0);
    opacity: 1;
  }
}

.hero-text h1 {
  font-family: "Playfair Display", serif;
  font-size: 48px;
  font-weight: 900;
  margin-bottom: 30px;
  color: var(--dark-bg);
  line-height: 1.2;
  animation: slideInLeft 0.8s ease 0.2s both;
}

.gradient-highlight {
  background: linear-gradient(135deg, var(--primary-red), var(--primary-blue));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  position: relative;
}

.hero-taglines {
  list-style: none;
  margin-bottom: 35px;
  animation: slideInLeft 0.8s ease 0.4s both;
}

.hero-taglines li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 16px;
  color: #475569;
  margin-bottom: 14px;
  padding-left: 5px;
}

.hero-taglines i {
  color: var(--success-green);
  font-size: 20px;
  margin-top: 2px;
  flex-shrink: 0;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 20px;
  animation: slideInLeft 0.8s ease 0.6s both;
}

.stat-item {
  text-align: center;
  padding: 20px;
  background: white;
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  transition: var(--transition);
}

.stat-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
}

.stat-number {
  font-size: 32px;
  font-weight: 800;
  background: linear-gradient(135deg, var(--primary-red), var(--primary-blue));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 5px;
}

.stat-label {
  font-size: 13px;
  color: #64748b;
  font-weight: 500;
}

.hero-doctor {
  display: none;
}

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

.doctor-decoration {
  position: absolute;
  width: 350px;
  height: 350px;
  background: linear-gradient(
    135deg,
    rgba(215, 25, 32, 0.12),
    rgba(74, 144, 226, 0.12)
  );
  border-radius: 50%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: -1;
  animation: decorationPulse 3s ease-in-out infinite;
}

@keyframes decorationPulse {
  0%,
  100% {
    transform: translate(-50%, -50%) scale(1);
  }
  50% {
    transform: translate(-50%, -50%) scale(1.1);
  }
}

.hero-doctor img {
  max-width: 100%;
  max-height: 480px;
  height: auto;
  display: block;
  animation: floatDoctor 4s ease-in-out infinite;
  filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.15));
  object-fit: contain;
}

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

/* HERO FORM */
.hero-form {
  position: relative;
  background: white;
  padding: 35px 30px;
  border-radius: 24px;
  box-shadow: var(--card-shadow);
  animation: slideInRight 0.8s ease 0.4s both;
  border: 1px solid rgba(0, 86, 210, 0.1);
}

@keyframes slideInRight {
  from {
    transform: translateX(50px);
    opacity: 0;
  }
  to {
    transform: translateX(0);
    opacity: 1;
  }
}

.form-glow {
  position: absolute;
  top: -2px;
  left: -2px;
  right: -2px;
  bottom: -2px;
  background: linear-gradient(135deg, var(--primary-red), var(--primary-blue));
  border-radius: 24px;
  z-index: -1;
  opacity: 0.3;
  filter: blur(20px);
}

.hero-form h3 {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 25px;
  font-size: 24px;
  color: var(--primary-red);
  font-weight: 700;
}

.hero-form h3 i {
  font-size: 26px;
}

.input-group {
  position: relative;
  margin-bottom: 20px;
}

.input-group i {
  position: absolute;
  left: 16px;
  top: 50%;
  transform: translateY(-50%);
  color: #64748b;
  font-size: 16px;
  z-index: 1;
}

.input-group input,
.input-group textarea {
  width: 100%;
  padding: 14px 16px 14px 48px;
  border: 2px solid #e2e8f0;
  border-radius: 12px;
  font-size: 15px;
  font-family: "Inter", sans-serif;
  transition: var(--transition);
  background: #f8fafc;
}

.input-group input:focus,
.input-group textarea:focus {
  outline: none;
  border-color: var(--primary-blue);
  background: white;
  box-shadow: 0 0 0 4px rgba(74, 144, 226, 0.1);
}

.input-group textarea {
  resize: vertical;
  min-height: 90px;
  padding-top: 14px;
}

.submit-btn {
  width: 100%;
  background: linear-gradient(
    135deg,
    var(--primary-red),
    var(--primary-dark-red)
  );
  color: white;
  border: none;
  padding: 16px;
  border-radius: 12px;
  font-size: 18px;
  font-weight: 700;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  transition: var(--transition);
  box-shadow: 0 10px 30px rgba(215, 25, 32, 0.3);
}

.submit-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 40px rgba(215, 25, 32, 0.4);
}

.submit-btn i {
  transition: var(--transition);
}

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

.form-message {
  text-align: center;
  margin-top: 15px;
  font-size: 14px;
  font-weight: 600;
  min-height: 20px;
}

.form-footer {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 15px;
  color: #64748b;
  font-size: 13px;
}

.form-footer i {
  color: var(--success-green);
}

.health-packages {
  padding: 80px 20px;
  background: #f7f9fc;
}

.hp-section-header {
  text-align: center;
  margin-bottom: 50px;
}

.hp-section-header h2 {
  font-size: 36px;
  font-weight: 800;
  color: #1a1a2e;
}

.hp-section-header p {
  color: #888;
  margin-top: 8px;
  font-size: 16px;
}

.hp-outer {
  max-width: 1200px;
  margin: auto;
  display: flex;
  align-items: stretch;
  gap: 16px;
}

.hp-viewport {
  flex: 1;
  overflow: hidden;
}

.hp-track {
  display: flex;
  gap: 24px;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.hp-card {
  flex: 0 0 calc((100% - 48px) / 3);
  height: 480px;
  perspective: 1200px;
}

.hp-back .see-more {
  display: none;
}

.hp-inner {
  width: 100%;
  height: 100%;
  position: relative;
  transform-style: preserve-3d;
  transition: transform 0.7s ease;
}

.hp-card.flip .hp-inner {
  transform: rotateY(180deg);
}

.hp-front,
.hp-back {
  position: absolute;
  inset: 0;
  border-radius: 20px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
  padding: 25px;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
}

.hp-front {
    background: linear-gradient(75deg, var(--primary-red), var(--primary-blue));
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.hp-front::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.12) 0%,
    transparent 60%
  );
  border-radius: 20px;
  pointer-events: none;
}

.hp-front h3 {
  font-size: 26px;
  margin-bottom: 24px;
  color: #fff;
  font-weight: 700;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
  position: relative;
  z-index: 1;
}

.see-more {
  padding: 12px 28px;
  border: none;
  background: #fff;
  color: #667eea;
  border-radius: 50px;
  cursor: pointer;
  font-size: 15px;
  font-weight: 600;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
  position: relative;
  z-index: 1;
}

.see-more:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
}

/* ── BACK face ── */
.hp-back {
  background: #fff;
  transform: rotateY(180deg);
  overflow-y: auto;
  unicode-bidi: normal;
  direction: ltr;
  z-index: 2;
}

.hp-back::-webkit-scrollbar {
  width: 5px;
}
.hp-back::-webkit-scrollbar-track {
  background: #f1f1f1;
  border-radius: 3px;
}
.hp-back::-webkit-scrollbar-thumb {
  background: #667eea;
  border-radius: 3px;
}

.close {
  position: absolute;
  right: 14px;
  top: 12px;
  font-size: 16px;
  cursor: pointer;
  width: 32px;
  height: 32px;
  background: linear-gradient(135deg, #667eea, #764ba2);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  z-index: 10;
}

.close:hover {
  transform: rotate(90deg);
  background: linear-gradient(135deg, #e11d48, #ff6b6b);
}

.hp-back h4 {
  font-size: 17px;
  color: #333;
  margin-bottom: 14px;
  padding-right: 38px;
  font-weight: 700;
  border-bottom: 2px solid #667eea;
  padding-bottom: 10px;
}

.hp-accordion {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.hp-title {
  background: linear-gradient(135deg, #f8f9fa, #e9ecef);
  padding: 11px 14px;
  border-radius: 10px;
  cursor: pointer;
  font-weight: 600;
  font-size: 13px;
  color: #333;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: all 0.3s ease;
  border: 1px solid #dee2e6;
  user-select: none;
}

.hp-title:hover {
  background: linear-gradient(135deg, #667eea, #764ba2);
  color: #fff;
}

.hp-title::after {
  content: "+";
  font-size: 16px;
  font-weight: 700;
  color: #667eea;
  transition: color 0.3s;
  flex-shrink: 0;
  margin-left: 6px;
}

.hp-title:hover::after {
  color: #fff;
}
.hp-title.active::after {
  content: "−";
}

.hp-content {
  display: none;
  padding: 10px 14px;
  background: #f8f9fa;
  border-radius: 8px;
  margin-top: 5px;
  border-left: 3px solid #667eea;
  list-style: none;
}

.hp-content li {
  font-size: 12.5px;
  margin-bottom: 7px;
  padding-left: 20px;
  position: relative;
  color: #555;
  line-height: 1.5;
}

.hp-content li::before {
  content: "\f00c";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  position: absolute;
  left: 0;
  color: #10b981;
  font-size: 10px;
  top: 3px;
}

/* BOOK NOW BUTTON STYLES */
.book-now-btn {
  display: block;
  width: 100%;
  margin-top: 12px;
  padding: 12px 16px;
  background: linear-gradient(135deg, #25d366 0%, #128c7e 100%);
  color: white;
  border: none;
  border-radius: 12px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.3);
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  opacity: 0;
  transform: translateY(10px);
  animation: none;
}

.hp-item .book-now-btn {
  margin-bottom: 8px;
}

.book-now-btn i {
  font-size: 16px;
}

.book-now-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(37, 211, 102, 0.5);
}

.hp-title.active + .hp-content ~ .book-now-btn,
.hp-item:hover .book-now-btn {
  opacity: 1;
  transform: translateY(0);
  animation: slideInUp 0.4s ease forwards;
}

@media (max-width: 640px) {
  .book-now-btn {
    padding: 14px 18px;
    font-size: 15px;
    border-radius: 14px;
  }
}

.hp-content li:last-child {
  margin-bottom: 0;
}

.hp-toggle-col {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.hp-toggle-btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: linear-gradient(135deg, var(--primary-red), var(--primary-blue));
  color: #fff;
  border: none;
  border-radius: 14px;
  padding: 16px 10px;
  cursor: pointer;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  transition: all 0.3s ease;
  box-shadow: 0 6px 20px rgba(102, 126, 234, 0.4);
  width: 42px;
  min-height: 110px;
}

.hp-toggle-btn:hover {
  transform: scale(1.06);
  box-shadow: 0 8px 28px rgba(102, 126, 234, 0.55);
}

.hp-toggle-btn .btn-label {
  writing-mode: vertical-rl;
  text-orientation: mixed;
  transform: rotate(180deg);
  font-size: 10px;
  line-height: 1;
}

.hp-toggle-btn .btn-arrow {
  font-size: 13px;
  transition: transform 0.4s ease;
}

.hp-toggle-btn.expanded .btn-arrow {
  transform: rotate(180deg);
}

/* ABOUT SECTION */
.about-section {
  padding: 90px 20px;
  background: linear-gradient(135deg, #fff5f5 0%, #eff6ff 100%);
}

.about-container {
  max-width: 1200px;
  margin: auto;
  display: flex;
  align-items: center;
  gap: 70px;
}

.about-content {
  flex: 1;
}

.about-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--primary-red);
  font-weight: 700;
  font-size: 16px;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 20px;
}

.about-tag i {
  font-size: 18px;
}

.about-content h2 {
  font-family: "Playfair Display", serif;
  font-size: 40px;
  font-weight: 900;
  color: var(--dark-bg);
  margin-bottom: 30px;
  line-height: 1.3;
}

.about-content p {
  font-size: 16px;
  color: #475569;
  line-height: 1.9;
  margin-bottom: 18px;
}

.about-features {
  display: flex;
  gap: 15px;
  margin-top: 35px;
  flex-wrap: wrap;
}

.feature-badge {
  display: flex;
  align-items: center;
  gap: 10px;
  background: white;
  padding: 12px 24px;
  border-radius: 50px;
  font-weight: 600;
  color: var(--dark-bg);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
  transition: var(--transition);
}

.feature-badge:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
}

.feature-badge i {
  color: var(--primary-blue);
  font-size: 18px;
}

.about-image {
  flex: 1;
  position: relative;
  display: flex;
  justify-content: center;
}


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

.image-frame img {
  width: 100%;
  max-width: 420px;
  border-radius: 24px;
  box-shadow: var(--card-shadow);
  animation: imageFloat 4s ease-in-out infinite;
}

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

/* TEST SERVICES SECTION */
.test-services {
  background: white;
  padding: 90px 20px;
  position: relative;
  overflow: hidden;
}

.test-heading {
  font-family: "Playfair Display", serif;
  font-size: 44px;
  font-weight: 900;
  text-align: center;
  margin-bottom: 60px;
  color: var(--dark-bg);
}

.test-carousel-container {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
}

.test-carousel-wrapper {
  overflow: hidden;
  padding: 20px 0;
}

.test-grid {
  display: flex;
  gap: 20px;
  transition: transform 0.5s ease;
  will-change: transform;
}

.test-card {
  background: white;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  transition: var(--transition);
  flex: 0 0 calc((100% - 40px) / 3);
  min-width: calc((100% - 40px) / 3);
  width: auto;
}

.test-card:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow: var(--card-hover-shadow);
}

.test-card.active {
  transform: translateY(-10px) scale(1.02);
  box-shadow: var(--card-hover-shadow);
}

.carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 48px;
  height: 120px;
  background: linear-gradient(135deg, var(--primary-red), var(--primary-blue));
  border: none;
  border-radius: 14px;
  color: white;
  cursor: pointer;
  z-index: 10;
  transition: var(--transition);
  box-shadow: 0 8px 25px rgba(215, 25, 32, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 10px;
}

.carousel-btn:hover {
  transform: translateY(-50%) scale(1.1);
  box-shadow: 0 12px 35px rgba(215, 25, 32, 0.5);
}

.carousel-btn.prev {
  left: -60px;
}

.carousel-btn.next {
  right: -60px;
}

.carousel-btn .btn-label {
  writing-mode: vertical-rl;
  text-orientation: mixed;
  transform: rotate(180deg);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 1px;
  text-transform: uppercase;
  line-height: 1;
}


.carousel-btn.is-hidden {
  opacity: 0;
  pointer-events: none;
}

.carousel-indicators {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-top: 40px;
}

.carousel-indicator {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #cbd5e1;
  border: none;
  cursor: pointer;
  transition: var(--transition);
}

.carousel-indicator.active {
  background: linear-gradient(135deg, var(--primary-red), var(--primary-blue));
  width: 35px;
  border-radius: 10px;
}

.test-img {
  position: relative;
  border-radius: 20px 20px 0 0;
  overflow: hidden;
  height: auto;
  background: #ffffff;
}

.test-img img {
  width: 100%;
  height: auto;
  object-fit: cover;
  object-position: center;
  transition: var(--transition);
}

.test-card:hover .test-img img {
  transform: scale(1.03);
}

.test-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(180deg, transparent, rgba(0, 0, 0, 0.8));
  padding: 20px;
  transform: translateY(100%);
  transition: var(--transition);
}

.test-card:hover .test-overlay {
  transform: translateY(0);
}

.test-overlay span {
  color: white;
  font-weight: 700;
  font-size: 18px;
}

.test-content {
  padding: 18px 20px 22px;
}

.test-content h3 {
  font-size: 20px;
  margin-bottom: 15px;
  color: var(--dark-bg);
  font-weight: 700;
}

.test-content p {
  font-size: 14px;
  line-height: 1.8;
  color: #64748b;
}

/* WHY CHOOSE US SECTION */
.why-choose {
  background: linear-gradient(135deg, #fff5f5 0%, #eff6ff 100%);
  padding: 90px 20px;
}

.why-title {
  font-family: "Playfair Display", serif;
  font-size: 44px;
  font-weight: 900;
  text-align: center;
  margin-bottom: 60px;
  color: var(--dark-bg);
}

.why-grid-cards {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

.why-card {
  background: white;
  border-radius: 20px;
  padding: 40px 25px;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  transition: var(--transition);
}

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

.why-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 25px;
  background: linear-gradient(135deg, var(--primary-red), var(--primary-blue));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 36px;
  color: white;
  box-shadow: 0 10px 30px rgba(215, 25, 32, 0.3);
  transition: var(--transition);
}

.why-card:hover .why-icon {
  transform: rotateY(360deg);
}

.why-card h3 {
  font-size: 19px;
  font-weight: 700;
  margin-bottom: 12px;
  color: var(--dark-bg);
}

.why-card p {
  font-size: 14px;
  color: #64748b;
  line-height: 1.6;
}

/* TESTIMONIALS SECTION */
.testimonials {
  background: white;
  padding: 90px 20px;
}

.testimonial-box {
  max-width: 800px;
  margin: auto;
  background: linear-gradient(135deg, #fff5f5 0%, #eff6ff 100%);
  padding: 50px 40px;
  border-radius: 24px;
  box-shadow: var(--card-shadow);
  position: relative;
}

.quote-icon {
  position: absolute;
  top: 30px;
  left: 40px;
  font-size: 60px;
  color: rgba(215, 25, 32, 0.1);
}

.testimonial-box h2 {
  font-family: "Playfair Display", serif;
  font-size: 36px;
  font-weight: 900;
  text-align: center;
  margin-bottom: 40px;
  color: var(--dark-bg);
}

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

.stars {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-bottom: 25px;
}

.stars i {
  color: #fbbf24;
  font-size: 24px;
  animation: starPulse 1.5s ease-in-out infinite;
}

.stars i:nth-child(2) {
  animation-delay: 0.1s;
}
.stars i:nth-child(3) {
  animation-delay: 0.2s;
}
.stars i:nth-child(4) {
  animation-delay: 0.3s;
}
.stars i:nth-child(5) {
  animation-delay: 0.4s;
}

@keyframes starPulse {
  0%,
  100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.2);
  }
}

.testimonial-content p {
  font-size: 19px;
  font-style: italic;
  color: #475569;
  line-height: 1.8;
  margin-bottom: 20px;
}

.testimonial-content span {
  font-size: 16px;
  color: var(--primary-blue);
  font-weight: 700;
}

.testimonial-dots {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 30px;
}

.dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #cbd5e1;
  cursor: pointer;
  transition: var(--transition);
}

.dot.active,
.dot:hover {
  background: var(--primary-red);
  transform: scale(1.3);
}

/* FAQ SECTION */
.faq-section {
  max-width: 1000px;
  margin: 90px auto;
  padding: 0 20px;
}

.faq-title {
  font-family: "Playfair Display", serif;
  font-size: 44px;
  font-weight: 900;
  text-align: center;
  margin-bottom: 60px;
  color: var(--dark-bg);
}

.faq-container {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.faq-item {
  background: white;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  transition: var(--transition);
}

.faq-item:hover {
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}

.faq-question {
  width: 100%;
  background: linear-gradient(135deg, #fff5f5 0%, #eff6ff 100%);
  border: none;
  padding: 22px 26px;
  font-size: 16px;
  font-weight: 700;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  color: var(--primary-red);
  transition: var(--transition);
  gap: 20px;
}

.faq-question:hover {
  background: linear-gradient(135deg, #fee2e2 0%, #dbeafe 100%);
}

.faq-question span:first-child {
  text-align: left;
  flex: 1;
}

.faq-icon {
  flex-shrink: 0;
  transition: var(--transition);
}

.faq-icon i {
  color: var(--primary-blue);
  font-size: 18px;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}

.faq-item.active .faq-answer {
  max-height: 400px;
}

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

.faq-answer p {
  padding: 20px 26px 26px;
  margin: 0;
  font-size: 15px;
  color: #475569;
  line-height: 1.8;
}

/* FOOTER */
.site-footer {
  background: white;
  color: #1e293b;
  border-top: 3px solid var(--primary-red);
}

.footer-top {
  max-width: 1200px;
  margin: auto;
  padding: 50px 20px;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 40px;
  align-items: center;
}

.footer-logo {
  display: inline-block;
}

.footer-logo img {
  transform: scale(3.5);
  margin-left: 65px;
  height: 62px;
  width: auto;
}

.footer-box h4 {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 15px;
  font-size: 18px;
  font-weight: 700;
  color: var(--dark-bg);
}

.footer-box h4 i {
  color: var(--primary-red);
}

.footer-box p,
.footer-box a {
  color: #475569;
  text-decoration: none;
  transition: var(--transition);
}

.footer-box a:hover {
  color: var(--primary-red);
}

.footer-social .social-icons {
  display: flex;
  gap: 12px;
}

.footer-social .social-icons a {
  width: 40px;
  height: 40px;
  border: 2px solid var(--primary-blue);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
  color: var(--primary-blue);
}

.footer-social .social-icons a:hover {
  background: linear-gradient(135deg, var(--primary-red), var(--primary-blue));
  border-color: transparent;
  color: white;
  transform: translateY(-3px) scale(1.1);
  box-shadow: 0 8px 20px rgba(215, 25, 32, 0.4);
}

.footer-addresses {
  max-width: 1200px;
  margin: auto;
  padding: 30px 20px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  border-top: 2px solid #f1f5f9;
}

.footer-addresses p {
  font-size: 14px;
  line-height: 1.8;
}

.footer-bottom {
  text-align: center;
  padding: 25px 20px;
  border-top: 2px solid #f1f5f9;
  background: linear-gradient(
    135deg,
    var(--primary-red) 0%,
    var(--primary-blue) 100%
  );
}

.footer-bottom p {
  margin: 0;
  color: white;
  font-size: 14px;
}

.footer-tagline {
  margin-top: 8px !important;
  color: white !important;
  font-weight: 600;
  opacity: 0.95;
}

/* RESPONSIVE DESIGN */

@media (max-width: 968px) {
  .hero-layout {
    grid-template-columns: 1fr;
  }

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

  .packages-grid-new,
  .test-grid {
    grid-template-columns: 1fr;
  }

  .test-card {
    flex: 0 0 calc(50% - 18px);
    min-width: calc(50% - 18px);
    width: auto;
  }

  .test-grid {
    display: flex;
    gap: 35px;
    width: auto;
  }

  .test-carousel-wrapper {
    overflow: hidden;
    width: auto;
  }

  .about-container {
    flex-direction: column;
  }

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

  .footer-top,
  .footer-addresses {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .header-container {
    flex-direction: row;
    justify-content: space-between;
    padding: 12px 15px;
  }

  .header-logo {
    order: 1;
  }

  .header-right {
    order: 2;
    gap: 15px;
  }

  .header-right .social-icons {
    display: none;
  }

  .call-us {
    gap: 8px;
  }

  .call-icon {
    width: 40px;
    height: 40px;
    font-size: 16px;
  }

  .call-text span {
    font-size: 11px;
  }

  .call-text strong {
    font-size: 14px;
  }

  .hero-text h1 {
    font-size: 36px;
  }

  .hero-stats {
    grid-template-columns: 1fr;
  }

  .about-features {
    justify-content: space-between;
  }

  .about-features .feature-badge {
    flex: 0 0 calc(50% - 10px);
    max-width: calc(50% - 10px);
    justify-content: flex-start;
    padding: 10px 16px;
  }

  .about-features .feature-badge i {
    font-size: 20px;
  }

  .test-services .test-card {
    flex: 0 0 100%;
    min-width: 100%;
    max-width: 100%;
    width: 100%;
  }

  .test-services .test-grid {
    display: flex;
    gap: 0;
    width: 100%;
  }

  .test-services .test-carousel-wrapper {
    overflow: hidden;
    width: 100%;
  }

  .test-services .test-card.active .test-img img {
    transform: scale(1.06);
  }

  .test-services .test-carousel-container {
    padding: 0 10px;
  }

  .test-services .carousel-btn {
    display: none;
  }

  .test-services .carousel-indicators {
    display: none;
  }

  .test-services .test-img {
    height: 200px;
  }

  .why-grid-cards {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .why-card {
    max-width: 280px;
    margin: 0 auto;
    padding: 28px 18px;
    border-radius: 24px;
    min-height: 230px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
  }

  .why-icon {
    width: 64px;
    height: 64px;
    margin-bottom: 18px;
    font-size: 28px;
  }

  .whatsapp-float {
    width: 55px;
    height: 55px;
    font-size: 26px;
    bottom: 20px;
    right: 20px;
  }

  .health-packages {
    padding: 60px 15px;
  }

  /* HP CARDS MOBILE - 1 CARD AT A TIME */
  .hp-outer {
    flex-direction: column;
    gap: 0;
  }

  .hp-viewport {
    width: 100%;
  }

  .hp-track {
    display: flex;
    gap: 0;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  }

  .hp-card {
    flex: 0 0 100%;
    height: 520px;
    padding: 0 10px;
  }

  .hp-toggle-col {
    width: 100%;
    justify-content: center;
    padding: 20px 0;
  }

  .hp-toggle-btn {
    width: 100%;
    max-width: 200px;
    flex-direction: row;
    gap: 12px;
    padding: 14px 24px;
    min-height: auto;
  }

  .hp-toggle-btn .btn-label {
    writing-mode: horizontal-tb;
    transform: none;
    font-size: 14px;
  }

  .hp-toggle-btn .btn-arrow {
    font-size: 16px;
  }
}


@media (max-width: 1024px) {
  .hero-layout {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .hero-text h1 {
    font-size: 40px;
  }

  .about-container {
    flex-direction: column;
    gap: 40px;
  }

  .about-content h2 {
    font-size: 32px;
  }

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

  .test-card {
    flex: 0 0 calc(50% - 18px);
    min-width: calc(50% - 18px);
  }

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


@media (max-width: 480px) {
  .header-logo img {
    height: 50px;
    transform: scale(2.8);
    margin-left: 40px;
  }

  .hero-text h1 {
    font-size: 28px;
  }

  .badge-certified {
    padding: 8px 18px;
    font-size: 13px;
  }

  .hero-taglines li {
    font-size: 14px;
  }

  .stat-item {
    padding: 15px;
  }

  .stat-number {
    font-size: 26px;
  }

  .hero-form {
    padding: 25px 20px;
  }

  .hero-form h3 {
    font-size: 20px;
  }

  .test-heading {
    font-size: 32px;
  }

  .why-title {
    font-size: 32px;
  }

  .faq-title {
    font-size: 32px;
  }

  .testimonial-box {
    padding: 35px 25px;
  }

  .testimonial-box h2 {
    font-size: 28px;
  }
}

@media (max-width: 360px) {
  .header-logo img {
    height: 45px;
    transform: scale(2.5);
  }

  .call-icon {
    width: 40px;
    height: 40px;
    font-size: 16px;
  }

  .call-text span {
    font-size: 11px;
  }

  .call-text strong {
    font-size: 14px;
  }

  .hero-text h1 {
    font-size: 24px;
  }

  .hero-taglines li {
    font-size: 13px;
  }

  .hero-stats {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .stat-item {
    padding: 12px;
  }

  .stat-number {
    font-size: 24px;
  }

  .stat-label {
    font-size: 12px;
  }

  .hero-form h3 {
    font-size: 18px;
  }

  .input-group input,
  .input-group textarea {
    padding: 12px 14px 12px 40px;
    font-size: 14px;
  }

  .submit-btn {
    padding: 14px;
    font-size: 16px;
  }

  .hp-section-header h2 {
    font-size: 24px;
  }

  .hp-card {
    height: 460px;
  }

  .hp-front h3 {
    font-size: 20px;
  }

  .hp-back h4 {
    font-size: 16px;
  }

  .hp-title {
    font-size: 12px;
    padding: 10px 12px;
  }

  .hp-content li {
    font-size: 11px;
  }

  .test-heading,
  .why-title,
  .faq-title {
    font-size: 26px;
  }

  .test-card {
    min-width: 100%;
  }

  .carousel-btn {
    width: 38px;
    height: 38px;
    font-size: 16px;
  }

  .footer-top,
  .footer-addresses {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 319px) {
  .header-logo img {
    height: 40px;
    transform: scale(2.2);
  }

  .call-us {
    gap: 8px;
  }

  .call-icon {
    width: 36px;
    height: 36px;
    font-size: 14px;
  }

  .call-text span {
    font-size: 10px;
  }

  .call-text strong {
    font-size: 12px;
  }

  .hero-text h1 {
    font-size: 22px;
  }

  .badge-certified {
    padding: 6px 14px;
    font-size: 11px;
  }

  .hero-taglines li {
    font-size: 12px;
    margin-bottom: 10px;
  }

  .hero-form {
    padding: 20px 15px;
  }

  .hp-section-header h2 {
    font-size: 22px;
  }

  .hp-card {
    height: 440px;
    padding: 0 8px;
  }

  .hp-front h3 {
    font-size: 18px;
  }

  .see-more {
    padding: 10px 20px;
    font-size: 13px;
  }

  .hp-back {
    padding: 20px;
  }

  .hp-back h4 {
    font-size: 14px;
  }

  .hp-title {
    font-size: 11px;
    padding: 8px 10px;
  }

  .hp-content li {
    font-size: 10px;
    padding-left: 16px;
  }

  .close {
    width: 28px;
    height: 28px;
    font-size: 14px;
  }

  .test-heading,
  .why-title,
  .faq-title {
    font-size: 22px;
  }

  .faq-question {
    padding: 16px 18px;
    font-size: 14px;
  }

  .testimonial-box {
    padding: 25px 18px;
  }

  .testimonial-box h2 {
    font-size: 22px;
  }

  .footer-top {
    padding: 30px 15px;
  }

  .whatsapp-float {
    width: 48px;
    height: 48px;
    font-size: 22px;
    bottom: 15px;
    right: 15px;
  }
}
