/* ==========================================================================
   MYMEDSCHOOLS (POWERED BY MEDIVISTA) - MAIN STYLESHEET
   Medical Education Portal & Progressive Web App Design System
   ========================================================================== */

:root {
  /* Color Palette */
  --primary-900: #07172c;
  --primary-800: #0b2545;
  --primary-700: #0f3562;
  --primary-600: #134b8a;
  --primary-500: #1b65b6;
  
  --medical-teal: #00a88f;
  --medical-teal-light: #00d2b4;
  --medical-teal-dark: #00806d;
  --medical-teal-glow: rgba(0, 210, 180, 0.25);
  
  --accent-gold: #f59e0b;
  --accent-gold-light: #fbbf24;
  --accent-gold-soft: rgba(245, 158, 11, 0.15);
  
  --success: #10b981;
  --warning: #f59e0b;
  --danger: #ef4444;
  
  --slate-900: #0f172a;
  --slate-800: #1e293b;
  --slate-700: #334155;
  --slate-600: #475569;
  --slate-500: #64748b;
  --slate-400: #94a3b8;
  --slate-300: #cbd5e1;
  --slate-200: #e2e8f0;
  --slate-100: #f1f5f9;
  --slate-50:  #f8fafc;
  --white:     #ffffff;
  
  /* Shadows */
  --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.08), 0 1px 2px rgba(0, 0, 0, 0.04);
  --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
  --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
  --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.12), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
  --shadow-glow: 0 0 25px var(--medical-teal-glow);
  
  /* Radii */
  --radius-sm: 6px;
  --radius-md: 10px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --radius-full: 9999px;
  
  /* 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;
  
  /* Layout */
  --max-width: 1440px;
  --header-height: 82px;
  --topbar-height: 40px;
  
  /* Transitions */
  --transition-fast: 0.15s ease;
  --transition-base: 0.25s ease;
  --transition-smooth: 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-height) + var(--topbar-height) + 16px);
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-body);
  color: var(--slate-700);
  background-color: var(--slate-50);
  line-height: 1.6;
  font-size: 16px;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img, svg {
  display: block;
  max-width: 100%;
}

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

button, input, select, textarea {
  font: inherit;
  color: inherit;
}

button {
  cursor: pointer;
  border: none;
  background: none;
}

ul, ol {
  list-style: none;
}

.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 32px;
}

/* ==========================================================================
   TOP BAR TICKER & HEADER
   ========================================================================== */

.topbar {
  background: linear-gradient(90deg, var(--primary-900), var(--primary-800));
  color: var(--slate-200);
  font-size: 13.5px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  position: relative;
  z-index: 60;
}

.topbar-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  min-height: var(--topbar-height);
  padding: 6px 0;
  gap: 16px;
}

.topbar-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 500;
}

.pulsing-dot {
  width: 8px;
  height: 8px;
  background-color: var(--medical-teal-light);
  border-radius: 50%;
  box-shadow: 0 0 0 0 rgba(0, 210, 180, 0.7);
  animation: pulse-green 2s infinite;
}

@keyframes pulse-green {
  0% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(0, 210, 180, 0.7); }
  70% { transform: scale(1); box-shadow: 0 0 0 8px rgba(0, 210, 180, 0); }
  100% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(0, 210, 180, 0); }
}

.topbar-links {
  display: flex;
  align-items: center;
  gap: 20px;
}

.topbar-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--slate-300);
  transition: color var(--transition-fast);
}

.topbar-link:hover {
  color: var(--medical-teal-light);
}

.topbar-link svg {
  width: 14px;
  height: 14px;
  stroke: currentColor;
}

/* Main Navigation Header */
.site-header {
  background: rgba(11, 37, 69, 0.96);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  position: sticky;
  top: 0;
  z-index: 50;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.25);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.header-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: var(--header-height);
  gap: 24px;
  width: 100%;
}

/* Brand Logo with "Powered by Medivista" */
.brand-link {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
  margin-right: 28px;
  text-decoration: none;
}

.brand-icon-box {
  width: 44px;
  height: 44px;
  border-radius: 11px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 4px 14px rgba(245, 158, 11, 0.3), 0 2px 8px rgba(11, 36, 71, 0.6);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  overflow: hidden;
}

.brand-link:hover .brand-icon-box {
  transform: translateY(-1px) scale(1.04);
  box-shadow: 0 6px 20px rgba(245, 158, 11, 0.45), 0 3px 12px rgba(59, 130, 246, 0.4);
}

.brand-icon-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.brand-text {
  display: flex;
  flex-direction: column;
  white-space: nowrap;
}

.brand-title {
  font-family: var(--font-heading);
  font-size: 21px;
  font-weight: 800;
  letter-spacing: -0.4px;
  color: var(--white);
  line-height: 1.1;
  white-space: nowrap;
}

.brand-title span {
  color: var(--medical-teal-light);
}

