/* ==========================================================================
   Samruddhi Care - Kidney Care & Women's Health Main Stylesheet
   ========================================================================== */

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

:root {
  /* Brand Color Palette - Derived from Samruddhi Care Logo */
  /* Dominant Primary: Royal Purple / Deep Violet (Hands, Outer Ring, Slogan) */
  --primary: #68258E;
  --primary-hover: #521c72;
  --primary-light: #f5effb;
  --primary-blue: #8b32be;
  --primary-accent: #8b32be;

  /* Secondary Accent 1: Teal / Cyan (Upper 'S' Curve & Top Right Dot) */
  --teal: #00A99D;
  --teal-hover: #00877d;
  --teal-light: #e6f7f5;
  --teal-accent: #00c5b7;

  /* Secondary Accent 2: Leaf / Emerald Green (Lower 'S' Curve & Cross Outline) */
  --emerald: #52C234;
  --emerald-hover: #419f27;
  --emerald-light: #f0fdf4;

  /* Slate & Neutral Colors - Harmonized Dark Purple-Slate Tones */
  --slate-900: #1a1325;
  --slate-800: #282035;
  --slate-700: #3e344e;
  --slate-600: #564b67;
  --slate-500: #776c89;
  --slate-400: #9a8fae;
  --slate-200: #eae4f2;
  --slate-100: #f8f5fc;
  --white: #ffffff;

  /* Status Colors */
  --amber: #f59e0b;
  --amber-light: #fffbeb;

  /* Typography */
  --font-heading: 'Outfit', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;

  /* Shadows & Glassmorphism */
  --shadow-sm: 0 2px 8px rgba(26, 19, 37, 0.04);
  --shadow-md: 0 8px 24px -6px rgba(104, 37, 142, 0.12);
  --shadow-lg: 0 20px 40px -10px rgba(104, 37, 142, 0.16);
  --shadow-hover: 0 25px 50px -12px rgba(0, 169, 157, 0.22);

  /* Borders & Radius */
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 20px;
  --radius-xl: 28px;
  --radius-full: 9999px;

  /* Transitions */
  --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-normal: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Base Resets */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-body);
  color: var(--slate-800);
  background-color: #fbfcfd;
  line-height: 1.6;
  overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-heading);
  color: var(--slate-900);
  line-height: 1.25;
  font-weight: 700;
}

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

img {
  max-width: 100%;
  height: auto;
  display: block;
}

button,
input,
select,
textarea {
  font-family: inherit;
  font-size: inherit;
}

.container {
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* Utilities */
.text-center {
  text-align: center;
}

.text-teal {
  color: var(--teal);
}

.text-primary {
  color: var(--primary);
}

.bg-light {
  background-color: var(--slate-100);
}

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

.badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.375rem 1rem;
  border-radius: var(--radius-full);
  font-size: 0.875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.badge-teal {
  background-color: var(--teal-light);
  color: var(--teal);
  border: 1px solid rgba(13, 148, 136, 0.2);
}

.badge-primary {
  background-color: var(--primary-light);
  color: var(--primary);
  border: 1px solid rgba(10, 75, 124, 0.15);
}

.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.35rem 0.9rem;
  border-radius: var(--radius-full);
  font-size: 0.825rem;
  font-weight: 600;
  color: var(--teal);
  background-color: var(--teal-light);
  margin-bottom: 0.75rem;
}

.section-title {
  font-size: 2.25rem;
  font-weight: 700;
  color: var(--slate-900);
  margin-bottom: 1rem;
  letter-spacing: -0.02em;
}

@media (min-width: 768px) {
  .section-title {
    font-size: 2.75rem;
  }
}

.section-desc {
  font-size: 1.125rem;
  color: var(--slate-600);
  max-width: 680px;
  margin: 0 auto 2.5rem;
  line-height: 1.7;
}

/* Button Styles */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.625rem;
  padding: 0.875rem 1.75rem;
  border-radius: var(--radius-full);
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  border: 2px solid transparent;
  transition: all var(--transition-fast);
  white-space: nowrap;
}

.btn-primary {
  background-color: var(--primary);
  color: var(--white);
  box-shadow: 0 4px 14px rgba(10, 75, 124, 0.25);
}

.btn-primary:hover {
  background-color: var(--primary-hover);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(10, 75, 124, 0.35);
}

.btn-teal {
  background-color: var(--teal);
  color: var(--white);
  box-shadow: 0 4px 14px rgba(13, 148, 136, 0.25);
}

.btn-teal:hover {
  background-color: var(--teal-hover);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(13, 148, 136, 0.35);
}

.btn-outline {
  background-color: transparent;
  border-color: var(--slate-200);
  color: var(--slate-700);
}

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

.btn-sm {
  padding: 0.5rem 1.25rem;
  font-size: 0.875rem;
}

/* ==========================================================================
   Header & Navigation
   ========================================================================== */

.top-bar {
  background-color: var(--slate-900);
  color: var(--slate-400);
  font-size: 0.85rem;
  padding: 0.5rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.top-bar-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.top-info {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.top-info-item {
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.top-info-item svg {
  color: var(--teal-accent);
  width: 15px;
  height: 15px;
}

.top-info-item a:hover {
  color: var(--white);
}

.top-badge {
  background-color: rgba(13, 148, 136, 0.2);
  color: var(--teal-accent);
  padding: 0.15rem 0.6rem;
  border-radius: var(--radius-sm);
  font-size: 0.75rem;
  font-weight: 600;
}

.header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background-color: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--slate-200);
  transition: all var(--transition-normal);
}

.header.scrolled {
  box-shadow: var(--shadow-md);
}

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

.logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.35rem;
  color: var(--slate-900);
  text-decoration: none;
}

