/* ==========================================================================
   DR. RP SINGH - ORTHOPEDIC & ROBOTIC SURGEON WEBSITE
   Core Stylesheet & Design System
   ========================================================================== */

/* --------------------------------------------------------------------------
   1. DESIGN TOKENS & CSS VARIABLES
   -------------------------------------------------------------------------- */
:root {
  /* Brand Palette (Derived strictly from Dr. RP Singh Logo) */
  --primary: #0D529C;
  /* Royal Navy Blue */
  --primary-dark: #073567;
  /* Deep Ocean Navy */
  --primary-light: #EBF3FA;
  /* Ice Blue Tint */
  --primary-hover: #0a4382;

  --secondary: #38A137;
  /* Medical Emerald Green */
  --secondary-dark: #277A26;
  /* Forest Green */
  --secondary-light: #EFF9EF;
  /* Mint Tint */

  --accent: #0096C7;
  /* Vibrant Cyan Accent */

  --text-dark: #0F172A;
  /* Slate Dark */
  --text-muted: #475569;
  /* Slate Gray */
  --text-light: #94A3B8;
  /* Subtle Gray */

  --background: #F8FAFC;
  /* Off-White Slate */
  --surface: #FFFFFF;
  /* Pure White */
  --border: #E2E8F0;
  /* Soft Border */
  --border-light: #F1F5F9;

  /* Typography */
  --font-main: 'Plus Jakarta Sans', 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-heading: 'Outfit', 'Plus Jakarta Sans', sans-serif;

  /* Elevating Shadows */
  --shadow-sm: 0 2px 8px rgba(15, 23, 42, 0.04);
  --shadow-md: 0 10px 25px rgba(15, 23, 42, 0.06);
  --shadow-lg: 0 18px 40px rgba(15, 23, 42, 0.10);

  /* Border Radius System */
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 20px;
  --radius-full: 9999px;

  /* Vertical Rhythm Spacing System */
  --space-xs: 8px;
  --space-sm: 12px;
  --space-md: 20px;
  --space-lg: 32px;
  --space-xl: 48px;
  --space-2xl: 72px;
  --space-3xl: 96px;
  --space-4xl: 120px;

  /* Transition Speeds */
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-smooth: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);

  /* Container Max Width */
  --container-max: 1240px;
}

/* --------------------------------------------------------------------------
   2. RESET & BASE STYLES
   -------------------------------------------------------------------------- */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-tap-highlight-color: transparent;
}

body {
  font-family: var(--font-main);
  background-color: var(--background);
  color: var(--text-dark);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

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

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

a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: 3px solid var(--secondary);
  outline-offset: 2px;
}

ul {
  list-style: none;
}

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

/* Single Container System */
.container {
  width: min(100% - 40px, var(--container-max));
  margin-inline: auto;
}

/* Typography Utility Classes */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-heading);
  color: var(--text-dark);
  font-weight: 700;
  line-height: 1.2;
}

.section-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background-color: var(--primary-light);
  color: var(--primary);
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  padding: 6px 16px;
  border-radius: var(--radius-full);
  margin-bottom: 14px;
}

.section-label i {
  color: var(--secondary);
}

.section-title {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--text-dark);
  margin-bottom: 16px;
  letter-spacing: -0.5px;
}

.section-title span {
  color: var(--primary);
  position: relative;
}

.section-title span.highlight-green {
  color: var(--secondary);
}

.section-subtitle {
  font-size: 1.1rem;
  color: var(--text-muted);
  max-width: 650px;
  line-height: 1.6;
}

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

.text-center .section-subtitle {
  margin-left: auto;
  margin-right: auto;
}

/* --------------------------------------------------------------------------
   3. BUTTONS & INTERACTIVE ELEMENTS
   -------------------------------------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 28px;
  font-size: 0.95rem;
  font-weight: 700;
  border-radius: var(--radius-full);
  cursor: pointer;
  transition: var(--transition);
  white-space: nowrap;
}

.btn-primary {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  color: var(--surface);
  box-shadow: 0 4px 15px rgba(13, 82, 156, 0.25);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(13, 82, 156, 0.35);
  background: linear-gradient(135deg, #0f5cb0 0%, var(--primary) 100%);
}

.btn-secondary {
  background-color: var(--surface);
  color: var(--primary);
  border: 2px solid var(--primary);
}

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

.btn-accent {
  background-color: var(--secondary);
  color: var(--surface);
  box-shadow: 0 4px 15px rgba(56, 161, 55, 0.25);
}

.btn-accent:hover {
  background-color: var(--secondary-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(56, 161, 55, 0.35);
}

.btn-white {
  background-color: var(--surface);
  color: var(--primary);
  box-shadow: var(--shadow-md);
}

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

.btn-sm {
  padding: 10px 20px;
  font-size: 0.88rem;
}

.btn-lg {
  padding: 16px 36px;
  font-size: 1.05rem;
}

.btn i {
  transition: transform 0.3s ease;
}

.btn:hover i {
  transform: translateX(4px);
}

/* --------------------------------------------------------------------------
   4. TOPBAR
   -------------------------------------------------------------------------- */
