/* ==========================================================================
   NCLEX PATHWAY - BRAND DESIGN SYSTEM
   Ultra-Premium Luxury Aesthetic (Healthcare & Global Relocation Academy)
   ========================================================================== */

/* 1. Imports & Core Variables */
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;0,700;1,400&family=Plus+Jakarta+Sans:wght@300;400;500;600;700&display=swap');

:root {
  /* Brand Color Palette - Extracted from Logo */
  --color-primary: #17243b;          /* Midnight Sapphire */
  --color-primary-rgb: 23, 36, 59;
  --color-accent: #386125;           /* Forest Olive Green */
  --color-accent-rgb: 56, 97, 37;
  --color-slate: #3f4a4c;            /* Slate Charcoal */
  --color-gold: #c5a880;             /* Champagne Gold (Luxury accent) */
  --color-gold-rgb: 197, 168, 128;
  
  /* Grays Scale */
  --color-gray-dark: #7f8080;        /* Muted Steel */
  --color-gray-mid: #969895;         /* Silver Sand */
  --color-gray-light: #cecfcc;       /* Warm Platinum */
  
  /* Layout Tones */
  --bg-obsidian: #080b13;            /* High-end deepest dark */
  --bg-card: rgba(23, 36, 59, 0.45);  /* Frosted Midnight Sapphire */
  --bg-card-hover: rgba(23, 36, 59, 0.6);
  --border-glass: rgba(206, 207, 204, 0.12); /* Ultra-fine platinum line */
  --border-glass-active: rgba(197, 168, 128, 0.4); /* Gold glow border */
  
  /* Typography Tones */
  --text-primary: #f4f5f4;           /* Warm platinum text */
  --text-secondary: #cecfcc;         /* Supporting platinum text */
  --text-muted: #969895;             /* Inactive / details text */
  
  /* Transitions */
  --transition-luxurious: all 0.7s cubic-bezier(0.16, 1, 0.3, 1);
  --transition-snappy: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
  
  /* Glow Accent */
  --glow-ambient: radial-gradient(circle, rgba(56, 97, 37, 0.15) 0%, rgba(23, 36, 59, 0.05) 50%, transparent 100%);
}

/* 2. Reset & Global Styles */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
  background-color: var(--bg-obsidian);
  color: var(--text-primary);
  font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

body {
  min-height: 100vh;
  line-height: 1.625;
  position: relative;
}

/* Custom Premium Scrollbar */
::-webkit-scrollbar {
  width: 8px;
}
::-webkit-scrollbar-track {
  background: var(--bg-obsidian);
}
::-webkit-scrollbar-thumb {
  background: rgba(197, 168, 128, 0.15);
  border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
  background: var(--color-gold);
}

/* 3. Floating Ambient Lights (Background Orbs) */
.ambient-background {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: -1;
  overflow: hidden;
  pointer-events: none;
}

.ambient-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(120px);
  opacity: 0.45;
  mix-blend-mode: screen;
  pointer-events: none;
}

.orb-1 {
  top: -10%;
  right: 10%;
  width: 50vw;
  height: 50vw;
  background: radial-gradient(circle, rgba(23, 36, 59, 0.4) 0%, rgba(56, 97, 37, 0.2) 60%, transparent 100%);
  animation: floatOrb1 25s infinite alternate ease-in-out;
}

.orb-2 {
  bottom: -15%;
  left: -5%;
  width: 45vw;
  height: 45vw;
  background: radial-gradient(circle, rgba(56, 97, 37, 0.25) 0%, rgba(23, 36, 59, 0.3) 60%, transparent 100%);
  animation: floatOrb2 30s infinite alternate ease-in-out;
}

.orb-3 {
  top: 40%;
  right: -5%;
  width: 35vw;
  height: 35vw;
  background: radial-gradient(circle, rgba(197, 168, 128, 0.08) 0%, rgba(23, 36, 59, 0.2) 60%, transparent 100%);
  animation: floatOrb1 20s infinite alternate-reverse ease-in-out;
}