.brand-subline {
  font-size: 10.5px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  color: var(--accent-gold-light);
  display: inline-flex;
  align-items: center;
  gap: 4px;
  white-space: nowrap;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-shrink: 1;
  min-width: 0;
}

.nav-link {
  font-size: 13.5px;
  font-weight: 600;
  color: var(--slate-200);
  position: relative;
  padding: 6px 4px;
  white-space: nowrap;
  transition: color var(--transition-fast);
}

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

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

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

.header-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
  margin-left: 16px;
}

/* Button System */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-weight: 600;
  font-size: 14.5px;
  padding: 10px 20px;
  border-radius: var(--radius-full);
  transition: all var(--transition-base);
  white-space: nowrap;
}

.btn-primary {
  background: linear-gradient(135deg, var(--medical-teal-light), var(--medical-teal));
  color: var(--primary-900);
  box-shadow: 0 4px 14px rgba(0, 210, 180, 0.35);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 210, 180, 0.45);
  background: linear-gradient(135deg, #1bf6d6, var(--medical-teal-light));
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.1);
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.18);
  border-color: rgba(255, 255, 255, 0.35);
  transform: translateY(-1px);
}

.btn-whatsapp {
  background: #25d366;
  color: var(--white);
  box-shadow: 0 4px 12px rgba(37, 211, 102, 0.3);
}

.btn-whatsapp:hover {
  background: #20bd5a;
  box-shadow: 0 6px 18px rgba(37, 211, 102, 0.45);
  transform: translateY(-2px);
}

.btn-gold {
  background: linear-gradient(135deg, var(--accent-gold-light), var(--accent-gold));
  color: var(--slate-900);
  box-shadow: 0 4px 14px rgba(245, 158, 11, 0.35);
}

.btn-gold:hover {
  background: linear-gradient(135deg, #ffd056, var(--accent-gold-light));
  transform: translateY(-2px);
}

.btn-sm {
  padding: 7px 14px;
  font-size: 13px;
}

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

/* Install PWA Button */
.btn-pwa {
  background: rgba(0, 210, 180, 0.15);
  color: var(--medical-teal-light);
  border: 1px solid rgba(0, 210, 180, 0.35);
}

.btn-pwa:hover {
  background: var(--medical-teal-light);
  color: var(--primary-900);
}

/* Mobile Toggle */
.mobile-toggle {
  display: none;
  color: var(--white);
  padding: 8px;
}

.mobile-toggle svg {
  width: 26px;
  height: 26px;
  stroke: currentColor;
}

/* ==========================================================================
   HERO SECTION & DIRECT ENQUIRY FORM PROMPT
   ========================================================================== */

.hero {
  position: relative;
  background: radial-gradient(circle at 85% 15%, rgba(0, 210, 180, 0.18), transparent 45%),
              radial-gradient(circle at 10% 85%, rgba(245, 158, 11, 0.1), transparent 40%),
              linear-gradient(135deg, #040e1d 0%, #07172c 50%, #0b2545 100%);
  color: var(--white);
  padding: 52px 0 76px;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -20%;
  right: -10%;
  width: 650px;
  height: 650px;
  background: radial-gradient(circle, rgba(0, 210, 180, 0.12) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

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

.hero-content {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.hero-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(0, 210, 180, 0.4);
  border-radius: var(--radius-full);
  font-size: 13px;
  font-weight: 600;
  color: var(--medical-teal-light);
  width: fit-content;
}

.hero-title {
  font-family: var(--font-heading);
  font-size: clamp(34px, 4vw, 52px);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.8px;
  margin-bottom: 4px;
}

.hero-title .highlight {
  background: linear-gradient(90deg, #1ee0c3, #7ee787);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-subtitle {
  font-size: clamp(15.5px, 1.6vw, 17.5px);
  color: #cbd5e1;
  line-height: 1.65;
  max-width: 640px;
}

/* Hero Media Showcase Card (Real Indian Medical Students) */
.hero-media-card {
  position: relative;
  width: 100%;
  height: 290px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 20px 40px -10px rgba(0, 0, 0, 0.45), 0 0 0 1px rgba(255, 255, 255, 0.15);
  margin: 6px 0 8px;
  background: var(--primary-900);
}

.hero-main-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.hero-media-card:hover .hero-main-photo {
  transform: scale(1.03);
}

.hero-media-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(7, 23, 44, 0.15) 0%, rgba(7, 23, 44, 0.1) 40%, rgba(7, 23, 44, 0.8) 100%);
  pointer-events: none;
}

.hero-floating-badge {
  position: absolute;
  z-index: 5;
  background: rgba(7, 23, 44, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: var(--white);
  padding: 6px 14px;
  border-radius: var(--radius-full);
  font-size: 12px;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.35);
  pointer-events: none;
}

.badge-top-left {
  top: 14px;
  left: 14px;
  border-color: rgba(0, 210, 180, 0.5);
  color: #a7f3d0;
}

.badge-bottom-left {
  bottom: 14px;
  left: 14px;
  border-color: rgba(255, 255, 255, 0.25);
}

.badge-bottom-right {
  bottom: 14px;
  right: 14px;
  border-color: rgba(245, 158, 11, 0.5);
  color: #fef08a;
}

.hero-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 8px 0;
}

.chip-item {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  padding: 6px 14px;
  border-radius: var(--radius-md);
  font-size: 13.5px;
  font-weight: 500;
  color: var(--slate-200);
}

.hero-cta-group {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 6px;
}

.hero-trust-row {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 14px;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 13px;
  color: var(--slate-300);
}

.trust-avatar-stack {
  display: flex;
  align-items: center;
}

.avatar-stack-item {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 2px solid var(--primary-800);
  margin-left: -8px;
  background-color: var(--primary-600);
  color: var(--white);
  font-size: 11px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
}

.avatar-stack-item:first-child {
  margin-left: 0;
}

/* ==========================================================================
   DIRECT LEAD CAPTURE FORM PROMPT (HERO CARD)
   ========================================================================== */

.lead-form-card {
  background: rgba(255, 255, 255, 0.98);
  color: var(--slate-800);
  border-radius: var(--radius-xl);
  padding: 32px 28px;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.35), 0 0 0 1px rgba(255, 255, 255, 0.2);
  position: relative;
  overflow: hidden;
}

.lead-form-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 5px;
  background: linear-gradient(90deg, var(--medical-teal), var(--accent-gold));
}