.logo-icon {
  width: 95px;
  height: 95px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.logo-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: drop-shadow(0 2px 6px rgba(104, 37, 142, 0.18));
  transition: transform var(--transition-fast);
}

.logo:hover .logo-icon img {
  transform: scale(1.06);
}

.logo-text {
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--primary);
  line-height: 1.15;
}

.logo-text span {
  color: var(--teal);
}

.logo-sub {
  display: block;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--slate-500);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-top: 2px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 1.75rem;
  list-style: none;
}

.nav-link {
  font-weight: 500;
  color: var(--slate-700);
  font-size: 0.95rem;
  padding: 0.5rem 0;
  position: relative;
}

.nav-link:hover,
.nav-link.active {
  color: var(--primary);
}

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

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

.mobile-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--slate-800);
  cursor: pointer;
  padding: 0.5rem;
}

/* ==========================================================================
   Hero Section
   ========================================================================== */

.hero {
  padding: 4rem 0 5rem;
  background: radial-gradient(circle at top right, rgba(13, 148, 136, 0.06) 0%, rgba(240, 247, 255, 0.5) 40%, rgba(255, 255, 255, 1) 100%);
  position: relative;
  overflow: hidden;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
}

@media (min-width: 992px) {
  .hero-grid {
    grid-template-columns: 1.15fr 0.85fr;
  }
}

.hero-content {
  max-width: 620px;
}

.hero-headline {
  font-size: 2.75rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--slate-900);
  margin-bottom: 1.25rem;
  line-height: 1.15;
}

@media (min-width: 768px) {
  .hero-headline {
    font-size: 3.5rem;
  }
}

.hero-headline span {
  background: linear-gradient(135deg, var(--primary) 0%, var(--teal) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-desc {
  font-size: 1.15rem;
  color: var(--slate-600);
  margin-bottom: 2rem;
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 2.5rem;
}

.hero-trust-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  padding-top: 1.75rem;
  border-top: 1px solid var(--slate-200);
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--slate-700);
}

.trust-icon {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background-color: var(--teal-light);
  color: var(--teal);
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-image-wrapper {
  position: relative;
}

.hero-image-card {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 4px solid var(--white);
}

.hero-image-card img {
  width: 100%;
  height: 480px;
  object-fit: cover;
  object-position: center top;
}

.floating-badge {
  position: absolute;
  background-color: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  padding: 1rem 1.25rem;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  border: 1px solid rgba(255, 255, 255, 0.8);
  display: flex;
  align-items: center;
  gap: 0.85rem;
  z-index: 10;
}

.badge-top-right {
  top: 2rem;
  right: -1rem;
}

.badge-bottom-left {
  bottom: 2rem;
  left: -1rem;
}

.badge-icon-box {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: var(--primary-light);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
}

.badge-icon-box.teal {
  background: var(--teal-light);
  color: var(--teal);
}

.badge-text strong {
  display: block;
  font-size: 1.1rem;
  color: var(--slate-900);
}

.badge-text span {
  font-size: 0.8rem;
  color: var(--slate-500);
}

/* Pulse animation */
.pulse-dot {
  width: 10px;
  height: 10px;
  background-color: var(--emerald);
  border-radius: 50%;
  position: relative;
}

.pulse-dot::after {
  content: '';
  position: absolute;
  top: -4px;
  left: -4px;
  right: -4px;
  bottom: -4px;
  border-radius: 50%;
  background-color: rgba(16, 185, 129, 0.4);
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0% {
    transform: scale(0.9);
    opacity: 1;
  }

  50% {
    transform: scale(1.6);
    opacity: 0;
  }

  100% {
    transform: scale(0.9);
    opacity: 0;
  }
}

/* ==========================================================================
   About Us Section
   ========================================================================== */

.about {
  padding: 4rem 0;
  background-color: var(--white);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 4rem;
  align-items: center;
}

@media (min-width: 992px) {
  .about-grid {
    grid-template-columns: 1fr 1.1fr;
  }
}

.about-img-container {
  position: relative;
}

.about-img {
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--slate-200);
}

.about-img img {
  width: 100%;
  height: 420px;
  object-fit: cover;
}

.about-experience-badge {
  position: absolute;
  bottom: -1.5rem;
  right: 1.5rem;
  background: linear-gradient(135deg, var(--primary) 0%, var(--teal) 100%);
  color: var(--white);
  padding: 1.5rem;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  text-align: center;
  min-width: 160px;
}

.about-experience-badge strong {
  font-size: 2.25rem;
  font-family: var(--font-heading);
  display: block;
  line-height: 1;
}

.about-experience-badge span {
  font-size: 0.85rem;
  opacity: 0.9;
}

.about-content-box {
  padding-left: 0;
}

@media (min-width: 992px) {
  .about-content-box {
    padding-left: 1rem;
  }
}

.about-tabs {
  display: flex;
  gap: 0.5rem;
  margin-top: 1.5rem;
  margin-bottom: 1.5rem;
  border-bottom: 2px solid var(--slate-200);
}

.tab-btn {
  background: none;
  border: none;
  padding: 0.75rem 1.25rem;
  font-weight: 600;
  color: var(--slate-600);
  cursor: pointer;
  border-bottom: 2px solid transparent;
  margin-bottom: -2px;
  transition: all var(--transition-fast);
}

.tab-btn.active {
  color: var(--primary);
  border-bottom-color: var(--primary);
}

.tab-content {
  display: none;
  animation: fadeIn 0.3s ease-in;
}

.tab-content.active {
  display: block;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(6px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.about-bullets {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1rem;
  margin-top: 1.5rem;
}

.about-bullet-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 0.95rem;
  color: var(--slate-700);
}

.about-bullet-item svg {
  color: var(--teal);
  min-width: 20px;
  margin-top: 2px;
}

/* Talk to us callout banner under About Us */
.talk-to-us-banner {
  margin-top: 3rem;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-hover) 100%);
  border-radius: 14px;
  padding: 1.6rem 2.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1.5rem;
  box-shadow: 0 10px 25px rgba(104, 37, 142, 0.2);
}

