/* ==========================================================================
   RAJENDRASINGH PARDESHI - OFFICIAL WEBSITE
   Domain: rajendrasinghpardeshi.com
   Reference Portals: menopauseosteoporosisclinic.com | jijaisocialhealthcare.org
   Official Contact: +91 7796211575 | info@rajendrasinghpardeshi.com
   Main Stylesheet - Design System & Component Library
   ========================================================================== */

:root {
  /* Brand Color Palette */
  --primary: #0284c7;           /* Vibrant Medical Cyan / Azure */
  --primary-dark: #0369a1;      /* Deep Ocean Slate */
  --primary-darker: #0c4a6e;    /* Midnight Medical Blue */
  --primary-light: #e0f2fe;     /* Soft Ice Blue */
  --primary-glow: rgba(2, 132, 199, 0.3);

  --secondary: #0d9488;         /* Vitality Teal / Mint */
  --secondary-dark: #0f766e;
  --secondary-light: #ccfbf1;

  --accent: #f59e0b;            /* Warm Gold / Compassion */
  --accent-hover: #d97706;
  --accent-light: #fef3c7;

  --rose: #e11d48;              /* Menopause & Women's Health Rose */
  --rose-dark: #be123c;
  --rose-light: #ffe4e6;

  --emerald: #10b981;           /* Community Health Emerald */
  --emerald-dark: #059669;
  --emerald-light: #d1fae5;

  --danger: #ef4444;
  --success: #10b981;
  --warning: #f59e0b;

  /* Neutrals & Surfaces */
  --bg-main: #f8fafc;
  --bg-card: #ffffff;
  --bg-dark: #0f172a;
  --bg-dark-card: #1e293b;
  --bg-glass: rgba(255, 255, 255, 0.92);
  --bg-glass-dark: rgba(15, 23, 42, 0.85);

  --text-dark: #0f172a;
  --text-muted: #475569;
  --text-light: #64748b;
  --text-white: #ffffff;

  --border-light: #e2e8f0;
  --border-medium: #cbd5e1;
  --border-glow: rgba(2, 132, 199, 0.25);

  /* Typography */
  --font-heading: 'Outfit', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --font-body: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;

  /* Elevations & Shadows */
  --shadow-sm: 0 2px 4px rgba(15, 23, 42, 0.05);
  --shadow-md: 0 4px 12px rgba(15, 23, 42, 0.08);
  --shadow-lg: 0 10px 25px -5px rgba(15, 23, 42, 0.1), 0 8px 10px -6px rgba(15, 23, 42, 0.06);
  --shadow-xl: 0 20px 35px -10px rgba(15, 23, 42, 0.15);
  --shadow-glow: 0 0 25px rgba(2, 132, 199, 0.35);

  /* Radii */
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 22px;
  --radius-full: 9999px;

  /* Transitions */
  --transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-bounce: all 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

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

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

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

ul {
  list-style: none;
}

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

.container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
}

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

.section {
  padding: 80px 0;
  position: relative;
}

.section-alt {
  background-color: #f1f5f9;
}

.section-dark {
  background-color: var(--bg-dark);
  color: #fff;
}

.section-header {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 50px;
}

.badge-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 14px;
  background: var(--primary-light);
  color: var(--primary-dark);
  border: 1px solid rgba(2, 132, 199, 0.2);
  border-radius: var(--radius-full);
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 14px;
}

.badge-rose {
  background: var(--rose-light);
  color: var(--rose-dark);
  border-color: rgba(225, 29, 72, 0.2);
}

.badge-emerald {
  background: var(--emerald-light);
  color: var(--emerald-dark);
  border-color: rgba(16, 185, 129, 0.2);
}

.section-title {
  font-size: 2.35rem;
  margin-bottom: 14px;
  color: var(--text-dark);
}

.section-dark .section-title {
  color: #ffffff;
}

.section-title span {
  color: var(--primary);
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.section-desc {
  font-size: 1.05rem;
  color: var(--text-muted);
  line-height: 1.7;
}

.section-dark .section-desc {
  color: #94a3b8;
}

/* Button System */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-weight: 600;
  font-size: 0.95rem;
  padding: 12px 24px;
  border-radius: var(--radius-md);
  border: none;
  cursor: pointer;
  transition: var(--transition);
  text-align: center;
  white-space: nowrap;
}

