/* ASCENT EDUCATION & CAREERS - DESIGN SYSTEM STYLESHEET */
:root {
  --navy-900: #062830; /* Deepest Midnight Teal */
  --navy-800: #0F4C5C; /* Main Ocean Teal from ASCENT logo */
  --navy-700: #134E5E; /* Logo Bold Text Teal */
  --blue-600: #226D77; /* Arc & Graduation Cap Teal */
  --teal-500: #2A7B88; /* Bright Accent Teal */
  --gold-500: #D4AF37; /* Gold Accent for CTAs & Trust Badges */
  --gold-400: #F59E0B; /* Vibrant Amber Gold */
  --gold-600: #B38728;
  --surface-light: #F0F6F7; /* Cool Mint/Teal Tinted Surface */
  --surface-card: #FFFFFF;
  --border-subtle: #D1E5E7;
  --text-dark: #062830;
  --text-muted: #466871;
  --text-light: #F0F6F7;
  --emerald-500: #10B981;
  --crimson-500: #EF4444;

  --font-primary: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-display: 'Outfit', sans-serif;

  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-full: 9999px;

  --shadow-sm: 0 2px 6px rgba(15, 76, 92, 0.05);
  --shadow-md: 0 8px 18px -4px rgba(15, 76, 92, 0.1);
  --shadow-lg: 0 20px 36px -8px rgba(15, 76, 92, 0.16);
  --shadow-gold-glow: 0 0 24px rgba(212, 175, 55, 0.35);
  --shadow-teal-glow: 0 0 24px rgba(34, 109, 119, 0.3);

  --transition-fast: 0.2s cubic-bezier(0.16, 1, 0.3, 1);
  --transition-normal: 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

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

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

body {
  font-family: var(--font-primary);
  background-color: var(--surface-light);
  color: var(--text-dark);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

/* Typography Utilities */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-primary);
  font-weight: 700;
  line-height: 1.25;
  color: var(--navy-900);
}

p {
  color: var(--text-muted);
}

a {
  color: inherit;
  text-decoration: none;
}