@media (max-width: 768px) {
  .talk-to-us-banner {
    flex-direction: column;
    text-align: center;
    padding: 1.5rem 1.25rem;
    gap: 1.25rem;
  }
}

.talk-to-us-content h3 {
  color: #ffffff;
  font-size: 1.35rem;
  font-weight: 700;
  margin-bottom: 0.25rem;
  letter-spacing: -0.01em;
}

.talk-to-us-content p {
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.95rem;
  margin: 0;
  line-height: 1.4;
}

.talk-to-us-btn {
  background-color: #ffffff;
  color: var(--primary);
  font-weight: 700;
  font-size: 0.95rem;
  padding: 0.65rem 1.75rem;
  border-radius: 50px;
  text-decoration: none;
  display: inline-block;
  white-space: nowrap;
  transition: all var(--transition-fast);
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.12);
}

.talk-to-us-btn:hover {
  background-color: var(--primary-light);
  color: var(--primary-hover);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.18);
}

/* ==========================================================================
   Specialties Section
   ========================================================================== */

/* ==========================================================================
   New Services Format (Exact Image Design)
   ========================================================================== */

.services-section {
  padding: 5rem 0;
  background-color: #f8fafc;
}

.services-top-bar {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 3.5rem;
  flex-wrap: wrap;
  gap: 1.5rem;
}

.services-tag {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--primary, #68258E);
  margin-bottom: 0.5rem;
  display: block;
}

.services-title {
  font-size: 2.4rem;
  font-weight: 800;
  color: #0f172a;
  font-family: var(--font-heading);
  margin-bottom: 0.75rem;
}

.services-subtitle {
  font-size: 1.05rem;
  color: #64748b;
  max-width: 650px;
  line-height: 1.6;
  margin: 0;
}

.services-pills {
  display: flex;
  gap: 0.75rem;
  background-color: #ffffff;
  padding: 0.5rem;
  border-radius: 16px;
  border: 1px solid #e2e8f0;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.service-pill-btn {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.65rem 1.25rem;
  border-radius: 12px;
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 700;
  color: #334155;
  transition: all 0.25s ease;
  background-color: transparent;
  border: 1px solid transparent;
}

.service-pill-btn .pill-num {
  font-size: 0.85rem;
  font-weight: 800;
  color: #94a3b8;
  background-color: #f1f5f9;
  padding: 0.2rem 0.55rem;
  border-radius: 6px;
  transition: all 0.25s ease;
}

.service-pill-btn:hover,
.service-pill-btn.active {
  background-color: #f8fafc;
  border-color: #cbd5e1;
  color: #0f172a;
}

.service-pill-btn.active .pill-num {
  background-color: var(--primary, #68258E);
  color: #ffffff;
}

/* Category Block */
.category-block {
  position: relative;
  padding-left: 2rem;
  border-left: 4px solid var(--category-accent, #9d174d);
  margin-bottom: 4rem;
}

.category-block.category-plum {
  --category-accent: #9d174d;
  --category-tag-color: #be185d;
  --icon-bg: #fce7f3;
  --icon-color: #9d174d;
}

.category-block.category-teal {
  --category-accent: #00A99D;
  --category-tag-color: #0d9488;
  --icon-bg: #ccfbf1;
  --icon-color: #0f766e;
}

.category-header {
  display: flex;
  align-items: flex-start;
  gap: 1.25rem;
  margin-bottom: 2rem;
}

.category-header-icon {
  width: 54px;
  height: 54px;
  border-radius: 14px;
  background-color: var(--category-accent);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.12);
}

.category-header-title {
  font-size: 1.85rem;
  font-weight: 800;
  color: #0f172a;
  font-family: var(--font-heading);
  margin: 0 0 0.25rem 0;
  line-height: 1.2;
}

.category-header-tagline {
  font-size: 1rem;
  font-weight: 700;
  color: var(--category-tag-color);
  margin-bottom: 0.5rem;
  display: block;
}

.category-header-desc {
  font-size: 0.98rem;
  color: #64748b;
  max-width: 720px;
  line-height: 1.55;
  margin: 0;
}

/* Grid of Sub-service Cards */
.sub-services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

@media (max-width: 992px) {
  .sub-services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  .sub-services-grid {
    grid-template-columns: 1fr;
  }

  .category-block {
    padding-left: 1rem;
    border-left-width: 3px;
  }
}

.sub-service-card {
  background-color: #ffffff;
  border-radius: 20px;
  padding: 1.75rem;
  border: 1px solid #e2e8f0;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.02);
  display: flex;
  flex-direction: column;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.sub-service-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.07);
}

.sub-service-card.span-2-col {
  grid-column: span 2;
}

@media (max-width: 992px) {
  .sub-service-card.span-2-col {
    grid-column: span 1;
  }
}

.sub-card-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background-color: var(--icon-bg);
  color: var(--icon-color);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
}

.sub-card-title {
  font-size: 1.2rem;
  font-weight: 700;
  color: #0f172a;
  font-family: var(--font-heading);
  margin: 0 0 0.75rem 0;
  line-height: 1.3;
}

.sub-card-desc {
  font-size: 0.92rem;
  color: #64748b;
  line-height: 1.6;
  margin: 0;
}

/* Bullet section inside cards */
.sub-card-bullets-wrapper {
  margin-top: 1.25rem;
  padding-top: 1.25rem;
  border-top: 1px dotted #cbd5e1;
}

.bullets-2-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
}

@media (max-width: 640px) {
  .bullets-2-col {
    grid-template-columns: 1fr;
  }
}

