/* ================================================================
   BHAROSA HEALTH EXCELLENCE AWARDS 2026
   Ultra-Premium Landing Page Styles
   ================================================================ */

/* ========================================
   CUSTOM PROPERTIES
======================================== */
:root {
  --navy: #172A3F;
  --navy-deep: #0e1e2f;
  --navy-light: #1e3a56;
  --navy-mid: #243b55;
  --cream: #FFFAF0;
  --cream-dark: #f5f0e6;
  --gold: #FFC933;
  --gold-light: #FFD65A;
  --gold-dark: #e6b52e;
  --gold-deep: #DAA520;
  --gold-gradient: linear-gradient(135deg, #FFC933 0%, #FFD700 25%, #DAA520 50%, #FFC933 75%, #FFD700 100%);
  --gold-gradient-text: linear-gradient(90deg, #FFC933, #FFD700, #DAA520, #FFC933);
  --gold-glow: rgba(255, 201, 51, 0.15);
  --gold-glow-strong: rgba(255, 201, 51, 0.35);
  --white: #FFFFFF;
  --text-light: rgba(255, 255, 255, 0.85);
  --text-muted: rgba(255, 255, 255, 0.55);
  --header-height: 90px;
  --container-max: 1200px;
  --transition: 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --transition-bounce: 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
  --shadow-soft: 0 4px 30px rgba(0, 0, 0, 0.08);
  --shadow-medium: 0 8px 40px rgba(0, 0, 0, 0.12);
  --shadow-heavy: 0 20px 60px rgba(0, 0, 0, 0.2);
  --shadow-gold: 0 8px 30px rgba(255, 201, 51, 0.25);
  --radius: 16px;
  --radius-sm: 8px;
  --radius-pill: 50px;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--header-height);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  background: var(--cream);
  color: var(--navy);
  line-height: 1.7;
  font-size: 16px;
  overflow-x: hidden;
}

body.loading {
  overflow: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Playfair Display', Georgia, serif;
  line-height: 1.2;
}

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

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

ul { list-style: none; }

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

.section-padding {
  padding: 100px 0;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* ========================================
   PAGE LOADER
======================================== */
.page-loader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--navy-deep);
  z-index: 10000;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  transition: opacity 0.6s ease, visibility 0.6s ease;
}

