/* ========================================
   MediTalent Healthcare Education Administration
   Shared Stylesheet
   ======================================== */

/* Google Font Import */
@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@300;400;500;600;700;800&display=swap');

/* ========================================
   CSS Variables
   ======================================== */
:root {
  --primary: #0A2647;
  --secondary: #0D9488;
  --accent-white: #FFFFFF;
  --accent-light-teal: #F0FDFA;
  --text-dark: #1E293B;
  --text-gray: #64748B;
  --text-light: #94A3B8;
  --border: #E2E8F0;
  --bg-light: #F8FAFC;
  --bg-alt: #F1F5F9;
  --shadow-sm: 0 1px 2px rgba(0,0,0,0.05);
  --shadow-md: 0 4px 6px -1px rgba(0,0,0,0.1), 0 2px 4px -2px rgba(0,0,0,0.1);
  --shadow-lg: 0 10px 15px -3px rgba(0,0,0,0.1), 0 4px 6px -4px rgba(0,0,0,0.1);
  --shadow-xl: 0 20px 25px -5px rgba(0,0,0,0.1), 0 8px 10px -6px rgba(0,0,0,0.1);
  --radius-sm: 6px;
  --radius-md: 10px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --transition: 0.3s ease;
  --max-width: 1200px;
  --nav-height: 72px;
}

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

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

body {
  font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  color: var(--text-dark);
  background: var(--accent-white);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

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

ul, ol {
  list-style: none;
}

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
}

input, textarea, select {
  font-family: inherit;
  font-size: 1rem;
}

/* ========================================
   Typography
   ======================================== */
h1, h2, h3, h4, h5, h6 {
  line-height: 1.3;
  color: var(--primary);
  font-weight: 700;
}

h1 { font-size: 2.75rem; }
h2 { font-size: 2rem; }
h3 { font-size: 1.5rem; }
h4 { font-size: 1.25rem; }
h5 { font-size: 1.1rem; }

p {
  margin-bottom: 1rem;
  color: var(--text-gray);
}

.text-secondary { color: var(--secondary); }
.text-primary { color: var(--primary); }

/* ========================================
   Layout
   ======================================== */
.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 1.5rem;
}

.section {
  padding: 5rem 0;
}

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

.section-dark {
  background: var(--primary);
  color: var(--accent-white);
}

.section-dark h2,
.section-dark h3,
.section-dark h4 {
  color: var(--accent-white);
}

.section-dark p {
  color: rgba(255,255,255,0.8);
}

.section-teal {
  background: linear-gradient(135deg, var(--secondary), #0f766e);
  color: var(--accent-white);
}

.section-teal h2,
.section-teal h3 {
  color: var(--accent-white);
}

.section-teal p {
  color: rgba(255,255,255,0.85);
}

.section-header {
  text-align: center;
  margin-bottom: 3rem;
}

.section-header h2 {
  margin-bottom: 1rem;
}

.section-header p {
  max-width: 640px;
  margin: 0 auto;
  font-size: 1.1rem;
}

.section-header .label {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--secondary);
  margin-bottom: 0.75rem;
}

/* ========================================
   Grid System
   ======================================== */
.grid {
  display: grid;
  gap: 1.5rem;
}

.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }
.grid-5 { grid-template-columns: repeat(5, 1fr); }
.grid-6 { grid-template-columns: repeat(6, 1fr); }

@media (max-width: 1024px) {
  .grid-4, .grid-5, .grid-6 { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 768px) {
  .grid-2, .grid-3, .grid-4, .grid-5, .grid-6 {
    grid-template-columns: 1fr;
  }
  .grid-2-mobile { grid-template-columns: repeat(2, 1fr); }
}

/* ========================================
   Navigation
   ======================================== */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: var(--nav-height);
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  z-index: 1000;
  transition: box-shadow var(--transition);
  overflow: visible;
}

.navbar.scrolled {
  box-shadow: var(--shadow-md);
}

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

.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--primary);
}

.nav-logo-icon {
  width: 36px;
  height: 36px;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.1rem;
  font-weight: 700;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.nav-links a {
  padding: 0.5rem 0.85rem;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-gray);
  border-radius: var(--radius-sm);
  transition: all var(--transition);
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--primary);
  background: var(--accent-light-teal);
}

