/* ==========================================================================
   EVERGREEN MEDICAL CENTER (EMC) - MODERN HEALTHCARE DESIGN SYSTEM
   Brand Palette: Deep Forest Evergreen, Mint Glow, Slate Navy, Pure White
   ========================================================================== */

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

:root {
  /* Brand Color Tokens */
  --primary: #106638;
  --primary-dark: #0b4a28;
  --primary-light: #168b4d;
  --primary-subtle: #e8f5ed;
  --primary-gradient: linear-gradient(135deg, #106638 0%, #064e3b 100%);
  --accent-mint: #10b981;
  --accent-teal: #0d9488;
  --accent-gold: #f59e0b;
  --accent-blue: #2563eb;
  
  /* Status Colors */
  --status-fit: #10b981;
  --status-fit-bg: #ecfdf5;
  --status-unfit: #ef4444;
  --status-unfit-bg: #fef2f2;
  --status-pending: #f59e0b;
  --status-pending-bg: #fffbeb;

  /* Neutral & Dark Shades */
  --dark-900: #0a0f1d;
  --dark-800: #111827;
  --dark-700: #1e293b;
  --dark-600: #334155;
  --gray-500: #64748b;
  --gray-400: #94a3b8;
  --gray-300: #cbd5e1;
  --gray-200: #e2e8f0;
  --gray-100: #f1f5f9;
  --gray-50: #f8fafc;
  --white: #ffffff;

  /* Glassmorphism & Elevation */
  --glass-bg: rgba(255, 255, 255, 0.85);
  --glass-border: rgba(255, 255, 255, 0.6);
  --glass-shadow: 0 10px 30px -10px rgba(16, 102, 56, 0.12);
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.04);
  --shadow-md: 0 8px 24px rgba(15, 23, 42, 0.08);
  --shadow-lg: 0 20px 40px -15px rgba(15, 23, 42, 0.12);
  --shadow-glow: 0 0 35px rgba(16, 185, 129, 0.25);

  /* Typography */
  --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --font-heading: 'Outfit', sans-serif;
  --font-bangla: 'Hind Siliguri', sans-serif;
  --font-arabic: 'Cairo', sans-serif;

  /* Spacing & Radii */
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 20px;
  --radius-full: 9999px;
  --container-max: 1280px;
  --header-height: 80px;
  --transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

/* RTL Global Adjustments */
html[dir="rtl"] {
  --font-sans: 'Cairo', sans-serif;
  --font-heading: 'Cairo', sans-serif;
}

html[lang="bn"] {
  --font-sans: 'Hind Siliguri', 'Inter', sans-serif;
  --font-heading: 'Hind Siliguri', 'Outfit', sans-serif;
}

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

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

body {
  font-family: var(--font-sans);
  color: var(--dark-700);
  background-color: #ffffff;
  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);
}

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

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