.topbar {
  background-color: var(--primary-dark);
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.85rem;
  padding: 8px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.topbar-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.topbar-info {
  display: flex;
  align-items: center;
  gap: 24px;
}

.topbar-item {
  display: flex;
  align-items: center;
  gap: 8px;
}

.topbar-item i {
  color: var(--secondary);
}

.topbar-item a:hover {
  color: var(--surface);
  text-decoration: underline;
}

.topbar-social {
  display: flex;
  align-items: center;
  gap: 14px;
}

.topbar-social a {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  color: var(--surface);
}

.topbar-social a:hover {
  background: var(--secondary);
  color: var(--surface);
  transform: translateY(-2px);
}

/* --------------------------------------------------------------------------
   5. HEADER / STICKY NAVBAR
   -------------------------------------------------------------------------- */
.header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background-color: rgba(255, 255, 255, 0.95);
  border-bottom: 1px solid var(--border);
  transition: var(--transition);
}

.header::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: -1;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  pointer-events: none;
}

.header.scrolled {
  box-shadow: var(--shadow-md);
  padding: 4px 0;
}

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

.navbar-brand {
  display: flex;
  align-items: center;
  gap: 12px;
}

.logo-img {
  height: 50px;
  width: auto;
  transition: var(--transition);
}

.mobile-drawer-header,
.drawer-cta {
  display: none !important;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav-item {
  position: relative;
}

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

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

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

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

/* Dropdown Menu */
. {
  position: relative;
}

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  width: 260px;
  background-color: var(--surface);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border);
  padding: 12px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(12px);
  transition: var(--transition);
}

.:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 14px;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-dark);
  border-radius: var(--radius-sm);
}

.dropdown-item:hover {
  background-color: var(--primary-light);
  color: var(--primary);
  padding-left: 18px;
}

.header-cta {
  display: flex;
  align-items: center;
  gap: 16px;
}

.mobile-toggle {
  display: none !important;
  font-size: 1.5rem;
  color: var(--primary-dark);
  cursor: pointer;
  padding: 8px;
}

/* --------------------------------------------------------------------------
   6. HERO SECTION — SWIPER SLIDER (REDESIGNED FULL-WIDTH)
   -------------------------------------------------------------------------- */
.hero {
  padding: 0;
  position: relative;
  overflow: hidden;
  background-color: var(--primary-dark);
  width: 100%;
}

.hero-slider {
  width: 100%;
  height: clamp(620px, 82vh, 740px);
  position: relative;
}

.hero-slide {
  width: 100%;
  height: 100%;
  position: relative;
  overflow: hidden;
}

.hero-slide-bg {
  position: absolute;
  inset: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
}

.hero-slide-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 25%;
  transform: scale(1.04);
  transition: transform 7s ease-out;
}

.swiper-slide-active .hero-slide-bg img {
  transform: scale(1);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg,
      rgba(7, 53, 103, 0.82) 0%,
      rgba(13, 82, 156, 0.72) 50%,
      rgba(7, 53, 103, 0.86) 100%);
  z-index: 2;
}

.hero-container {
  position: relative;
  z-index: 3;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  max-width: 860px;
  width: 100%;
  margin: 0 auto;
  padding: 40px 20px;
}

/* Slide Content Entrance Animations */
.hero-eyebrow,
.hero-title,
.hero-description,
.hero-actions {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.8s ease, transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.swiper-slide-active .hero-eyebrow {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.15s;
}

.swiper-slide-active .hero-title {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.3s;
}

.swiper-slide-active .hero-description {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.45s;
}

.swiper-slide-active .hero-actions {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.6s;
}

.hero-eyebrow {
  background: rgba(255, 255, 255, 0.96);
  color: var(--primary-dark);
  font-weight: 700;
  font-size: 0.82rem;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  padding: 9px 24px;
  border-radius: var(--radius-full);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
  margin-bottom: 24px;
}

.hero-title {
  color: #FFFFFF;
  font-size: clamp(42px, 5.2vw, 68px);
  font-weight: 800;
  line-height: 1.05;
  margin-bottom: 20px;
  font-family: var(--font-heading);
  text-shadow: 0 4px 25px rgba(0, 0, 0, 0.3);
  letter-spacing: -0.5px;
}

.hero-description {
  color: rgba(255, 255, 255, 0.92);
  font-size: clamp(1rem, 1.25vw, 1.15rem);
  line-height: 1.6;
  max-width: 740px;
  margin: 0 auto 36px;
  font-weight: 400;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.hero-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  width: 100%;
}

.btn-hero-primary {
  background: linear-gradient(135deg, var(--secondary) 0%, var(--secondary-dark) 100%);
  color: #FFFFFF;
  border-radius: var(--radius-full);
  height: 54px;
  padding: 0 32px;
  font-weight: 700;
  font-size: 1rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  box-shadow: 0 8px 25px rgba(56, 161, 55, 0.35);
  border: none;
  cursor: pointer;
  transition: var(--transition);
}

.btn-hero-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(56, 161, 55, 0.45);
  color: #FFFFFF;
}

.btn-hero-secondary {
  background: #FFFFFF;
  color: var(--primary-dark);
  border-radius: var(--radius-full);
  height: 54px;
  padding: 0 32px;
  font-weight: 700;
  font-size: 1rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
  border: none;
  cursor: pointer;
  transition: var(--transition);
}

.btn-hero-secondary:hover {
  transform: translateY(-2px);
  background: var(--primary-light);
  color: var(--primary-dark);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.2);
}