.bullet-item {
  position: relative;
  padding-left: 1.25rem;
  margin-bottom: 0.85rem;
}

.bullet-item:last-child {
  margin-bottom: 0;
}

.bullet-item::before {
  content: "•";
  position: absolute;
  left: 0;
  top: -0.1rem;
  font-size: 1.2rem;
  color: var(--category-accent);
}

.bullet-title {
  font-weight: 700;
  color: #0f172a;
  font-size: 0.92rem;
  display: inline;
}

.bullet-desc {
  font-size: 0.88rem;
  color: #64748b;
  line-height: 1.5;
  display: block;
  margin-top: 0.15rem;
}

/* Quick symptom widget */
.symptom-guide-box {
  margin-top: 4rem;
  background: linear-gradient(135deg, var(--slate-900) 0%, var(--primary) 100%);
  border-radius: var(--radius-xl);
  padding: 2.5rem;
  color: var(--white);
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  align-items: center;
}

@media (min-width: 768px) {
  .symptom-guide-box {
    grid-template-columns: 1.2fr 0.8fr;
  }
}

.symptom-guide-box h3 {
  color: var(--white);
  font-size: 1.75rem;
  margin-bottom: 0.5rem;
}

.symptom-guide-box p {
  color: rgba(255, 255, 255, 0.85);
}

/* ==========================================================================
   Doctors Section
   ========================================================================== */

.doctors {
  padding: 4rem 0;
  background-color: var(--white);
}

.doctors-filter-tabs {
  display: flex;
  justify-content: center;
  gap: 0.75rem;
  margin-bottom: 3rem;
  flex-wrap: wrap;
}

.filter-btn {
  background-color: var(--slate-100);
  border: 1px solid var(--slate-200);
  padding: 0.6rem 1.25rem;
  border-radius: var(--radius-full);
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--slate-700);
  cursor: pointer;
  transition: all var(--transition-fast);
}

.filter-btn:hover,
.filter-btn.active {
  background-color: var(--primary);
  color: var(--white);
  border-color: var(--primary);
}

.doctors-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2rem;
  max-width: 950px;
  margin: 0 auto;
}

.doctors-grid.row {
  padding: 0;
}

.doctor-card {
  background-color: var(--white);
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid #e2e8f0;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  display: flex;
  flex-direction: column;
}

.doctor-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(12, 92, 83, 0.12);
  border-color: #cbd5e1;
}

.doctor-img-box {
  height: 360px;
  overflow: hidden;
  position: relative;
  background-color: var(--slate-100);
}

.doctor-img-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  transition: transform 0.4s ease;
}

.doctor-card:hover .doctor-img-box img {
  transform: scale(1.05);
}

.doctor-exp-tag {
  position: absolute;
  bottom: 1rem;
  right: 1rem;
  background: rgba(12, 92, 83, 0.88);
  backdrop-filter: blur(10px);
  color: var(--white);
  font-size: 0.8rem;
  font-weight: 600;
  padding: 0.4rem 0.9rem;
  border-radius: 50px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  display: flex;
  align-items: center;
  gap: 0.35rem;
}

.doctor-info {
  padding: 1.75rem 1.5rem 1.5rem;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.doctor-specialty {
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--teal);
  background-color: var(--teal-light);
  padding: 0.35rem 0.85rem;
  border-radius: 50px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-bottom: 0.85rem;
  display: inline-block;
  align-self: flex-start;
}

.doctor-name {
  font-size: 1.45rem;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 0.35rem;
  font-family: var(--font-heading);
}

.doctor-qualification {
  font-size: 0.875rem;
  color: #475569;
  font-weight: 500;
  margin-bottom: 1rem;
  line-height: 1.4;
}

.doctor-bio {
  font-size: 0.9rem;
  color: #64748b;
  margin-bottom: 1.25rem;
  line-height: 1.6;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.doctor-phone-box {
  background-color: #f8fafc;
  padding: 0.6rem 0.9rem;
  border-radius: 10px;
  border: 1px solid #e2e8f0;
  margin-bottom: 1.25rem;
  font-size: 0.875rem;
  color: #475569;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.doctor-phone-box a {
  color: var(--primary);
  font-weight: 700;
  text-decoration: none;
}

.doctor-phone-box a:hover {
  text-decoration: underline;
}

.doctor-actions {
  display: flex;
  gap: 0.75rem;
  margin-top: auto;
}

.doctor-actions .btn {
  flex: 1;
}

/* ==========================================================================
   Gallery Section
   ========================================================================== */

.gallery {
  padding: 4rem 0;
  background-color: var(--slate-100);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 1.5rem;
}

.gallery-item {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  height: 260px;
  box-shadow: var(--shadow-sm);
  cursor: pointer;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(15, 23, 42, 0.85) 0%, rgba(15, 23, 42, 0.1) 70%);
  opacity: 0;
  transition: opacity var(--transition-normal);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1.5rem;
  color: var(--white);
}

.gallery-item:hover img {
  transform: scale(1.06);
}

.gallery-item:hover .gallery-overlay {
  opacity: 1;
}

.gallery-cat {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--teal-accent);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.gallery-title {
  font-size: 1.15rem;
  font-weight: 700;
}

/* ==========================================================================
   Why Choose Us
   ========================================================================== */