/* Top Announcement & Quick Contact Bar */
.topbar {
  background: var(--dark-900);
  color: var(--gray-300);
  font-size: 0.85rem;
  padding: 0.55rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

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

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

.topbar-item {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  color: var(--gray-300);
}

.topbar-item i, .topbar-item svg {
  color: var(--accent-mint);
  width: 14px;
  height: 14px;
}

.topbar-item a:hover {
  color: var(--accent-mint);
}

.topbar-badge {
  background: rgba(16, 185, 129, 0.15);
  color: var(--accent-mint);
  padding: 2px 10px;
  border-radius: var(--radius-full);
  font-weight: 600;
  font-size: 0.78rem;
  border: 1px solid rgba(16, 185, 129, 0.3);
  display: inline-flex;
  align-items: center;
  gap: 5px;
}

.topbar-right {
  display: flex;
  align-items: center;
  gap: 1.25rem;
}

/* Language Selector Pills */
.lang-selector {
  display: flex;
  background: rgba(255, 255, 255, 0.08);
  padding: 3px;
  border-radius: var(--radius-full);
  border: 1px solid rgba(255, 255, 255, 0.15);
}

.lang-btn {
  background: transparent;
  color: var(--gray-300);
  border: none;
  padding: 3px 10px;
  font-size: 0.75rem;
  font-weight: 600;
  border-radius: var(--radius-full);
  cursor: pointer;
  transition: var(--transition);
}

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

/* Top Reading / Scroll Progress Bar */
.scroll-progress-bar {
  position: fixed;
  top: 0;
  left: 0;
  height: 3px;
  width: 0%;
  background: linear-gradient(90deg, #10b981, #059669, #38bdf8);
  box-shadow: 0 0 10px rgba(16, 185, 129, 0.7);
  z-index: 9999;
  transition: width 0.08s ease-out;
}

/* ==========================================================================
   HEADER BANNER & FLOATING DUAL-TIER NAV (SHARED CONTAINER GEOMETRY)
   ========================================================================== */
.header-master-wrapper {
  background: transparent;
  padding: 0.85rem 1rem 0.5rem;
  position: relative;
  width: 100%;
}

/* Shared Inner Container for Top Info Bar & White Nav Card */
.header-inner-container {
  max-width: 1360px;
  width: 100%;
  margin: 0 auto;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

/* Top Announcement & Operational Details Bar (Frosted Emerald Glass) */
.topbar-info-bar {
  width: 100%;
  box-sizing: border-box;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(3, 41, 27, 0.68);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  padding: 0.45rem 1.25rem;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15), inset 0 1px 1px rgba(255, 255, 255, 0.12);
  flex-wrap: nowrap;
  white-space: nowrap;
  gap: 0.85rem;
}

.topbar-chip-item {
  display: flex;
  align-items: center;
  gap: 0.65rem;
}

.topbar-circle-icon {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: #059669;
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.25);
}

.topbar-text-group {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}

.topbar-title-bold {
  color: #ffffff;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: -0.01em;
}

.topbar-sub {
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.7rem;
  font-weight: 500;
}

.topbar-phone-val {
  color: #ffffff;
  font-size: 0.8rem;
  font-weight: 700;
  white-space: nowrap;
}

.topbar-v-divider {
  width: 1px;
  height: 22px;
  background: rgba(255, 255, 255, 0.22);
}

/* Language Selector Pills in Topbar */
.lang-selector {
  display: inline-flex;
  align-items: center;
  background: rgba(0, 0, 0, 0.4);
  padding: 2px 6px;
  border-radius: 9999px;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.lang-btn {
  background: transparent;
  color: rgba(255, 255, 255, 0.85);
  border: none;
  padding: 3px 10px;
  font-size: 0.75rem;
  font-weight: 700;
  border-radius: 9999px;
  cursor: pointer;
  transition: all 0.2s ease;
  line-height: 1;
}

.lang-btn:hover {
  color: #ffffff;
  background: rgba(255, 255, 255, 0.18);
}

.lang-btn.active {
  background: #059669;
  color: #ffffff;
  box-shadow: 0 2px 6px rgba(5, 150, 105, 0.45);
}

.lang-sep {
  color: rgba(255, 255, 255, 0.35);
  font-size: 0.75rem;
  margin: 0 2px;
}

body {
  font-family: var(--font-sans);
  color: var(--dark-700);
  background: #f7fbf9;
  background-image: 
    radial-gradient(circle at 10% 8%, rgba(16, 185, 129, 0.08) 0%, transparent 40%),
    radial-gradient(circle at 90% 25%, rgba(5, 150, 105, 0.06) 0%, transparent 45%),
    radial-gradient(circle at 15% 65%, rgba(16, 185, 129, 0.07) 0%, transparent 40%),
    radial-gradient(circle at 85% 85%, rgba(5, 150, 105, 0.05) 0%, transparent 45%),
    linear-gradient(180deg, #f0fbf5 0%, #f7fbf9 15%, #ffffff 40%, #f2faf6 70%, #ffffff 100%);
  background-attachment: fixed;
  line-height: 1.65;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

.section {
  padding: 5.5rem 0;
  position: relative;
  background: transparent;
}

.section-bg-alt {
  background: rgba(236, 253, 245, 0.4);
  border-top: 1px solid rgba(16, 185, 129, 0.08);
  border-bottom: 1px solid rgba(16, 185, 129, 0.08);
}

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

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

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

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

/* Floating Navigation Wrapper */
.nav-floating-wrapper {
  position: sticky;
  top: 15px;
  z-index: 1000;
  padding: 0 1rem;
}

/* Scroll Progress Bar at very top of Navigation Card */
.scroll-progress-bar {
  position: absolute;
  top: 0;
  left: 12px;
  right: 12px;
  height: 3px;
  background: linear-gradient(90deg, #10b981 0%, #059669 100%);
  border-radius: 4px 4px 0 0;
  width: 0%;
  transition: width 0.1s linear;
  z-index: 105;
}

/* Floating Section Breadcrumb Bar */
.nav-breadcrumb-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(6, 78, 59, 0.96);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  color: #ecfdf5;
  padding: 0.28rem 1.25rem;
  border-radius: 10px 10px 0 0;
  font-size: 0.74rem;
  letter-spacing: 0.02em;
  max-width: 1360px;
  margin: 0 auto -2px;
  border: 1px solid rgba(16, 185, 129, 0.3);
  border-bottom: none;
}

.nav-breadcrumb-left {
  display: flex;
  align-items: center;
  gap: 0.45rem;
}

.breadcrumb-live-dot {
  width: 7px;
  height: 7px;
  background: #10b981;
  border-radius: 50%;
  display: inline-block;
  box-shadow: 0 0 8px #10b981;
  animation: pulseDot 2s infinite;
}

@keyframes pulseDot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.4; transform: scale(0.85); }
}

.breadcrumb-sep {
  color: #6ee7b7;
  opacity: 0.6;
  margin: 0 2px;
}

/* Floating White Navigation Card */
.header {
  width: 100%;
  box-sizing: border-box;
  background: #ffffff;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08), 0 2px 6px rgba(0, 0, 0, 0.04);
  padding: 0.55rem 1.25rem;
  position: relative;
  z-index: 100;
  transition: all 0.3s ease;
}

.nav-card-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0;
  width: 100%;
}

.brand-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
  flex-shrink: 0;
}

.brand-img {
  height: 48px;
  width: auto;
  object-fit: contain;
}

.brand-meta {
  display: flex;
  flex-direction: column;
}

.brand-title {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  font-weight: 800;
  color: #064e3b;
  line-height: 1.1;
  letter-spacing: -0.02em;
}