.form-header {
  margin-bottom: 20px;
}

.form-badge {
  display: inline-block;
  background: rgba(0, 168, 143, 0.1);
  color: var(--medical-teal-dark);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.6px;
  padding: 4px 10px;
  border-radius: var(--radius-sm);
  margin-bottom: 8px;
}

.form-title {
  font-family: var(--font-heading);
  font-size: 22px;
  font-weight: 800;
  color: var(--primary-900);
  line-height: 1.25;
}

.form-desc {
  font-size: 13.5px;
  color: var(--slate-600);
  margin-top: 4px;
}

.lead-form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

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

.form-group {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.form-label {
  font-size: 12.5px;
  font-weight: 600;
  color: var(--slate-700);
}

.form-input,
.form-select,
.form-textarea {
  width: 100%;
  padding: 10px 14px;
  border: 1.5px solid var(--slate-200);
  border-radius: var(--radius-md);
  font-size: 14px;
  color: var(--slate-800);
  background-color: var(--white);
  transition: all var(--transition-fast);
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  outline: none;
  border-color: var(--medical-teal);
  box-shadow: 0 0 0 3px rgba(0, 168, 143, 0.18);
}

.form-input::placeholder,
.form-textarea::placeholder {
  color: var(--slate-400);
}

.form-submit-btn {
  width: 100%;
  padding: 13px;
  font-size: 15px;
  font-weight: 700;
  background: linear-gradient(135deg, var(--medical-teal), #028773);
  color: var(--white);
  border-radius: var(--radius-md);
  box-shadow: 0 4px 14px rgba(0, 168, 143, 0.35);
  transition: all var(--transition-base);
  margin-top: 4px;
}

.form-submit-btn:hover {
  background: linear-gradient(135deg, #00ba9e, var(--medical-teal));
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(0, 168, 143, 0.45);
}

.form-guarantee {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 11.5px;
  color: var(--slate-500);
  margin-top: 6px;
  text-align: center;
}

.form-guarantee svg {
  width: 14px;
  height: 14px;
  stroke: var(--success);
}

/* Form Success State Card */
.form-success-card {
  display: none;
  text-align: center;
  padding: 24px 12px;
}

.success-icon-wrap {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: rgba(16, 185, 129, 0.15);
  color: var(--success);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
}

.success-icon-wrap svg {
  width: 32px;
  height: 32px;
  stroke: currentColor;
}

/* ==========================================================================
   STATS TICKER BAR
   ========================================================================== */

.stats-section {
  background-color: var(--white);
  border-bottom: 1px solid var(--slate-200);
  box-shadow: var(--shadow-sm);
  position: relative;
  z-index: 10;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  divide-x: 1px solid var(--slate-100);
}

.stat-item {
  padding: 24px 16px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  border-right: 1px solid var(--slate-100);
}

.stat-item:last-child {
  border-right: none;
}

.stat-number {
  font-family: var(--font-heading);
  font-size: 32px;
  font-weight: 800;
  color: var(--primary-800);
  line-height: 1;
}

.stat-number span {
  color: var(--medical-teal);
}

.stat-label {
  font-size: 13px;
  font-weight: 600;
  color: var(--slate-600);
}

/* ==========================================================================
   SECTION COMMON STYLES
   ========================================================================== */

.section {
  padding: 80px 0;
}

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

.section-bg-dark {
  background: linear-gradient(135deg, var(--primary-900), var(--primary-800));
  color: var(--white);
}

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

.section-pill {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--medical-teal);
  background: rgba(0, 168, 143, 0.1);
  padding: 4px 14px;
  border-radius: var(--radius-full);
  margin-bottom: 12px;
}

.section-bg-dark .section-pill {
  color: var(--medical-teal-light);
  background: rgba(0, 210, 180, 0.15);
}

.section-title {
  font-family: var(--font-heading);
  font-size: clamp(26px, 3.2vw, 38px);
  font-weight: 800;
  color: var(--primary-900);
  line-height: 1.22;
  letter-spacing: -0.5px;
}

.section-bg-dark .section-title {
  color: var(--white);
}

.section-subtitle {
  font-size: 16px;
  color: var(--slate-600);
  margin-top: 12px;
  line-height: 1.6;
}

.section-bg-dark .section-subtitle {
  color: var(--slate-300);
}

/* Why Philippines Campus Split Showcase */
.why-showcase-split {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 36px;
  align-items: stretch;
  background: var(--white);
  border-radius: var(--radius-xl);
  border: 1px solid var(--slate-200);
  box-shadow: 0 16px 36px -10px rgba(11, 37, 69, 0.08);
  overflow: hidden;
  margin-bottom: 48px;
}

.why-showcase-media {
  position: relative;
  min-height: 420px;
  background: var(--primary-900);
  overflow: hidden;
}

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

.why-showcase-split:hover .campus-showcase-img {
  transform: scale(1.03);
}

.campus-showcase-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(7, 23, 44, 0.1) 0%, rgba(7, 23, 44, 0.35) 50%, rgba(7, 23, 44, 0.85) 100%);
  pointer-events: none;
}