.btn-primary {
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: #ffffff;
  box-shadow: 0 4px 14px rgba(2, 132, 199, 0.35);
}

.btn-primary:hover {
  background: linear-gradient(135deg, var(--primary-dark), #0284c7);
  box-shadow: 0 6px 20px rgba(2, 132, 199, 0.5);
  transform: translateY(-2px);
  color: #fff;
}

.btn-secondary {
  background: #ffffff;
  color: var(--primary-dark);
  border: 1px solid var(--border-medium);
  box-shadow: var(--shadow-sm);
}

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

.btn-rose {
  background: linear-gradient(135deg, #e11d48, #be123c);
  color: #ffffff;
  box-shadow: 0 4px 14px rgba(225, 29, 72, 0.35);
}

.btn-rose:hover {
  background: linear-gradient(135deg, #be123c, #9f1239);
  box-shadow: 0 6px 20px rgba(225, 29, 72, 0.5);
  transform: translateY(-2px);
  color: #fff;
}

.btn-emerald {
  background: linear-gradient(135deg, #059669, #047857);
  color: #ffffff;
  box-shadow: 0 4px 14px rgba(5, 150, 105, 0.35);
}

.btn-emerald:hover {
  background: linear-gradient(135deg, #047857, #065f46);
  transform: translateY(-2px);
  color: #fff;
}

.btn-outline-white {
  background: transparent;
  color: #ffffff;
  border: 1.5px solid rgba(255, 255, 255, 0.6);
}

.btn-outline-white:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: #ffffff;
  color: #ffffff;
}

.btn-sm {
  padding: 8px 16px;
  font-size: 0.85rem;
  border-radius: var(--radius-sm);
}

.btn-lg {
  padding: 14px 28px;
  font-size: 1.05rem;
}

/* ==========================================================================
   TOP BAR & SISTER PORTAL STRIP
   ========================================================================== */
.top-bar {
  background: #0b1329;
  color: #cbd5e1;
  font-size: 0.82rem;
  padding: 8px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.top-bar-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}

.top-info {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

.top-info-item {
  display: flex;
  align-items: center;
  gap: 6px;
}

.top-info-item svg {
  color: var(--primary);
  flex-shrink: 0;
}

.top-portals {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.portal-pill {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 3px 10px;
  border-radius: var(--radius-full);
  font-size: 0.76rem;
  font-weight: 600;
  background: rgba(255, 255, 255, 0.07);
  color: #e2e8f0;
  border: 1px solid rgba(255, 255, 255, 0.12);
  transition: var(--transition);
}

.portal-pill:hover {
  background: var(--primary);
  color: #fff;
  border-color: var(--primary);
}

.portal-pill.rose-pill:hover {
  background: var(--rose);
  border-color: var(--rose);
}

.portal-pill.emerald-pill:hover {
  background: var(--emerald);
  border-color: var(--emerald);
}

/* ==========================================================================
   STICKY MAIN HEADER
   ========================================================================== */
.main-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border-light);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
  transition: var(--transition);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 0;
  gap: 16px;
}

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

.logo-emblem {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1.35rem;
  box-shadow: 0 4px 10px rgba(2, 132, 199, 0.3);
  flex-shrink: 0;
}

.brand-text-wrap {
  display: flex;
  flex-direction: column;
}

.brand-title {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--text-dark);
  line-height: 1.15;
}

.brand-sub {
  font-size: 0.75rem;
  color: var(--text-light);
  font-weight: 600;
  letter-spacing: 0.02em;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 20px;
}

.nav-link {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-muted);
  position: relative;
  padding: 6px 0;
}

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

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

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

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

.mobile-menu-toggle {
  display: none;
  background: none;
  border: 1px solid var(--border-medium);
  padding: 8px 12px;
  border-radius: var(--radius-sm);
  font-size: 1.25rem;
  cursor: pointer;
  color: var(--text-dark);
}

/* ==========================================================================
   HERO SECTION
   ========================================================================== */
.hero-section {
  position: relative;
  background: linear-gradient(135deg, #091a33 0%, #0c2b4d 50%, #083344 100%);
  color: #ffffff;
  padding: 75px 0 90px;
  overflow: hidden;
}

.hero-glow-1 {
  position: absolute;
  top: -100px;
  right: -100px;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(2, 132, 199, 0.25) 0%, transparent 70%);
  filter: blur(50px);
  pointer-events: none;
}

.hero-glow-2 {
  position: absolute;
  bottom: -150px;
  left: -100px;
  width: 550px;
  height: 550px;
  background: radial-gradient(circle, rgba(13, 148, 136, 0.2) 0%, transparent 70%);
  filter: blur(60px);
  pointer-events: none;
}

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

.hero-trust-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  border-radius: var(--radius-full);
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(6px);
  font-size: 0.85rem;
  font-weight: 600;
  color: #38bdf8;
  margin-bottom: 20px;
}

.hero-title {
  font-size: 2.85rem;
  font-weight: 800;
  line-height: 1.15;
  color: #ffffff;
  margin-bottom: 18px;
  letter-spacing: -0.02em;
}

.hero-title span {
  background: linear-gradient(135deg, #38bdf8, #2dd4bf);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-subheadline {
  font-size: 1.05rem;
  color: #cbd5e1;
  line-height: 1.7;
  margin-bottom: 28px;
}

.hero-btn-group {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 36px;
}

.hero-badges-row {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.hero-badge-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  color: #e2e8f0;
}

.hero-badge-item svg {
  color: #38bdf8;
  flex-shrink: 0;
}

/* Hero Portrait Box */
.hero-image-wrap {
  position: relative;
}

.hero-portrait-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(16px);
  border-radius: var(--radius-lg);
  padding: 16px;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.4);
}