.nav-right {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.lang-switcher {
  display: flex;
  align-items: center;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  overflow: hidden;
  font-size: 0.8rem;
  font-weight: 600;
}

.lang-switcher a {
  padding: 0.35rem 0.6rem;
  color: var(--text-gray);
  transition: all var(--transition);
}

.lang-switcher a.active {
  background: var(--primary);
  color: var(--accent-white);
}

.lang-switcher a:hover:not(.active) {
  background: var(--bg-light);
}

.btn-nav {
  display: inline-flex;
  align-items: center;
  padding: 0.55rem 1.25rem;
  background: var(--secondary);
  color: var(--accent-white);
  font-size: 0.9rem;
  font-weight: 600;
  border-radius: var(--radius-sm);
  transition: all var(--transition);
}

.btn-nav:hover {
  background: #0f766e;
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 0.5rem;
  cursor: pointer;
}

.hamburger span {
  width: 24px;
  height: 2px;
  background: var(--primary);
  border-radius: 2px;
  transition: all var(--transition);
}

.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

@media (max-width: 1024px) {
  .navbar .container {
    position: relative;
  }

  .nav-links {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    height: 100dvh;
    background: #ffffff;
    flex-direction: column;
    padding: calc(var(--nav-height) + 1rem) 1.5rem 2rem;
    gap: 0.25rem;
    overflow-y: auto;
    z-index: 998;
    align-items: flex-start;
  }

  .nav-links.open {
    display: flex;
  }

  .nav-links a {
    font-size: 1.1rem;
    padding: 0.85rem 1rem;
    width: 100%;
    color: var(--text-dark);
  }

  .nav-links a:hover {
    background: var(--accent-light-teal);
    color: var(--primary);
  }

  .nav-right {
    display: none;
  }

  .hamburger {
    display: flex;
    z-index: 1001;
    position: relative;
  }

  .nav-logo {
    z-index: 1001;
    position: relative;
  }

  /* Show language switcher + inquiry inside mobile menu */
  .nav-links .mobile-extras {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--border);
    width: 100%;
  }

  .nav-links .mobile-extras .lang-switcher {
    align-self: flex-start;
  }

  .nav-links .mobile-extras .btn-nav {
    display: inline-flex;
    text-align: center;
    justify-content: center;
    width: 100%;
  }
}

/* ========================================
   Hero Section
   ======================================== */
.hero {
  padding: 8rem 0 5rem;
  margin-top: var(--nav-height);
  background: linear-gradient(160deg, var(--primary) 0%, #143d6b 50%, var(--secondary) 100%);
  color: var(--accent-white);
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(13,148,136,0.15) 0%, transparent 70%);
  border-radius: 50%;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: -30%;
  left: -10%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(255,255,255,0.05) 0%, transparent 70%);
  border-radius: 50%;
}

.hero .container {
  position: relative;
  z-index: 1;
}

.hero h1 {
  color: var(--accent-white);
  font-size: 3.25rem;
  font-weight: 800;
  max-width: 720px;
  margin-bottom: 1.25rem;
}

.hero p {
  color: rgba(255,255,255,0.85);
  font-size: 1.2rem;
  max-width: 600px;
  margin-bottom: 2rem;
}

.hero-sm {
  padding: 6rem 0 3.5rem;
}

.hero-sm h1 {
  font-size: 2.5rem;
}

/* Stats Bar */
.stats-bar {
  display: flex;
  gap: 2rem;
  margin-top: 2.5rem;
  padding-top: 2.5rem;
  border-top: 1px solid rgba(255,255,255,0.2);
  flex-wrap: wrap;
}

.stat-item {
  text-align: center;
}

.stat-number {
  font-size: 2rem;
  font-weight: 800;
  color: var(--accent-white);
  display: block;
}

.stat-label {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.7);
  display: block;
  margin-top: 0.25rem;
}