@keyframes floatOrb1 {
  0% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(3%, 5%) scale(1.1); }
  100% { transform: translate(-2%, 2%) scale(0.95); }
}

@keyframes floatOrb2 {
  0% { transform: translate(0, 0) scale(0.95); }
  50% { transform: translate(-4%, -3%) scale(1.05); }
  100% { transform: translate(2%, 4%) scale(1); }
}

/* Grid & Layout Containers */
.container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 2.5rem;
}

@media (max-width: 768px) {
  .container {
    padding: 0 1.5rem;
  }
}

/* Typography Utilities */
.editorial-serif {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-weight: 400;
}

.editorial-italic {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-style: italic;
  font-weight: 400;
}

h1, h2, h3, h4 {
  font-family: 'Cormorant Garamond', Georgia, serif;
  color: var(--text-primary);
  font-weight: 300;
  line-height: 1.15;
}

p {
  color: var(--text-secondary);
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 300;
  letter-spacing: 0.01em;
}

.section-label {
  font-family: 'Plus Jakarta Sans', sans-serif;
  text-transform: uppercase;
  font-size: 0.75rem;
  letter-spacing: 0.3em;
  color: var(--color-gold);
  font-weight: 600;
  margin-bottom: 1.25rem;
  display: inline-block;
  position: relative;
}

.section-label::before {
  content: '';
  display: inline-block;
  width: 24px;
  height: 1px;
  background-color: var(--color-gold);
  vertical-align: middle;
  margin-right: 10px;
}

/* Glassmorphism Panel */
.glass-panel {
  background: var(--bg-card);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid var(--border-glass);
  border-radius: 12px;
  padding: 2.5rem;
  transition: var(--transition-luxurious);
  position: relative;
  overflow: hidden;
}

.glass-panel::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.03) 0%, transparent 100%);
  pointer-events: none;
}

/* Premium Buttons & Controls */
.btn {
  font-family: 'Plus Jakarta Sans', sans-serif;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.95rem 2.25rem;
  font-size: 0.8125rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  border-radius: 4px;
  cursor: pointer;
  transition: var(--transition-luxurious);
  text-decoration: none;
  border: none;
  outline: none;
  gap: 10px;
}

.btn-primary {
  background-color: var(--color-primary);
  color: var(--text-primary);
  border: 1px solid var(--color-gold);
  box-shadow: 0 4px 20px rgba(23, 36, 59, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.1);
  position: relative;
  overflow: hidden;
}

.btn-primary::after {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(35deg, transparent, rgba(197, 168, 128, 0.15), transparent);
  transform: rotate(45deg);
  transition: var(--transition-luxurious);
  pointer-events: none;
}

.btn-primary:hover {
  background-color: #1c2e4c;
  border-color: var(--text-primary);
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(197, 168, 128, 0.15);
}

.btn-primary:hover::after {
  left: 120%;
}

.btn-secondary {
  background: transparent;
  color: var(--text-primary);
  border: 1px solid var(--border-glass);
}

.btn-secondary:hover {
  border-color: var(--color-gold);
  background-color: rgba(255, 255, 255, 0.02);
  transform: translateY(-2px);
}

/* ==========================================================================
   4. Header & Logo
   ========================================================================== */
header {
  padding: 1.25rem 0;
  position: absolute;
  width: 100%;
  top: 0;
  left: 0;
  z-index: 100;
  background-color: #ffffff;
  border-bottom: 1px solid rgba(23, 36, 59, 0.08);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.08);
}

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

.logo-wrapper {
  display: flex;
  align-items: center;
  gap: 15px;
  text-decoration: none;
}

.logo-img {
  height: 44px;
  width: auto;
  object-fit: contain;
}

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

.brand-title {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 1.45rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--color-primary); /* Deep Midnight Sapphire brand color */
  line-height: 1.05;
}

.brand-subtitle {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 0.6rem;
  letter-spacing: 0.28em;
  color: var(--color-accent); /* Forest Olive Green brand accent */
  text-transform: uppercase;
  font-weight: 700;
  margin-top: 4px;
}