.campus-showcase-badge {
  position: absolute;
  bottom: 20px;
  left: 20px;
  right: 20px;
  background: rgba(7, 23, 44, 0.9);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(0, 210, 180, 0.4);
  border-radius: var(--radius-lg);
  padding: 14px 18px;
  display: flex;
  align-items: center;
  gap: 14px;
  color: var(--white);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.35);
}

.badge-icon-box {
  font-size: 26px;
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: rgba(0, 168, 143, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.badge-title {
  font-family: var(--font-heading);
  font-size: 15.5px;
  font-weight: 700;
  color: var(--white);
}

.badge-desc {
  font-size: 12.5px;
  color: var(--medical-teal-light);
  margin-top: 2px;
}

.why-showcase-card {
  padding: 40px 36px 40px 16px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.card-tag {
  font-size: 11.5px;
  font-weight: 800;
  letter-spacing: 1.2px;
  color: var(--medical-teal);
  margin-bottom: 8px;
  text-transform: uppercase;
}

.showcase-card-title {
  font-family: var(--font-heading);
  font-size: 26px;
  font-weight: 800;
  color: var(--primary-900);
  line-height: 1.25;
  margin-bottom: 14px;
}

.showcase-card-text {
  font-size: 15px;
  color: var(--slate-600);
  line-height: 1.7;
  margin-bottom: 20px;
}

.showcase-checkmarks {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.check-row {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  color: var(--slate-700);
  line-height: 1.5;
}

.check-icon {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: rgba(0, 168, 143, 0.15);
  color: var(--medical-teal-dark);
  font-size: 12px;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 2px;
}

/* ==========================================================================
   WHY STUDY IN PHILIPPINES (7 PILLARS)
   ========================================================================== */

.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 24px;
}

.why-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 28px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--slate-200);
  transition: all var(--transition-base);
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.why-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-xl);
  border-color: rgba(0, 168, 143, 0.3);
}

.why-icon-wrap {
  width: 52px;
  height: 52px;
  border-radius: var(--radius-md);
  background: rgba(0, 168, 143, 0.1);
  color: var(--medical-teal);
  display: flex;
  align-items: center;
  justify-content: center;
}

.why-icon-wrap svg {
  width: 26px;
  height: 26px;
  stroke: currentColor;
}

.why-card-title {
  font-family: var(--font-heading);
  font-size: 20px;
  font-weight: 700;
  color: var(--primary-900);
}

.why-card-desc {
  font-size: 14.5px;
  color: var(--slate-600);
  line-height: 1.65;
}

.why-card-meta {
  margin-top: auto;
  font-size: 12.5px;
  font-weight: 600;
  color: var(--medical-teal);
  display: flex;
  align-items: center;
  gap: 6px;
}

/* ==========================================================================
   THE BS + MD PATHWAY VISUAL FLOWCHART
   ========================================================================== */

.pathway-banner {
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: 40px;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--slate-200);
  margin-bottom: 40px;
}

.flowchart-steps {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
  position: relative;
  margin: 32px 0 20px;
}