.brand-subtitle {
  font-size: 0.68rem;
  font-weight: 700;
  color: #059669;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

/* Navigation Links */
.nav-container {
  display: flex;
  align-items: center;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-item {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.nav-link {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-decoration: none;
  padding: 0.2rem 0.1rem;
  cursor: pointer;
  position: relative;
}

.nav-link-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.42rem 0.75rem;
  border-radius: 9999px;
  font-size: 0.86rem;
  font-weight: 600;
  color: #334155;
  transition: all 0.2s ease;
}

.nav-icon {
  color: #64748b;
  transition: color 0.2s ease;
  flex-shrink: 0;
}

.nav-link:hover .nav-link-pill {
  color: #065f46;
  background: rgba(16, 185, 129, 0.08);
}

.nav-link:hover .nav-icon {
  color: #059669;
}

/* Active Nav State */
.nav-link.active .nav-link-pill {
  background: rgba(16, 185, 129, 0.12);
  color: #065f46;
  font-weight: 700;
}

.nav-link.active .nav-icon {
  color: #059669;
}

.nav-active-indicator {
  display: none;
  width: 32px;
  height: 3px;
  background: #059669;
  border-radius: 2px;
  margin-top: 3px;
}

.nav-link.active .nav-active-indicator {
  display: block;
}

/* Nav Actions Container */
.nav-actions {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-shrink: 0;
}

/* Verify Report Action Button */
.btn-verify-header {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  background: linear-gradient(135deg, #059669 0%, #047857 100%);
  color: #ffffff;
  padding: 0.55rem 1.2rem;
  border-radius: 9999px;
  font-size: 0.86rem;
  font-weight: 700;
  text-decoration: none;
  box-shadow: 0 4px 14px rgba(5, 150, 105, 0.32);
  transition: all 0.2s ease;
  white-space: nowrap;
}

.btn-verify-header:hover {
  background: linear-gradient(135deg, #047857 0%, #064e3b 100%);
  box-shadow: 0 6px 20px rgba(5, 150, 105, 0.45);
  transform: translateY(-1px);
  color: #ffffff;
}

.mobile-toggle {
  display: none;
  background: none;
  font-size: 1.5rem;
  color: var(--dark-800);
  cursor: pointer;
}

/* ==========================================================================
   HERO SECTION (MATCHING EXACT REFERENCE MOCKUP)
   ========================================================================== */
.hero {
  position: relative;
  min-height: 85vh;
  display: flex;
  align-items: center;
  background: transparent;
  padding: 3.5rem 0 4.5rem;
  overflow: hidden;
}

/* Decorative Dot Matrices */
.hero-dot-grid {
  position: absolute;
  width: 140px;
  height: 140px;
  background-image: radial-gradient(#10b981 1.5px, transparent 1.5px);
  background-size: 14px 14px;
  opacity: 0.35;
  pointer-events: none;
  z-index: 1;
}

.hero-dot-top-right {
  top: 30px;
  right: 40px;
}

.hero-dot-bottom-left {
  bottom: 30px;
  left: 30px;
}

/* Ambient Glow Spheres */
.hero-glow-sphere {
  position: absolute;
  border-radius: 50%;
  filter: blur(70px);
  pointer-events: none;
  z-index: 1;
}

.hero-glow-1 {
  top: -10%;
  left: -5%;
  width: 450px;
  height: 450px;
  background: rgba(16, 185, 129, 0.12);
}

.hero-glow-2 {
  bottom: -10%;
  right: -5%;
  width: 500px;
  height: 500px;
  background: rgba(5, 150, 105, 0.1);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.18fr 0.82fr;
  gap: 3.5rem;
  align-items: center;
  position: relative;
  z-index: 2;
}

.hero-content {
  position: relative;
  z-index: 2;
}

/* Top Pill Badge */
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: #e6f7ef;
  color: #065f46;
  padding: 0.45rem 1.15rem;
  border-radius: var(--radius-full);
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-bottom: 1.25rem;
  border: 1.5px solid #a7f3d0;
  box-shadow: 0 2px 8px rgba(16, 185, 129, 0.1);
}

.hero-badge svg {
  color: #059669;
  flex-shrink: 0;
}

/* Hero Typography */
.hero-title {
  font-family: var(--font-heading);
  font-size: 3.25rem;
  font-weight: 800;
  line-height: 1.14;
  color: #0f172a;
  margin-bottom: 1.25rem;
  letter-spacing: -0.03em;
}

.hero-highlight {
  color: #059669;
}

.hero-desc {
  font-size: 1.08rem;
  color: #475569;
  margin-bottom: 1.85rem;
  line-height: 1.65;
  max-width: 580px;
}

/* Quick Medical Report Verification Widget */
.hero-search-card {
  background: #ffffff;
  border-radius: 18px;
  padding: 1.4rem 1.6rem;
  box-shadow: 0 16px 36px rgba(16, 102, 56, 0.08), 0 2px 6px rgba(0, 0, 0, 0.02);
  border: 1px solid #e2e8f0;
  margin-bottom: 1.75rem;
  position: relative;
}

.hero-search-header {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  margin-bottom: 1rem;
}

.search-icon-circle {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: #d1fae5;
  color: #059669;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.hero-search-header h3 {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 700;
  color: #0f172a;
  margin: 0;
}

.hero-search-input-wrap {
  display: flex;
  align-items: center;
  background: #ffffff;
  border: 1.5px solid #e2e8f0;
  border-radius: 9999px;
  padding: 0.35rem 0.45rem 0.35rem 1.15rem;
  gap: 0.65rem;
  transition: all 0.2s ease;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.02);
}

.hero-search-input-wrap:focus-within {
  border-color: #059669;
  box-shadow: 0 0 0 4px rgba(16, 185, 129, 0.12);
}

.search-user-icon {
  color: #94a3b8;
  flex-shrink: 0;
}

.hero-search-input {
  flex: 1;
  border: none;
  background: transparent;
  font-size: 0.95rem;
  color: #0f172a;
  font-weight: 500;
  outline: none;
}

.btn-check-status {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: #059669;
  color: #ffffff;
  padding: 0.75rem 1.5rem;
  border-radius: 9999px;
  font-weight: 700;
  font-size: 0.92rem;
  cursor: pointer;
  transition: all 0.2s ease;
  border: none;
  white-space: nowrap;
}

.btn-check-status:hover {
  background: #047857;
  transform: translateY(-1px);
  box-shadow: 0 4px 14px rgba(5, 150, 105, 0.35);
}

.hero-demo-passports {
  font-size: 0.8rem;
  color: #64748b;
  margin-top: 0.85rem;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.45rem;
}

.demo-pass-link {
  color: #059669;
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 2px;
  cursor: pointer;
  transition: color 0.15s ease;
}

.demo-pass-link:hover {
  color: #047857;
}

/* Trust Checklist */
.hero-check-list {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 1.5rem;
}

.hero-check-item {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  font-size: 0.88rem;
  font-weight: 600;
  color: #334155;
}

.hero-check-item svg {
  color: #059669;
  flex-shrink: 0;
}

/* Hero Visual Composition */
.hero-media-wrapper {
  position: relative;
  z-index: 2;
  width: 100%;
  padding: 1.5rem 1rem;
}

.hero-img-card {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 20px 45px rgba(15, 23, 42, 0.14);
  border: 3px solid #ffffff;
  background: #ffffff;
}

.hero-main-img {
  width: 100%;
  height: 440px;
  object-fit: cover;
  display: block;
  transition: transform 0.8s ease;
}

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

/* Floating Badges on Hero (Anchored directly to hero-media-wrapper) */
.floating-badge {
  position: absolute;
  background: #ffffff;
  padding: 0.85rem 1.15rem;
  border-radius: 16px;
  box-shadow: 0 14px 32px rgba(15, 23, 42, 0.12), 0 2px 6px rgba(0, 0, 0, 0.04);
  display: flex;
  align-items: center;
  gap: 0.85rem;
  z-index: 10;
  border: 1px solid #f1f5f9;
  max-width: 290px;
  animation: floatAnim 4s ease-in-out infinite;
}

.badge-top-left {
  top: 0;
  left: -15px;
}

.badge-bottom-right {
  bottom: 0;
  right: -15px;
  animation-delay: 2s;
}

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

.floating-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.icon-mint {
  background: #ecfdf5;
  color: #059669;
}

.icon-green {
  background: var(--primary-subtle);
  color: var(--primary);
}

.icon-blue {
  background: #eff6ff;
  color: var(--accent-blue);
}

.floating-text h4 {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--dark-900);
}

.floating-text p {
  font-size: 0.76rem;
  color: var(--gray-500);
}

/* GCC & Accredited Destinations Ribbon */
.gcc-ribbon {
  background: linear-gradient(180deg, #0f172a 0%, #090e1a 100%);
  color: var(--white);
  padding: 1.5rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  position: relative;
  overflow: hidden;
}

.gcc-ribbon::before {
  content: '';
  position: absolute;
  top: 0;
  left: 15%;
  width: 400px;
  height: 100%;
  background: radial-gradient(circle, rgba(16, 185, 129, 0.08) 0%, transparent 70%);
  pointer-events: none;
}

.gcc-ribbon-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1.25rem;
}

.gcc-ribbon-title {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  font-size: 0.88rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #34d399;
  text-shadow: 0 0 14px rgba(52, 211, 153, 0.35);
}

.gcc-flags-list {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.gcc-country-item {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  background: linear-gradient(135deg, rgba(30, 41, 59, 0.75) 0%, rgba(15, 23, 42, 0.85) 100%);
  padding: 0.45rem 0.95rem 0.45rem 0.5rem;
  border-radius: 12px;
  font-size: 0.84rem;
  font-weight: 600;
  color: #f8fafc;
  border: 1px solid rgba(52, 211, 153, 0.22);
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.35);
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  backdrop-filter: blur(8px);
  cursor: default;
}

.gcc-country-item:hover {
  background: linear-gradient(135deg, rgba(16, 185, 129, 0.18) 0%, rgba(15, 23, 42, 0.95) 100%);
  border-color: #34d399;
  transform: translateY(-2px);
  box-shadow: 0 8px 22px rgba(16, 185, 129, 0.25), 0 0 10px rgba(52, 211, 153, 0.2);
  color: #ffffff;
}

.flag-badge {
  width: 26px;
  height: 26px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  border-radius: 50%;
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.4));
}