.status-badge {
  background: rgba(56, 97, 37, 0.2);
  border: 1px solid rgba(56, 97, 37, 0.4);
  padding: 0.45rem 1rem;
  border-radius: 50px;
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 600;
  color: #8edc6b;
  display: flex;
  align-items: center;
  gap: 8px;
}

.status-dot {
  width: 6px;
  height: 6px;
  background-color: #8edc6b;
  border-radius: 50%;
  box-shadow: 0 0 10px #8edc6b;
  animation: pulseDot 2s infinite;
}

@keyframes pulseDot {
  0% { opacity: 0.4; }
  50% { opacity: 1; }
  100% { opacity: 0.4; }
}

/* ==========================================================================
   5. Hero Section
   ========================================================================== */
.hero {
  min-height: 100vh;
  padding-top: 9.5rem;
  padding-bottom: 5rem;
  display: flex;
  align-items: center;
  position: relative;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 4.5rem;
  align-items: center;
}

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

.hero-title {
  font-size: 4rem;
  font-weight: 300;
  line-height: 1.08;
  margin-bottom: 1.75rem;
  letter-spacing: -0.01em;
}

.hero-title span.accent-text {
  color: var(--color-gold);
  font-style: italic;
  font-family: 'Cormorant Garamond', Georgia, serif;
}

.hero-subheadline {
  font-size: 1.1rem;
  line-height: 1.75;
  color: var(--text-secondary);
  margin-bottom: 2.75rem;
  font-weight: 300;
  max-width: 580px;
}

.hero-actions {
  display: flex;
  gap: 1.25rem;
  align-items: center;
}

/* Image Composition (Right Side Hero) */
.hero-visual {
  position: relative;
  height: 520px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-image-wrapper {
  height: 100%;
  aspect-ratio: 0.7038; /* Matches the tall vertical aspect ratio of BEL_1241 (1600x2273) */
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.image-frame-main {
  width: 100%;
  height: 100%;
  border-radius: 8px;
  position: relative;
  overflow: hidden;
  border: 1px solid var(--border-glass);
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.4);
  z-index: 2;
  transition: var(--transition-luxurious);
}

.image-frame-main img {
  width: 100%;
  height: 100%;
  object-fit: cover; /* Perfectly fits because wrapper aspect ratio matches image */
  transition: var(--transition-luxurious);
  will-change: transform;
  transform: translateZ(0); /* Solves Chromium transition-prep blur bug; keeps image razor-sharp always */
}

.image-frame-main:hover img {
  transform: scale(1.04);
}

.image-frame-accent {
  position: absolute;
  top: -15px;
  left: -15px;
  width: calc(100% + 30px);
  height: calc(100% + 30px);
  border: 1px solid rgba(197, 168, 128, 0.25);
  border-radius: 10px;
  z-index: 1;
  pointer-events: none;
}

.floating-badge {
  position: absolute;
  bottom: 8%;
  right: -5%;
  background: var(--color-primary);
  border: 1px solid var(--color-gold);
  border-radius: 4px;
  padding: 1.25rem 1.75rem;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4);
  z-index: 3;
  display: flex;
  flex-direction: column;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.floating-badge .badge-label {
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 0.25rem;
  color: var(--color-gold);
  font-weight: 700;
}

.floating-badge .badge-value {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 1.45rem;
  color: var(--text-primary);
  font-weight: 400;
  margin-top: 4px;
}

/* ==========================================================================
   6. Countdown Timer
   ========================================================================== */
.countdown-container {
  margin-top: 3.5rem;
  border-top: 1px solid var(--border-glass);
  padding-top: 2.25rem;
  max-width: 580px;
}

.countdown-label {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.2rem;
  color: var(--color-gold);
  font-weight: 600;
  margin-bottom: 1.25rem;
}

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

.countdown-segment {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  position: relative;
}

.countdown-segment:not(:last-child)::after {
  content: '';
  position: absolute;
  right: -0.75rem;
  top: 15%;
  height: 70%;
  width: 1px;
  background-color: var(--border-glass);
}

.countdown-value {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 2.75rem;
  font-weight: 300;
  line-height: 1;
  color: var(--text-primary);
  min-width: 60px;
}

.countdown-unit {
  font-size: 0.68rem;
  text-transform: uppercase;
  letter-spacing: 0.15rem;
  color: var(--text-muted);
  margin-top: 4px;
  font-weight: 500;
}

@media (max-width: 991px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 4rem;
  }
  .hero-visual {
    height: 480px;
    max-width: 520px;
    margin: 0 auto;
  }
  .hero-title {
    font-size: 3.2rem;
  }
  .countdown-container {
    max-width: 100%;
  }
}