/* Swiper Pagination Styling */
.hero-slider-pagination {
  bottom: 28px !important;
  z-index: 10;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
}

.hero-slider-pagination .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background: rgba(255, 255, 255, 0.45);
  opacity: 1;
  border-radius: 50%;
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  margin: 0 !important;
  cursor: pointer;
}

.hero-slider-pagination .swiper-pagination-bullet-active {
  background: var(--secondary);
  width: 32px;
  border-radius: 9999px;
  box-shadow: 0 2px 12px rgba(56, 161, 55, 0.6);
  z-index: 10;
}



.speciality-badge-card i {
  color: var(--secondary);
  font-size: 1.1rem;
}

/* Hero Controls (Arrows & Pagination) */
.hero-controls {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  z-index: 20;
  display: flex;
  align-items: center;
  gap: 20px;
}

.hero-slider-prev,
.hero-slider-next {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--surface);
  color: var(--primary);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.95rem;
  cursor: pointer;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

.hero-slider-prev:hover,
.hero-slider-next:hover {
  background: var(--primary);
  color: var(--surface);
  transform: scale(1.08);
  box-shadow: var(--shadow-md);
}

.hero-slider-pagination {
  display: flex;
  align-items: center;
  gap: 8px;
  position: static !important;
  width: auto !important;
}

.hero-slider-pagination .swiper-pagination-bullet {
  width: 32px;
  height: 28px;
  border-radius: var(--radius-full);
  background: var(--surface);
  color: var(--text-muted);
  border: 1px solid var(--border);
  font-size: 0.8rem;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  opacity: 1;
  margin: 0 !important;
  transition: var(--transition);
}

.hero-slider-pagination .swiper-pagination-bullet-active {
  background: var(--secondary);
  color: var(--surface);
  border-color: var(--secondary);
  width: 40px;
  box-shadow: 0 4px 12px rgba(56, 161, 55, 0.3);
}

/* Floating Trust Badge */
.trust-badge-card {
  position: absolute;
  bottom: 30px;
  left: -25px;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  padding: 16px 24px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  display: flex;
  align-items: center;
  gap: 16px;
  border: 1px solid var(--border);
  z-index: 10;
  animation: float 4s ease-in-out infinite;
}

@keyframes float {

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

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

.trust-badge-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--secondary-light);
  color: var(--secondary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
}

.trust-badge-number {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--primary-dark);
  line-height: 1;
}

.trust-badge-text {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text-muted);
}

/* Secondary Floating Badge */
.speciality-badge-card {
  position: absolute;
  top: 40px;
  right: -20px;
  background: var(--primary-dark);
  color: var(--surface);
  padding: 12px 20px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.85rem;
  font-weight: 700;
  z-index: 10;
}

.speciality-badge-card i {
  color: var(--secondary);
  font-size: 1.1rem;
}

/* --------------------------------------------------------------------------
   7. TRUST & EXPERTISE STRIP
   -------------------------------------------------------------------------- */
.trust-strip {
  margin-top: -50px;
  position: relative;
  z-index: 20;
  padding-bottom: 80px;
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.trust-card {
  background: var(--surface);
  padding: 30px 24px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border-light);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
  gap: 14px;
  position: relative;
  overflow: hidden;
}

.trust-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 0;
  background-color: var(--secondary);
  transition: var(--transition);
}

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

.trust-card:hover::before {
  height: 100%;
}

.trust-icon-box {
  width: 56px;
  height: 56px;
  border-radius: 12px;
  background-color: var(--primary-light);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  transition: var(--transition);
}

.trust-card:hover .trust-icon-box {
  background-color: var(--secondary);
  color: var(--surface);
}

.trust-card h3 {
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--text-dark);
}

.trust-card p {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.5;
}

/* --------------------------------------------------------------------------
   8. ABOUT DOCTOR SECTION
   -------------------------------------------------------------------------- */
.about-section {
  padding: 60px 0 100px;
  background-color: var(--surface);
}

.about-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 60px;
  align-items: center;
}

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

.about-image-frame {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

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

.about-decorative-border {
  position: absolute;
  bottom: -20px;
  right: -20px;
  width: 100%;
  height: 100%;
  border: 4px solid var(--secondary);
  border-radius: var(--radius-lg);
  z-index: -1;
}

.about-highlight-box {
  position: absolute;
  top: 30px;
  left: -20px;
  background: var(--primary-dark);
  color: var(--surface);
  padding: 16px 24px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
  display: flex;
  align-items: center;
  gap: 14px;
}

.about-highlight-box i {
  font-size: 2rem;
  color: var(--secondary);
}

.about-content-column {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.about-text {
  font-size: 1.05rem;
  color: var(--text-muted);
  margin-bottom: 18px;
  line-height: 1.7;
}

.credentials-pill-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  margin: 24px 0 32px;
  width: 100%;
}

.credential-pill {
  display: flex;
  align-items: center;
  gap: 10px;
  background-color: var(--background);
  padding: 12px 18px;
  border-radius: var(--radius-md);
  border: 1px solid var(--border);
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--text-dark);
}

.credential-pill i {
  color: var(--secondary);
  font-size: 1.1rem;
}

/* --------------------------------------------------------------------------
   9. EXPERIENCE / STATS SECTION
   -------------------------------------------------------------------------- */