.page-loader.loaded {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.loader-logo {
  height: 60px;
  margin-bottom: 30px;
  opacity: 0;
  animation: loaderFadeIn 0.6s ease 0.2s forwards;
}

.loader-bar-track {
  width: 200px;
  height: 3px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 3px;
  overflow: hidden;
  opacity: 0;
  animation: loaderFadeIn 0.6s ease 0.4s forwards;
}

.loader-bar {
  height: 100%;
  width: 0;
  background: var(--gold-gradient);
  border-radius: 3px;
  animation: loaderProgress 1.5s ease 0.6s forwards;
}

@keyframes loaderFadeIn {
  to { opacity: 1; }
}

@keyframes loaderProgress {
  to { width: 100%; }
}

/* ========================================
   KEYFRAME ANIMATIONS
======================================== */
@keyframes shimmer {
  0% { background-position: -200% center; }
  100% { background-position: 200% center; }
}

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

@keyframes floatSlow {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  33% { transform: translateY(-8px) rotate(1deg); }
  66% { transform: translateY(-4px) rotate(-1deg); }
}

@keyframes pulse-glow {
  0%, 100% { box-shadow: 0 0 20px rgba(255, 201, 51, 0.15); }
  50% { box-shadow: 0 0 40px rgba(255, 201, 51, 0.3); }
}

@keyframes rotate-border {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(50px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeInDown {
  from { opacity: 0; transform: translateY(-30px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeInLeft {
  from { opacity: 0; transform: translateX(-40px); }
  to { opacity: 1; transform: translateX(0); }
}

@keyframes fadeInRight {
  from { opacity: 0; transform: translateX(40px); }
  to { opacity: 1; transform: translateX(0); }
}

@keyframes scaleIn {
  from { opacity: 0; transform: scale(0.85); }
  to { opacity: 1; transform: scale(1); }
}

@keyframes heroFloat {
  0%, 100% { transform: translate(0, 0) scale(1); }
  25% { transform: translate(-15px, 10px) scale(1.02); }
  50% { transform: translate(10px, -15px) scale(1); }
  75% { transform: translate(-10px, -10px) scale(1.01); }
}

@keyframes scrollBounce {
  0%, 100% { transform: rotate(45deg) translateY(0); opacity: 0.4; }
  50% { transform: rotate(45deg) translateY(10px); opacity: 1; }
}

@keyframes teaserPulse {
  0%, 100% { transform: translate(-50%, -50%) scale(1); opacity: 0.3; }
  50% { transform: translate(-50%, -50%) scale(1.2); opacity: 0.7; }
}

@keyframes starTwinkle {
  0%, 100% { opacity: 0.3; transform: scale(1); }
  50% { opacity: 1; transform: scale(1.3); }
}

@keyframes goldLineExpand {
  from { width: 0; }
  to { width: 80px; }
}

@keyframes trophyGlow {
  0%, 100% { filter: drop-shadow(0 0 15px rgba(255, 201, 51, 0.2)); }
  50% { filter: drop-shadow(0 0 35px rgba(255, 201, 51, 0.45)); }
}

/* ========================================
   SCROLL ANIMATIONS
======================================== */
.reveal {
  opacity: 0;
  transform: translateY(50px);
  transition: opacity 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94),
              transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-left {
  opacity: 0;
  transform: translateX(-50px);
  transition: opacity 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94),
              transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.reveal-left.visible {
  opacity: 1;
  transform: translateX(0);
}

.reveal-right {
  opacity: 0;
  transform: translateX(50px);
  transition: opacity 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94),
              transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.reveal-right.visible {
  opacity: 1;
  transform: translateX(0);
}

.reveal-scale {
  opacity: 0;
  transform: scale(0.8);
  transition: opacity 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94),
              transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.reveal-scale.visible {
  opacity: 1;
  transform: scale(1);
}

/* Stagger delays */
.delay-1 { transition-delay: 0.1s !important; }
.delay-2 { transition-delay: 0.2s !important; }
.delay-3 { transition-delay: 0.3s !important; }
.delay-4 { transition-delay: 0.4s !important; }
.delay-5 { transition-delay: 0.5s !important; }
.delay-6 { transition-delay: 0.6s !important; }

/* ========================================
   BUTTONS
======================================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 34px;
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 0.95rem;
  border: none;
  border-radius: var(--radius-pill);
  cursor: pointer;
  letter-spacing: 0.4px;
  white-space: nowrap;
  position: relative;
  overflow: hidden;
  transition: all var(--transition);
  z-index: 1;
}

.btn-gold {
  background: var(--gold-gradient);
  background-size: 200% 200%;
  color: var(--navy);
  box-shadow: 0 4px 20px rgba(255, 201, 51, 0.3);
}

.btn-gold::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
  transition: left 0.6s ease;
  z-index: -1;
}

.btn-gold:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 35px rgba(255, 201, 51, 0.5);
}

.btn-gold:hover::before {
  left: 100%;
}

.btn-gold:active {
  transform: translateY(-1px);
}

.btn-outline {
  background: transparent;
  color: var(--gold);
  border: 2px solid var(--gold);
  box-shadow: none;
}

.btn-outline:hover {
  background: var(--gold);
  color: var(--navy);
  transform: translateY(-3px);
  box-shadow: var(--shadow-gold);
}

.btn-lg {
  padding: 18px 48px;
  font-size: 1.05rem;
  letter-spacing: 0.5px;
}

/* ========================================
   HEADER / NAVBAR
======================================== */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: var(--header-height);
  background: rgba(23, 42, 63, 0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  z-index: 1000;
  transition: all var(--transition);
  border-bottom: 1px solid rgba(255, 201, 51, 0);
}

.header.scrolled {
  background: rgba(14, 30, 47, 0.98);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.2);
  border-bottom-color: rgba(255, 201, 51, 0.1);
  height: 70px;
}

.header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}

/* Logo */
.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  z-index: 1001;
  transition: transform var(--transition);
}

.logo:hover {
  transform: scale(1.03);
}

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

.header.scrolled .logo img {
  height: 58px;
}

/* Nav */
.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
}

.nav-links a {
  color: var(--text-light);
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0.5px;
  position: relative;
  padding: 6px 0;
  transition: color var(--transition);
}

.nav-links a:not(.btn)::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 2px;
  background: var(--gold-gradient);
  transition: all var(--transition);
  transform: translateX(-50%);
  border-radius: 2px;
}

.nav-links a:not(.btn):hover::after,
.nav-links a:not(.btn).active::after {
  width: 100%;
}

.nav-links a:not(.btn):hover {
  color: var(--gold);
}

.nav-links a:not(.btn).active {
  color: var(--gold);
}

.nav-cta {
  padding: 10px 28px !important;
  font-size: 0.88rem !important;
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
  width: 30px;
  height: 30px;
  cursor: pointer;
  z-index: 1001;
  background: none;
  border: none;
  padding: 0;
}

.hamburger span {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  transform-origin: center;
}

.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(6px, 6px);
  background: var(--gold);
}
.hamburger.active span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}
.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(6px, -6px);
  background: var(--gold);
}