@media (max-width: 480px) {
  .hero-title {
    font-size: 2.5rem;
  }
  .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }
  .btn {
    width: 100%;
  }
  .countdown-grid {
    gap: 0.75rem;
  }
  .countdown-value {
    font-size: 2.2rem;
  }
}

/* ==========================================================================
   7. Brand Credibility Preview
   ========================================================================== */
.credibility {
  padding: 6.5rem 0;
  position: relative;
  background-color: rgba(8, 11, 19, 0.6);
  border-top: 1px solid var(--border-glass);
  border-bottom: 1px solid var(--border-glass);
}

.credibility-header {
  max-width: 720px;
  margin-bottom: 4rem;
}

.credibility-title {
  font-size: 2.8rem;
  font-weight: 300;
  margin-top: 0.5rem;
  line-height: 1.2;
}

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

.feature-card {
  transition: var(--transition-luxurious);
  cursor: default;
}

.feature-card:hover {
  transform: translateY(-6px);
  border-color: var(--border-glass-active);
  background-color: var(--bg-card-hover);
  box-shadow: 0 15px 40px rgba(197, 168, 128, 0.04);
}

.feature-icon {
  width: 42px;
  height: 42px;
  border-radius: 4px;
  background-color: rgba(197, 168, 128, 0.08);
  border: 1px solid rgba(197, 168, 128, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-gold);
  margin-bottom: 2rem;
  font-size: 1.1rem;
}

.feature-card:hover .feature-icon {
  background-color: var(--color-accent);
  border-color: var(--color-accent);
  color: var(--text-primary);
  box-shadow: 0 0 15px rgba(56, 97, 37, 0.3);
}

.feature-title {
  font-size: 1.6rem;
  font-weight: 400;
  margin-bottom: 1.25rem;
  color: var(--text-primary);
}

.feature-desc {
  font-size: 0.875rem;
  line-height: 1.7;
  color: var(--text-secondary);
}

@media (max-width: 991px) {
  .credibility-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
}

/* ==========================================================================
   8. Founder Section (Dr. Muhamud Cheptoek)
   ========================================================================== */
.founder {
  padding: 6.5rem 0;
  position: relative;
}

.founder-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 4.5rem;
  align-items: start;
}

.founder-profile-card {
  position: sticky;
  top: 40px;
}

.founder-img-wrapper {
  width: 100%;
  aspect-ratio: 0.85;
  border-radius: 6px;
  overflow: hidden;
  border: 1px solid var(--border-glass);
  margin-bottom: 2rem;
  /* Hardware isolation fixes blur from parent glass panel backdrop-filter */
  will-change: transform;
  transform: translateZ(0);
  isolation: isolate;
}

.founder-img-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  will-change: transform;
  transform: translateZ(0); /* Forces high-definition hardware-accelerated rendering */
}

.founder-name {
  font-size: 2.2rem;
  font-weight: 400;
  line-height: 1.2;
}

.founder-title-badge {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 0.72rem;
  letter-spacing: 0.15rem;
  text-transform: uppercase;
  color: var(--color-gold);
  font-weight: 600;
  margin-top: 6px;
  display: block;
}

.founder-education {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 1rem;
}

.edu-tag {
  font-size: 0.7rem;
  padding: 0.35rem 0.75rem;
  border-radius: 4px;
  background-color: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border-glass);
  color: var(--text-secondary);
  font-weight: 500;
}

.founder-bio {
  display: flex;
  flex-direction: column;
}