.hero-portrait-img-box {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 2px solid rgba(255, 255, 255, 0.15);
}

.hero-portrait-img-box img {
  width: 100%;
  height: 380px;
  object-fit: cover;
  object-position: center top;
  transition: transform 0.5s ease;
}

.hero-portrait-card:hover .hero-portrait-img-box img {
  transform: scale(1.02);
}

.doctor-floating-badge {
  position: absolute;
  bottom: 14px;
  left: 14px;
  right: 14px;
  background: rgba(15, 23, 42, 0.94);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius-md);
  padding: 12px 16px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.floating-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid #38bdf8;
  flex-shrink: 0;
}

.floating-info h4 {
  font-size: 0.95rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 2px;
}

.floating-info p {
  font-size: 0.78rem;
  color: #94a3b8;
  line-height: 1.3;
}

/* ==========================================================================
   QUICK EMERGENCY / DIRECT ACTION STRIP
   ========================================================================== */
.quick-action-strip {
  background: linear-gradient(90deg, #0369a1, #0d9488);
  color: #ffffff;
  padding: 18px 24px;
  border-radius: var(--radius-md);
  margin-top: -30px;
  position: relative;
  z-index: 10;
  box-shadow: var(--shadow-xl);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}

.strip-info {
  display: flex;
  align-items: center;
  gap: 14px;
}

.strip-icon {
  font-size: 2rem;
  line-height: 1;
}

.strip-title {
  font-size: 1.1rem;
  font-weight: 700;
}

.strip-desc {
  font-size: 0.85rem;
  color: #e0f2fe;
}

.strip-btns {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

/* ==========================================================================
   PORTAL ECOSYSTEM (3 PILLARS)
   ========================================================================== */
.ecosystem-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 30px;
}

.ecosystem-card {
  background: var(--bg-card);
  border-radius: var(--radius-lg);
  padding: 32px 26px;
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-md);
  position: relative;
  overflow: hidden;
  transition: var(--transition);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.ecosystem-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 5px;
  background: var(--primary);
  transition: var(--transition);
}