.gold-text { color: var(--gold-500) !important; }
.gold-gradient-text {
  background: linear-gradient(135deg, #D4AF37 0%, #E5C158 50%, #B38728 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.text-white { color: #FFFFFF !important; }
.text-slate-300 { color: #F1F5F9 !important; }
.text-center { text-align: center; }

/* Container & Layout */
.container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
}

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

.margin-top-md { margin-top: 24px; }
.margin-top-lg { margin-top: 48px; }

/* Interactive Device Viewport Switcher Toolbar */
.viewport-bar {
  background: #090F1D;
  color: #94A3B8;
  padding: 10px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 13px;
  position: sticky;
  top: 0;
  z-index: 1000;
}

.viewport-info {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  color: var(--gold-400);
}

.viewport-buttons {
  display: flex;
  gap: 8px;
}

.vp-btn {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: #CBD5E1;
  padding: 6px 14px;
  border-radius: var(--radius-sm);
  font-size: 12px;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition-fast);
  display: flex;
  align-items: center;
  gap: 6px;
}

.vp-btn:hover {
  background: rgba(212, 175, 55, 0.15);
  color: var(--gold-400);
  border-color: var(--gold-500);
}

.vp-btn.active {
  background: var(--gold-500);
  color: var(--navy-900);
  border-color: var(--gold-500);
}

.viewport-current-badge {
  background: rgba(212, 175, 55, 0.15);
  color: var(--gold-400);
  padding: 4px 10px;
  border-radius: var(--radius-full);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* App Frame Viewport Simulation */
.app-frame {
  margin: 0 auto;
  transition: width 0.4s ease, border-radius 0.4s ease, box-shadow 0.4s ease;
  background: var(--surface-light);
}

.app-frame.mode-full { width: 100%; }
.app-frame.mode-desktop { width: 1440px; box-shadow: 0 0 50px rgba(0,0,0,0.5); }
.app-frame.mode-laptop { width: 1280px; box-shadow: 0 0 40px rgba(0,0,0,0.4); }
.app-frame.mode-tablet { width: 768px; box-shadow: 0 0 30px rgba(0,0,0,0.3); border-radius: 16px; overflow: hidden; }
.app-frame.mode-mobile { width: 375px; box-shadow: 0 0 30px rgba(0,0,0,0.3); border-radius: 24px; overflow: hidden; }

/* Top Announcement Bar */
.top-announcement {
  background: var(--navy-900);
  color: var(--text-light);
  font-size: 13px;
  padding: 10px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

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

.announcement-badges {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.badge-gold {
  background: rgba(212, 175, 55, 0.2);
  color: var(--gold-400);
  border: 1px solid rgba(212, 175, 55, 0.4);
  padding: 2px 10px;
  border-radius: var(--radius-full);
  font-weight: 700;
  font-size: 11px;
}

.badge-outline {
  border: 1px solid rgba(255, 255, 255, 0.2);
  padding: 2px 10px;
  border-radius: var(--radius-full);
  font-size: 11px;
}

.badge-charity {
  background: rgba(16, 185, 129, 0.2);
  color: #34D399;
  border: 1px solid rgba(16, 185, 129, 0.4);
  padding: 2px 10px;
  border-radius: var(--radius-full);
  font-weight: 600;
  font-size: 11px;
}

.announcement-contact {
  display: flex;
  align-items: center;
  gap: 16px;
  font-weight: 500;
}

.announcement-contact a:hover {
  color: var(--gold-400);
}

/* Main Navigation Header */
.main-header {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(12px);
  position: sticky;
  top: 0;
  z-index: 900;
  border-bottom: 1px solid var(--border-subtle);
  box-shadow: var(--shadow-sm);
  transition: var(--transition-fast);
}

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

.brand-logo {
  display: flex;
  align-items: center;
  text-decoration: none;
}

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

.logo-mark-wrap {
  width: 48px;
  height: 48px;
  flex-shrink: 0;
}

.logo-mark-svg {
  width: 100%;
  height: 100%;
  display: block;
}

.logo-text-brand {
  display: flex;
  flex-direction: column;
  line-height: 1;
}

.brand-title {
  font-family: var(--font-primary);
  font-size: 26px;
  font-weight: 900;
  color: #0F4C5C;
  letter-spacing: -0.5px;
}

.brand-subtitle {
  font-family: var(--font-display);
  font-size: 10px;
  font-weight: 800;
  color: #226D77;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  margin-top: 3px;
}

.footer-col .brand-title {
  color: #FFFFFF;
}

.footer-col .brand-subtitle {
  color: var(--gold-400);
}

.brand-logo-img {
  height: 58px;
  width: auto;
  max-width: 280px;
  object-fit: contain;
  display: block;
  filter: drop-shadow(0 2px 4px rgba(0,0,0,0.15));
}

.footer-logo-img {
  height: 64px;
  width: auto;
  max-width: 280px;
  object-fit: contain;
  display: block;
  background: transparent !important;
  padding: 0 !important;
  border-radius: 0 !important;
  box-shadow: none !important;
  filter: drop-shadow(0 4px 8px rgba(0,0,0,0.3));
}

.drawer-logo-img {
  height: 52px;
  width: auto;
  max-width: 240px;
  object-fit: contain;
  display: block;
  background: transparent !important;
  padding: 0 !important;
  border-radius: 0 !important;
  box-shadow: none !important;
  filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.4));
}

.logo-icon {
  width: 46px;
  height: 46px;
  background: linear-gradient(135deg, #0F4C5C 0%, #226D77 100%);
  border: 2px solid var(--gold-500);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #FFFFFF;
  font-size: 22px;
  box-shadow: var(--shadow-md);
}

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

.brand-name {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 800;
  letter-spacing: -0.5px;
  color: var(--navy-900);
}

.brand-sub {
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 1px;
  color: var(--text-muted);
  text-transform: uppercase;
}

.desktop-nav .nav-list {
  display: flex;
  align-items: center;
  gap: 24px;
  list-style: none;
}

.nav-link {
  font-size: 14px;
  font-weight: 600;
  color: var(--navy-900);
  padding: 8px 4px;
  position: relative;
  transition: var(--transition-fast);
  display: flex;
  align-items: center;
  gap: 4px;
}

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

.nav-link.active::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 100%;
  height: 3px;
  background: var(--gold-500);
  border-radius: var(--radius-full);
}

.nav-badge {
  background: var(--gold-500);
  color: var(--navy-900);
  font-size: 9px;
  font-weight: 800;
  padding: 2px 6px;
  border-radius: var(--radius-full);
  text-transform: uppercase;
}

.charity-link {
  color: #059669 !important;
}

/* Dropdown Menu */
.dropdown-item {
  position: relative;
}

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 240px;
  background: var(--surface-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  padding: 10px;
  display: none;
  flex-direction: column;
  gap: 4px;
  z-index: 1000;
}

.dropdown-item:hover .dropdown-menu {
  display: flex;
  animation: fadeIn 0.2s ease;
}

.dropdown-menu a {
  padding: 10px 14px;
  border-radius: var(--radius-sm);
  font-size: 13px;
  font-weight: 600;
  color: var(--navy-900);
  display: flex;
  align-items: center;
  gap: 10px;
  transition: var(--transition-fast);
}

.dropdown-menu a:hover {
  background: var(--surface-light);
  color: var(--blue-600);
  transform: translateX(4px);
}

.featured-menu-item {
  background: rgba(212, 175, 55, 0.08);
  border: 1px solid rgba(212, 175, 55, 0.2);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 16px;
}

.mobile-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 24px;
  color: var(--navy-900);
  cursor: pointer;
}

/* Mobile Drawer */
.mobile-drawer {
  position: fixed;
  top: 0;
  right: -100%;
  width: 320px;
  height: 100vh;
  background: var(--navy-900);
  color: var(--text-light);
  z-index: 2000;
  transition: right 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  display: flex;
  flex-direction: column;
  box-shadow: -10px 0 30px rgba(0,0,0,0.5);
}

.mobile-drawer.open {
  right: 0;
}

.drawer-header {
  padding: 20px 24px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.drawer-close {
  background: none;
  border: none;
  color: #FFF;
  font-size: 24px;
  cursor: pointer;
}

.drawer-body {
  padding: 24px;
  overflow-y: auto;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.mobile-nav-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.mobile-nav-link {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 16px;
  border-radius: var(--radius-sm);
  font-size: 15px;
  font-weight: 600;
  color: #CBD5E1;
  transition: var(--transition-fast);
}

.mobile-nav-link:hover, .mobile-nav-link.active {
  background: rgba(255, 255, 255, 0.08);
  color: var(--gold-400);
}

.charity-highlight {
  color: #34D399 !important;
}

.drawer-footer {
  margin-top: 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

/* Buttons System */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 24px;
  border-radius: var(--radius-md);
  font-size: 15px;
  font-weight: 700;
  border: none;
  cursor: pointer;
  transition: var(--transition-normal);
  text-align: center;
}

.btn-sm { padding: 8px 16px; font-size: 13px; border-radius: var(--radius-sm); }
.btn-lg { padding: 16px 32px; font-size: 16px; border-radius: var(--radius-md); }
.btn-block { width: 100%; display: flex; }

.btn-gold {
  background: linear-gradient(135deg, var(--gold-500), var(--gold-400));
  color: var(--navy-900);
  box-shadow: 0 4px 12px rgba(212, 175, 55, 0.3);
}

.btn-gold:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-gold-glow);
  filter: brightness(1.05);
}

.btn-outline-gold {
  background: transparent;
  border: 2px solid var(--gold-500);
  color: var(--gold-400);
}

.btn-outline-gold:hover {
  background: var(--gold-500);
  color: var(--navy-900);
}

.btn-outline-navy {
  background: transparent;
  border: 2px solid var(--navy-800);
  color: var(--navy-900);
}

.btn-outline-navy:hover {
  background: var(--navy-800);
  color: #FFF;
}

.btn-outline-light {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #FFF;
}

.btn-outline-light:hover {
  background: #FFF;
  color: var(--navy-900);
}

.btn-whatsapp {
  background: #25D366;
  color: #FFF;
}

.btn-whatsapp:hover {
  background: #1EBE5B;
  color: #FFF;
}

.btn-text {
  background: none;
  border: none;
  color: var(--blue-600);
  font-weight: 700;
  font-size: 14px;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 0;
  transition: var(--transition-fast);
}

.btn-text:hover {
  color: var(--navy-800);
  transform: translateX(4px);
}

/* Page Views Mechanism */
.page-view {
  display: none;
  animation: fadeIn 0.4s ease forwards;
}

.page-view.active {
  display: block;
}

/* HERO SECTION */
.hero-section {
  position: relative;
  background: linear-gradient(135deg, #062830 0%, #0F4C5C 60%, #134E5E 100%);
  color: #FFF;
  padding: 100px 0 120px 0;
  overflow: hidden;
}

.hero-backdrop {
  position: absolute;
  top: -50%;
  right: -20%;
  width: 800px;
  height: 800px;
  background: radial-gradient(circle, rgba(34, 109, 119, 0.35) 0%, rgba(212, 175, 55, 0.15) 40%, rgba(6, 40, 48, 0) 70%);
  pointer-events: none;
}

.hero-container {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 10;
}

.hero-trust-tag {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 24px;
  flex-wrap: wrap;
}

.gold-pill {
  background: rgba(212, 175, 55, 0.15);
  border: 1px solid var(--gold-500);
  color: var(--gold-400);
  padding: 6px 16px;
  border-radius: var(--radius-full);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.trust-pill {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: #E2E8F0;
  padding: 6px 16px;
  border-radius: var(--radius-full);
  font-size: 12px;
  font-weight: 600;
}

.hero-title {
  font-family: 'Syne', 'Outfit', sans-serif;
  font-size: 54px;
  font-weight: 800;
  line-height: 1.12;
  color: #FFF;
  margin-bottom: 24px;
  letter-spacing: -1.2px;
  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.25);
}

.hero-subtitle {
  font-size: 18px;
  color: #94A3B8;
  margin-bottom: 36px;
  line-height: 1.6;
  max-width: 620px;
}

.hero-actions {
  display: flex;
  gap: 16px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}

.hero-proof-pills {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}

.proof-item {
  font-size: 14px;
  font-weight: 600;
  color: #CBD5E1;
  display: flex;
  align-items: center;
  gap: 8px;
}

/* Hero Visual & Glass Cards */
.hero-visual {
  position: relative;
}

.hero-glass-card {
  background: rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: var(--radius-lg);
  padding: 32px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.3);
  position: relative;
}

.main-card {
  border-top: 4px solid var(--gold-500);
}

.card-badge {
  background: rgba(212, 175, 55, 0.2);
  color: var(--gold-400);
  font-size: 11px;
  font-weight: 800;
  padding: 4px 12px;
  border-radius: var(--radius-full);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 16px;
  text-transform: uppercase;
}

.hero-card-icon {
  width: 56px;
  height: 56px;
  background: var(--gold-500);
  color: var(--navy-900);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  margin-bottom: 16px;
}

.main-card h3 {
  color: #FFF;
  font-size: 22px;
  margin-bottom: 8px;
}

.main-card p {
  color: #94A3B8;
  font-size: 14px;
  margin-bottom: 20px;
}

.card-tags {
  display: flex;
  gap: 12px;
  margin-bottom: 24px;
  font-size: 12px;
  color: var(--gold-400);
  font-weight: 600;
}

.floating-stat {
  position: absolute;
  padding: 16px 24px;
  border-radius: var(--radius-md);
  background: rgba(15, 23, 42, 0.85);
  border: 1px solid var(--gold-500);
}

.stat-1 {
  top: -20px;
  right: -20px;
}

.stat-2 {
  bottom: -20px;
  left: -20px;
}

.stat-num {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 800;
  color: var(--gold-400);
  line-height: 1;
}

.stat-lbl {
  font-size: 11px;
  color: #94A3B8;
  font-weight: 700;
  text-transform: uppercase;
}

/* Statistics Bar Section */
.stats-bar-section {
  background: var(--navy-900);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  padding: 32px 0;
  color: #FFF;
}

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

.stat-box {
  display: flex;
  align-items: center;
  gap: 16px;
}

.stat-icon {
  width: 52px;
  height: 52px;
  background: rgba(212, 175, 55, 0.12);
  border: 1px solid rgba(212, 175, 55, 0.3);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-400);
  font-size: 22px;
}