.founder-heading {
  font-size: 2.8rem;
  font-weight: 300;
  line-height: 1.2;
  margin-bottom: 2.25rem;
}

.founder-text {
  font-size: 0.95rem;
  line-height: 1.75;
  color: var(--text-secondary);
  margin-bottom: 1.75rem;
  font-weight: 300;
}

.academic-achievements {
  margin-top: 2rem;
}

.achievement-title {
  font-size: 1.35rem;
  font-weight: 400;
  color: var(--color-gold);
  margin-bottom: 1.25rem;
  border-bottom: 1px solid var(--border-glass);
  padding-bottom: 0.5rem;
}

/* Research Accordion Tabs */
.research-accordion {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-top: 1rem;
}

.research-item {
  border: 1px solid var(--border-glass);
  border-radius: 6px;
  background-color: rgba(23, 36, 59, 0.15);
  transition: var(--transition-luxurious);
  overflow: hidden;
}

.research-trigger {
  padding: 1.25rem 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  user-select: none;
  transition: var(--transition-snappy);
}

.research-trigger h4 {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-primary);
  line-height: 1.4;
  padding-right: 20px;
}

.research-chevron {
  font-size: 0.75rem;
  color: var(--color-gold);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.research-item.active {
  background-color: rgba(23, 36, 59, 0.4);
  border-color: rgba(197, 168, 128, 0.25);
}

.research-item.active .research-chevron {
  transform: rotate(180deg);
}

.research-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.research-content-inner {
  padding: 0 1.5rem 1.5rem 1.5rem;
  font-size: 0.85rem;
  line-height: 1.7;
  color: var(--text-secondary);
  border-top: 1px solid rgba(255, 255, 255, 0.03);
  padding-top: 1rem;
}

.research-content-inner strong {
  color: var(--color-gold);
  font-weight: 500;
}

@media (max-width: 991px) {
  .founder-grid {
    grid-template-columns: 1fr;
    gap: 4rem;
  }
  .founder-profile-card {
    position: relative;
    top: 0;
    max-width: 480px;
    margin: 0 auto;
  }
}

/* ==========================================================================
   9. License Verification Component
   ========================================================================== */
.license-section {
  padding: 6.5rem 0;
  background-color: rgba(23, 36, 59, 0.2);
  border-top: 1px solid var(--border-glass);
  border-bottom: 1px solid var(--border-glass);
  position: relative;
}

.license-wrapper {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 5rem;
  align-items: center;
}

.license-content {
  display: flex;
  flex-direction: column;
}

.license-title {
  font-size: 2.8rem;
  font-weight: 300;
  line-height: 1.2;
  margin-top: 0.5rem;
  margin-bottom: 1.75rem;
}

.license-desc {
  font-size: 0.95rem;
  line-height: 1.75;
  color: var(--text-secondary);
  margin-bottom: 2.25rem;
  font-weight: 300;
}

.credentials-card {
  width: 100%;
  max-width: 460px;
  background: linear-gradient(135deg, rgba(23, 36, 59, 0.8) 0%, rgba(8, 11, 19, 0.95) 100%);
  border: 1px solid var(--color-gold);
  border-radius: 12px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
  overflow: hidden;
  position: relative;
  margin: 0 auto;
}

.card-header-badge {
  background: var(--color-accent);
  color: var(--text-primary);
  font-family: 'Plus Jakarta Sans', sans-serif;
  text-transform: uppercase;
  font-size: 0.65rem;
  letter-spacing: 0.18rem;
  font-weight: 700;
  padding: 0.75rem;
  text-align: center;
  border-bottom: 1px solid rgba(197, 168, 128, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.card-header-badge i {
  color: #8edc6b;
  font-size: 0.8rem;
}

.card-body {
  padding: 2rem 2.25rem;
}

.card-title {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 1.8rem;
  font-weight: 400;
  color: var(--text-primary);
  margin-bottom: 0.25rem;
}

.card-sub {
  font-size: 0.72rem;
  text-transform: uppercase;
  color: var(--color-gold);
  letter-spacing: 0.12rem;
  font-weight: 600;
  margin-bottom: 2rem;
  display: block;
}

.card-field {
  display: flex;
  justify-content: space-between;
  border-bottom: 1px solid rgba(206, 207, 204, 0.08);
  padding: 0.75rem 0;
}

.card-field:last-of-type {
  border-bottom: none;
  margin-bottom: 1.5rem;
}

.field-label {
  font-size: 0.78rem;
  color: var(--text-muted);
  font-weight: 500;
}

.field-value {
  font-size: 0.82rem;
  color: var(--text-primary);
  font-weight: 600;
}

.field-value.status-current {
  color: #8edc6b;
  background-color: rgba(142, 220, 107, 0.12);
  padding: 0.15rem 0.65rem;
  border-radius: 4px;
  border: 1px solid rgba(142, 220, 107, 0.25);
  font-size: 0.75rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

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

@media (max-width: 991px) {
  .license-wrapper {
    grid-template-columns: 1fr;
    gap: 4rem;
  }
  .license-content {
    order: 1;
  }
  .credentials-card {
    order: 2;
  }
}

/* ==========================================================================
   10. Interactive Modal (Primary Source Verification)
   ========================================================================== */
.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(8, 11, 19, 0.85);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  z-index: 1000;
  opacity: 0;
  pointer-events: none;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  padding: 1.5rem;
}

.modal-overlay.active {
  opacity: 1;
  pointer-events: all;
}

.modal-container {
  width: 100%;
  max-width: 680px;
  background-color: #0b111e;
  border: 1px solid var(--color-gold);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.7);
  transform: translateY(30px) scale(0.97);
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
  display: flex;
  flex-direction: column;
}

.modal-overlay.active .modal-container {
  transform: translateY(0) scale(1);
}

.modal-header {
  background-color: var(--color-primary);
  padding: 1.75rem 2.25rem;
  border-bottom: 1px solid rgba(197, 168, 128, 0.15);
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
}

.modal-header-title {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 1.65rem;
  color: var(--text-primary);
  font-weight: 400;
}

.modal-close {
  background: transparent;
  border: none;
  color: var(--text-secondary);
  font-size: 1.8rem;
  cursor: pointer;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: var(--transition-snappy);
}

.modal-close:hover {
  background-color: rgba(255, 255, 255, 0.05);
  color: var(--text-primary);
}

.modal-body {
  padding: 2.25rem;
  max-height: calc(90vh - 120px);
  overflow-y: auto;
}

/* Primary Source Report Design */
.nursys-report {
  font-family: 'Plus Jakarta Sans', sans-serif;
  color: var(--text-secondary);
}

.report-headline {
  border-bottom: 1px solid var(--color-gold);
  padding-bottom: 1rem;
  margin-bottom: 1.75rem;
}

.report-headline-top {
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 0.15rem;
  color: var(--color-gold);
  font-weight: 700;
}

.report-headline-main {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 1.8rem;
  font-weight: 400;
  color: var(--text-primary);
  margin-top: 4px;
  line-height: 1.2;
}

.report-headline-meta {
  font-size: 0.72rem;
  color: var(--text-muted);
  margin-top: 6px;
  font-weight: 500;
}

.report-meta-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  background-color: rgba(23, 36, 59, 0.2);
  border: 1px solid var(--border-glass);
  border-radius: 6px;
  padding: 1.25rem 1.5rem;
  margin-bottom: 2rem;
}

.report-meta-item {
  display: flex;
  flex-direction: column;
}

.report-meta-label {
  font-size: 0.68rem;
  text-transform: uppercase;
  color: var(--text-muted);
  letter-spacing: 0.08rem;
  font-weight: 600;
}

.report-meta-val {
  font-size: 0.875rem;
  color: var(--text-primary);
  font-weight: 600;
  margin-top: 4px;
}

.report-section-title {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 1.35rem;
  color: var(--color-gold);
  margin-bottom: 1rem;
  font-weight: 400;
}

.report-table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 2rem;
  font-size: 0.8125rem;
}