/* Mobile Nav */
@media (max-width: 768px) {
  .hamburger {
    display: flex;
  }

  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 85%;
    max-width: 360px;
    height: 100vh;
    height: 100dvh;
    background: var(--navy-deep);
    flex-direction: column;
    justify-content: center;
    gap: 24px;
    padding: 60px 40px;
    transition: right 0.5s cubic-bezier(0.77, 0, 0.175, 1);
    box-shadow: -20px 0 60px rgba(0, 0, 0, 0.5);
    border-left: 1px solid rgba(255, 201, 51, 0.1);
  }

  .nav-links.active {
    right: 0;
  }

  .nav-links a {
    font-size: 1.2rem;
    font-weight: 500;
    letter-spacing: 1px;
  }

  .nav-links .btn {
    margin-top: 10px;
    width: 100%;
    text-align: center;
  }
}

/* Nav overlay */
.nav-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(4px);
  z-index: 999;
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s ease;
}

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

/* ========================================
   HERO SECTION
======================================== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--navy-deep);
  overflow: hidden;
  padding: calc(var(--header-height) + 40px) 20px 80px;
}

/* Particle canvas */
.hero-particles {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  pointer-events: none;
}

/* Ambient glow layers */
.hero::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background:
    radial-gradient(ellipse at 50% 30%, rgba(255, 201, 51, 0.06) 0%, transparent 50%),
    radial-gradient(ellipse at 20% 80%, rgba(255, 201, 51, 0.04) 0%, transparent 40%),
    radial-gradient(ellipse at 80% 20%, rgba(30, 58, 86, 0.5) 0%, transparent 50%);
  z-index: 0;
  animation: heroFloat 25s ease-in-out infinite;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 200px;
  background: linear-gradient(to top, var(--navy-deep), transparent);
  z-index: 1;
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 880px;
}

.hero-badge {
  display: inline-block;
  padding: 8px 24px;
  border: 1px solid rgba(255, 201, 51, 0.3);
  border-radius: var(--radius-pill);
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 32px;
  backdrop-filter: blur(10px);
  background: rgba(255, 201, 51, 0.05);
}

.hero h1 {
  font-size: 2.8rem;
  font-weight: 800;
  margin-bottom: 24px;
  line-height: 1.15;
  /* Gold shimmer text */
  background: var(--gold-gradient-text);
  background-size: 300% 100%;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: shimmer 4s ease-in-out infinite;
}

.hero-subtitle {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: 1.25rem;
  color: var(--white);
  margin-bottom: 30px;
  letter-spacing: 0.5px;
  opacity: 0.95;
}

.hero-text {
  color: var(--text-light);
  font-size: 1.05rem;
  max-width: 700px;
  margin: 0 auto 44px;
  line-height: 1.85;
}

.hero .btn-lg {
  box-shadow: 0 6px 30px rgba(255, 201, 51, 0.35);
}