.stat-data {
  display: flex;
  flex-direction: column;
}

.stat-value {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 800;
  color: #FFF;
  line-height: 1.1;
}

.stat-title {
  font-size: 13px;
  color: #94A3B8;
  font-weight: 600;
}

/* Section Header Component */
.section-header {
  max-width: 720px;
  margin: 0 auto 56px auto;
}

.section-tag {
  background: rgba(37, 99, 235, 0.1);
  color: var(--blue-600);
  font-size: 12px;
  font-weight: 800;
  padding: 4px 14px;
  border-radius: var(--radius-full);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  display: inline-block;
  margin-bottom: 12px;
}

.section-tag.gold {
  background: rgba(212, 175, 55, 0.15);
  color: var(--gold-400);
}

.section-title {
  font-size: 38px;
  font-weight: 800;
  color: var(--navy-900);
  margin-bottom: 16px;
  letter-spacing: -0.5px;
}

.section-subtitle {
  font-size: 16px;
  color: var(--text-muted);
}

/* Services Grid & Cards */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.service-card {
  background: var(--surface-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 36px;
  transition: var(--transition-normal);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  box-shadow: var(--shadow-sm);
  position: relative;
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: var(--gold-500);
}

.service-card.featured {
  border: 2px solid var(--gold-500);
  background: linear-gradient(180deg, #FFFFFF 0%, #FFFDF5 100%);
}

.featured-badge {
  position: absolute;
  top: -12px;
  right: 24px;
  background: var(--gold-500);
  color: var(--navy-900);
  font-size: 10px;
  font-weight: 800;
  padding: 4px 12px;
  border-radius: var(--radius-full);
  text-transform: uppercase;
}

.service-icon {
  width: 64px;
  height: 64px;
  background: linear-gradient(135deg, rgba(15, 76, 92, 0.12), rgba(34, 109, 119, 0.25));
  border: 1.5px solid rgba(15, 76, 92, 0.3);
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--teal-600);
  font-size: 28px;
  margin-bottom: 24px;
  box-shadow: 0 4px 14px rgba(15, 76, 92, 0.12);
  transition: var(--transition-fast);
}

.service-card:hover .service-icon {
  background: linear-gradient(135deg, var(--navy-900), var(--teal-600));
  color: var(--gold-400);
  border-color: var(--gold-400);
  transform: scale(1.05);
}

.service-card h3 {
  font-size: 22px;
  margin-bottom: 12px;
}

.service-card p {
  font-size: 14px;
  margin-bottom: 20px;
}

.service-list {
  list-style: none;
  margin-bottom: 28px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.service-list li {
  font-size: 13px;
  font-weight: 600;
  color: var(--navy-700);
  display: flex;
  align-items: center;
  gap: 8px;
}

/* GCC Country Grid Section */
.gcc-spotlight-section {
  background: var(--navy-900);
  color: #FFF;
}

.gcc-country-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.country-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-md);
  padding: 28px;
  text-align: center;
  transition: var(--transition-normal);
}