.report-table th, .report-table td {
  padding: 0.85rem 1rem;
  text-align: left;
  border-bottom: 1px solid rgba(206, 207, 204, 0.08);
}

.report-table th {
  font-weight: 600;
  color: var(--text-primary);
  background-color: rgba(255, 255, 255, 0.02);
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.05rem;
}

.report-table td {
  color: var(--text-secondary);
}

.report-table tr:hover td {
  background-color: rgba(255, 255, 255, 0.01);
}

.badge-compact {
  font-size: 0.68rem;
  padding: 0.15rem 0.45rem;
  background-color: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border-glass);
  border-radius: 4px;
  display: inline-block;
}

.report-note {
  font-size: 0.72rem;
  color: var(--text-muted);
  line-height: 1.6;
  border-top: 1px solid rgba(206, 207, 204, 0.08);
  padding-top: 1.25rem;
  margin-top: 2rem;
}

.report-seal {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-top: 2.25rem;
  border: 1px dashed rgba(197, 168, 128, 0.3);
  padding: 1.25rem;
  border-radius: 6px;
  background-color: rgba(197, 168, 128, 0.02);
}

.seal-icon {
  font-size: 1.8rem;
  color: var(--color-gold);
}

.seal-text {
  font-size: 0.72rem;
  color: var(--text-secondary);
  line-height: 1.45;
}