.flag-svg {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  overflow: hidden;
}

.country-name {
  white-space: nowrap;
  letter-spacing: -0.01em;
}

/* ==========================================================================
   STAT COUNTER SECTION
   ========================================================================== */
.stats-section {
  padding: 3.5rem 0;
  background: transparent;
  border-bottom: 1px solid rgba(16, 185, 129, 0.1);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}

.stat-card {
  text-align: center;
  padding: 1.5rem;
  border-radius: var(--radius-md);
  background: #ffffff;
  border: 1px solid rgba(16, 185, 129, 0.15);
  box-shadow: 0 4px 18px rgba(16, 102, 56, 0.05);
  transition: var(--transition);
}

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

.stat-number {
  font-family: var(--font-heading);
  font-size: 2.75rem;
  font-weight: 800;
  color: var(--primary);
  line-height: 1.1;
  margin-bottom: 0.35rem;
}

.stat-label {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--dark-600);
}

/* Section Header Utility */
.section {
  padding: 6rem 0;
  position: relative;
  background: transparent;
}

.section-bg-alt {
  background: rgba(236, 253, 245, 0.4);
  border-top: 1px solid rgba(16, 185, 129, 0.08);
  border-bottom: 1px solid rgba(16, 185, 129, 0.08);
}

.section-header {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 3.5rem;
}