/* ========================================
   Buttons
   ======================================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.75rem 1.75rem;
  font-size: 0.95rem;
  font-weight: 600;
  border-radius: var(--radius-sm);
  transition: all var(--transition);
  cursor: pointer;
}

.btn-primary {
  background: var(--secondary);
  color: var(--accent-white);
}

.btn-primary:hover {
  background: #0f766e;
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

.btn-outline {
  border: 2px solid rgba(255,255,255,0.4);
  color: var(--accent-white);
  background: transparent;
}

.btn-outline:hover {
  border-color: var(--accent-white);
  background: rgba(255,255,255,0.1);
}

.btn-outline-dark {
  border: 2px solid var(--border);
  color: var(--text-dark);
  background: transparent;
}

.btn-outline-dark:hover {
  border-color: var(--secondary);
  color: var(--secondary);
}

.btn-lg {
  padding: 1rem 2.25rem;
  font-size: 1.05rem;
}

/* ========================================
   Cards
   ======================================== */
.card {
  background: var(--accent-white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 2rem;
  transition: all var(--transition);
}

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

.card-icon {
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--accent-light-teal);
  color: var(--secondary);
  font-size: 1.5rem;
  border-radius: var(--radius-md);
  margin-bottom: 1.25rem;
}

.card h3 {
  font-size: 1.15rem;
  margin-bottom: 0.75rem;
}

.card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: var(--radius-sm);
  margin-bottom: 1rem;
}

.card-destination img {
  width: 100%;
  height: 140px;
  object-fit: cover;
  border-radius: var(--radius-sm) var(--radius-sm) 0 0;
  margin: -1.5rem -1.5rem 1rem -1.5rem;
  width: calc(100% + 3rem);
}

.card p {
  font-size: 0.95rem;
  margin-bottom: 0;
}

.card-flat {
  border: none;
  background: var(--bg-light);
}

.card-flat:hover {
  background: var(--accent-white);
  box-shadow: var(--shadow-lg);
}

.card-dark {
  background: rgba(255,255,255,0.08);
  border-color: rgba(255,255,255,0.15);
}

.card-dark:hover {
  background: rgba(255,255,255,0.12);
  border-color: rgba(255,255,255,0.25);
}

.card-dark h3,
.card-dark h4 {
  color: var(--accent-white);
}

.card-dark p {
  color: rgba(255,255,255,0.75);
}

/* Country Cards */
.country-card {
  background: var(--accent-white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 2rem;
  transition: all var(--transition);
}

.country-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}

.country-flag {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.country-card h3 {
  margin-bottom: 1rem;
}

.country-meta {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  font-size: 0.9rem;
}

.country-meta-item {
  display: flex;
  gap: 0.5rem;
  align-items: flex-start;
}

.country-meta-item .label {
  font-weight: 600;
  color: var(--primary);
  min-width: 80px;
  flex-shrink: 0;
}

.country-meta-item .value {
  color: var(--text-gray);
}

/* ========================================
   Data Tables
   ======================================== */
.table-wrapper {
  overflow-x: auto;
  border-radius: var(--radius-md);
  border: 1px solid var(--border);
}

.data-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.9rem;
}

.data-table th {
  background: var(--primary);
  color: var(--accent-white);
  padding: 1rem 1.25rem;
  text-align: left;
  font-weight: 600;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  white-space: nowrap;
}

.data-table td {
  padding: 0.9rem 1.25rem;
  border-bottom: 1px solid var(--border);
  color: var(--text-dark);
}

.data-table tr:last-child td {
  border-bottom: none;
}

.data-table tr:nth-child(even) {
  background: var(--bg-light);
}

.data-table tr:hover {
  background: var(--accent-light-teal);
}

.source-note {
  font-size: 0.8rem;
  color: var(--text-light);
  font-style: italic;
  margin-top: 0.75rem;
}

/* ========================================
   Statistics Counter
   ======================================== */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
}

.stat-card {
  text-align: center;
  padding: 2rem 1rem;
}

.stat-card .stat-number {
  font-size: 2.75rem;
  font-weight: 800;
  color: var(--secondary);
  display: block;
  margin-bottom: 0.5rem;
}

.stat-card .stat-label {
  font-size: 0.95rem;
  color: var(--text-gray);
  display: block;
  margin-bottom: 0.25rem;
}