.ecosystem-card.card-rose::before {
  background: linear-gradient(90deg, #e11d48, #f43f5e);
}

.ecosystem-card.card-emerald::before {
  background: linear-gradient(90deg, #059669, #10b981);
}

.ecosystem-card.card-blue::before {
  background: linear-gradient(90deg, #0284c7, #0ea5e9);
}

.ecosystem-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-xl);
  border-color: var(--border-medium);
}

.eco-icon-wrap {
  width: 60px;
  height: 60px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  margin-bottom: 20px;
}

.card-rose .eco-icon-wrap {
  background: #ffe4e6;
  color: #e11d48;
}

.card-emerald .eco-icon-wrap {
  background: #d1fae5;
  color: #059669;
}

.card-blue .eco-icon-wrap {
  background: #e0f2fe;
  color: #0284c7;
}

.eco-pill-tag {
  display: inline-block;
  padding: 3px 10px;
  border-radius: var(--radius-full);
  font-size: 0.75rem;
  font-weight: 700;
  margin-bottom: 12px;
}

.card-rose .eco-pill-tag {
  background: #fff1f2;
  color: #be123c;
  border: 1px solid #fecdd3;
}

.card-emerald .eco-pill-tag {
  background: #ecfdf5;
  color: #047857;
  border: 1px solid #a7f3d0;
}

.card-blue .eco-pill-tag {
  background: #f0f9ff;
  color: #0369a1;
  border: 1px solid #bae6fd;
}

.ecosystem-card h3 {
  font-size: 1.35rem;
  margin-bottom: 10px;
  color: var(--text-dark);
}

.ecosystem-card p {
  font-size: 0.92rem;
  color: var(--text-muted);
  line-height: 1.65;
  margin-bottom: 22px;
  flex-grow: 1;
}

.eco-features-list {
  margin-bottom: 24px;
}

.eco-features-list li {
  font-size: 0.85rem;
  color: var(--text-dark);
  padding: 4px 0;
  display: flex;
  align-items: center;
  gap: 8px;
}

.eco-features-list li svg {
  color: var(--emerald-dark);
  flex-shrink: 0;
}

.card-domain-badge {
  display: block;
  font-size: 0.8rem;
  font-weight: 700;
  margin-bottom: 14px;
}

.card-rose .card-domain-badge {
  color: var(--rose);
}

.card-emerald .card-domain-badge {
  color: var(--emerald-dark);
}

.card-blue .card-domain-badge {
  color: var(--primary);
}

/* ==========================================================================
   ABOUT RAJENDRASINGH PARDESHI
   ========================================================================== */
.about-box-grid {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 40px;
  background: var(--bg-card);
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border-light);
  align-items: center;
}

.about-portrait-col {
  text-align: center;
}

.about-portrait-frame {
  width: 260px;
  height: 320px;
  margin: 0 auto 20px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 4px solid var(--primary-light);
  box-shadow: var(--shadow-md);
}

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

.about-name {
  font-size: 1.45rem;
  color: var(--text-dark);
  margin-bottom: 4px;
}

.about-title-tag {
  font-size: 0.85rem;
  color: var(--primary-dark);
  font-weight: 600;
  margin-bottom: 16px;
}

.about-quote-box {
  background: #f0f9ff;
  border-left: 4px solid var(--primary);
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
  padding: 16px 20px;
  font-style: italic;
  color: #1e3a8a;
  font-size: 0.95rem;
  line-height: 1.6;
  margin: 20px 0;
}

.stats-counter-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: 30px;
}

.stat-counter-card {
  background: #f8fafc;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  padding: 18px 14px;
  text-align: center;
  transition: var(--transition);
}

.stat-counter-card:hover {
  background: #ffffff;
  border-color: var(--primary);
  box-shadow: var(--shadow-sm);
  transform: translateY(-2px);
}

.stat-counter-card h3 {
  font-size: 1.75rem;
  font-weight: 800;
  color: var(--primary-dark);
  margin-bottom: 4px;
}

.stat-counter-card p {
  font-size: 0.78rem;
  color: var(--text-muted);
  font-weight: 600;
  line-height: 1.3;
}

/* ==========================================================================
   MENOPAUSE & OSTEOPOROSIS CLINIC SPOTLIGHT
   ========================================================================== */
.menopause-section {
  background: linear-gradient(135deg, #fff1f2 0%, #ffffff 50%, #fdf2f8 100%);
  border-top: 1px solid #fecdd3;
  border-bottom: 1px solid #fecdd3;
}

.menopause-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}

.menopause-img-box {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
  border: 3px solid rgba(225, 29, 72, 0.2);
}

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

.clinic-badge-overlay {
  position: absolute;
  top: 16px;
  left: 16px;
  background: rgba(225, 29, 72, 0.92);
  color: #fff;
  padding: 6px 14px;
  border-radius: var(--radius-full);
  font-size: 0.8rem;
  font-weight: 700;
  backdrop-filter: blur(4px);
}