.why-us {
  padding: 6.5rem 0;
  background: linear-gradient(180deg, #f8fafc 0%, #f1f5f9 100%);
  position: relative;
}

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

@media (min-width: 992px) {
  .why-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.why-card {
  position: relative;
  background-color: #ffffff;
  border-radius: 20px;
  padding: 2rem 1.75rem 2rem 1.75rem;
  border: 1px solid rgba(226, 232, 240, 0.9);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  z-index: 1;
}

/* Gradient shimmer line across top on hover */
.why-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 0%;
  height: 4px;
  background: linear-gradient(90deg, var(--primary) 0%, var(--teal) 50%, var(--emerald) 100%);
  transition: width 0.4s ease;
  z-index: 3;
}

.why-card:hover::before {
  width: 100%;
}

.why-card:hover {
  transform: translateY(-10px) scale(1.02);
  background: linear-gradient(180deg, #ffffff 0%, var(--primary-light) 100%);
  box-shadow: 0 20px 40px -10px rgba(104, 37, 142, 0.16), 0 0 25px rgba(0, 169, 157, 0.08);
  border-color: rgba(0, 169, 157, 0.4);
}

/* Curved Top-Left Badge Icon Container */
.why-card-badge {
  position: absolute;
  top: 0;
  left: 0;
  width: 78px;
  height: 78px;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-hover) 100%);
  border-top-left-radius: 20px;
  border-bottom-right-radius: 54px;
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  padding-top: 16px;
  padding-left: 16px;
  color: #ffffff;
  box-shadow: 3px 3px 12px rgba(104, 37, 142, 0.25);
  transition: all 0.4s ease;
  z-index: 2;
}

.why-card-badge svg {
  width: 28px;
  height: 28px;
  transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.why-card:hover .why-card-badge {
  background: linear-gradient(135deg, var(--teal) 0%, var(--primary) 100%);
  box-shadow: 4px 4px 16px rgba(0, 169, 157, 0.35);
}

.why-card:hover .why-card-badge svg {
  transform: scale(1.15) rotate(-4deg);
}

.why-card-header {
  padding-left: 84px;
  min-height: 60px;
  display: flex;
  align-items: center;
  margin-bottom: 1.2rem;
  z-index: 2;
}

.why-title {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--slate-900);
  margin: 0;
  line-height: 1.35;
  font-family: var(--font-heading);
  letter-spacing: -0.01em;
  transition: color 0.3s ease;
}

.why-card:hover .why-title {
  color: var(--primary);
}

.why-desc {
  font-size: 0.99rem;
  color: #64748b;
  line-height: 1.65;
  font-weight: 400;
  margin: 0;
  z-index: 2;
  position: relative;
}

/* Translucent Watermark Number in Card */
.why-card-num {
  position: absolute;
  bottom: 0.25rem;
  right: 0.75rem;
  font-size: 3.75rem;
  font-weight: 900;
  color: rgba(12, 92, 83, 0.05);
  font-family: var(--font-heading);
  line-height: 1;
  user-select: none;
  pointer-events: none;
  transition: all 0.4s ease;
  z-index: 1;
}

.why-card:hover .why-card-num {
  color: rgba(12, 92, 83, 0.12);
  transform: scale(1.12) translateY(-4px);
}

/* ==========================================================================
   Patient Reviews Section
   ========================================================================== */

.reviews {
  padding: 4rem 0;
  background-color: var(--primary-light);
  position: relative;
  overflow: hidden;
}

.reviews-carousel-wrapper {
  position: relative;
  max-width: 900px;
  margin: 0 auto;
}

.reviews-slider {
  display: flex;
  overflow-x: hidden;
  scroll-behavior: smooth;
  gap: 2rem;
}

.review-card {
  min-width: 100%;
  background-color: var(--white);
  border-radius: var(--radius-xl);
  padding: 3rem;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--slate-200);
}

.review-stars {
  display: flex;
  gap: 0.25rem;
  color: var(--amber);
  margin-bottom: 1.25rem;
}

.review-text {
  font-size: 1.25rem;
  color: var(--slate-800);
  line-height: 1.7;
  font-style: italic;
  margin-bottom: 2rem;
}

.review-author {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.author-avatar {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: var(--teal-light);
  color: var(--teal);
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  border: 2px solid var(--teal);
}

.author-info h4 {
  font-size: 1.1rem;
  color: var(--slate-900);
}

.author-info span {
  font-size: 0.85rem;
  color: var(--slate-500);
}

.carousel-nav {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  margin-top: 2rem;
}

.carousel-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background-color: var(--white);
  border: 1px solid var(--slate-200);
  color: var(--slate-700);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-fast);
}

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

.carousel-dots {
  display: flex;
  gap: 0.5rem;
}

.dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: var(--slate-300);
  cursor: pointer;
  transition: all var(--transition-fast);
}

.dot.active {
  width: 24px;
  border-radius: 10px;
  background-color: var(--primary);
}

/* ==========================================================================
   Directions / Location Section
   ========================================================================== */

.location {
  padding: 4rem 0;
  background-color: var(--white);
}

.location-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  align-items: center;
}

@media (min-width: 992px) {
  .location-grid {
    grid-template-columns: 1.1fr 0.9fr;
  }
}

@media (max-width: 640px) {
  .d-mobile-none {
    display: none;
  }
}

.map-card {
  height: 400px;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--slate-200);
  position: relative;
  background-color: #e5e7eb;
}

.map-placeholder {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #e2e8f0 0%, #cbd5e1 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  text-align: center;
}

.map-pin-box {
  width: 60px;
  height: 60px;
  background-color: var(--primary);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
  box-shadow: 0 10px 25px rgba(10, 75, 124, 0.4);
  animation: bounce 2s infinite;
}

@keyframes bounce {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-10px);
  }
}

.location-info-box {
  padding: 1rem 0;
}

.info-list {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin: 2rem 0;
}

.info-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.info-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background-color: var(--primary-light);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.info-text h4 {
  font-size: 1.1rem;
  color: var(--slate-900);
  margin-bottom: 0.25rem;
}

.info-text p {
  color: var(--slate-600);
  font-size: 0.95rem;
}

.location-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

/* ==========================================================================
   Appointment / Contact Section
   ========================================================================== */