.stat-card .stat-source {
  font-size: 0.75rem;
  color: var(--text-light);
  font-style: italic;
}

.section-dark .stat-card .stat-number {
  color: var(--accent-white);
}

.section-dark .stat-card .stat-label {
  color: rgba(255,255,255,0.8);
}

.section-dark .stat-card .stat-source {
  color: rgba(255,255,255,0.5);
}

/* ========================================
   Service Blocks (Alternating)
   ======================================== */
.service-block {
  padding: 4rem 0;
}

.service-block:nth-child(even) {
  background: var(--bg-light);
}

.service-block-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 1.5rem;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 2.5rem;
  align-items: start;
}

.service-block-number {
  width: 56px;
  height: 56px;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  color: var(--accent-white);
  font-size: 1.25rem;
  font-weight: 800;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.service-block h3 {
  font-size: 1.4rem;
  margin-bottom: 1rem;
}

.service-block p {
  margin-bottom: 0.75rem;
}

.service-block .deliverables {
  margin-top: 1rem;
}

.service-block .deliverables h4 {
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--secondary);
  margin-bottom: 0.75rem;
}

.service-block .deliverables ul {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 0.5rem;
}

.service-block .deliverables li {
  font-size: 0.9rem;
  color: var(--text-gray);
  padding-left: 1.25rem;
  position: relative;
}

.service-block .deliverables li::before {
  content: '\2713';
  position: absolute;
  left: 0;
  color: var(--secondary);
  font-weight: 700;
}

@media (max-width: 768px) {
  .service-block-inner {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
}

/* ========================================
   Program Sections
   ======================================== */
.program-section {
  padding: 3rem 0;
  border-bottom: 1px solid var(--border);
}

.program-section:last-child {
  border-bottom: none;
}

.program-badge {
  display: inline-block;
  padding: 0.3rem 0.85rem;
  background: var(--accent-light-teal);
  color: var(--secondary);
  font-size: 0.8rem;
  font-weight: 600;
  border-radius: 50px;
  margin-bottom: 1rem;
}

.semester-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
  margin-top: 1.5rem;
}

.semester-card {
  background: var(--bg-light);
  padding: 1.5rem;
  border-radius: var(--radius-md);
  border-left: 4px solid var(--secondary);
}

.semester-card h4 {
  font-size: 1rem;
  margin-bottom: 0.75rem;
}

.semester-card ul {
  list-style: none;
}

.semester-card li {
  font-size: 0.9rem;
  color: var(--text-gray);
  padding: 0.25rem 0;
  padding-left: 1.25rem;
  position: relative;
}

.semester-card li::before {
  content: '\2022';
  position: absolute;
  left: 0;
  color: var(--secondary);
}

/* ========================================
   News Cards
   ======================================== */
.news-card {
  background: var(--accent-white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: all var(--transition);
}

.news-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}

.news-card-header {
  padding: 1.5rem 1.5rem 0;
}

.news-date {
  font-size: 0.8rem;
  color: var(--text-light);
  margin-bottom: 0.5rem;
}

.news-source {
  display: inline-block;
  padding: 0.2rem 0.6rem;
  background: var(--accent-light-teal);
  color: var(--secondary);
  font-size: 0.75rem;
  font-weight: 600;
  border-radius: 50px;
  margin-bottom: 0.75rem;
}

.news-card h3 {
  font-size: 1.1rem;
  margin-bottom: 0.75rem;
  line-height: 1.4;
}

.news-card-body {
  padding: 0 1.5rem 1.5rem;
}

.news-card p {
  font-size: 0.9rem;
  margin-bottom: 0;
}

/* ========================================
   Team Cards
   ======================================== */
.team-card {
  text-align: center;
  padding: 2rem;
  background: var(--accent-white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  transition: all var(--transition);
}

.team-card:hover {
  box-shadow: var(--shadow-md);
}

.team-avatar {
  width: 80px;
  height: 80px;
  margin: 0 auto 1.25rem;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent-white);
  font-size: 1.75rem;
}

.team-card h4 {
  margin-bottom: 0.25rem;
}