.specialty-list-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin: 24px 0;
}

.specialty-item-card {
  background: #ffffff;
  border: 1px solid #fecdd3;
  border-radius: var(--radius-md);
  padding: 16px;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

.specialty-item-card:hover {
  border-color: var(--rose);
  transform: translateY(-2px);
}

.specialty-item-card h4 {
  font-size: 0.95rem;
  color: #881337;
  margin-bottom: 4px;
  display: flex;
  align-items: center;
  gap: 6px;
}

.specialty-item-card p {
  font-size: 0.82rem;
  color: #475569;
  line-height: 1.5;
}

/* ==========================================================================
   JIJAI SOCIAL & HEALTHCARE ORGANISATION SPOTLIGHT
   ========================================================================== */
.jijai-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}

.jijai-gallery-mosaic {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.jijai-mosaic-item {
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  position: relative;
  height: 180px;
}

.jijai-mosaic-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.jijai-mosaic-item:hover img {
  transform: scale(1.05);
}

.jijai-caption-tag {
  position: absolute;
  bottom: 8px;
  left: 8px;
  right: 8px;
  background: rgba(15, 23, 42, 0.85);
  color: #fff;
  padding: 4px 8px;
  border-radius: 4px;
  font-size: 0.72rem;
  font-weight: 600;
  backdrop-filter: blur(4px);
}

/* ==========================================================================
   SERVICES & CLINICAL DEPARTMENTS
   ========================================================================== */
.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.service-card {
  background: var(--bg-card);
  border-radius: var(--radius-md);
  padding: 28px 20px;
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}

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

.service-icon-box {
  font-size: 2.2rem;
  margin-bottom: 16px;
  line-height: 1;
}

.service-card h3 {
  font-size: 1.15rem;
  margin-bottom: 8px;
  color: var(--text-dark);
}

.service-card p {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 16px;
  flex-grow: 1;
}

.btn-link {
  background: none;
  border: none;
  color: var(--primary);
  font-weight: 700;
  font-size: 0.85rem;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 0;
}

.btn-link:hover {
  color: var(--primary-dark);
  text-decoration: underline;
}

/* ==========================================================================
   CONTACT & APPOINTMENT BOOKING SECTION
   ========================================================================== */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 36px;
  align-items: start;
}

.contact-info-card {
  background: #ffffff;
  border-radius: var(--radius-lg);
  padding: 36px;
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-md);
}

.contact-channel-item {
  display: flex;
  gap: 16px;
  margin-bottom: 24px;
  align-items: flex-start;
}

.contact-channel-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: var(--primary-light);
  color: var(--primary-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  flex-shrink: 0;
}

.contact-channel-info h4 {
  font-size: 0.95rem;
  color: var(--text-dark);
  margin-bottom: 4px;
}

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

.form-card {
  background: #ffffff;
  border-radius: var(--radius-lg);
  padding: 36px;
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-lg);
}

.form-card h3 {
  font-size: 1.45rem;
  margin-bottom: 6px;
}

.form-subtitle {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-bottom: 24px;
}

.form-group {
  margin-bottom: 18px;
}

.form-group-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.form-label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 6px;
}

.form-control {
  width: 100%;
  padding: 12px 14px;
  border: 1.5px solid var(--border-medium);
  border-radius: var(--radius-sm);
  font-size: 0.95rem;
  color: var(--text-dark);
  background: #f8fafc;
  transition: var(--transition);
}

.form-control:focus {
  outline: none;
  border-color: var(--primary);
  background: #ffffff;
  box-shadow: 0 0 0 3px var(--primary-glow);
}

/* ==========================================================================
   FOOTER SECTION
   ========================================================================== */
.site-footer {
  background: #091224;
  color: #94a3b8;
  padding: 70px 0 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-top-grid {
  display: grid;
  grid-template-columns: 1.4fr 0.9fr 1fr 1.3fr;
  gap: 40px;
  margin-bottom: 50px;
}

.footer-brand-title {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 12px;
  letter-spacing: -0.01em;
}

.footer-brand-desc {
  font-size: 0.88rem;
  line-height: 1.7;
  color: #94a3b8;
  margin-bottom: 20px;
}

.footer-sister-box {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-md);
  padding: 14px;
  font-size: 0.82rem;
}