.flow-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  position: relative;
}

.step-num-badge {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--primary-800);
  color: var(--white);
  font-family: var(--font-heading);
  font-size: 16px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
  box-shadow: 0 4px 10px rgba(11, 37, 69, 0.25);
  z-index: 2;
  position: relative;
}

.flow-step.highlight .step-num-badge {
  background: linear-gradient(135deg, var(--medical-teal), var(--medical-teal-dark));
  box-shadow: 0 4px 14px rgba(0, 168, 143, 0.4);
}

.step-box {
  background: var(--slate-50);
  border: 1px solid var(--slate-200);
  border-radius: var(--radius-md);
  padding: 18px 14px;
  width: 100%;
  min-height: 140px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.flow-step.highlight .step-box {
  background: rgba(0, 168, 143, 0.05);
  border-color: rgba(0, 168, 143, 0.3);
}

.step-title {
  font-family: var(--font-heading);
  font-size: 15px;
  font-weight: 700;
  color: var(--primary-900);
  margin-bottom: 4px;
}

.step-duration {
  font-size: 12px;
  font-weight: 600;
  color: var(--medical-teal);
  margin-bottom: 6px;
}

.step-detail {
  font-size: 12px;
  color: var(--slate-600);
  line-height: 1.4;
}

.step-arrow-line {
  position: absolute;
  top: 22px;
  left: 50%;
  right: -50%;
  height: 2px;
  background: var(--slate-300);
  z-index: 1;
}

.flow-step:last-child .step-arrow-line {
  display: none;
}

/* ==========================================================================
   TOP 10 UNIVERSITIES COMPARISON & CARDS
   ========================================================================== */

.filter-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
  background: var(--white);
  padding: 16px 24px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--slate-200);
  box-shadow: var(--shadow-sm);
  margin-bottom: 32px;
}

.filter-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.filter-btn {
  padding: 8px 16px;
  border-radius: var(--radius-full);
  font-size: 13.5px;
  font-weight: 600;
  color: var(--slate-600);
  background: var(--slate-100);
  transition: all var(--transition-fast);
}

.filter-btn:hover {
  background: var(--slate-200);
  color: var(--slate-800);
}

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

.search-box {
  display: flex;
  align-items: center;
  gap: 8px;
  background: var(--slate-50);
  border: 1px solid var(--slate-200);
  border-radius: var(--radius-full);
  padding: 8px 16px;
  min-width: 260px;
}

.search-box svg {
  width: 16px;
  height: 16px;
  stroke: var(--slate-400);
}

.search-box input {
  border: none;
  background: none;
  font-size: 14px;
  width: 100%;
}

.search-box input:focus {
  outline: none;
}

/* University Cards Grid */
.univ-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(360px, 1fr));
  gap: 28px;
}

.univ-card {
  background: var(--white);
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: 0 4px 16px rgba(11, 37, 69, 0.06);
  border: 1px solid var(--slate-200);
  transition: all var(--transition-base);
  display: flex;
  flex-direction: column;
}

.univ-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 35px -5px rgba(11, 37, 69, 0.12);
  border-color: rgba(0, 168, 143, 0.45);
}

/* Campus Photography Banner on University Card */
.univ-card-banner {
  position: relative;
  width: 100%;
  height: 200px;
  overflow: hidden;
  background: var(--primary-900);
}

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

.univ-card:hover .univ-banner-img {
  transform: scale(1.06);
}

.univ-banner-gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(7, 23, 44, 0.1) 0%, rgba(7, 23, 44, 0.3) 50%, rgba(7, 23, 44, 0.85) 100%);
  pointer-events: none;
}

.univ-banner-location {
  position: absolute;
  bottom: 12px;
  left: 14px;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  background: rgba(7, 23, 44, 0.8);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  color: var(--white);
  font-size: 12px;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: var(--radius-full);
  border: 1px solid rgba(255, 255, 255, 0.2);
  z-index: 2;
}

.univ-banner-location svg {
  color: var(--medical-teal-light);
}

.univ-banner-tuition {
  position: absolute;
  bottom: 12px;
  right: 14px;
  background: linear-gradient(135deg, rgba(0, 168, 143, 0.92), rgba(11, 37, 69, 0.95));
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  color: #1ee0c3;
  font-size: 12px;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: var(--radius-full);
  border: 1px solid rgba(0, 210, 180, 0.45);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.25);
  z-index: 2;
}

.univ-card-header {
  padding: 24px 24px 16px;
  border-bottom: 1px solid var(--slate-100);
  position: relative;
}

.univ-location-badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 12px;
  font-weight: 600;
  color: var(--slate-500);
  margin-bottom: 8px;
}

.univ-name {
  font-family: var(--font-heading);
  font-size: 19px;
  font-weight: 800;
  color: var(--primary-900);
  line-height: 1.3;
}