.team-card p {
  font-size: 0.9rem;
  color: var(--text-light);
}

/* ========================================
   Comparison Section
   ======================================== */
.comparison-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}

@media (max-width: 768px) {
  .comparison-grid {
    grid-template-columns: 1fr;
  }
}

.comparison-col {
  padding: 2.5rem;
  border-radius: var(--radius-md);
}

.comparison-col.positive {
  background: var(--accent-light-teal);
  border: 2px solid var(--secondary);
}

.comparison-col.negative {
  background: var(--bg-light);
  border: 2px solid var(--border);
}

.comparison-col h3 {
  margin-bottom: 1.5rem;
  font-size: 1.2rem;
}

.comparison-col ul {
  list-style: none;
}

.comparison-col li {
  padding: 0.6rem 0;
  padding-left: 2rem;
  position: relative;
  font-size: 0.95rem;
  color: var(--text-gray);
}

.comparison-col.positive li::before {
  content: '\2713';
  position: absolute;
  left: 0;
  color: var(--secondary);
  font-weight: 700;
  font-size: 1.1rem;
}

.comparison-col.negative li::before {
  content: '\2717';
  position: absolute;
  left: 0;
  color: #DC2626;
  font-weight: 700;
  font-size: 1.1rem;
}

/* ========================================
   Address Card
   ======================================== */
.address-card {
  background: linear-gradient(135deg, var(--primary), #143d6b);
  color: var(--accent-white);
  padding: 2.5rem;
  border-radius: var(--radius-lg);
  max-width: 480px;
}

.address-card h3 {
  color: var(--accent-white);
  margin-bottom: 1.5rem;
  font-size: 1.2rem;
}

.address-card p {
  color: rgba(255,255,255,0.85);
  line-height: 1.8;
}

.address-icon {
  width: 40px;
  height: 40px;
  background: rgba(255,255,255,0.15);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  margin-bottom: 1rem;
}

/* ========================================
   Forms
   ======================================== */
.form-group {
  margin-bottom: 1.25rem;
}

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

.form-input,
.form-select,
.form-textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  font-size: 0.95rem;
  color: var(--text-dark);
  background: var(--accent-white);
  transition: all var(--transition);
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  outline: none;
  border-color: var(--secondary);
  box-shadow: 0 0 0 3px rgba(13,148,136,0.1);
}

.form-textarea {
  min-height: 120px;
  resize: vertical;
}

.form-select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath d='M6 8L1 3h10z' fill='%2364748B'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 2.5rem;
}

.form-card {
  background: var(--accent-white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 2.5rem;
}

.form-card h3 {
  margin-bottom: 0.5rem;
}

.form-card > p {
  margin-bottom: 2rem;
}

.form-success {
  display: none;
  text-align: center;
  padding: 3rem 1rem;
}

.form-success.show {
  display: block;
}

.form-success-icon {
  width: 64px;
  height: 64px;
  background: var(--accent-light-teal);
  color: var(--secondary);
  font-size: 2rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
}

/* ========================================
   Contact Info Cards
   ======================================== */
.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.5rem;
}

.contact-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  padding: 1.5rem;
  background: var(--bg-light);
  border-radius: var(--radius-md);
}

.contact-icon {
  width: 44px;
  height: 44px;
  background: var(--accent-light-teal);
  color: var(--secondary);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
}

.contact-item h4 {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--text-light);
  margin-bottom: 0.35rem;
}

.contact-item p {
  margin-bottom: 0;
  color: var(--text-dark);
  font-weight: 500;
}

/* ========================================
   Country Detail Sections
   ======================================== */
.country-detail {
  padding: 4rem 0;
  border-bottom: 1px solid var(--border);
}

.country-detail:last-child {
  border-bottom: none;
}

.country-detail-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 2rem;
}

.country-detail-header .flag {
  font-size: 3rem;
}

.country-detail-header h2 {
  font-size: 1.75rem;
}

.detail-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
}

.detail-card {
  background: var(--bg-light);
  padding: 1.5rem;
  border-radius: var(--radius-md);
}

.detail-card h4 {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--secondary);
  margin-bottom: 0.75rem;
}