/* Scroll indicator */
.scroll-indicator {
  position: absolute;
  bottom: 35px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.scroll-indicator span {
  color: var(--text-muted);
  font-size: 0.65rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  font-weight: 500;
}

.scroll-indicator .chevron {
  width: 20px;
  height: 20px;
  border-right: 1.5px solid var(--gold);
  border-bottom: 1.5px solid var(--gold);
  transform: rotate(45deg);
  animation: scrollBounce 2.5s ease-in-out infinite;
  opacity: 0.6;
}

/* ========================================
   SECTION WAVE DIVIDERS
======================================== */
.wave-divider {
  position: relative;
  width: 100%;
  overflow: hidden;
  line-height: 0;
}

.wave-divider svg {
  display: block;
  width: 100%;
  height: auto;
}

.wave-divider.navy-to-cream svg { fill: var(--cream); }
.wave-divider.cream-to-navy svg { fill: var(--navy-deep); }
.wave-divider.navy-bg { background: var(--navy-deep); }
.wave-divider.cream-bg { background: var(--cream); }

/* ========================================
   TROPHY SHOWCASE SECTION
======================================== */
.trophy-showcase {
  background: var(--navy-deep);
  padding: 80px 0 40px;
  position: relative;
  overflow: hidden;
}

.trophy-showcase::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 201, 51, 0.06) 0%, transparent 70%);
  pointer-events: none;
}

.trophy-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
  text-align: center;
}

.trophy-image-container {
  position: relative;
  width: 280px;
  perspective: 1000px;
}

.trophy-glow {
  position: absolute;
  bottom: -20px;
  left: 50%;
  transform: translateX(-50%);
  width: 200px;
  height: 40px;
  background: radial-gradient(ellipse, rgba(255, 201, 51, 0.3) 0%, transparent 70%);
  filter: blur(15px);
  animation: pulse-glow 3s ease-in-out infinite;
}

.trophy-image-container img {
  width: 100%;
  height: auto;
  animation: floatSlow 6s ease-in-out infinite, trophyGlow 4s ease-in-out infinite;
  transition: transform 0.3s ease;
  position: relative;
  z-index: 1;
}

.trophy-text {
  max-width: 600px;
}

.trophy-text h2 {
  font-size: 1.8rem;
  margin-bottom: 14px;
  background: var(--gold-gradient-text);
  background-size: 300% 100%;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: shimmer 5s ease-in-out infinite;
}

.trophy-text p {
  color: var(--text-light);
  font-size: 1rem;
  line-height: 1.75;
  font-style: italic;
}

.trophy-text .gold-line {
  display: block;
  width: 60px;
  height: 2px;
  background: var(--gold-gradient);
  margin: 20px auto 0;
  border-radius: 2px;
}

@media (min-width: 768px) {
  .trophy-wrapper {
    flex-direction: row;
    text-align: left;
    gap: 60px;
    justify-content: center;
  }

  .trophy-image-container {
    width: 320px;
    flex-shrink: 0;
  }

  .trophy-text {
    max-width: 480px;
  }

  .trophy-text .gold-line {
    margin: 20px 0 0;
  }

  .trophy-text h2 {
    font-size: 2.2rem;
  }
}

/* ========================================
   COUNTERS SECTION
======================================== */
.counters {
  background: var(--navy-deep);
  padding: 70px 0;
  position: relative;
}

.counters::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  opacity: 0.3;
}

.counters::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  opacity: 0.3;
}

.counters .container {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

.counter-card {
  flex: 1;
  min-width: 180px;
  max-width: 300px;
  text-align: center;
  padding: 35px 20px;
  position: relative;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 201, 51, 0.08);
  transition: all var(--transition);
}

.counter-card:hover {
  background: rgba(255, 201, 51, 0.05);
  border-color: rgba(255, 201, 51, 0.2);
  transform: translateY(-4px);
}