.univ-degree-tag {
  display: inline-block;
  background: rgba(0, 168, 143, 0.1);
  color: var(--medical-teal-dark);
  font-size: 11px;
  font-weight: 700;
  padding: 3px 8px;
  border-radius: var(--radius-sm);
  margin-top: 6px;
}

.univ-card-body {
  padding: 20px 24px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  flex-grow: 1;
}

.univ-meta-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  background: var(--slate-50);
  border-radius: var(--radius-md);
  padding: 12px;
}

.univ-meta-item {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.univ-meta-label {
  font-size: 11px;
  font-weight: 600;
  color: var(--slate-400);
  text-transform: uppercase;
}

.univ-meta-val {
  font-size: 13.5px;
  font-weight: 700;
  color: var(--primary-900);
}

.univ-meta-val.price {
  color: var(--medical-teal);
  font-size: 15px;
}

.univ-features-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.univ-feature-row {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 13px;
  color: var(--slate-600);
}

.univ-feature-row svg {
  width: 16px;
  height: 16px;
  stroke: var(--medical-teal);
  flex-shrink: 0;
  margin-top: 2px;
}

.univ-card-footer {
  padding: 16px 24px;
  background: var(--slate-50);
  border-top: 1px solid var(--slate-100);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

/* University Details Modal Dialog */
.modal-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(15, 23, 42, 0.7);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  z-index: 100;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.modal-overlay.active {
  display: flex;
}

.modal-card {
  background: var(--white);
  border-radius: var(--radius-xl);
  max-width: 780px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.4);
  position: relative;
  animation: modal-enter 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

@keyframes modal-enter {
  from { opacity: 0; transform: scale(0.95) translateY(10px); }
  to { opacity: 1; transform: scale(1) translateY(0); }
}

.modal-close-btn {
  position: absolute;
  top: 18px;
  right: 18px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--slate-100);
  color: var(--slate-600);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition-fast);
  z-index: 10;
}

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

.modal-content-wrap {
  padding: 36px;
}

/* ==========================================================================
   DYNAMIC 5-YEAR BUDGET & COST OF LIVING CALCULATOR
   ========================================================================== */

.calculator-wrapper {
  background: var(--white);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--slate-200);
  overflow: hidden;
}

.calculator-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
}

.calculator-controls {
  padding: 40px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.calc-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.calc-label {
  font-size: 14px;
  font-weight: 700;
  color: var(--primary-900);
}

.calc-options-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(130px, 1fr));
  gap: 10px;
}

.calc-radio-btn {
  border: 1.5px solid var(--slate-200);
  border-radius: var(--radius-md);
  padding: 10px 12px;
  text-align: center;
  cursor: pointer;
  transition: all var(--transition-fast);
  background: var(--slate-50);
}

.calc-radio-btn:hover {
  border-color: var(--medical-teal);
  background: rgba(0, 168, 143, 0.05);
}

.calc-radio-btn.active {
  border-color: var(--medical-teal);
  background: rgba(0, 168, 143, 0.1);
  color: var(--medical-teal-dark);
  font-weight: 700;
}

.calculator-result-panel {
  background: linear-gradient(135deg, var(--primary-900), var(--primary-800));
  color: var(--white);
  padding: 40px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.result-header {
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  padding-bottom: 18px;
  margin-bottom: 24px;
}

.result-total-label {
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--slate-300);
}

.result-total-amount {
  font-family: var(--font-heading);
  font-size: clamp(34px, 4vw, 44px);
  font-weight: 800;
  color: var(--medical-teal-light);
  line-height: 1.1;
  margin-top: 4px;
}

.result-total-note {
  font-size: 12px;
  color: var(--slate-400);
  margin-top: 4px;
}

.result-breakdown-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.result-breakdown-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 14px;
  padding: 6px 0;
  border-bottom: 1px dashed rgba(255, 255, 255, 0.1);
}

.result-breakdown-row:last-child {
  border-bottom: none;
}

.result-breakdown-name {
  color: var(--slate-300);
}

.result-breakdown-val {
  font-weight: 700;
  color: var(--white);
}

/* ==========================================================================
   NMC FMGL 2021 COMPLIANCE & CHECKLIST
   ========================================================================== */

.nmc-alert-box {
  background: #fffbeb;
  border: 2px solid #fde68a;
  border-radius: var(--radius-lg);
  padding: 28px;
  margin-bottom: 40px;
}

.nmc-alert-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
}

.nmc-alert-icon {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--warning);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.nmc-alert-title {
  font-family: var(--font-heading);
  font-size: 20px;
  font-weight: 800;
  color: #92400e;
}

.nmc-checklist-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 16px;
  margin-top: 20px;
}

.checklist-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  background: var(--white);
  border: 1px solid #fde68a;
  padding: 14px;
  border-radius: var(--radius-md);
  font-size: 13.5px;
  color: var(--slate-700);
}