.section-tag {
  display: inline-block;
  background: var(--primary-subtle);
  color: var(--primary-dark);
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 0.35rem 1rem;
  border-radius: var(--radius-full);
  margin-bottom: 0.85rem;
  border: 1px solid rgba(16, 102, 56, 0.15);
}

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

.section-desc {
  font-size: 1.05rem;
  color: var(--gray-500);
  line-height: 1.65;
}

/* ==========================================================================
   ABOUT & LEADERSHIP SECTION
   ========================================================================== */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3.5rem;
  align-items: center;
}

.about-images-cluster {
  position: relative;
}

.about-main-img {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  width: 100%;
  height: 420px;
  object-fit: cover;
}

.about-sub-img {
  position: absolute;
  bottom: -20px;
  right: -20px;
  width: 55%;
  height: 220px;
  object-fit: cover;
  border-radius: var(--radius-md);
  border: 5px solid var(--white);
  box-shadow: var(--shadow-md);
}

.about-experience-badge {
  position: absolute;
  top: 20px;
  left: 20px;
  background: var(--primary-gradient);
  color: var(--white);
  padding: 1rem 1.25rem;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
  text-align: center;
}

.about-experience-badge span {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  font-weight: 800;
  display: block;
  line-height: 1;
}

.about-experience-badge small {
  font-size: 0.72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.about-content h3 {
  font-family: var(--font-heading);
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--dark-900);
  margin-bottom: 1.25rem;
  line-height: 1.3;
}

.about-content p {
  color: var(--dark-600);
  font-size: 1rem;
  margin-bottom: 1.25rem;
  line-height: 1.7;
}

.facility-highlights {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin: 1.75rem 0;
}

.facility-pill {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-weight: 600;
  font-size: 0.88rem;
  color: var(--dark-700);
  background: var(--white);
  padding: 0.75rem 1rem;
  border-radius: var(--radius-sm);
  border: 1px solid var(--gray-200);
}

.facility-pill svg {
  color: var(--accent-mint);
  flex-shrink: 0;
}

/* ==========================================================================
   DOCTORS & MEDICAL EXPERTS
   ========================================================================== */
.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.team-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--gray-200);
  transition: var(--transition);
}

.team-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: var(--accent-mint);
}

.team-image-box {
  position: relative;
  height: 280px;
  background: var(--gray-100);
  overflow: hidden;
}

.team-image-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

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

.team-badge {
  position: absolute;
  top: 15px;
  right: 15px;
  background: var(--primary);
  color: var(--white);
  padding: 4px 12px;
  border-radius: var(--radius-full);
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
}

.team-body {
  padding: 1.5rem;
}

.team-name {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--dark-900);
  margin-bottom: 0.25rem;
}

.team-role {
  color: var(--primary);
  font-weight: 600;
  font-size: 0.88rem;
  margin-bottom: 0.75rem;
}

.team-bio {
  font-size: 0.86rem;
  color: var(--gray-500);
  line-height: 1.55;
  margin-bottom: 1rem;
}

.team-credentials {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
}

.team-tag {
  background: var(--gray-100);
  color: var(--dark-600);
  font-size: 0.74rem;
  padding: 3px 8px;
  border-radius: var(--radius-sm);
  font-weight: 500;
}

/* ==========================================================================
   SERVICES & DIAGNOSTICS GRID
   ========================================================================== */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.service-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2rem;
  border: 1px solid var(--gray-200);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  position: relative;
}

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

.service-icon {
  width: 58px;
  height: 58px;
  border-radius: var(--radius-md);
  background: var(--primary-subtle);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 1.25rem;
  transition: var(--transition);
}

.service-card:hover .service-icon {
  background: var(--primary);
  color: var(--white);
}

.service-title {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--dark-900);
  margin-bottom: 0.75rem;
}

.service-desc {
  font-size: 0.92rem;
  color: var(--gray-500);
  line-height: 1.6;
  margin-bottom: 1.25rem;
}

.service-tests-list {
  list-style: none;
  font-size: 0.84rem;
  color: var(--dark-600);
  border-top: 1px solid var(--gray-100);
  padding-top: 1rem;
}

.service-tests-list li {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  margin-bottom: 0.45rem;
}

.service-tests-list li svg {
  color: var(--accent-mint);
  width: 14px;
  height: 14px;
  flex-shrink: 0;
}

/* ==========================================================================
   ACCREDITATIONS & CERTIFICATES
   ========================================================================== */
.certs-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.cert-card {
  background: var(--white);
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--gray-200);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  cursor: pointer;
}

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

.cert-thumb {
  height: 180px;
  background: var(--gray-100);
  overflow: hidden;
  position: relative;
}

.cert-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

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

.cert-overlay {
  position: absolute;
  inset: 0;
  background: rgba(16, 102, 56, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: var(--transition);
  color: var(--white);
  font-size: 1.5rem;
}

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

.cert-body {
  padding: 1rem;
}

.cert-title {
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--dark-900);
  margin-bottom: 0.25rem;
  line-height: 1.3;
}

.cert-sub {
  font-size: 0.76rem;
  color: var(--gray-500);
}

/* ==========================================================================
   FACILITIES & GALLERY
   ========================================================================== */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

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