.appointment {
  padding: 4rem 0;
  background: radial-gradient(circle at center, rgba(240, 253, 250, 0.8) 0%, rgba(240, 247, 255, 1) 100%);
  position: relative;
}

.appointment-card {
  background-color: var(--white);
  border-radius: var(--radius-xl);
  padding: 3rem;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--slate-200);
  max-width: 960px;
  margin: 0 auto;
}

.appointment-form {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  margin-top: 2rem;
}

@media (min-width: 768px) {
  .appointment-form {
    grid-template-columns: 1fr 1fr;
  }

  .form-full {
    grid-column: span 2;
  }
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.form-group label {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--slate-700);
}

.form-control {
  width: 100%;
  padding: 0.875rem 1.125rem;
  border-radius: var(--radius-md);
  border: 1px solid var(--slate-200);
  background-color: var(--slate-100);
  color: var(--slate-900);
  transition: all var(--transition-fast);
}

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

textarea.form-control {
  resize: vertical;
  min-height: 110px;
}

/* ==========================================================================
   Footer Section
   ========================================================================== */

.footer {
  background-color: var(--slate-900);
  color: var(--slate-400);
  padding: 5rem 0 2rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 3rem;
  margin-bottom: 4rem;
}

.footer-brand {
  grid-column: span 1;
}

@media (min-width: 992px) {
  .footer-brand {
    grid-column: span 1.5;
  }
}

.footer-brand .logo-text {
  color: var(--white);
}

.footer-desc {
  margin: 1.25rem 0 1.5rem;
  font-size: 0.95rem;
  line-height: 1.7;
}

.footer-title {
  color: var(--white);
  font-size: 1.15rem;
  margin-bottom: 1.5rem;
  position: relative;
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer-links a:hover {
  color: var(--teal-accent);
  padding-left: 4px;
}

.social-links {
  display: flex;
  gap: 0.75rem;
}

.social-btn {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.08);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition-fast);
}

.social-btn:hover {
  background-color: var(--teal);
  transform: translateY(-3px);
}

.footer-bottom {
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: center;
  justify-content: space-between;
  font-size: 0.875rem;
}

@media (min-width: 768px) {
  .footer-bottom {
    flex-direction: row;
  }
}

.footer-bottom-links {
  display: flex;
  gap: 1.5rem;
}

.footer-bottom-links a:hover {
  color: var(--white);
}

/* ==========================================================================
   Modals & Floating Widgets
   ========================================================================== */

.modal {
  position: fixed;
  inset: 0;
  background-color: rgba(15, 23, 42, 0.6);
  backdrop-filter: blur(6px);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition-fast);
}

.modal.active {
  opacity: 1;
  pointer-events: auto;
}

.modal-content {
  background-color: var(--white);
  border-radius: var(--radius-xl);
  max-width: 650px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  padding: 2.5rem;
  position: relative;
  transform: translateY(20px);
  transition: transform var(--transition-fast);
  box-shadow: var(--shadow-lg);
}

.modal.active .modal-content {
  transform: translateY(0);
}

.modal-close {
  position: absolute;
  top: 1.25rem;
  right: 1.25rem;
  background: var(--slate-100);
  border: none;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: var(--slate-600);
}

.modal-close:hover {
  background-color: var(--slate-200);
  color: var(--slate-900);
}

/* Floating mobile CTA bar */
.floating-mobile-bar {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  padding: 0.75rem 1rem;
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.1);
  z-index: 999;
  justify-content: space-between;
  gap: 0.75rem;
}

/* Off-Canvas Backdrop Overlay */
.nav-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(15, 23, 42, 0.6);
  backdrop-filter: blur(4px);
  z-index: 1998;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.nav-backdrop.active {
  opacity: 1;
  visibility: visible;
}

.drawer-header,
.drawer-footer {
  display: none;
}

@media (max-width: 992px) {
  .floating-mobile-bar {
    display: flex;
  }

  body {
    padding-bottom: 60px;
  }

  .nav-links {
    position: fixed;
    top: 0;
    left: 0;
    width: 320px;
    max-width: 85vw;
    height: 100vh;
    height: 100dvh;
    background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
    flex-direction: column;
    padding: 1.5rem 1.25rem 2rem;
    box-shadow: 10px 0 35px rgba(0, 0, 0, 0.18);
    transform: translateX(-100%);
    transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
    z-index: 1999;
    overflow-y: auto;
    gap: 0.35rem;
  }

  .nav-links.active {
    transform: translateX(0);
  }

  .drawer-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 1.25rem;
    margin-bottom: 0.75rem;
    border-bottom: 1px solid #e2e8f0;
  }

  .drawer-close-btn {
    background: #f1f5f9;
    border: none;
    font-size: 1.75rem;
    color: #475569;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    line-height: 1;
    transition: all 0.2s ease;
  }

  .drawer-close-btn:hover {
    background: #e2e8f0;
    color: #0f172a;
  }

  .nav-links .nav-link {
    display: block;
    padding: 0.8rem 1rem;
    border-radius: 10px;
    font-size: 1.05rem;
    font-weight: 600;
    color: #334155;
    transition: all 0.2s ease;
  }

  .nav-links .nav-link:hover,
  .nav-links .nav-link.active {
    background-color: var(--primary-light);
    color: var(--primary);
  }

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

  .drawer-footer {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: auto;
    padding-top: 1.5rem;
    border-top: 1px solid #e2e8f0;
  }

  .drawer-phone-info {
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
    font-size: 0.875rem;
    color: #64748b;
  }

  .drawer-phone-info strong {
    color: #0f172a;
  }

  .drawer-phone-info a {
    color: var(--primary);
    font-weight: 600;
    text-decoration: none;
  }

  .drawer-book-btn {
    width: 100%;
    text-align: center;
    justify-content: center;
  }

  .mobile-toggle {
    display: block;
  }
}