.stats-section {
  padding: 80px 0;
  background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 100%);
  color: var(--surface);
  position: relative;
  overflow: hidden;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  text-align: center;
}

.stat-item {
  padding: 24px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: var(--radius-md);
  border: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(5px);
  transition: var(--transition);
}

.stat-item:hover {
  background: rgba(255, 255, 255, 0.1);
  transform: translateY(-4px);
}

.stat-number {
  font-size: 3.25rem;
  font-weight: 800;
  font-family: var(--font-heading);
  color: var(--surface);
  line-height: 1;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.stat-number span.plus {
  color: var(--secondary);
}

.stat-label {
  font-size: 0.95rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.85);
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* --------------------------------------------------------------------------
   10. SPECIALIZED TREATMENTS SECTION
   -------------------------------------------------------------------------- */
.treatments-section {
  padding: 100px 0;
  background-color: var(--background);
}

.section-header-flex {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 50px;
}

.treatments-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.treatment-card {
  background: var(--surface);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}

.treatment-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(13, 82, 156, 0.2);
}

.treatment-thumb {
  position: relative;
  height: 230px;
  overflow: hidden;
}

.treatment-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition-smooth);
}

.treatment-card:hover .treatment-thumb img {
  transform: scale(1.06);
}

.treatment-tag {
  position: absolute;
  top: 16px;
  left: 16px;
  background: var(--primary-dark);
  color: var(--surface);
  font-size: 0.78rem;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: var(--radius-full);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.treatment-body {
  padding: 24px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.treatment-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 12px;
  transition: var(--transition);
}

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

.treatment-desc {
  font-size: 0.92rem;
  color: var(--text-muted);
  margin-bottom: 20px;
  line-height: 1.6;
  flex-grow: 1;
}

.treatment-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 16px;
  border-top: 1px solid var(--border-light);
}

.treatment-link {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--primary);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.treatment-link i {
  transition: transform 0.3s ease;
}

.treatment-card:hover .treatment-link i {
  transform: translateX(4px);
  color: var(--secondary);
}

.treatments-bottom-cta {
  margin-top: 50px;
  text-align: center;
}

/* --------------------------------------------------------------------------
   11. WHY CHOOSE THIS DOCTOR SECTION
   -------------------------------------------------------------------------- */
.why-choose-section {
  padding: 100px 0;
  background-color: var(--surface);
}

.why-choose-grid {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 60px;
  align-items: center;
}

.why-choose-left {
  position: relative;
}

.why-image-wrapper {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.why-image-wrapper img {
  width: 100%;
  height: 520px;
  object-fit: cover;
}

.why-quote-card {
  position: absolute;
  bottom: -30px;
  right: -20px;
  background: var(--primary-dark);
  color: var(--surface);
  padding: 24px 30px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  max-width: 340px;
  border-left: 4px solid var(--secondary);
}

.why-quote-card p {
  font-size: 0.95rem;
  font-style: italic;
  margin-bottom: 10px;
  line-height: 1.5;
}

.why-quote-card span {
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--secondary);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.why-choose-right {
  display: flex;
  flex-direction: column;
}

.benefits-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 32px;
}

.benefit-item {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  padding: 20px;
  background: var(--background);
  border-radius: var(--radius-md);
  border: 1px solid var(--border);
  transition: var(--transition);
}

.benefit-item:hover {
  background: var(--surface);
  box-shadow: var(--shadow-md);
  border-color: rgba(13, 82, 156, 0.2);
  transform: translateX(6px);
}

.benefit-number {
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--secondary);
  font-family: var(--font-heading);
  background: var(--secondary-light);
  width: 48px;
  height: 48px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.benefit-info h4 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 6px;
}

.benefit-info p {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.5;
}

/* --------------------------------------------------------------------------
   12. EDUCATION / CREDENTIALS PREVIEW
   -------------------------------------------------------------------------- */
.credentials-section {
  padding: 100px 0;
  background-color: var(--background);
}

.credentials-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-top: 48px;
}

.credential-card {
  background: var(--surface);
  padding: 30px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
  display: flex;
  gap: 20px;
  transition: var(--transition);
}

.credential-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--primary);
}

.credential-icon {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  background: var(--primary-light);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  flex-shrink: 0;
}

.credential-details h3 {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 6px;
}

.credential-details .institution {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--secondary-dark);
  margin-bottom: 8px;
}

.credential-details p {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.5;
}

.credentials-cta-wrapper {
  margin-top: 48px;
  text-align: center;
}

/* --------------------------------------------------------------------------
   13. PATIENT TESTIMONIALS SLIDER
   -------------------------------------------------------------------------- */
.testimonials-section {
  padding: 100px 0;
  background-color: var(--surface);
  position: relative;
  overflow: hidden;
}

.testimonial-slider-wrapper {
  position: relative;
  margin-top: 48px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.testimonial-container {
  overflow: hidden;
  border-radius: var(--radius-lg);
}

.testimonial-track {
  display: flex;
  transition: transform 0.5s ease-in-out;
}

.testimonial-card {
  min-width: 100%;
  background: var(--background);
  padding: 48px 40px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  gap: 20px;
  position: relative;
}

.quote-icon {
  font-size: 3rem;
  color: var(--primary-light);
  position: absolute;
  top: 30px;
  right: 40px;
}

.rating-stars {
  display: flex;
  gap: 4px;
  color: #FFB800;
  font-size: 1rem;
}

.testimonial-text {
  font-size: 1.15rem;
  color: var(--text-dark);
  line-height: 1.7;
  font-style: italic;
}

.patient-info {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 10px;
}

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

.patient-details h4 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text-dark);
}