.gallery-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

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

.gallery-info {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 1.25rem 1rem 0.75rem;
  background: linear-gradient(to top, rgba(10, 15, 29, 0.85) 0%, transparent 100%);
  color: var(--white);
}

.gallery-info h5 {
  font-size: 0.95rem;
  font-weight: 600;
}

/* ==========================================================================
   CONTACT & LOCATION
   ========================================================================== */
.contact-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 3.5rem;
}

.contact-info-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  border: 1px solid var(--gray-200);
  box-shadow: var(--shadow-sm);
}

.contact-info-card h3 {
  font-family: var(--font-heading);
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--dark-900);
  margin-bottom: 1.5rem;
}

.contact-details-list {
  list-style: none;
  margin-bottom: 2rem;
}

.contact-detail-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.contact-detail-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--primary-subtle);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 1.1rem;
}

.contact-detail-text h5 {
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--dark-900);
  margin-bottom: 0.2rem;
}

.contact-detail-text p, .contact-detail-text a {
  font-size: 0.88rem;
  color: var(--gray-500);
  line-height: 1.5;
}

.contact-detail-text a:hover {
  color: var(--primary);
}

.address-highlight {
  background: #f0fdf4;
  border: 1.5px solid #bbf7d0;
  padding: 1rem 1.25rem;
  border-radius: var(--radius-md);
  margin-bottom: 1.5rem;
}

.address-highlight strong {
  color: var(--primary-dark);
  display: block;
  font-size: 0.95rem;
  margin-bottom: 0.25rem;
}

.map-wrapper {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--gray-200);
  height: 100%;
  min-height: 420px;
}

.map-wrapper iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

/* ==========================================================================
   STANDARD OPERATING FRAMEWORK & OPERATIONAL MANUAL STYLES
   ========================================================================== */
.sop-manual-section {
  background: radial-gradient(circle at 10% 10%, rgba(16, 185, 129, 0.05) 0%, transparent 40%),
              linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
  padding: 5.5rem 0;
  border-top: 1px solid rgba(16, 102, 56, 0.08);
  border-bottom: 1px solid rgba(16, 102, 56, 0.08);
}

.sop-manual-card {
  background: #ffffff;
  border-radius: var(--radius-lg);
  box-shadow: 0 20px 45px -10px rgba(15, 23, 42, 0.1), 0 0 0 1px rgba(16, 102, 56, 0.08);
  padding: 3rem;
  position: relative;
  overflow: hidden;
}

.sop-manual-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 6px;
  height: 100%;
  background: var(--primary-gradient);
}

.sop-manual-grid {
  display: grid;
  grid-template-columns: 1.25fr 0.75fr;
  gap: 3.5rem;
  align-items: center;
}

.sop-badge-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(16, 185, 129, 0.12);
  color: var(--primary-dark);
  padding: 0.35rem 0.95rem;
  border-radius: var(--radius-full);
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-bottom: 0.85rem;
  border: 1px solid rgba(16, 185, 129, 0.25);
}

.sop-title {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 800;
  color: var(--dark-900);
  line-height: 1.25;
  margin-bottom: 1rem;
}

.sop-desc {
  font-size: 1rem;
  color: var(--gray-600);
  line-height: 1.7;
  margin-bottom: 2rem;
}

.sop-highlights-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  margin-bottom: 2.25rem;
}

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

.sop-icon-box {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: rgba(16, 185, 129, 0.1);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  border: 1px solid rgba(16, 185, 129, 0.2);
}

.sop-highlight-item h4 {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--dark-900);
  margin-bottom: 0.25rem;
}

.sop-highlight-item p {
  font-size: 0.82rem;
  color: var(--gray-500);
  line-height: 1.5;
}

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

/* Right Document Showcase Preview Card */
.sop-doc-preview-card {
  background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
  border-radius: 16px;
  padding: 1.75rem;
  box-shadow: 0 25px 50px -12px rgba(15, 23, 42, 0.35);
  border: 1px solid rgba(255, 255, 255, 0.1);
  position: relative;
}

.doc-badge-pill {
  display: inline-block;
  background: rgba(16, 185, 129, 0.2);
  color: #34d399;
  border: 1px solid rgba(16, 185, 129, 0.35);
  padding: 4px 12px;
  border-radius: var(--radius-full);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  margin-bottom: 1.25rem;
}

.doc-header-mini {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  margin-bottom: 1.25rem;
}

.doc-body-mini {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
}