/* Toast Notifications */
.toast {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  background-color: var(--slate-900);
  color: var(--white);
  padding: 1rem 1.5rem;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  display: flex;
  align-items: center;
  gap: 0.75rem;
  z-index: 3000;
  transform: translateY(100px);
  opacity: 0;
  transition: all var(--transition-normal);
}

.toast.show {
  transform: translateY(0);
  opacity: 1;
}

.toast.success {
  border-left: 4px solid var(--emerald);
}

/* Floating Quick Action Buttons (WhatsApp & Call) - Mobile & Desktop */
.floating-quick-actions {
  position: fixed;
  bottom: 2.25rem;
  right: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  z-index: 2500;
}

.quick-action-btn {
  position: relative;
  width: 54px;
  height: 54px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  text-decoration: none;
  transition: all 0.35s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

/* WhatsApp Button */
.action-whatsapp {
  background: linear-gradient(135deg, #25d366 0%, #128c7e 100%);
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.45);
}

.action-whatsapp:hover {
  background: linear-gradient(135deg, #20ba5a 0%, #0e7065 100%);
  transform: scale(1.12);
  box-shadow: 0 8px 24px rgba(37, 211, 102, 0.65);
}

/* Call Button */
.action-call {
  background: linear-gradient(135deg, #ff6b00 0%, #e65100 100%);
  box-shadow: 0 6px 20px rgba(255, 107, 0, 0.45);
}

.action-call:hover {
  background: linear-gradient(135deg, #e66000 0%, #cc4700 100%);
  transform: scale(1.12);
  box-shadow: 0 8px 24px rgba(255, 107, 0, 0.65);
}

/* Pulse ring animation */
.quick-action-btn::after {
  content: '';
  position: absolute;
  inset: -3px;
  border-radius: 50%;
  border: 2px solid currentColor;
  opacity: 0.35;
  animation: actionPulse 2s infinite;
}

@keyframes actionPulse {
  0% {
    transform: scale(1);
    opacity: 0.5;
  }

  100% {
    transform: scale(1.38);
    opacity: 0;
  }
}

/* Tooltip on Hover */
.quick-action-tooltip {
  position: absolute;
  right: 64px;
  top: 50%;
  transform: translateY(-50%) translateX(10px);
  background-color: #0f172a;
  color: #ffffff;
  font-size: 0.825rem;
  font-weight: 600;
  padding: 0.4rem 0.85rem;
  border-radius: 8px;
  white-space: nowrap;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: all 0.25s ease;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.2);
}

.quick-action-tooltip::after {
  content: '';
  position: absolute;
  top: 50%;
  right: -5px;
  transform: translateY(-50%);
  border-width: 5px 0 5px 5px;
  border-style: solid;
  border-color: transparent transparent transparent #0f172a;
}

.quick-action-btn:hover .quick-action-tooltip {
  opacity: 1;
  visibility: visible;
  transform: translateY(-50%) translateX(0);
}



/* Fixed Right Social Media Sidebar */
.fixed-social-sidebar {
  position: fixed;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  z-index: 2400;
}

.social-side-btn {
  position: relative;
  width: 44px;
  height: 44px;
  border-top-left-radius: 15px;
  border-bottom-left-radius: 15px;
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  text-decoration: none;
  box-shadow: -3px 3px 12px rgba(0, 0, 0, 0.15);
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.btn-facebook {
  background-color: #1877f2;
}

.btn-facebook:hover {
  background-color: #1464cc;
  transform: translateX(-6px);
}

.btn-instagram {
  background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285ae6 90%);
}

.btn-instagram:hover {
  transform: translateX(-6px);
  filter: brightness(1.1);
}

.btn-youtube {
  background-color: #ff0000;
}

.btn-youtube:hover {
  background-color: #cc0000;
  transform: translateX(-6px);
}

.fixed-social-sidebar a:hover {
  transform: translateX(0px);
}

/* Tooltip Label on Hover */
.social-side-label {
  position: absolute;
  right: 52px;
  top: 50%;
  transform: translateY(-50%) translateX(10px);
  background-color: #0f172a;
  color: #ffffff;
  font-size: 0.8rem;
  font-weight: 600;
  padding: 0.35rem 0.75rem;
  border-radius: 10px;
  white-space: nowrap;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: all 0.25s ease;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.18);
}

.social-side-label::after {
  content: '';
  position: absolute;
  top: 50%;
  right: -4px;
  transform: translateY(-50%);
  border-width: 4px 0 4px 4px;
  border-style: solid;
  border-color: transparent transparent transparent #0f172a;
}

.social-side-btn:hover .social-side-label {
  opacity: 1;
  visibility: visible;
  transform: translateY(-50%) translateX(0);
}

/* Scroll To Top Button */
.scroll-top-btn {
  position: fixed;
  bottom: 5.75rem;
  left: 1.25rem;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #0f172a;
  color: #f97316;
  border: 2px solid #f97316;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 2499;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.25);
}

.scroll-top-btn.show {
  opacity: 1;
  visibility: visible;
}

.scroll-top-btn:hover {
  transform: translateY(-4px);
  background: #f97316;
  color: #ffffff;
}

@media (min-width: 769px) {
  .scroll-top-btn {
    bottom: 2.25rem;
    left: 1.5rem;
  }
}

/* Mobile Fixed Bottom Action Bar (Call Now & WhatsApp) */
.mobile-bottom-bar {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: #0b1329;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 0.75rem 1rem;
  z-index: 2500;
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.25);
  gap: 0.85rem;
}

.mobile-bar-btn {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
  padding: 0.75rem 0.4rem;
  border-radius: 10px;
  font-size: 0.85rem;
  font-weight: 700;
  color: #ffffff;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: all 0.2s ease;
  white-space: nowrap;
}

.btn-book-now {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-hover) 100%);
}