.seal-text strong {
  color: var(--color-gold);
  font-weight: 600;
}

@media (max-width: 580px) {
  .report-meta-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  .report-table {
    display: block;
    overflow-x: auto;
    white-space: nowrap;
  }
}

/* ==========================================================================
   11. Email Notify Section
   ========================================================================== */
.notify-section {
  padding: 8rem 0;
  position: relative;
}

.notify-card {
  max-width: 780px;
  margin: 0 auto;
  text-align: center;
  border: 1px solid rgba(197, 168, 128, 0.2);
  background: linear-gradient(180deg, var(--bg-card) 0%, rgba(8, 11, 19, 0.7) 100%);
  position: relative;
}

.notify-title {
  font-size: 3.2rem;
  font-weight: 300;
  line-height: 1.15;
  margin-top: 0.5rem;
  margin-bottom: 1.25rem;
}

.notify-subtitle {
  font-size: 1rem;
  color: var(--text-secondary);
  max-width: 580px;
  margin: 0 auto 3rem auto;
  font-weight: 300;
  line-height: 1.7;
}

/* Email Form Control */
.notify-form-container {
  max-width: 560px;
  margin: 0 auto;
}

.notify-form {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.form-group {
  position: relative;
  width: 100%;
}

.notify-input {
  width: 100%;
  padding: 1.1rem 1.75rem;
  background-color: rgba(8, 11, 19, 0.7);
  border: 1px solid var(--border-glass);
  border-radius: 4px;
  color: var(--text-primary);
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 0.875rem;
  transition: var(--transition-snappy);
  outline: none;
}

.notify-input:focus {
  border-color: var(--color-gold);
  box-shadow: 0 0 15px rgba(197, 168, 128, 0.1);
  background-color: #0b111e;
}

.submit-btn {
  width: 100%;
}

/* Error/Success Feedbacks */
.validation-message {
  font-size: 0.75rem;
  margin-top: 6px;
  text-align: left;
  display: none;
  font-weight: 500;
}

.validation-message.error {
  color: #ff6b6b;
  display: block;
}

.form-success-state {
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 1rem 0;
  animation: scaleIn 0.6s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.success-icon-box {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background-color: rgba(56, 97, 37, 0.15);
  border: 1px solid rgba(56, 97, 37, 0.4);
  color: #8edc6b;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 1.5rem;
}

.success-title {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 2rem;
  color: var(--text-primary);
  margin-bottom: 0.75rem;
  font-weight: 400;
}

.success-desc {
  font-size: 0.9rem;
  color: var(--text-secondary);
  max-width: 440px;
  line-height: 1.6;
}

@keyframes scaleIn {
  0% { transform: scale(0.95); opacity: 0; }
  100% { transform: scale(1); opacity: 1; }
}

@media (max-width: 480px) {
  .notify-title {
    font-size: 2.2rem;
  }
  .notify-card {
    padding: 2rem 1.25rem;
  }
}

/* ==========================================================================
   12. Minimal Elegant Footer
   ========================================================================== */
footer {
  border-top: 1px solid var(--border-glass);
  padding: 4.5rem 0 3.5rem 0;
  background-color: #05070c;
  position: relative;
  z-index: 10;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 1fr;
  gap: 4rem;
  margin-bottom: 4rem;
}

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

.footer-desc {
  font-size: 0.8125rem;
  line-height: 1.65;
  color: var(--text-muted);
  margin-top: 1.5rem;
  max-width: 320px;
}

.footer-title {
  font-size: 0.68rem;
  text-transform: uppercase;
  color: var(--color-gold);
  letter-spacing: 0.2rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  display: block;
}

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

.footer-link {
  font-size: 0.8125rem;
  color: var(--text-secondary);
  text-decoration: none;
  transition: var(--transition-snappy);
}

.footer-link:hover {
  color: var(--color-gold);
  padding-left: 4px;
}

.footer-contact-info {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.contact-icon {
  font-size: 0.875rem;
  color: var(--color-gold);
  margin-top: 4px;
}

.contact-text {
  font-size: 0.8125rem;
  color: var(--text-secondary);
  line-height: 1.5;
}

.contact-link {
  text-decoration: none;
  transition: var(--transition-snappy);
}

.contact-link:hover {
  color: var(--color-gold);
}

.footer-bottom {
  border-top: 1px solid rgba(206, 207, 204, 0.05);
  padding-top: 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1.5rem;
}

.copyright {
  font-size: 0.75rem;
  color: var(--text-muted);
}

.legal-links {
  display: flex;
  gap: 20px;
}

.legal-link {
  font-size: 0.75rem;
  color: var(--text-muted);
  text-decoration: none;
  transition: var(--transition-snappy);
}

.legal-link:hover {
  color: var(--text-secondary);
}

@media (max-width: 991px) {
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
}

/* ==========================================================================
   13. Intersection Observer Scroll Animations
   ========================================================================== */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 1s cubic-bezier(0.16, 1, 0.3, 1), transform 1s cubic-bezier(0.16, 1, 0.3, 1);
}

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

.delay-1 { transition-delay: 0.15s; }
.delay-2 { transition-delay: 0.3s; }
.delay-3 { transition-delay: 0.45s; }
.delay-4 { transition-delay: 0.6s; }

/* ==========================================================================
   14. Secure Admissions Contact Inquiry Form Styling
   ========================================================================== */
.contact-section {
  padding: 6.5rem 0;
  position: relative;
  border-top: 1px solid var(--border-glass);
}

.contact-card {
  max-width: 820px;
  margin: 0 auto;
  border: 1px solid rgba(197, 168, 128, 0.2);
  background: linear-gradient(180deg, var(--bg-card) 0%, rgba(8, 11, 19, 0.7) 100%);
  position: relative;
  text-align: center;
}

.contact-title {
  font-size: 3.2rem;
  font-weight: 300;
  line-height: 1.15;
  margin-top: 0.5rem;
  margin-bottom: 1.25rem;
}

.contact-subtitle {
  font-size: 1rem;
  color: var(--text-secondary);
  max-width: 580px;
  margin: 0 auto 3rem auto;
  font-weight: 300;
  line-height: 1.7;
}

.contact-form-element {
  max-width: 580px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

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

.contact-message-input {
  min-height: 150px;
  resize: vertical;
}

#contact-status {
  margin-top: 1.25rem;
  text-align: center;
  font-size: 0.875rem;
  padding: 0.85rem;
  border-radius: 4px;
  display: none;
  animation: scaleIn 0.4s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

@media (max-width: 768px) {
  .contact-title {
    font-size: 2.2rem;
  }
  .form-group-row {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }
  .contact-card {
    padding: 2rem 1.25rem;
  }
}