.footer-col h4 {
  color: #ffffff;
  font-size: 1.05rem;
  margin-bottom: 18px;
  position: relative;
  padding-bottom: 8px;
}

.footer-col h4::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 30px;
  height: 2px;
  background: var(--primary);
}

.footer-links-list li {
  margin-bottom: 10px;
}

.footer-links-list a {
  font-size: 0.88rem;
  color: #94a3b8;
}

.footer-links-list a:hover {
  color: #38bdf8;
  padding-left: 4px;
}

.footer-contact-details li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 14px;
  font-size: 0.88rem;
  line-height: 1.5;
}

.footer-contact-details svg {
  color: var(--primary);
  flex-shrink: 0;
  margin-top: 2px;
}

.footer-bottom-bar {
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 0.85rem;
}

.footer-legal-links {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.footer-legal-links a:hover {
  color: #fff;
}

/* ==========================================================================
   FLOATING ACTION BUTTONS & TOAST
   ========================================================================== */
.floating-actions-wrap {
  position: fixed;
  bottom: 24px;
  right: 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  z-index: 999;
}

.fab-btn {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.25);
  font-size: 1.4rem;
  color: #ffffff;
  border: none;
  cursor: pointer;
  transition: var(--transition-bounce);
}

.fab-btn:hover {
  transform: scale(1.12);
}

.fab-whatsapp {
  background: #25d366;
}

.fab-phone {
  background: #0284c7;
}

.fab-top {
  background: #334155;
  font-size: 1.1rem;
}

/* Toast Container */
.toast-container {
  position: fixed;
  top: 24px;
  right: 24px;
  z-index: 10000;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.toast-msg {
  background: #ffffff;
  color: var(--text-dark);
  padding: 14px 20px;
  border-radius: var(--radius-md);
  box-shadow: 0 10px 30px rgba(0,0,0,0.18);
  display: flex;
  align-items: center;
  gap: 12px;
  border-left: 5px solid var(--primary);
  font-size: 0.9rem;
  max-width: 400px;
  animation: slideInRight 0.3s ease;
  transition: var(--transition);
}

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

/* Custom Modal */
.custom-modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(15, 23, 42, 0.7);
  backdrop-filter: blur(4px);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 10001;
  padding: 20px;
}

.custom-modal-backdrop.active {
  display: flex;
}

.modal-dialog-box {
  background: #ffffff;
  border-radius: var(--radius-lg);
  max-width: 600px;
  width: 100%;
  padding: 28px;
  box-shadow: var(--shadow-xl);
  animation: modalPop 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

@keyframes modalPop {
  from { transform: scale(0.9); opacity: 0; }
  to { transform: scale(1); opacity: 1; }
}

.modal-dialog-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--border-light);
}

.modal-close-btn {
  background: none;
  border: none;
  font-size: 1.3rem;
  cursor: pointer;
  color: var(--text-light);
}

/* ==========================================================================
   RESPONSIVE STYLES
   ========================================================================== */
@media (max-width: 1024px) {
  .hero-grid,
  .about-box-grid,
  .menopause-grid,
  .jijai-grid,
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .ecosystem-grid {
    grid-template-columns: 1fr 1fr;
  }

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

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

@media (max-width: 768px) {
  .top-bar-inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .top-portals {
    width: 100%;
    justify-content: flex-start;
  }

  .mobile-menu-toggle {
    display: block;
  }

  .main-nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #ffffff;
    flex-direction: column;
    padding: 20px;
    border-bottom: 1px solid var(--border-light);
    box-shadow: var(--shadow-lg);
    display: none;
    gap: 14px;
  }

  .main-nav.active {
    display: flex;
  }

  .hero-title {
    font-size: 2.15rem;
  }

  .ecosystem-grid {
    grid-template-columns: 1fr;
  }

  .services-grid {
    grid-template-columns: 1fr;
  }

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

  .specialty-list-grid,
  .form-group-row {
    grid-template-columns: 1fr;
  }

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

  .footer-bottom-bar {
    flex-direction: column;
    text-align: center;
  }
}