.checklist-item svg {
  width: 18px;
  height: 18px;
  stroke: var(--success);
  flex-shrink: 0;
  margin-top: 2px;
}

/* ==========================================================================
   ADMISSION PROCESS TIMELINE (8 STEPS)
   ========================================================================== */

.timeline-wrap {
  position: relative;
  max-width: 860px;
  margin: 0 auto;
}

.timeline-line {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 28px;
  width: 3px;
  background: linear-gradient(180deg, var(--medical-teal), var(--primary-700));
}

.timeline-step {
  display: flex;
  align-items: flex-start;
  gap: 24px;
  position: relative;
  margin-bottom: 32px;
}

.timeline-badge {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: var(--white);
  border: 3px solid var(--medical-teal);
  color: var(--primary-900);
  font-family: var(--font-heading);
  font-size: 18px;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: var(--shadow-md);
  z-index: 2;
}

.timeline-content-card {
  background: var(--white);
  border: 1px solid var(--slate-200);
  border-radius: var(--radius-lg);
  padding: 22px 28px;
  box-shadow: var(--shadow-sm);
  flex-grow: 1;
}

.timeline-title {
  font-family: var(--font-heading);
  font-size: 18px;
  font-weight: 700;
  color: var(--primary-900);
  margin-bottom: 6px;
}

.timeline-desc {
  font-size: 14px;
  color: var(--slate-600);
  line-height: 1.6;
}

/* ==========================================================================
   ABOUT US & BRAND POWERED BY EXPLANATION
   ========================================================================== */

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

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

.about-content {
  padding: 48px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.about-highlight-box {
  background: rgba(0, 168, 143, 0.08);
  border-left: 4px solid var(--medical-teal);
  padding: 16px 20px;
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
  font-size: 15px;
  font-weight: 600;
  color: var(--primary-900);
  line-height: 1.6;
}

.about-media {
  position: relative;
  height: 100%;
  min-height: 440px;
  background: var(--primary-900);
  overflow: hidden;
}

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

.about-media:hover img {
  transform: scale(1.03);
}

.about-media-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(7, 23, 44, 0.1) 0%, rgba(7, 23, 44, 0.3) 50%, rgba(7, 23, 44, 0.85) 100%);
  pointer-events: none;
}

.about-media-badge {
  position: absolute;
  bottom: 20px;
  left: 20px;
  right: 20px;
  background: rgba(7, 23, 44, 0.9);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(0, 210, 180, 0.4);
  border-radius: var(--radius-lg);
  padding: 14px 18px;
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--white);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.4);
}