.country-card:hover {
  background: rgba(255, 255, 255, 0.09);
  border-color: var(--gold-500);
  transform: translateY(-4px);
}

.country-flag {
  font-size: 48px;
  margin-bottom: 12px;
}

.country-card h3 {
  color: #FFF;
  font-size: 20px;
  margin-bottom: 4px;
}

.country-code {
  color: #94A3B8;
  font-size: 13px;
  margin-bottom: 16px;
}

.country-badge {
  background: rgba(212, 175, 55, 0.15);
  color: var(--gold-400);
  font-size: 11px;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: var(--radius-full);
  display: inline-block;
  margin-bottom: 20px;
}

/* Charity Banner Card */
.charity-banner-section {
  background: var(--surface-light);
}

.charity-banner-card {
  background: linear-gradient(135deg, var(--navy-900) 0%, var(--navy-800) 100%);
  border-radius: var(--radius-lg);
  padding: 60px;
  color: #FFF;
  display: grid;
  grid-template-columns: 1.4fr 0.6fr;
  gap: 48px;
  align-items: center;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--gold-500);
}

.charity-content h2 {
  color: #FFF;
  font-size: 36px;
  margin: 16px 0;
}

.charity-content p {
  color: #CBD5E1;
  font-size: 16px;
  margin-bottom: 32px;
}