.patient-details span {
  font-size: 0.85rem;
  color: var(--secondary-dark);
  font-weight: 600;
}

/* Slider Controls */
.slider-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-top: 32px;
}

.slider-btn {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--surface);
  border: 1px solid var(--border);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

.slider-btn:hover {
  background: var(--primary);
  color: var(--surface);
  transform: scale(1.05);
}

.slider-dots {
  display: flex;
  gap: 8px;
}

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

.dot.active {
  background: var(--secondary);
  width: 24px;
  border-radius: var(--radius-full);
}

/* --------------------------------------------------------------------------
   14. BLOG / HEALTH INSIGHTS PREVIEW
   -------------------------------------------------------------------------- */
.blog-section {
  padding: 100px 0;
  background-color: var(--background);
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 48px;
}

.blog-card {
  background: var(--surface);
  border-radius: var(--radius-lg, 16px);
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
  border: 1px solid var(--border);
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  display: flex;
  flex-direction: column;
  height: 100%;
}

.blog-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 16px 36px rgba(0, 51, 102, 0.12);
  border-color: rgba(0, 102, 153, 0.25);
}

.blog-thumb {
  height: 220px;
  position: relative;
  overflow: hidden;
  background-color: var(--surface-alt, #f4f7f9);
}

.blog-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.blog-card:hover .blog-thumb img {
  transform: scale(1.08);
}

.blog-category {
  position: absolute;
  top: 14px;
  left: 14px;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  color: #ffffff;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  padding: 5px 14px;
  border-radius: 30px;
  text-transform: uppercase;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.18);
  backdrop-filter: blur(4px);
  z-index: 2;
}

.blog-body,
.blog-content {
  padding: 24px 26px 28px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
  background: var(--surface);
}

.blog-date {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text-muted);
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.blog-date i {
  color: var(--primary);
  font-size: 0.88rem;
}

.blog-title {
  font-size: 1.18rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 12px;
  line-height: 1.4;
  transition: color 0.25s ease;
}

.blog-title a {
  color: var(--text-dark);
  text-decoration: none;
  transition: color 0.25s ease;
}

.blog-title a:hover,
.blog-card:hover .blog-title a,
.blog-card:hover .blog-title {
  color: var(--primary);
}

.blog-excerpt {
  font-size: 0.92rem;
  color: var(--text-muted);
  line-height: 1.65;
  margin-bottom: 24px;
  flex-grow: 1;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.blog-link {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--primary);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: auto;
  padding-top: 14px;
  border-top: 1px solid rgba(0, 0, 0, 0.06);
  transition: all 0.25s ease;
  text-decoration: none;
}

.blog-link i {
  font-size: 0.85rem;
  transition: transform 0.25s ease, color 0.25s ease;
}

.blog-card:hover .blog-link {
  color: var(--secondary, #008080);
}

.blog-card:hover .blog-link i {
  transform: translateX(6px);
  color: var(--secondary, #008080);
}

.blog-bottom-cta {
  margin-top: 48px;
  text-align: center;
}

/* --------------------------------------------------------------------------
   15. APPOINTMENT CTA BANNER
   -------------------------------------------------------------------------- */
.cta-banner-section {
  padding: 80px 0;
  background-color: var(--background);
}

.cta-banner-box {
  background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 100%);
  border-radius: var(--radius-lg);
  padding: 60px 40px;
  color: var(--surface);
  text-align: center;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.cta-banner-box::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -10%;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
  pointer-events: none;
}

.cta-banner-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  margin: 0 auto;
}

.cta-banner-box h2 {
  color: var(--surface);
  font-size: 2.5rem;
  font-weight: 800;
  margin-bottom: 16px;
}

.cta-banner-box p {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 32px;
  line-height: 1.6;
}

.cta-banner-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

/* --------------------------------------------------------------------------
   16. FOOTER
   -------------------------------------------------------------------------- */
.footer {
  background-color: #051C36;
  color: rgba(255, 255, 255, 0.8);
  padding: 80px 0 0;
  font-size: 0.92rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 0.9fr 1.1fr 1.2fr;
  gap: 40px;
  padding-bottom: 60px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-logo {
  margin-bottom: 20px;
  display: inline-block;
  background: white;
  padding: 8px 16px;
  border-radius: 10px;
}

.footer-logo img {
  height: 46px;
  width: auto;
}

.footer-about p {
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.6;
  margin-bottom: 24px;
}

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

.footer-social-links a {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  color: var(--surface);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}

.footer-social-links a:hover {
  background: var(--secondary);
  transform: translateY(-3px);
}

.footer-title {
  color: var(--surface);
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 24px;
  position: relative;
}

.footer-title::after {
  content: '';
  display: block;
  width: 30px;
  height: 3px;
  background-color: var(--secondary);
  margin-top: 8px;
  border-radius: 2px;
}

.footer-links-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-links-list a {
  color: rgba(255, 255, 255, 0.75);
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.footer-links-list a:hover {
  color: var(--surface);
  transform: translateX(4px);
}

.footer-links-list a i {
  font-size: 0.75rem;
  color: var(--secondary);
}

.footer-contact-items {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  color: rgba(255, 255, 255, 0.8);
}

.footer-contact-item i {
  color: var(--secondary);
  font-size: 1.1rem;
  margin-top: 3px;
}

.footer-bottom {
  padding: 24px 0;
  text-align: center;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.6);
}

/* ==========================================================================
   17. ABOUT PAGE SPECIFIC STYLES
   ========================================================================== */

/* Breadcrumbs */
.breadcrumb {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--text-muted);
  margin-bottom: 16px;
}