.doc-field-row {
  display: flex;
  justify-content: space-between;
  font-size: 0.82rem;
  color: #94a3b8;
  padding-bottom: 0.4rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.doc-field-row strong {
  color: #f8fafc;
  font-weight: 600;
  text-align: right;
  max-width: 60%;
}

.doc-open-btn {
  display: block;
  text-align: center;
  background: var(--primary);
  color: #ffffff;
  padding: 0.75rem;
  border-radius: 8px;
  font-weight: 700;
  font-size: 0.9rem;
  text-decoration: none;
  transition: all 0.2s ease;
}

.doc-open-btn:hover {
  background: var(--primary-dark);
  color: #ffffff;
  box-shadow: 0 4px 15px rgba(16, 185, 129, 0.4);
}

@media (max-width: 992px) {
  .sop-manual-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  .sop-highlights-grid {
    grid-template-columns: 1fr;
  }
}

/* ==========================================================================
   FOOTER
   ========================================================================== */
.footer {
  background: var(--dark-900);
  color: var(--gray-300);
  padding: 5rem 0 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 0.8fr 0.8fr 1fr;
  gap: 3rem;
  margin-bottom: 3.5rem;
}

.footer-brand p {
  font-size: 0.9rem;
  color: var(--gray-400);
  margin: 1.25rem 0 1.5rem;
  line-height: 1.65;
}

.footer-title {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 1.25rem;
}

.footer-links {
  list-style: none;
}

.footer-links li {
  margin-bottom: 0.65rem;
}

.footer-links a {
  font-size: 0.88rem;
  color: var(--gray-400);
  transition: var(--transition);
}

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

.footer-hours-item {
  display: flex;
  justify-content: space-between;
  font-size: 0.84rem;
  color: var(--gray-400);
  padding: 0.4rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-hours-item span:last-child {
  color: var(--white);
  font-weight: 600;
}

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

.footer-bottom a {
  color: var(--accent-mint);
}

/* Lightbox Modal for Certificates */
.lightbox-modal {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.85);
  z-index: 2000;
  padding: 2rem;
  align-items: center;
  justify-content: center;
}

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

.lightbox-content {
  position: relative;
  max-width: 900px;
  max-height: 90vh;
}

.lightbox-content img {
  max-width: 100%;
  max-height: 85vh;
  border-radius: var(--radius-sm);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.5);
}

.lightbox-close {
  position: absolute;
  top: -40px;
  right: 0;
  background: none;
  border: none;
  color: var(--white);
  font-size: 2rem;
  cursor: pointer;
}

/* ==========================================================================
   REPORT SEARCH WRAPPER & NOT FOUND STYLES
   ========================================================================== */
.report-input-wrapper {
  display: flex;
  align-items: center;
  width: 100%;
  background: #ffffff;
  border: 2px solid #cbd5e1;
  border-radius: 9999px;
  padding: 0.45rem 0.55rem 0.45rem 1.35rem;
  gap: 0.75rem;
  transition: all 0.25s ease;
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.04);
}

.report-input-wrapper:focus-within {
  border-color: #059669;
  box-shadow: 0 0 0 4px rgba(16, 185, 129, 0.18), 0 8px 24px rgba(5, 150, 105, 0.12);
}

.report-input-icon {
  color: #059669;
  flex-shrink: 0;
}

.report-input-wrapper input {
  flex: 1;
  min-width: 0;
  width: 100%;
  border: none;
  background: transparent;
  font-size: 1.05rem;
  color: #0f172a;
  font-weight: 700;
  outline: none;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  padding: 0.5rem 0.25rem;
}

.report-input-wrapper input::placeholder {
  text-transform: none;
  font-weight: 400;
  letter-spacing: normal;
  color: #94a3b8;
  font-size: 0.95rem;
}

.report-input-wrapper .btn-primary,
.report-input-wrapper button[type="submit"] {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  background: linear-gradient(135deg, #059669 0%, #047857 100%);
  color: #ffffff;
  padding: 0.8rem 1.85rem;
  border-radius: 9999px;
  font-size: 0.95rem;
  font-weight: 700;
  border: none;
  cursor: pointer;
  box-shadow: 0 4px 14px rgba(5, 150, 105, 0.35);
  transition: all 0.2s ease;
  white-space: nowrap;
  flex-shrink: 0;
}

.report-input-wrapper .btn-primary:hover,
.report-input-wrapper button[type="submit"]:hover {
  background: linear-gradient(135deg, #047857 0%, #064e3b 100%);
  box-shadow: 0 6px 20px rgba(5, 150, 105, 0.45);
  transform: translateY(-1px);
}

.report-not-found {
  background: #fff5f5;
  border: 1px solid #fecaca;
  border-radius: 12px;
  padding: 1.5rem;
  text-align: center;
  margin-top: 1.5rem;
}

.not-found-icon {
  margin-bottom: 0.5rem;
}

.report-not-found h4 {
  font-size: 1.1rem;
  color: #b91c1c;
  margin-bottom: 0.35rem;
  font-weight: 700;
}

.report-not-found p {
  color: #475569;
  font-size: 0.92rem;
}

/* ==========================================================================
   INSTANT PDF MEDICAL REPORT MODAL POPUP
   ========================================================================== */
.pdf-modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(15, 23, 42, 0.85);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
}

.pdf-modal-container {
  background: #ffffff;
  border-radius: 16px;
  width: 100%;
  max-width: 1000px;
  height: 90vh;
  display: flex;
  flex-direction: column;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.35);
  border: 1px solid rgba(255, 255, 255, 0.2);
  overflow: hidden;
  animation: modalScaleUp 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}

@keyframes modalScaleUp {
  0% { opacity: 0; transform: scale(0.96); }
  100% { opacity: 1; transform: scale(1); }
}

.pdf-modal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 1.5rem;
  background: #f8fafc;
  border-bottom: 1px solid #e2e8f0;
  flex-wrap: wrap;
  gap: 1rem;
}

.pdf-modal-title-box {
  display: flex;
  align-items: center;
  gap: 0.85rem;
}

.pdf-header-logo {
  height: 38px;
  width: auto;
  background: #ffffff;
  padding: 3px;
  border-radius: 6px;
  border: 1px solid #e2e8f0;
}

.pdf-modal-title-box h3 {
  font-size: 1.05rem;
  font-weight: 800;
  color: #064e3b;
  margin: 0;
}

.pdf-modal-title-box p {
  font-size: 0.78rem;
  color: #64748b;
  margin: 0;
}