.charity-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.charity-stats {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.c-stat-box {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: var(--radius-md);
  padding: 20px;
  text-align: center;
}

.c-number {
  font-family: var(--font-display);
  font-size: 36px;
  font-weight: 800;
  color: var(--gold-400);
  display: block;
}

.c-label {
  font-size: 13px;
  color: #94A3B8;
  font-weight: 600;
}

/* Testimonials Carousel */
.testimonials-section {
  background: #FFF;
}

.testimonials-carousel {
  max-width: 800px;
  margin: 0 auto;
  position: relative;
  min-height: 220px;
}

.testimonial-card {
  display: none;
  background: var(--surface-light);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 40px;
  text-align: center;
  box-shadow: var(--shadow-md);
}

.testimonial-card.active,
.testimonial-card.static-card,
#view-testimonials .testimonial-card {
  display: block !important;
  animation: fadeIn 0.4s ease;
}

.stars {
  color: var(--gold-500);
  font-size: 18px;
  margin-bottom: 20px;
}

.t-quote {
  font-size: 18px;
  font-weight: 500;
  color: var(--navy-900);
  font-style: italic;
  margin-bottom: 28px;
  line-height: 1.6;
}

.t-author {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
}

.t-avatar {
  width: 48px;
  height: 48px;
  background: var(--navy-900);
  color: var(--gold-400);
  border: 2px solid var(--gold-500);
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 16px;
}

.t-name {
  font-size: 16px;
  color: var(--navy-900);
}

.t-role {
  font-size: 12px;
  color: var(--text-muted);
}

.carousel-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-top: 32px;
}

.c-prev, .c-next {
  background: var(--surface-light);
  border: 1px solid var(--border-subtle);
  width: 40px;
  height: 40px;
  border-radius: var(--radius-full);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--navy-900);
  transition: var(--transition-fast);
}

.c-prev:hover, .c-next:hover {
  background: var(--navy-900);
  color: var(--gold-400);
}

.c-dots {
  display: flex;
  gap: 8px;
}

.dot {
  width: 10px;
  height: 10px;
  border-radius: var(--radius-full);
  background: var(--border-subtle);
  cursor: pointer;
  transition: var(--transition-fast);
}

.dot.active {
  background: var(--gold-500);
  width: 24px;
}