.detail-card p {
  font-size: 0.95rem;
  margin-bottom: 0;
}

/* Career Progression */
.progression {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex-wrap: wrap;
  margin-top: 0.5rem;
}

.progression-step {
  padding: 0.5rem 1rem;
  background: var(--accent-light-teal);
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--secondary);
}

.progression-arrow {
  color: var(--text-light);
  font-size: 1.2rem;
}

/* ========================================
   Partner Placeholder
   ======================================== */
.partner-placeholder {
  text-align: center;
  padding: 3rem 2rem;
  background: var(--bg-light);
  border: 2px dashed var(--border);
  border-radius: var(--radius-md);
}

.partner-placeholder p {
  color: var(--text-light);
  font-size: 1rem;
}

/* ========================================
   Notice Box
   ======================================== */
.notice {
  background: var(--accent-light-teal);
  border-left: 4px solid var(--secondary);
  padding: 1.25rem 1.5rem;
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  margin-bottom: 2rem;
}

.notice p {
  color: var(--text-dark);
  font-size: 0.95rem;
  margin-bottom: 0;
}

.notice strong {
  color: var(--primary);
}

/* ========================================
   Footer
   ======================================== */
.footer {
  background: var(--primary);
  color: var(--accent-white);
  padding: 4rem 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.footer-brand h3 {
  color: var(--accent-white);
  font-size: 1.4rem;
  margin-bottom: 0.5rem;
}

.footer-brand .tagline {
  color: var(--secondary);
  font-size: 0.9rem;
  font-weight: 500;
  margin-bottom: 1rem;
}

.footer-brand p {
  color: rgba(255,255,255,0.6);
  font-size: 0.9rem;
}

.footer h4 {
  color: var(--accent-white);
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 1.25rem;
}

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

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

.footer-links a {
  color: rgba(255,255,255,0.6);
  font-size: 0.9rem;
  transition: color var(--transition);
}

.footer-links a:hover {
  color: var(--secondary);
}

.footer-bottom {
  padding: 1.5rem 0;
  text-align: center;
}

.footer-bottom p {
  color: rgba(255,255,255,0.4);
  font-size: 0.85rem;
  margin-bottom: 0;
}

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

/* ========================================
   Scroll Animations
   ======================================== */
.fade-in {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

.fade-in-delay-1 { transition-delay: 0.1s; }
.fade-in-delay-2 { transition-delay: 0.2s; }
.fade-in-delay-3 { transition-delay: 0.3s; }
.fade-in-delay-4 { transition-delay: 0.4s; }
.fade-in-delay-5 { transition-delay: 0.5s; }

/* ========================================
   Utility Classes
   ======================================== */
.text-center { text-align: center; }
.text-left { text-align: left; }
.mb-0 { margin-bottom: 0; }
.mb-1 { margin-bottom: 0.5rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }
.mb-4 { margin-bottom: 2rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mt-4 { margin-top: 2rem; }
.pt-0 { padding-top: 0; }
.gap-2 { gap: 1rem; }
.gap-3 { gap: 1.5rem; }

/* ========================================
   Responsive Adjustments
   ======================================== */
@media (max-width: 768px) {
  h1 { font-size: 2rem; }
  h2 { font-size: 1.6rem; }
  h3 { font-size: 1.25rem; }

  .hero {
    padding: 6rem 0 3.5rem;
  }

  .hero h1 {
    font-size: 2.25rem;
  }

  .hero p {
    font-size: 1rem;
  }

  .hero-sm {
    padding: 5rem 0 2.5rem;
  }

  .hero-sm h1 {
    font-size: 1.85rem;
  }

  .section {
    padding: 3.5rem 0;
  }

  .stats-bar {
    gap: 1.5rem;
  }

  .stat-item {
    flex: 1 1 40%;
  }

  .stat-number {
    font-size: 1.5rem;
  }

  .form-card {
    padding: 1.5rem;
  }

  .comparison-col {
    padding: 1.75rem;
  }
}

@media (max-width: 480px) {
  .hero h1 {
    font-size: 1.85rem;
  }

  .container {
    padding: 0 1rem;
  }

  .card {
    padding: 1.5rem;
  }
}