.breadcrumb a {
  color: var(--primary);
}

.breadcrumb a:hover {
  text-decoration: underline;
}

.breadcrumb i {
  font-size: 0.7rem;
  color: var(--text-light);
}

/* About Page Editorial Profile Hero Banner */
.about-hero-editorial {
  min-height: 680px;
  padding: 80px 0;
  background: linear-gradient(135deg, #F8FAFC 0%, #EBF3FA 100%);
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  border-bottom: 1px solid var(--border-light);
}

.hero-watermark-bg {
  position: absolute;
  top: 50%;
  left: 2%;
  transform: translateY(-50%);
  font-family: var(--font-heading);
  font-size: clamp(140px, 22vw, 300px);
  font-weight: 900;
  color: rgba(13, 82, 156, 0.035);
  letter-spacing: -6px;
  user-select: none;
  pointer-events: none;
  line-height: 1;
  z-index: 1;
}

.about-hero-editorial-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  align-items: center;
  gap: 60px;
  position: relative;
  z-index: 2;
}

.about-hero-editorial-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.85rem;
  font-weight: 800;
  color: var(--primary);
  letter-spacing: 2.5px;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.about-hero-editorial-title {
  font-size: clamp(52px, 6.2vw, 92px);
  font-weight: 800;
  color: var(--primary-dark);
  font-family: var(--font-heading);
  line-height: 1;
  letter-spacing: -2px;
  margin-bottom: 18px;
}

.about-hero-editorial-tagline {
  font-size: clamp(1.15rem, 1.8vw, 1.4rem);
  font-weight: 700;
  color: var(--text-dark);
  line-height: 1.4;
  margin-bottom: 20px;
  max-width: 540px;
}

.about-hero-editorial-desc {
  font-size: 1.05rem;
  color: var(--text-muted);
  line-height: 1.7;
  max-width: 520px;
  margin-bottom: 36px;
}

.about-hero-editorial-actions {
  display: flex;
  align-items: center;
  gap: 20px;
}

/* Immersive Doctor Portrait Composition */
.about-hero-editorial-media {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.editorial-shape-circle {
  position: absolute;
  width: 380px;
  height: 380px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(56, 161, 55, 0.12) 0%, rgba(13, 82, 156, 0.05) 70%);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 1;
  pointer-events: none;
}

.editorial-outline-frame {
  position: absolute;
  top: -16px;
  right: 20px;
  width: 85%;
  height: 95%;
  border: 2px solid var(--secondary);
  border-radius: var(--radius-lg);
  z-index: 1;
  opacity: 0.7;
  pointer-events: none;
}

.editorial-portrait-box {
  position: relative;
  z-index: 2;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 4px solid var(--surface);
  background-color: var(--surface);
  width: 100%;
  max-width: 420px;
  aspect-ratio: 3 / 4;
}

.editorial-portrait-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  transition: var(--transition-smooth);
}

.editorial-vertical-label {
  position: absolute;
  right: -30px;
  top: 50%;
  transform: translateY(-50%) rotate(90deg);
  transform-origin: center center;
  z-index: 3;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 3px;
  color: var(--primary);
  white-space: nowrap;
  opacity: 0.8;
}

/* Timeline Component */
.timeline-container {
  position: relative;
  max-width: 900px;
  margin: 50px auto 0;
  padding-left: 30px;
  border-left: 3px solid var(--primary-light);
}

.timeline-item {
  position: relative;
  margin-bottom: 40px;
  padding-left: 24px;
}

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

.timeline-marker {
  position: absolute;
  left: -46px;
  top: 0;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--surface);
  border: 3px solid var(--secondary);
  color: var(--secondary-dark);
  font-weight: 800;
  font-size: 0.8rem;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-sm);
}

.timeline-card {
  background: var(--surface);
  padding: 24px 30px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
  transition: var(--transition);
}

.timeline-card:hover {
  transform: translateX(6px);
  box-shadow: var(--shadow-md);
  border-color: rgba(13, 82, 156, 0.2);
}

.timeline-number {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 800;
  color: var(--secondary);
  background: var(--secondary-light);
  padding: 4px 12px;
  border-radius: var(--radius-full);
  margin-bottom: 10px;
}

.timeline-card h3 {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 6px;
}

.timeline-card .timeline-sub {
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--primary);
  margin-bottom: 8px;
}

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

/* CET "O" Microplasty Feature Cards */
.cet-section {
  padding: 100px 0;
  background: linear-gradient(135deg, #F8FAFC 0%, #EFF6FF 100%);
}

.cet-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 50px;
}