/* FAQ Accordion Component */
.faq-accordion {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.faq-item {
  background: var(--surface-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition-fast);
}

.faq-question {
  width: 100%;
  padding: 20px 24px;
  background: none;
  border: none;
  text-align: left;
  font-size: 16px;
  font-weight: 700;
  color: var(--navy-900);
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
}

.faq-question i {
  color: var(--gold-500);
  transition: transform 0.3s ease;
}

.faq-item.active .faq-question i {
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.35s ease;
  padding: 0 24px;
  color: var(--text-muted);
  font-size: 14px;
  line-height: 1.6;
}

.faq-item.active .faq-answer {
  max-height: 200px;
  padding: 0 24px 20px 24px;
}

/* FAQ WhatsApp CTA Card */
.faq-wa-card {
  background: linear-gradient(135deg, #062830 0%, #0F4C5C 100%);
  border: 1px solid var(--gold-500);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  color: #FFF;
  box-shadow: var(--shadow-lg);
}

.faq-wa-card h3 {
  color: #FFF;
  font-size: 22px;
  margin-bottom: 8px;
}

.faq-wa-card p {
  color: rgba(255, 255, 255, 0.88);
  font-size: 15px;
  max-width: 580px;
  margin: 0 auto 20px auto;
}

.wa-icon-bubble {
  width: 56px;
  height: 56px;
  background: #25D366;
  color: #FFF;
  font-size: 30px;
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px auto;
  box-shadow: 0 4px 14px rgba(37, 211, 102, 0.4);
}

/* Footer Section */
.main-footer {
  background: var(--navy-900);
  color: #94A3B8;
  padding-top: 80px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

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

/* Off-White Footer Styling with High Specificity (excluding icons) */
.main-footer,
.main-footer p,
.main-footer li,
.main-footer span:not(.contact-icon-wrapper),
.footer-col,
.footer-col p,
.footer-col a,
.footer-links a,
.footer-desc {
  color: #F8FAFC !important;
  font-size: 14px;
  line-height: 1.6;
}

.footer-col p {
  margin-bottom: 12px;
}

.footer-socials {
  display: flex;
  gap: 12px;
}

.footer-socials a {
  width: 36px;
  height: 36px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #FFF !important;
  transition: var(--transition-fast);
}

.footer-socials a:hover {
  background: var(--gold-500);
  color: var(--navy-900) !important;
}

.footer-col h4 {
  color: #FFFFFF !important;
  font-size: 17px;
  font-weight: 700;
  margin-bottom: 20px;
}

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

.footer-links a {
  font-size: 14px;
  color: #F8FAFC !important;
  transition: var(--transition-fast);
}

.footer-links a:hover {
  color: var(--gold-400) !important;
  padding-left: 4px;
}

/* ==========================================================================
   PREMIUM CONTACT INFORMATION GLASS CARD SYSTEM (WCAG AA COMPLIANT)
   ========================================================================== */
.footer-col.contact-col {
  background: transparent !important;
  border: none !important;
  border-radius: 0 !important;
  box-shadow: none !important;
  backdrop-filter: none !important;
  -webkit-backdrop-filter: none !important;
  padding: 0 !important;
}

.glass-contact-card,
.contact-info-card.glass-contact-card {
  background: rgba(255, 255, 255, 0.04) !important;
  border: 1px solid rgba(255, 255, 255, 0.08) !important;
  border-radius: 18px !important;
  backdrop-filter: blur(12px) !important;
  -webkit-backdrop-filter: blur(12px) !important;
  padding: 32px !important;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.25) !important;
}

@media (max-width: 768px) {
  .glass-contact-card,
  .contact-info-card.glass-contact-card {
    padding: 24px !important;
  }
}

.contact-card-heading {
  font-size: 32px !important;
  font-weight: 700 !important;
  color: #FFFFFF !important;
  line-height: 1.25 !important;
  margin-bottom: 24px !important;
  letter-spacing: -0.5px !important;
}

@media (max-width: 768px) {
  .contact-card-heading {
    font-size: 26px !important;
  }
}

.premium-contact-list {
  list-style: none !important;
  padding: 0 !important;
  margin: 0 !important;
  display: flex !important;
  flex-direction: column !important;
  gap: 18px !important;
}

.contact-item {
  display: flex !important;
  align-items: flex-start !important;
  gap: 16px !important;
  padding: 4px 0 !important;
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1) !important;
}

/* Deep Amber Accent Yellow Icons */
.contact-icon-wrapper i,
.contact-item i,
.contact-list i,
.footer-col i,
.gold-text,
i.gold-text,
.contact-icon-wrapper i.fa-solid,
.contact-icon-wrapper i.fa-brands {
  color: #FFC107 !important; /* Deep Amber Accent Yellow */
}

.contact-icon-wrapper {
  flex-shrink: 0 !important;
  width: 42px !important;
  height: 42px !important;
  border-radius: 12px !important;
  background: rgba(255, 193, 7, 0.15) !important;
  border: 1px solid rgba(255, 193, 7, 0.35) !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1) !important;
}

.contact-icon-wrapper i {
  font-size: 20px !important;
  transition: transform 0.25s cubic-bezier(0.16, 1, 0.3, 1), color 0.25s ease !important;
}

.contact-text-content {
  display: flex !important;
  flex-direction: column !important;
  gap: 2px !important;
}

.contact-label {
  font-size: 13px !important;
  font-weight: 600 !important;
  color: #CBD5E1 !important; /* Secondary text (85-90% white opacity) */
  text-transform: uppercase !important;
  letter-spacing: 0.5px !important;
}

.contact-detail,
.contact-item address {
  font-size: 18px !important;
  font-weight: 500 !important;
  color: #F8FAFC !important; /* Primary text (100% white opacity) */
  line-height: 1.7 !important;
  font-style: normal !important;
  text-decoration: none !important;
  transition: color 0.25s ease !important;
}

@media (max-width: 768px) {
  .contact-detail,
  .contact-item address {
    font-size: 16px !important;
  }
}

/* Micro-Interaction & Hover Animations */
.contact-item:hover .contact-icon-wrapper {
  background: rgba(255, 193, 7, 0.3) !important;
  border-color: #FFD54F !important;
  box-shadow: 0 0 15px rgba(255, 193, 7, 0.5) !important;
}

.contact-item:hover .contact-icon-wrapper i {
  transform: scale(1.08) !important;
  color: #FFEE58 !important; /* Bright Accent Yellow on Hover */
}

.contact-item:hover .contact-detail,
.contact-item:hover .contact-label {
  color: #FFFFFF !important;
}