.passport-pill {
  display: inline-block;
  background: #d1fae5;
  color: #065f46;
  font-weight: 700;
  padding: 2px 8px;
  border-radius: 4px;
}

.pdf-modal-actions {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

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

.pdf-modal-close:hover {
  background: #fee2e2;
  color: #dc2626;
}

.pdf-modal-body {
  flex: 1;
  background: #e2e8f0;
  position: relative;
  overflow: hidden;
}

.pdf-iframe {
  width: 100%;
  height: 100%;
  border: none;
  background: #525659;
}

/* ==========================================================================
   STAFF PORTAL & DIRECT PDF UPLOAD MODAL
   ========================================================================== */
.staff-modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(15, 23, 42, 0.85);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  z-index: 9998;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
}

.staff-modal-card {
  background: #ffffff;
  border-radius: 16px;
  width: 100%;
  max-width: 440px;
  padding: 2rem;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.3);
  position: relative;
}

.staff-modal-card-lg {
  max-width: 780px;
  max-height: 90vh;
  overflow-y: auto;
}

.staff-modal-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 1.25rem;
  padding-bottom: 0.85rem;
  border-bottom: 1px solid #e2e8f0;
}

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

.staff-modal-close:hover {
  background: #fee2e2;
  color: #dc2626;
}

.staff-modal-icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #ecfdf5;
  color: #059669;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.25rem;
}

.staff-modal-title {
  font-size: 1.25rem;
  font-weight: 800;
  color: #0f172a;
  margin-bottom: 0.25rem;
}

.staff-modal-sub {
  font-size: 0.85rem;
  color: #64748b;
  margin-bottom: 1.25rem;
}

.staff-pin-input {
  width: 100%;
  text-align: center;
  font-size: 1.5rem;
  letter-spacing: 0.5em;
  padding: 0.75rem;
  border: 2px solid #cbd5e1;
  border-radius: 10px;
  font-weight: 700;
  color: #0f172a;
  outline: none;
}

.staff-pin-input:focus {
  border-color: #059669;
  box-shadow: 0 0 0 4px rgba(16, 185, 129, 0.15);
}

.staff-error-msg {
  color: #dc2626;
  font-size: 0.82rem;
  text-align: center;
  margin-top: 0.5rem;
}

.staff-success-msg {
  background: #d1fae5;
  color: #065f46;
  font-weight: 700;
  font-size: 0.85rem;
  padding: 0.65rem 1rem;
  border-radius: 8px;
  margin-top: 0.85rem;
  border: 1px solid #a7f3d0;
}

.btn-block {
  width: 100%;
  margin-top: 1rem;
}

.upload-form-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}

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

.form-group label {
  font-size: 0.82rem;
  font-weight: 700;
  color: #334155;
}

.form-input {
  padding: 0.65rem 0.85rem;
  border: 1.5px solid #cbd5e1;
  border-radius: 8px;
  font-size: 0.9rem;
  outline: none;
}

.form-input:focus {
  border-color: #059669;
}

.form-input-file {
  padding: 0.5rem 0;
  font-size: 0.88rem;
}

.records-table-container {
  overflow-x: auto;
  border: 1px solid #e2e8f0;
  border-radius: 8px;
}

.staff-records-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.86rem;
}

.staff-records-table th {
  background: #f8fafc;
  padding: 0.65rem 0.85rem;
  text-align: left;
  font-weight: 700;
  color: #475569;
  border-bottom: 1px solid #e2e8f0;
}

.staff-records-table td {
  padding: 0.65rem 0.85rem;
  border-bottom: 1px solid #f1f5f9;
  color: #334155;
}

.btn-xs {
  padding: 0.25rem 0.6rem;
  font-size: 0.75rem;
  border-radius: 4px;
}

.btn-danger {
  background: #ef4444;
  color: #ffffff;
}

.btn-danger:hover {
  background: #dc2626;
}

.status-pill {
  display: inline-block;
  padding: 2px 8px;
  border-radius: 9999px;
  font-size: 0.72rem;
  font-weight: 700;
}

.status-fit {
  background: #d1fae5;
  color: #065f46;
}

.status-unfit {
  background: #fee2e2;
  color: #991b1b;
}

/* Responsive Breakpoints */
@media (max-width: 1024px) {
  .hero-grid, .about-grid, .contact-grid {
    grid-template-columns: 1fr;
  }
  .hero-visual {
    order: -1;
  }
  .stats-grid, .services-grid, .team-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .certs-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .badge-top-left {
    top: -10px;
    left: 0;
  }
  .badge-bottom-right {
    bottom: -10px;
    right: 0;
  }
}

@media (max-width: 768px) {
  .topbar {
    display: none;
  }
  .nav-menu {
    position: fixed;
    top: var(--header-height);
    left: 0;
    right: 0;
    background: var(--white);
    flex-direction: column;
    padding: 2rem;
    box-shadow: var(--shadow-lg);
    display: none;
  }
  .nav-menu.active {
    display: flex;
  }
  .mobile-toggle {
    display: block;
  }
  .hero-title {
    font-size: 2.25rem;
  }
  .stats-grid, .services-grid, .team-grid, .certs-grid, .gallery-grid, .footer-grid {
    grid-template-columns: 1fr;
  }
  .hero-search-input-wrap {
    flex-direction: column;
    align-items: stretch;
    border-radius: 14px;
    padding: 0.75rem;
  }
  .btn-check-status {
    width: 100%;
    justify-content: center;
  }
  .upload-form-grid {
    grid-template-columns: 1fr;
  }
}