.about-badge-icon {
  font-size: 24px;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: rgba(0, 168, 143, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.about-badge-title {
  font-family: var(--font-heading);
  font-size: 15px;
  font-weight: 700;
  color: var(--white);
}

.about-badge-sub {
  font-size: 12px;
  color: var(--medical-teal-light);
  margin-top: 2px;
}

/* ==========================================================================
   TERMS & CONDITIONS ACCORDION
   ========================================================================== */

.terms-accordion {
  display: flex;
  flex-direction: column;
  gap: 12px;
  max-width: 900px;
  margin: 0 auto;
}

.accordion-item {
  background: var(--white);
  border: 1px solid var(--slate-200);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: all var(--transition-fast);
}

.accordion-header {
  width: 100%;
  padding: 18px 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: var(--font-heading);
  font-size: 16.5px;
  font-weight: 700;
  color: var(--primary-900);
  text-align: left;
  background: var(--white);
}

.accordion-header:hover {
  background: var(--slate-50);
}

.accordion-icon {
  width: 20px;
  height: 20px;
  stroke: var(--slate-500);
  transition: transform var(--transition-base);
}

.accordion-item.active .accordion-icon {
  transform: rotate(180deg);
  stroke: var(--medical-teal);
}

.accordion-body {
  display: none;
  padding: 0 24px 20px;
  font-size: 14px;
  color: var(--slate-600);
  line-height: 1.65;
  border-top: 1px solid var(--slate-100);
}

.accordion-item.active .accordion-body {
  display: block;
}

/* ==========================================================================
   FOOTER & LEGALITIES
   ========================================================================== */

.site-footer {
  background: var(--primary-900);
  color: var(--slate-300);
  padding: 64px 0 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
  gap: 40px;
  margin-bottom: 48px;
}

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

.footer-heading {
  font-family: var(--font-heading);
  font-size: 16px;
  font-weight: 700;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: 0.8px;
}

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

.footer-link {
  font-size: 14px;
  color: var(--slate-400);
  transition: color var(--transition-fast);
}

.footer-link:hover {
  color: var(--medical-teal-light);
}

.footer-address {
  font-size: 13.5px;
  color: var(--slate-300);
  line-height: 1.6;
}

.footer-bottom {
  padding-top: 28px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 13px;
  color: var(--slate-400);
}

.footer-legal-copy {
  font-weight: 600;
  color: var(--slate-200);
}

/* ==========================================================================
   FLOATING ACTIONS & MOBILE PWA APP BAR
   ========================================================================== */

.floating-whatsapp {
  position: fixed;
  bottom: 84px;
  right: 24px;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: #25d366;
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 24px rgba(37, 211, 102, 0.45);
  z-index: 45;
  transition: all var(--transition-base);
}

.floating-whatsapp:hover {
  transform: scale(1.1) rotate(5deg);
  background: #1eb956;
}

.floating-whatsapp svg {
  width: 32px;
  height: 32px;
  fill: currentColor;
}

/* PWA App Install Banner (Prompt) */
.pwa-install-banner {
  display: none;
  position: fixed;
  bottom: 24px;
  left: 24px;
  right: 24px;
  max-width: 480px;
  background: var(--primary-900);
  color: var(--white);
  border: 1px solid rgba(0, 210, 180, 0.3);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
  border-radius: var(--radius-lg);
  padding: 16px 20px;
  z-index: 55;
  animation: slide-up 0.4s ease;
}

@keyframes slide-up {
  from { transform: translateY(100px); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}

.pwa-banner-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.pwa-banner-info {
  display: flex;
  align-items: center;
  gap: 12px;
}

.pwa-banner-icon {
  width: 42px;
  height: 42px;
  border-radius: 10px;
  background: linear-gradient(135deg, var(--medical-teal), var(--primary-700));
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.pwa-banner-icon img {
  width: 28px;
  height: 28px;
}

.pwa-banner-text h4 {
  font-size: 14.5px;
  font-weight: 700;
  color: var(--white);
}

.pwa-banner-text p {
  font-size: 12px;
  color: var(--slate-300);
}

.pwa-banner-actions {
  display: flex;
  align-items: center;
  gap: 8px;
}

.pwa-close-btn {
  color: var(--slate-400);
  padding: 6px;
}

/* Mobile Bottom Fixed Bar */
.mobile-bottom-bar {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  height: 64px;
  background: rgba(11, 37, 69, 0.98);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  z-index: 40;
  padding: 8px 12px;
}

.mobile-bar-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 6px;
  height: 100%;
}

.mobile-bar-btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
  color: var(--slate-300);
  font-size: 11px;
  font-weight: 600;
  border-radius: var(--radius-sm);
  transition: all var(--transition-fast);
}

.mobile-bar-btn.active,
.mobile-bar-btn:active {
  color: var(--medical-teal-light);
}

.mobile-bar-btn svg {
  width: 18px;
  height: 18px;
  stroke: currentColor;
}

.mobile-bar-btn.call-action {
  color: #38bdf8;
}

.mobile-bar-btn.wa-action {
  color: #25d366;
}

.mobile-bar-btn.enquire-action {
  background: var(--medical-teal);
  color: var(--white);
  border-radius: var(--radius-md);
}

/* ==========================================================================
   RESPONSIVE DESIGN BREAKPOINTS
   ========================================================================== */

@media (max-width: 1024px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .lead-form-card {
    max-width: 580px;
    margin: 0 auto;
  }
  
  .flowchart-steps {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  
  .step-arrow-line {
    display: none;
  }
  
  .calculator-grid {
    grid-template-columns: 1fr;
  }
  
  .about-grid {
    grid-template-columns: 1fr;
  }
  
  .about-media {
    min-height: 280px;
  }
  
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
@media (max-width: 1200px) {
  .site-header {
    height: 74px;
  }
  
  .nav-menu {
    display: none;
    position: fixed;
    top: 74px;
    left: 0;
    right: 0;
    background: var(--primary-900);
    flex-direction: column;
    padding: 24px;
    gap: 16px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
  }
  
  .nav-menu.open {
    display: flex;
  }
  
  .mobile-toggle {
    display: block;
  }

  .why-showcase-split {
    grid-template-columns: 1fr;
  }

  .why-showcase-media {
    min-height: 300px;
  }
}

@media (max-width: 768px) {
  .topbar {
    display: none;
  }
  
  .site-header {
    height: 70px;
  }
  
  .nav-menu {
    top: 70px;
  }
  
  .header-actions .btn-pwa,
  .header-actions .btn-primary {
    display: none;
  }
  
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .stat-item:nth-child(2) {
    border-right: none;
  }
  
  .stat-item:last-child {
    grid-column: span 2;
  }
  
  .timeline-line {
    left: 20px;
  }
  
  .timeline-badge {
    width: 44px;
    height: 44px;
    font-size: 15px;
  }
  
  .footer-grid {
    grid-template-columns: 1fr;
  }
  
  .mobile-bottom-bar {
    display: block;
  }
  
  body {
    padding-bottom: 64px;
  }
  
  .floating-whatsapp {
    bottom: 80px;
  }
}