.contact-link {
  position: relative !important;
  display: inline-block !important;
}

.contact-link::after {
  content: '' !important;
  position: absolute !important;
  bottom: -2px !important;
  left: 0 !important;
  width: 0 !important;
  height: 2px !important;
  background: #F4B400 !important;
  transition: width 0.25s ease !important;
}

.contact-link:hover::after {
  width: 100% !important;
}

.footer-bottom,
.footer-bottom p,
.footer-legal a {
  background: #090F1D;
  font-size: 13px;
  color: #F8FAFC !important;
}

.footer-bottom {
  padding: 24px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.footer-bottom-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

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

.footer-legal a:hover { color: var(--gold-400) !important; }

/* Floating Action Buttons */
.floating-wa-btn, .floating-call-btn {
  position: fixed;
  bottom: 28px;
  width: 56px;
  height: 56px;
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #FFF;
  font-size: 26px;
  box-shadow: var(--shadow-lg);
  z-index: 950;
  transition: var(--transition-fast);
}

.floating-wa-btn {
  right: 28px;
  background: #25D366;
}

.floating-call-btn {
  right: 96px;
  background: var(--navy-800);
  border: 2px solid var(--gold-500);
}

.floating-wa-btn:hover, .floating-call-btn:hover {
  transform: scale(1.1);
}

/* Modals System */
.modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(6, 40, 48, 0.85);
  backdrop-filter: blur(8px);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  padding: 20px;
}

.modal-backdrop.open {
  display: flex !important;
  opacity: 1 !important;
  visibility: visible !important;
  pointer-events: auto !important;
  z-index: 99999 !important;
  animation: fadeIn 0.3s ease;
}

.modal-card {
  background: var(--surface-card);
  border-radius: var(--radius-lg);
  width: 100%;
  max-width: 540px;
  box-shadow: 0 25px 50px -12px rgba(0,0,0,0.35);
  border: 1px solid var(--border-subtle);
  overflow: hidden;
  animation: slideUp 0.35s ease;
}

.modal-header {
  padding: 20px 24px;
  background: var(--navy-900);
  color: #FFF;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.modal-header h3 {
  color: #FFF;
  font-size: 18px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.modal-close {
  background: none;
  border: none;
  color: #FFF;
  font-size: 20px;
  cursor: pointer;
}

.modal-body {
  padding: 28px;
  max-height: 80vh;
  overflow-y: auto;
}

/* Forms System */
.app-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

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

.form-group label {
  font-size: 13px;
  font-weight: 700;
  color: var(--navy-900);
}

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

.form-control {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid var(--border-subtle);
  border-radius: var(--radius-sm);
  font-family: var(--font-primary);
  font-size: 14px;
  color: var(--navy-900);
  background: var(--surface-light);
  transition: var(--transition-fast);
}

.form-control:focus {
  outline: none;
  border-color: var(--gold-500);
  background: #FFF;
  box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.2);
}

.file-dropzone {
  border: 2px dashed var(--border-subtle);
  border-radius: var(--radius-sm);
  padding: 20px;
  text-align: center;
  background: var(--surface-light);
  cursor: pointer;
  position: relative;
  font-size: 13px;
  color: var(--text-muted);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.file-dropzone input[type="file"] {
  position: absolute;
  top: 0; left: 0; width: 100%; height: 100%;
  opacity: 0;
  cursor: pointer;
}

.fee-guarantee-note {
  background: rgba(212, 175, 55, 0.1);
  border: 1px solid rgba(212, 175, 55, 0.3);
  padding: 10px 14px;
  border-radius: var(--radius-sm);
  font-size: 12px;
  font-weight: 700;
  color: var(--navy-900);
  display: flex;
  align-items: center;
  gap: 8px;
}

/* Toast Notifications */
.toast-container {
  position: fixed;
  top: 24px;
  right: 24px;
  z-index: 4000;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.toast {
  background: var(--navy-900);
  color: #FFF;
  border-left: 4px solid var(--gold-500);
  padding: 16px 20px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  font-size: 14px;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 12px;
  animation: slideLeft 0.3s ease;
}

/* Page Specific Details */
.page-hero {
  background: var(--navy-900);
  color: #FFF;
  padding: 60px 0;
  text-align: center;
  position: relative;
}

.btn-back-home {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: var(--gold-400);
  font-size: 13px;
  font-weight: 700;
  padding: 8px 18px;
  border-radius: var(--radius-full);
  margin-bottom: 20px;
  cursor: pointer;
  transition: var(--transition-fast);
}

.btn-back-home:hover {
  background: var(--gold-500);
  color: var(--navy-900);
  border-color: var(--gold-500);
  transform: translateX(-4px);
}

.page-hero h1 {
  color: #FFF;
  font-size: 38px;
  margin: 12px 0;
}

.about-grid, .contact-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.contact-grid {
  grid-template-columns: 1fr 1fr;
}

.about-card, .contact-info-card, .contact-form-card {
  background: #FFF;
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 32px;
  box-shadow: var(--shadow-sm);
}

.icon-box {
  font-size: 32px;
  margin-bottom: 16px;
}

.contact-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 20px;
  font-size: 15px;
}

.contact-list li {
  display: flex;
  align-items: center;
  gap: 12px;
}

.gcc-filter-pills {
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
}

.filter-pill {
  background: #FFF;
  border: 1.5px solid var(--border-subtle);
  padding: 8px 18px;
  border-radius: var(--radius-full);
  font-weight: 700;
  font-size: 13px;
  cursor: pointer;
  transition: var(--transition-fast);
}

.filter-pill:hover, .filter-pill.active {
  background: var(--navy-900);
  color: var(--gold-400);
  border-color: var(--navy-900);
}

.gda-detail-card {
  background: #FFF;
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: var(--shadow-md);
}

.gda-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 40px;
  align-items: center;
}