.counter-number {
  font-family: 'Playfair Display', serif;
  font-size: 3.4rem;
  font-weight: 800;
  line-height: 1;
  margin-bottom: 10px;
  background: var(--gold-gradient-text);
  background-size: 200% 100%;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.counter-label {
  color: var(--text-light);
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 1.5px;
  text-transform: uppercase;
}

@media (max-width: 600px) {
  .counter-card {
    min-width: 130px;
    padding: 24px 14px;
  }
  .counter-number {
    font-size: 2.5rem;
  }
  .counter-label {
    font-size: 0.75rem;
  }
}

/* ========================================
   SECTION HEADING
======================================== */
.section-heading {
  text-align: center;
  margin-bottom: 60px;
}

.section-heading h2 {
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 16px;
  letter-spacing: -0.3px;
}

.section-heading .heading-line {
  width: 0;
  height: 3px;
  background: var(--gold-gradient);
  margin: 0 auto;
  border-radius: 2px;
  transition: width 1s ease;
}

.section-heading .heading-line.visible {
  animation: goldLineExpand 1s ease forwards;
}

/* ========================================
   VISION SECTION
======================================== */
.vision {
  background: var(--cream);
  position: relative;
}

.vision-blocks {
  display: flex;
  flex-direction: column;
  gap: 28px;
  max-width: 840px;
  margin: 0 auto;
}

.vision-block {
  padding: 32px 34px;
  border-left: 4px solid transparent;
  border-image: var(--gold-gradient) 1;
  background: var(--white);
  border-radius: 0 var(--radius) var(--radius) 0;
  box-shadow: var(--shadow-soft);
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}

.vision-block::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 100%;
  background: var(--gold-glow);
  transition: width 0.5s ease;
  z-index: 0;
}

.vision-block:hover::before {
  width: 100%;
}

.vision-block:hover {
  transform: translateX(8px);
  box-shadow: var(--shadow-medium);
}

.vision-block p {
  font-size: 1.08rem;
  line-height: 1.85;
  color: var(--navy);
  position: relative;
  z-index: 1;
}

.vision-block .highlight {
  font-weight: 700;
  background: linear-gradient(to top, rgba(255, 201, 51, 0.3) 35%, transparent 35%);
  padding: 0 3px;
}

.vision-block em {
  font-family: 'Playfair Display', serif;
  font-size: 1.12rem;
}

/* ========================================
   SELECTION CRITERIA
======================================== */
.criteria-section {
  margin-top: 80px;
}

.criteria-heading {
  text-align: center;
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 44px;
  position: relative;
}

/* Hospital name links */
.hospital-link {
  color: inherit;
  border-bottom: 2px solid var(--gold);
  transition: color var(--transition), border-color var(--transition);
}

.hospital-link:hover {
  color: var(--gold-dark);
  border-color: var(--gold-dark);
}

.criteria-heading::after {
  content: '';
  display: block;
  width: 50px;
  height: 3px;
  background: var(--gold-gradient);
  margin: 14px auto 0;
  border-radius: 2px;
}

.criteria-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  max-width: 960px;
  margin: 0 auto;
}

.criteria-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 36px 28px;
  text-align: center;
  box-shadow: var(--shadow-soft);
  border: 1px solid rgba(255, 201, 51, 0.08);
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}

.criteria-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: var(--gold-gradient);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.5s ease;
}

.criteria-card:hover::before {
  transform: scaleX(1);
}

.criteria-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 40px rgba(23, 42, 63, 0.12), 0 4px 20px rgba(255, 201, 51, 0.1);
}

.criteria-icon-wrap {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(255, 201, 51, 0.1), rgba(255, 201, 51, 0.05));
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 18px;
  border: 2px solid rgba(255, 201, 51, 0.2);
  transition: all var(--transition);
}

.criteria-card:hover .criteria-icon-wrap {
  background: linear-gradient(135deg, rgba(255, 201, 51, 0.2), rgba(255, 201, 51, 0.1));
  border-color: var(--gold);
  transform: scale(1.1) rotate(5deg);
}

.criteria-icon {
  font-size: 1.8rem;
}

.criteria-card h4 {
  font-family: 'Playfair Display', serif;
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 10px;
}

.criteria-card p {
  font-size: 0.95rem;
  color: var(--navy);
  opacity: 0.8;
  line-height: 1.7;
}

@media (min-width: 640px) {
  .criteria-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
  }
}

@media (min-width: 768px) {
  .criteria-heading {
    font-size: 2rem;
  }
}

/* ========================================
   ABOUT SECTION
======================================== */
.about {
  background: var(--cream-dark);
  position: relative;
  overflow: hidden;
}

.about::before {
  content: '';
  position: absolute;
  top: -100px;
  right: -100px;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 201, 51, 0.06) 0%, transparent 70%);
  pointer-events: none;
}

.about-wrapper {
  display: grid;
  grid-template-columns: 1fr;
  gap: 50px;
  align-items: start;
}

.about-text .sub-heading {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  color: var(--gold-dark);
  font-size: 1.15rem;
  margin-bottom: 24px;
  position: relative;
  display: inline-block;
}