.cet-card {
  background: var(--surface);
  padding: 32px 24px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 14px;
  position: relative;
  overflow: hidden;
}

.cet-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--primary) 0%, var(--secondary) 100%);
  opacity: 0;
  transition: var(--transition);
}

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

.cet-card:hover::before {
  opacity: 1;
}

.cet-num {
  font-size: 0.85rem;
  font-weight: 800;
  color: var(--primary);
  background: var(--primary-light);
  padding: 4px 12px;
  border-radius: var(--radius-full);
}

.cet-icon {
  width: 52px;
  height: 52px;
  border-radius: 12px;
  background: var(--secondary-light);
  color: var(--secondary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
}

.cet-card h3 {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--text-dark);
}

.cet-card p {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.5;
}

/* Specialization Large Cards */
.specialization-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
  margin-top: 48px;
}

.spec-card {
  background: var(--surface);
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
  gap: 18px;
  position: relative;
  overflow: hidden;
}

.spec-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(13, 82, 156, 0.2);
}

.spec-icon {
  width: 60px;
  height: 60px;
  border-radius: 16px;
  background: var(--primary-light);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
}

.spec-card h3 {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--text-dark);
}

.spec-card p {
  font-size: 0.98rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* 106-Year-Old Career Highlight Box */
.highlight-story-section {
  padding: 80px 0;
  background-color: var(--surface);
}

.story-box {
  background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 100%);
  border-radius: var(--radius-lg);
  padding: 60px;
  color: var(--surface);
  display: grid;
  grid-template-columns: 0.6fr 1.4fr;
  gap: 40px;
  align-items: center;
  box-shadow: var(--shadow-lg);
  position: relative;
  overflow: hidden;
}

.story-number-badge {
  text-align: center;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  padding: 30px;
  border-radius: var(--radius-md);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.story-number {
  font-size: 4.5rem;
  font-weight: 800;
  font-family: var(--font-heading);
  color: var(--secondary);
  line-height: 1;
}

.story-number-sub {
  font-size: 0.9rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--surface);
  margin-top: 8px;
}

.story-content h3 {
  color: var(--surface);
  font-size: 1.8rem;
  font-weight: 800;
  margin-bottom: 16px;
}

.story-content p {
  font-size: 1.05rem;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.7;
}

/* Philosophy Section */
.philosophy-section {
  padding: 90px 0;
  background-color: var(--background);
}

.philosophy-box {
  max-width: 840px;
  margin: 0 auto;
  background: var(--surface);
  padding: 50px 60px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border);
  text-align: center;
  position: relative;
}

.philosophy-box i.quote-mark {
  font-size: 3rem;
  color: var(--secondary-light);
  margin-bottom: 20px;
  display: block;
}

.philosophy-box h3 {
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--primary-dark);
  margin-bottom: 16px;
}

.philosophy-box p {
  font-size: 1.1rem;
  color: var(--text-muted);
  line-height: 1.7;
}

/* Equal Height Cards & Alignment */
.treatment-card,
.blog-card,
.spec-card,
.info-card,
.journey-step {
  display: flex;
  flex-direction: column;
  height: 100%;
}