.btn-call-now {
  background: linear-gradient(135deg, #ff6b00 0%, #e65100 100%);
}

.btn-takeaway-now {
  background: linear-gradient(135deg, var(--teal) 0%, var(--teal-hover) 100%);
}

.btn-book-now:active,
.btn-call-now:active,
.btn-takeaway-now:active {
  transform: scale(0.96);
}

/* Call Options Modal Sheet (2 Numbers Choice) */
.call-options-modal {
  position: fixed;
  inset: 0;
  z-index: 3500;
  display: flex;
  align-items: flex-end;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.call-options-modal.active {
  opacity: 1;
  visibility: visible;
}

.call-options-overlay {
  position: absolute;
  inset: 0;
  background: rgba(15, 23, 42, 0.65);
  backdrop-filter: blur(4px);
}

.call-options-sheet {
  position: relative;
  width: 100%;
  background: #ffffff;
  border-top-left-radius: 24px;
  border-top-right-radius: 24px;
  padding: 1.5rem;
  box-shadow: 0 -10px 40px rgba(0, 0, 0, 0.3);
  transform: translateY(100%);
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  z-index: 2;
}

.call-options-modal.active .call-options-sheet {
  transform: translateY(0);
}

.call-sheet-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1.25rem;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid #e2e8f0;
}

.call-sheet-header h3 {
  font-size: 1.1rem;
  font-weight: 700;
  color: #0f172a;
  margin: 0;
  font-family: var(--font-heading);
}

.call-sheet-close {
  background: #f1f5f9;
  border: none;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  font-size: 1.5rem;
  color: #64748b;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}

.call-sheet-body {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.call-doctor-option {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem;
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 14px;
  text-decoration: none;
  transition: all 0.2s ease;
}

.call-doctor-option:hover {
  background: var(--primary-light);
  border-color: var(--primary);
}

.call-doc-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--primary-light);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.call-doc-icon.teal {
  background: var(--teal-light);
  color: var(--teal);
}

.call-doctor-option strong {
  display: block;
  font-size: 0.95rem;
  color: #0f172a;
}

.call-doctor-option span {
  font-size: 0.85rem;
  color: #2563eb;
  font-weight: 600;
}

@media (max-width: 991px) {
  ul#navLinks li {
    width: 100% !important;
  }
}

@media (max-width: 768px) {
  .mobile-bottom-bar {
    display: flex;
  }

  body {
    padding-bottom: 72px;
  }

  .floating-quick-actions {
    display: none !important;
  }
}

/* Urgent Consultation CTA Banner (Matching User Reference Image) */
.urgency-cta-section {
  padding: 5.5rem 0;
  background: linear-gradient(180deg, #091122 0%, #0f1c36 100%);
  position: relative;
  overflow: hidden;
  color: #ffffff;
}

.urgency-cta-card {
  max-width: 980px;
  margin: 0 auto;
  text-align: center;
  padding: 3.5rem 2.5rem;
  border-radius: 28px;
  background: radial-gradient(circle at center, rgba(30, 58, 138, 0.22) 0%, rgba(15, 28, 54, 0.85) 100%);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.45);
  position: relative;
  z-index: 1;
}

.urgency-title {
  font-size: 2.35rem;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 1.25rem;
  font-family: var(--font-heading);
  letter-spacing: -0.02em;
  line-height: 1.25;
}

.urgency-title .highlight-amber {
  color: #f59e0b;
  position: relative;
}

.urgency-desc {
  font-size: 1.05rem;
  color: #94a3b8;
  max-width: 740px;
  margin: 0 auto 2.5rem;
  line-height: 1.65;
  font-weight: 400;
}

.urgency-btn-group-top {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 1.25rem;
  margin-bottom: 1.25rem;
}

.urgency-btn-group-bottom {
  display: flex;
  justify-content: center;
  align-items: center;
}

.urgency-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.65rem;
  padding: 0.95rem 2.2rem;
  border-radius: 50px;
  font-size: 1.05rem;
  font-weight: 700;
  color: #ffffff;
  text-decoration: none;
  transition: all 0.35s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.btn-urgency-call {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-hover) 100%);
  box-shadow: 0 10px 30px rgba(104, 37, 142, 0.4);
}

.btn-urgency-call:hover {
  background: linear-gradient(135deg, var(--primary-hover) 0%, var(--slate-900) 100%);
  transform: translateY(-4px) scale(1.03);
  box-shadow: 0 14px 38px rgba(104, 37, 142, 0.6);
}

.btn-urgency-whatsapp {
  background: linear-gradient(135deg, var(--teal) 0%, var(--teal-hover) 100%);
  box-shadow: 0 10px 30px rgba(0, 169, 157, 0.4);
}

.btn-urgency-whatsapp:hover {
  background: linear-gradient(135deg, var(--teal-hover) 0%, #006b63 100%);
  transform: translateY(-4px) scale(1.03);
  box-shadow: 0 14px 38px rgba(0, 169, 157, 0.6);
}

.btn-urgency-online {
  background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
  box-shadow: 0 10px 30px rgba(245, 158, 11, 0.5);
  color: #0f172a;
}

.btn-urgency-online:hover {
  background: linear-gradient(135deg, #d97706 0%, #b45309 100%);
  color: #ffffff;
  transform: translateY(-4px) scale(1.03);
  box-shadow: 0 14px 38px rgba(245, 158, 11, 0.7);
}

@media (max-width: 768px) {
  .urgency-cta-card {
    padding: 2.5rem 1.25rem;
  }

  .urgency-title {
    font-size: 1.75rem;
  }

  .urgency-btn {
    width: 100%;
    padding: 0.85rem 1.5rem;
    font-size: 0.95rem;
  }

  .logo-sub {
    font-size: 0.68rem !important;
  }
}