.about-text .sub-heading::after {
  content: '';
  position: absolute;
  bottom: -6px;
  left: 0;
  width: 40px;
  height: 2px;
  background: var(--gold);
  border-radius: 2px;
}

.about-text p {
  font-size: 1.08rem;
  line-height: 1.9;
  color: var(--navy);
}

.about-text .highlight-quote {
  font-weight: 700;
  color: var(--gold-dark);
  font-style: italic;
}

/* Icon Grid */
.icon-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.icon-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 32px 20px;
  text-align: center;
  box-shadow: var(--shadow-soft);
  border: 1px solid rgba(255, 201, 51, 0.08);
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
  cursor: default;
}

/* Animated gradient border on hover */
.icon-card::before {
  content: '';
  position: absolute;
  top: -2px;
  left: -2px;
  right: -2px;
  bottom: -2px;
  background: conic-gradient(from 0deg, var(--gold), var(--gold-deep), var(--gold-light), var(--gold), var(--gold-deep), var(--gold));
  border-radius: calc(var(--radius) + 2px);
  z-index: -1;
  opacity: 0;
  transition: opacity 0.5s ease;
  animation: rotate-border 3s linear infinite;
}

.icon-card::after {
  content: '';
  position: absolute;
  top: 1px;
  left: 1px;
  right: 1px;
  bottom: 1px;
  background: var(--white);
  border-radius: calc(var(--radius) - 1px);
  z-index: -1;
}

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

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

.icon-card .icon {
  font-size: 2.8rem;
  margin-bottom: 14px;
  display: block;
  transition: transform var(--transition-bounce);
}

.icon-card:hover .icon {
  transform: scale(1.15) rotate(5deg);
}

.icon-card h4 {
  font-family: 'Inter', sans-serif;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--navy);
  letter-spacing: 0.3px;
}

@media (min-width: 768px) {
  .about-wrapper {
    grid-template-columns: 1.3fr 1fr;
    gap: 70px;
    align-items: center;
  }
}

/* ========================================
   EVENT TEASER SECTION
======================================== */
.teaser {
  background: var(--navy);
  position: relative;
  overflow: hidden;
  text-align: center;
}

/* Decorative rings */
.teaser-ring {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  border: 1px solid rgba(255, 201, 51, 0.06);
  pointer-events: none;
}

.teaser-ring:nth-child(1) {
  width: 300px;
  height: 300px;
  animation: teaserPulse 5s ease-in-out infinite;
}

.teaser-ring:nth-child(2) {
  width: 450px;
  height: 450px;
  animation: teaserPulse 5s ease-in-out infinite 1s;
}

.teaser-ring:nth-child(3) {
  width: 600px;
  height: 600px;
  animation: teaserPulse 5s ease-in-out infinite 2s;
}

/* Decorative stars */
.teaser-star {
  position: absolute;
  width: 6px;
  height: 6px;
  background: var(--gold);
  border-radius: 50%;
  animation: starTwinkle 3s ease-in-out infinite;
  opacity: 0.3;
}

.teaser-star:nth-child(4) { top: 20%; left: 15%; animation-delay: 0s; }
.teaser-star:nth-child(5) { top: 30%; right: 20%; animation-delay: 0.8s; }
.teaser-star:nth-child(6) { bottom: 25%; left: 25%; animation-delay: 1.6s; }
.teaser-star:nth-child(7) { top: 40%; right: 10%; animation-delay: 2s; width: 4px; height: 4px; }
.teaser-star:nth-child(8) { bottom: 35%; right: 30%; animation-delay: 0.4s; width: 5px; height: 5px; }

.teaser-content {
  position: relative;
  z-index: 1;
  max-width: 700px;
  margin: 0 auto;
}

.teaser-icon {
  font-size: 3rem;
  margin-bottom: 20px;
  display: inline-block;
  animation: float 3s ease-in-out infinite;
}

.teaser h2 {
  font-size: 2.2rem;
  margin-bottom: 22px;
  background: var(--gold-gradient-text);
  background-size: 300% 100%;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: shimmer 4s ease-in-out infinite;
}

.teaser p {
  color: var(--text-light);
  font-size: 1.1rem;
  line-height: 1.85;
}