.gda-action-box {
  background: var(--surface-light);
  border: 1px solid var(--gold-500);
  border-radius: var(--radius-md);
  padding: 28px;
  text-align: center;
}

.faq-search-box {
  max-width: 600px;
  margin: 0 auto;
  position: relative;
}

.faq-search-box i {
  position: absolute;
  left: 20px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--text-muted);
}

.faq-search-box input {
  width: 100%;
  padding: 16px 20px 16px 52px;
  border: 2px solid var(--border-subtle);
  border-radius: var(--radius-full);
  font-size: 15px;
}

/* Animations Keyframes */
@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

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

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

/* 12-Module Counselling & Development Grid */
.counselling-modules-section {
  background: var(--navy-900);
  color: #FFF;
  padding: 80px 0;
}

.counselling-modules-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin: 40px 0;
}

.c-module-pill {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-full);
  padding: 18px 28px;
  display: flex;
  align-items: center;
  gap: 16px;
  transition: var(--transition-normal);
  cursor: pointer;
}

.c-module-pill:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: var(--gold-500);
  transform: translateY(-4px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.3);
}

.c-num {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 800;
  color: var(--gold-400);
  flex-shrink: 0;
}

.c-title {
  font-size: 15px;
  font-weight: 700;
  color: #FFFFFF;
  line-height: 1.3;
}

/* Blog & SEO Career Insights Section */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
}

.blog-card {
  background: var(--surface-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition-fast);
  display: flex;
  flex-direction: column;
}

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

.blog-card-image {
  position: relative;
  height: 220px;
  overflow: hidden;
  background: var(--navy-900);
}

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

.blog-card:hover .blog-img {
  transform: scale(1.05);
}

.blog-placeholder-hero {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #062830 0%, #0F4C5C 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-400);
  font-size: 64px;
}

.blog-placeholder-hero.healthcare-hero {
  background: linear-gradient(135deg, #0F4C5C 0%, #226D77 100%);
}

.blog-placeholder-hero.guidance-hero {
  background: linear-gradient(135deg, #134E5E 0%, #2A7B88 100%);
}

.blog-category-tag {
  position: absolute;
  top: 16px;
  left: 16px;
  background: var(--navy-900);
  color: var(--gold-400);
  font-size: 11px;
  font-weight: 800;
  padding: 4px 12px;
  border-radius: var(--radius-full);
  border: 1px solid var(--gold-500);
  text-transform: uppercase;
  z-index: 2;
}

.blog-card-content {
  padding: 28px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.blog-meta {
  font-size: 12px;
  font-weight: 600;
  color: var(--text-muted);
  margin-bottom: 12px;
}

.blog-title {
  font-size: 20px;
  font-weight: 800;
  color: var(--navy-900);
  line-height: 1.35;
  margin-bottom: 12px;
}

.blog-excerpt {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 24px;
  flex-grow: 1;
}

@media (max-width: 1024px) {
  .counselling-modules-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 640px) {
  .counselling-modules-grid { grid-template-columns: 1fr; }
  .c-module-pill { border-radius: var(--radius-md); }
}
@media (max-width: 1024px) {
  .hero-container { grid-template-columns: 1fr; }
  .hero-visual { display: none; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .gcc-country-grid { grid-template-columns: repeat(2, 1fr); }
  .charity-banner-card { grid-template-columns: 1fr; }
  .footer-container { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .desktop-nav { display: none; }
  .mobile-toggle { display: block; }
  .top-announcement { display: none; }
  .main-header { top: 0; }
  .hero-title { font-size: 36px; }
  .section-title { font-size: 28px; }
  .services-grid { grid-template-columns: 1fr; }
  .blog-grid { grid-template-columns: 1fr; }
  .gcc-country-grid { grid-template-columns: 1fr; }
  .about-grid, .contact-grid { grid-template-columns: 1fr; }
  .gda-grid { grid-template-columns: 1fr; }
  .footer-container { grid-template-columns: 1fr; }
  .footer-bottom-content { flex-direction: column; gap: 12px; }
  .viewport-bar { display: none; } /* On real mobile devices, hide viewport switcher */
}