.treatment-body,
.blog-content {
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.treatment-footer,
.blog-link {
  margin-top: auto;
  padding-top: var(--space-md);
}


/* Page Hero Variants */
.page-hero {
  padding: 60px 0 70px;
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid var(--border-light);
}

.page-hero-medical {
  background: linear-gradient(135deg, #F8FAFC 0%, #EBF3FA 100%);
}

.page-hero-authority {
  background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 100%);
  color: var(--surface);
}

.page-hero-gallery {
  background: linear-gradient(135deg, #F8FAFC 0%, #F1F5F9 100%);
}

.page-hero-blog {
  background: linear-gradient(135deg, #F8FAFC 0%, #EFF6FF 100%);
}

.page-hero-contact {
  background: linear-gradient(135deg, #F8FAFC 0%, #EBF3FA 100%);
}

.page-hero-appointment {
  background: linear-gradient(135deg, #F8FAFC 0%, #EFF9EF 100%);
}

/* Treatment Detail Components */
.quick-info-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin: 40px 0;
}

.info-card {
  background: var(--surface);
  padding: 24px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  gap: 16px;
}

.info-card i {
  font-size: 1.6rem;
  color: var(--secondary);
  background: var(--secondary-light);
  width: 48px;
  height: 48px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.info-card-val {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text-dark);
}

.info-card-lbl {
  font-size: 0.82rem;
  color: var(--text-muted);
}

/* Care Journey Steps */
.care-journey-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 40px;
}

.journey-step {
  background: var(--surface);
  padding: 30px 24px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.journey-num {
  font-size: 1.25rem;
  font-weight: 800;
  font-family: var(--font-heading);
  color: var(--secondary);
  background: var(--secondary-light);
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.journey-step h4 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text-dark);
}

.journey-step p {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.5;
}

/* FAQ Accordion Component */
.faq-accordion {
  max-width: 860px;
  margin: 40px auto 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.faq-item {
  background: var(--surface);
  border-radius: var(--radius-md);
  border: 1px solid var(--border);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

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

.faq-question i {
  color: var(--primary);
  transition: transform 0.3s ease;
}

.faq-item.active .faq-question i {
  transform: rotate(180deg);
  color: var(--secondary);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0, 1, 0, 1);
  padding: 0 24px;
  background: var(--background);
}

.faq-item.active .faq-answer {
  max-height: 500px;
  padding: 16px 24px 24px;
  transition: max-height 0.4s ease-in-out;
}

.faq-answer p {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* Gallery Component & Lightbox */
.gallery-filters {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

.filter-btn {
  padding: 10px 22px;
  font-size: 0.9rem;
  font-weight: 700;
  border-radius: var(--radius-full);
  background: var(--surface);
  color: var(--text-muted);
  border: 1px solid var(--border);
  cursor: pointer;
  transition: var(--transition);
}

.filter-btn:hover,
.filter-btn.active {
  background: var(--primary);
  color: var(--surface);
  border-color: var(--primary);
  box-shadow: var(--shadow-sm);
}

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

.gallery-card {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  height: 280px;
  cursor: pointer;
}

.gallery-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition-smooth);
}

.gallery-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, rgba(13, 82, 156, 0) 40%, rgba(7, 53, 103, 0.85) 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 20px;
  color: var(--surface);
  opacity: 0;
  transition: var(--transition);
}

.gallery-card:hover img {
  transform: scale(1.08);
}

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

.gallery-overlay h4 {
  color: var(--surface);
  font-size: 1.1rem;
  font-weight: 700;
}

.gallery-overlay span {
  font-size: 0.8rem;
  color: var(--secondary-light);
  font-weight: 600;
}

/* Lightbox Modal */
.lightbox-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(15, 23, 42, 0.9);
  backdrop-filter: blur(8px);
  z-index: 3000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
}

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

.lightbox-dialog {
  max-width: 900px;
  max-height: 85vh;
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.5);
  background: black;
}

.lightbox-img {
  max-width: 100%;
  max-height: 75vh;
  object-fit: contain;
  display: block;
  margin: 0 auto;
}

.lightbox-caption {
  padding: 16px 24px;
  background: #073567;
  color: white;
  text-align: center;
  font-size: 0.95rem;
  font-weight: 600;
}

.lightbox-close {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  color: white;
  border: none;
  font-size: 1.2rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}

.lightbox-close:hover {
  background: var(--secondary);
}

.lightbox-prev,
.lightbox-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  color: white;
  border: none;
  font-size: 1.2rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}

.lightbox-prev {
  left: 20px;
}

.lightbox-next {
  right: 20px;
}

.lightbox-prev:hover,
.lightbox-next:hover {
  background: var(--secondary);
}

/* Blog Detail & Sidebar Layout */
.article-grid-layout {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 50px;
  margin-top: 40px;
}

.article-body-content {
  font-size: 1.05rem;
  line-height: 1.8;
  color: var(--text-dark);
}

.article-body-content h2 {
  font-size: 1.75rem;
  color: var(--primary-dark);
  margin: 32px 0 16px;
}

.article-body-content h3 {
  font-size: 1.35rem;
  color: var(--primary);
  margin: 24px 0 12px;
}

.article-body-content p {
  margin-bottom: 20px;
  color: var(--text-muted);
}

.article-body-content blockquote {
  border-left: 4px solid var(--secondary);
  background: var(--primary-light);
  padding: 20px 24px;
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
  font-style: italic;
  font-weight: 600;
  color: var(--primary-dark);
  margin: 28px 0;
}

.article-sidebar {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.sidebar-widget {
  background: var(--surface);
  padding: 28px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
}

.widget-title {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 20px;
  position: relative;
}

.widget-title::after {
  content: '';
  display: block;
  width: 28px;
  height: 3px;
  background: var(--secondary);
  margin-top: 6px;
  border-radius: 2px;
}

.widget-posts-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.widget-post-item {
  display: flex;
  gap: 14px;
  align-items: center;
}

.widget-post-item img {
  width: 64px;
  height: 64px;
  border-radius: 8px;
  object-fit: cover;
}

.widget-post-title {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--text-dark);
  line-height: 1.3;
}

.widget-post-title:hover {
  color: var(--primary);
}

/* Pagination Component */
.pagination-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-top: 50px;
}

.page-num-btn {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--surface);
  border: 1px solid var(--border);
  color: var(--text-dark);
  font-weight: 700;
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--transition);
}

.page-num-btn:hover,
.page-num-btn.active {
  background: var(--primary);
  color: var(--surface);
  border-color: var(--primary);
}

.page-num-btn:disabled,
.page-num-btn.disabled {
  opacity: 0.45;
  cursor: not-allowed;
  pointer-events: none;
  background: var(--surface);
  color: var(--text-muted);
  border-color: var(--border);
}

/* Form Controls */
.form-grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.form-group-block {
  margin-bottom: 20px;
}

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

.form-input-ctrl,
.form-select-ctrl,
.form-textarea-ctrl {
  width: 100%;
  padding: 14px 18px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border);
  background: var(--surface);
  font-size: 0.95rem;
  color: var(--text-dark);
  transition: var(--transition);
}

.form-input-ctrl:focus,
.form-select-ctrl:focus,
.form-textarea-ctrl:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(13, 82, 156, 0.15);
}

.mb-5{
  margin-bottom: 3rem !important;
}

.footer-links-list{
  padding-left: 0 !important; 
}