.teaser .gold-line {
  display: block;
  width: 60px;
  height: 2px;
  background: var(--gold-gradient);
  margin: 28px auto 0;
  border-radius: 2px;
}

/* ========================================
   FOOTER
======================================== */
.footer {
  background: var(--navy-deep);
  color: var(--white);
  position: relative;
}

.footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: var(--gold-gradient);
}

.footer-top {
  padding: 70px 0 50px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
}

/* Footer Brand */
.footer-brand .footer-logo {
  height: 72px;
  width: auto;
  margin-bottom: 18px;
  transition: transform var(--transition);
}

.footer-brand .footer-logo:hover {
  transform: scale(1.05);
}

.footer-brand p {
  color: var(--text-light);
  font-size: 0.93rem;
  line-height: 1.75;
  max-width: 300px;
}

/* Footer Sections */
.footer-section h3 {
  font-size: 1.1rem;
  color: var(--gold);
  margin-bottom: 18px;
  font-weight: 700;
  position: relative;
  padding-bottom: 10px;
}

.footer-section h3::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 30px;
  height: 2px;
  background: var(--gold);
  border-radius: 2px;
  transition: width var(--transition);
}

.footer-section:hover h3::after {
  width: 50px;
}

/* Address */
.footer-address {
  display: block;
  color: var(--text-light);
  font-size: 0.93rem;
  line-height: 1.75;
  transition: all var(--transition);
  padding: 14px 18px;
  border-radius: var(--radius-sm);
  border: 1px solid transparent;
}

.footer-address:hover {
  color: var(--white);
  border-color: rgba(255, 201, 51, 0.15);
  background: rgba(255, 201, 51, 0.04);
}

.footer-address .map-label {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 10px;
  font-size: 0.8rem;
  color: var(--gold);
  font-weight: 600;
  letter-spacing: 0.5px;
  transition: gap var(--transition);
}

.footer-address:hover .map-label {
  gap: 10px;
}

.map-label .arrow {
  transition: transform var(--transition);
  display: inline-block;
}

.footer-address:hover .map-label .arrow {
  transform: translateX(4px);
}

/* Contact Grid */
.contact-grid {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--text-light);
  font-size: 0.93rem;
  transition: all var(--transition);
  padding: 10px 14px;
  border-radius: var(--radius-sm);
  border: 1px solid transparent;
}

.contact-item:hover {
  color: var(--white);
  border-color: rgba(255, 201, 51, 0.15);
  background: rgba(255, 201, 51, 0.04);
  transform: translateX(4px);
}

.contact-item .contact-icon {
  font-size: 1rem;
  width: 22px;
  text-align: center;
  flex-shrink: 0;
}

.contact-item .contact-label {
  font-weight: 600;
  color: var(--white);
  min-width: 95px;
  flex-shrink: 0;
}

/* Footer Bottom */
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 22px 0;
  text-align: center;
}

.footer-bottom p {
  font-size: 0.82rem;
  color: var(--text-muted);
  letter-spacing: 0.3px;
}

@media (min-width: 768px) {
  .footer-grid {
    grid-template-columns: 1.1fr 1fr 1.3fr;
    gap: 50px;
  }
}

/* ========================================
   RESPONSIVE - TABLET
======================================== */
@media (min-width: 768px) {
  .hero h1 {
    font-size: 3.4rem;
  }

  .hero-subtitle {
    font-size: 1.4rem;
  }

  .section-heading h2 {
    font-size: 2.6rem;
  }

  .section-padding {
    padding: 120px 0;
  }

  .teaser h2 {
    font-size: 2.5rem;
  }
}

/* ========================================
   RESPONSIVE - DESKTOP
======================================== */
@media (min-width: 1024px) {
  .hero h1 {
    font-size: 4rem;
  }

  .hero-text {
    font-size: 1.12rem;
  }

  .container {
    padding: 0 40px;
  }

  .section-heading h2 {
    font-size: 2.8rem;
  }
}

@media (min-width: 1200px) {
  .hero h1 {
    font-size: 4.5rem;
  }
}

/* ========================================
   REDUCED MOTION
======================================== */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  
  html { scroll-behavior: auto; }

  .reveal, .reveal-left, .reveal-right, .reveal-scale {
    opacity: 1;
    transform: none;
  }
}
