/*
Theme Name: Vokasi Bisa
Theme URI: https://vokasibisa.id
Author: PT Saksi Teknologi Indonesia
Description: Custom WordPress theme for Vokasi Bisa - Indonesia's Lifelong Learning & Future Career Platform
Version: 1.4.0
Text Domain: vokasi-bisa-theme
*/

:root {
  /* Brand Primary Colors (Calm Royal Cobalt Blue - Logo Origin) */
  --brand-primary: #204cb2;         /* Calm, Prestigious Royal Blue */
  --brand-primary-hover: #17388a;   /* Deep Blue Hover */
  --brand-primary-dark: #0f172a;    /* Deep Midnight Slate (Premium Dark Base) */
  --brand-primary-light: #eff4fc;   /* Soft Ice Blue Tint */
  --brand-primary-border: #dbe4f5;  /* Subtle Crisp Blue Border */
  
  /* Brand Accent Colors (Calm Warm Amber from Logo Yellow) */
  --brand-accent: #eef138;          /* Calm Warm Amber / Gold */
  --brand-accent-hover: #eef138;    /* Deep Amber */
  --brand-accent-yellow: #eef138;   /* Soft Sun Yellow for Dark Hero Text */
  
  /* Aliases for Theme Compatibility */
  --primary-navy: #204cb2;
  --primary-purple: #204cb2;
  --primary-dark: #0f172a;
  --accent-red: #204cb2;
  --accent-red-hover: #17388a;
  --accent-orange: #eef138;
  --accent-orange-hover: #eef138;
  
  /* Neutral Palette */
  --bg-light: #f8fafc;
  --bg-white: #ffffff;
  --text-dark: #334155;            /* Soft Slate Charcoal Body Text */
  --text-heading: #0f172a;         /* Deep Rich Slate for Headings */
  --text-muted: #64748b;           /* Elegant Neutral Gray */
  --text-light: #f1f5f9;
  --border-color: #e2e8f0;
  --font-heading: 'Montserrat', 'Plus Jakarta Sans', sans-serif;
  --font-body: 'Noto Sans', 'Inter', sans-serif;
  --header-height: 80px;
}

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

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

body {
  font-family: var(--font-body);
  color: var(--text-dark);
  background-color: var(--bg-white);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  padding-top: var(--header-height);
  min-height: 100%;
  overflow-x: hidden;
}

/* ==========================================================================
   WORDPRESS ADMIN BAR COMPATIBILITY FIX
   ========================================================================== */
body.admin-bar .site-header {
  top: 32px !important;
}

body.admin-bar {
  padding-top: calc(var(--header-height) + 32px);
}

@media screen and (max-width: 782px) {
  body.admin-bar .site-header {
    top: 46px !important;
  }
  body.admin-bar {
    padding-top: calc(var(--header-height) + 46px);
  }
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.25;
  margin-bottom: 1rem;
  color: var(--text-heading);
}

a {
  color: var(--brand-primary);
  text-decoration: none;
  transition: color 0.25s ease;
}

a:hover {
  color: var(--brand-primary-hover);
}

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

/* Layout Utilities */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

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

/* Buttons */
.btn {
  display: inline-block;
  padding: 12px 26px;
  font-family: var(--font-heading);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.6px;
  border-radius: 6px;
  transition: all 0.25s ease;
  cursor: pointer;
  text-align: center;
  border: 2px solid transparent;
  font-size: 0.85rem;
  line-height: 1.4;
}

/* Primary Button: Calmer Royal Blue with White Text */
.btn-primary {
  background-color: var(--brand-primary) !important;
  color: #ffffff !important;
  font-weight: 700 !important;
  border: none !important;
  box-shadow: 0 4px 14px rgba(32, 76, 178, 0.22);
}

.btn-primary:hover {
  background-color: var(--brand-primary-hover) !important;
  color: #ffffff !important;
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(32, 76, 178, 0.32);
}

/* Accent Button: Warm Amber */
.btn-accent,
.btn-yellow {
  background-color: var(--brand-accent) !important;
  color: #ffffff !important;
  font-weight: 700 !important;
  border: none !important;
  box-shadow: 0 4px 14px rgba(238, 241, 56, 0.25);
}

.btn-accent:hover,
.btn-yellow:hover {
  background-color: var(--brand-accent-hover) !important;
  color: #ffffff !important;
  transform: translateY(-2px);
}

/* Outline Buttons */
.btn-outline {
  background-color: transparent !important;
  color: var(--brand-primary) !important;
  border: 2px solid var(--brand-primary) !important;
}

.btn-outline:hover {
  background-color: var(--brand-primary) !important;
  color: #ffffff !important;
  transform: translateY(-2px);
}

.btn-outline-white {
  background-color: transparent !important;
  color: #ffffff !important;
  border: 2px solid rgba(255, 255, 255, 0.85) !important;
}

.btn-outline-white:hover {
  background-color: #ffffff !important;
  color: var(--brand-primary-dark) !important;
  border-color: #ffffff !important;
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(255, 255, 255, 0.2);
}

/* Header & Navigation */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: var(--header-height);
  background-color: var(--bg-white);
  box-shadow: 0 2px 10px rgba(15, 23, 42, 0.06);
  z-index: 1000;
  display: flex;
  align-items: center;
  transition: top 0.2s ease;
}

.site-header .container {
  max-width: 100% !important;
  width: 100%;
  padding: 0 40px;
}

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

.site-logo {
  display: inline-flex;
  align-items: center;
  height: 50px;
  flex-shrink: 0;
}

.site-logo-link {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
}

.header-logo {
  height: 46px !important;
  width: 46px !important;
  border-radius: 50% !important;
  object-fit: cover !important;
  display: block !important;
  box-shadow: 0 2px 8px rgba(32, 76, 178, 0.2) !important;
  transition: transform 0.2s ease !important;
}

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

/* Desktop Navigation (>= 1024px) */
.desktop-nav {
  display: none;
}

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

.desktop-menu > li {
  position: relative;
}

.desktop-menu > li > a {
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-weight: 600;
  color: #1e293b;
  padding: 28px 14px;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: color 0.25s ease;
}

.nav-dropdown-arrow {
  font-size: 0.65rem;
  margin-left: 4px;
  opacity: 0.6;
  transition: transform 0.25s ease;
}

.desktop-menu > li:hover > a .nav-dropdown-arrow {
  transform: rotate(180deg);
  opacity: 1;
}

.desktop-menu > li > a:hover,
.desktop-menu > li.current-menu-item > a,
.desktop-menu > li.current-menu-ancestor > a,
.desktop-menu > li.current-menu-parent > a,
.desktop-menu > li.current_page_ancestor > a,
.desktop-menu > li.current_page_parent > a {
  color: var(--brand-primary) !important;
  font-weight: 700;
}

.desktop-menu > li.current-menu-item > a::before,
.desktop-menu > li.current-menu-ancestor > a::before,
.desktop-menu > li.current-menu-parent > a::before,
.desktop-menu > li.current_page_ancestor > a::before,
.desktop-menu > li.current_page_parent > a::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 14px;
  right: 14px;
  height: 3px;
  background-color: var(--brand-primary);
  border-radius: 3px 3px 0 0;
}

/* Dropdown Menus */
.desktop-menu .sub-menu {
  position: absolute;
  top: 100%;
  left: 0;
  background-color: #ffffff;
  min-width: 280px;
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.1);
  border-radius: 8px;
  padding: 10px 0;
  list-style: none;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
  z-index: 1000;
  border: 1px solid var(--border-color);
  pointer-events: none;
}

.desktop-menu > li:hover > .sub-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  pointer-events: auto;
}

.desktop-menu .sub-menu li {
  position: relative;
}

.desktop-menu .sub-menu li a {
  padding: 10px 20px;
  display: block;
  color: #334155;
  font-size: 0.9rem;
  font-weight: 500;
  transition: all 0.2s ease;
}

.desktop-menu .sub-menu li a:hover,
.desktop-menu .sub-menu li.current-menu-item > a {
  background-color: var(--brand-primary-light);
  color: var(--brand-primary);
  padding-left: 24px;
  font-weight: 600;
}

/* ==========================================================================
   ECOSYSTEM NAV ITEM (DESKTOP & MOBILE HORIZONTAL FLEX)
   ========================================================================== */
.ecosystem-nav-item .eco-nav-link,
.eco-nav-link {
  display: flex !important;
  flex-direction: row !important;
  align-items: center !important;
  gap: 14px !important;
  padding: 10px 12px !important;
  border-radius: 10px !important;
  background: transparent !important;
  text-decoration: none !important;
  transition: all 0.2s ease !important;
  width: 100% !important;
  box-sizing: border-box !important;
}

.ecosystem-nav-item .eco-nav-link:hover,
.mobile-menu .ecosystem-nav-item .eco-nav-link:hover,
.mobile-menu .ecosystem-nav-item.current-menu-item .eco-nav-link {
  background-color: var(--brand-primary-light) !important;
  transform: translateX(3px) !important;
}

.eco-nav-icon {
  width: 44px !important;
  height: 44px !important;
  border-radius: 10px !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  flex-shrink: 0 !important;
  font-size: 1.25rem !important;
  transition: transform 0.2s ease !important;
}

.eco-nav-content {
  display: flex !important;
  flex-direction: column !important;
  justify-content: center !important;
  gap: 3px !important;
  text-align: left !important;
  flex-grow: 1 !important;
}

.eco-nav-title {
  font-family: var(--font-heading) !important;
  font-size: 0.92rem !important;
  font-weight: 700 !important;
  color: #1e293b !important;
  line-height: 1.25 !important;
  display: block !important;
}

.eco-nav-subtitle {
  font-size: 0.76rem !important;
  color: #64748b !important;
  line-height: 1.2 !important;
  display: block !important;
  font-weight: 400 !important;
}

.mobile-menu .ecosystem-nav-item {
  margin-bottom: 8px !important;
  border-bottom: none !important;
}

.mobile-menu .ecosystem-nav-item .eco-nav-link {
  padding: 8px 10px !important;
}

/* Mobile Nav Styles */
.menu-toggle {
  background: transparent;
  border: none;
  cursor: pointer;
  width: 44px;
  height: 44px;
  padding: 8px;
  z-index: 10005 !important;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
}

.hamburger-box {
  width: 24px;
  height: 18px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.hamburger-line {
  display: block;
  width: 100%;
  height: 2.5px;
  background-color: var(--brand-primary-dark);
  border-radius: 2px;
  transition: all 0.3s ease;
}

.menu-toggle.active .hamburger-line:nth-child(1) { transform: translateY(7.75px) rotate(45deg); }
.menu-toggle.active .hamburger-line:nth-child(2) { opacity: 0; }
.menu-toggle.active .hamburger-line:nth-child(3) { transform: translateY(-7.75px) rotate(-45deg); }

.mobile-nav-backdrop {
  position: fixed;
  top: 0; left: 0; width: 100vw; height: 100vh;
  background: rgba(15, 23, 42, 0.6);
  backdrop-filter: blur(4px);
  z-index: 9998;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

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

.mobile-nav {
  position: fixed;
  top: 0; right: -100%;
  width: 320px; max-width: 85vw;
  height: 100vh;
  background: #ffffff;
  z-index: 9999;
  box-shadow: -5px 0 30px rgba(15, 23, 42, 0.15);
  display: flex;
  flex-direction: column;
  transition: right 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  overflow: hidden;
}

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

.mobile-nav-scroll {
  padding: 80px 20px 40px;
  overflow-y: auto;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.mobile-menu {
  list-style: none;
  padding: 0;
  margin: 0 0 2rem 0;
}

.mobile-menu > li {
  position: relative;
  border-bottom: 1px solid var(--border-color);
}

.mobile-menu > li > a {
  display: block;
  padding: 14px 40px 14px 0;
  color: var(--text-dark);
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.mobile-menu > li.current-menu-item > a,
.mobile-menu > li > a:hover {
  color: var(--brand-primary);
}

.submenu-arrow {
  position: absolute;
  top: 8px; right: 0;
  width: 36px; height: 36px;
  display: flex; align-items: center; justify-content: center;
  background: transparent;
  border: none;
  cursor: pointer;
  color: var(--text-muted);
  transition: transform 0.3s ease;
}

.menu-item-has-children.submenu-open > .submenu-arrow {
  transform: rotate(180deg);
  color: var(--brand-primary);
}

.mobile-menu .sub-menu {
  display: none;
  list-style: none;
  padding: 0 0 10px 14px;
  margin: 0;
}

.menu-item-has-children.submenu-open > .sub-menu {
  display: block;
}

.mobile-menu .sub-menu li a {
  display: block;
  padding: 8px 0;
  font-size: 0.88rem;
  color: var(--text-muted);
  font-weight: 500;
}

.mobile-menu .sub-menu li a:hover,
.mobile-menu .sub-menu li.current-menu-item a {
  color: var(--brand-primary);
}

.mobile-nav-footer {
  margin-top: auto;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border-color);
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.mobile-cta-btn {
  width: 100%;
  text-align: center;
  padding: 12px 20px;
}

.mobile-social-links {
  display: flex;
  justify-content: center;
  gap: 16px;
}

.mobile-social-links a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px; height: 38px;
  border-radius: 50%;
  background: var(--brand-primary-light);
  color: var(--brand-primary);
  font-size: 1.1rem;
}

@media (min-width: 1024px) {
  .desktop-nav { display: block !important; }
  .menu-toggle { display: none !important; }
  .mobile-nav, .mobile-nav-backdrop { display: none !important; visibility: hidden !important; }
}

/* ==========================================================================
   HERO SECTIONS (EXACT FULLSCREEN MATCH TO RKD)
   ========================================================================== */
.page-hero {
  position: relative;
  min-height: 480px;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 80px 0;
  background-color: var(--brand-primary-dark);
}

/* Fullscreen Home Hero */
.home .page-hero,
.page-hero.home-hero,
.page-hero-fullscreen {
  min-height: calc(100vh - var(--header-height)) !important;
  height: calc(100vh - var(--header-height)) !important;
  box-sizing: border-box;
  padding: 40px 0;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  margin: 0 !important;
  overflow: hidden;
}

body.admin-bar .home .page-hero,
body.admin-bar .page-hero.home-hero,
body.admin-bar .page-hero-fullscreen {
  min-height: calc(100vh - var(--header-height) - 32px) !important;
  height: calc(100vh - var(--header-height) - 32px) !important;
}

@media screen and (max-width: 782px) {
  body.admin-bar .home .page-hero,
  body.admin-bar .page-hero.home-hero,
  body.admin-bar .page-hero-fullscreen {
    min-height: calc(100vh - var(--header-height) - 46px) !important;
    height: calc(100vh - var(--header-height) - 46px) !important;
  }
}

.page-hero::before,
.hero-overlay {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: linear-gradient(135deg, rgba(15, 23, 42, 0.90) 0%, rgba(32, 76, 178, 0.80) 100%);
}

.hero-content {
  position: relative;
  z-index: 1;
  color: var(--bg-white);
  text-align: center;
  max-width: 900px;
  padding: 0 24px;
  margin: auto;
}

.hero-content h1 {
  font-size: 3.5rem;
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 1.25rem;
  color: var(--bg-white);
}

.hero-content p {
  font-size: 1.2rem;
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.92);
  margin-bottom: 2.25rem;
}

/* Sections */
.section {
  padding: 80px 0;
}

.section-dark {
  background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
  color: var(--bg-white);
}

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

.section-title h2 {
  font-size: 2.3rem;
  color: var(--text-heading);
  margin-bottom: 0.75rem;
  font-weight: 800;
}

.section-dark .section-title h2 {
  color: var(--bg-white);
}

.section-title p {
  color: var(--text-muted);
  font-size: 1.1rem;
}

.section-dark .section-title p {
  color: #94a3b8;
}

.label-green,
.section-overline {
  color: var(--brand-primary) !important;
  font-weight: 800 !important;
  text-transform: uppercase !important;
  letter-spacing: 1.5px !important;
  font-size: 0.82rem !important;
  display: block;
  margin-bottom: 0.5rem;
}

/* ==========================================================================
   5 PATHWAYS CARDS (EXACT 1:1 MATCH TO EXAMPLE IMAGE)
   ========================================================================== */
.pathway-card {
  background-color: #ffffff;
  border-radius: 16px;
  padding: 32px 18px 24px;
  text-align: center;
  border: 1px solid #eef2f6;
  box-shadow: 0 4px 20px rgba(15, 23, 42, 0.04);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  position: relative;
  overflow: hidden;
}

.pathway-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 30px rgba(15, 23, 42, 0.09);
}

/* Colored Top Border Accents matching Image 1 */
.pathway-card.card-purple { border-top: 4px solid #6366f1; }
.pathway-card.card-orange { border-top: 4px solid #eef138; }
.pathway-card.card-blue   { border-top: 4px solid #2563eb; }
.pathway-card.card-green  { border-top: 4px solid #10b981; }
.pathway-card.card-pink   { border-top: 4px solid #ec4899; }

.pathway-icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.35rem;
  margin-bottom: 1.5rem;
}

.pathway-card.card-purple .pathway-icon { background-color: #f3e8ff; color: #6366f1; }
.pathway-card.card-orange .pathway-icon { background-color: #fef3c7; color: #eef138; }
.pathway-card.card-blue   .pathway-icon { background-color: #eff6ff; color: #2563eb; }
.pathway-card.card-green  .pathway-icon { background-color: #ecfdf5; color: #059669; }
.pathway-card.card-pink   .pathway-icon { background-color: #fdf2f8; color: #db2777; }

.pathway-card h3 {
  font-size: 1.15rem;
  font-weight: 700;
  color: #1e293b;
  margin-bottom: 0.85rem;
  line-height: 1.3;
}

.pathway-card p {
  font-size: 0.88rem;
  color: #64748b;
  line-height: 1.6;
  margin-bottom: 1.75rem;
}

.pathway-link {
  font-family: var(--font-heading);
  font-size: 0.82rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.6px;
  color: #204cb2 !important;
  margin-top: auto;
  transition: color 0.2s ease, transform 0.2s ease;
  display: inline-block;
}

.pathway-link:hover {
  color: #c2410c !important;
  transform: translateX(3px);
}

/* ==========================================================================
   CONTACT & FAQ STYLES
   ========================================================================== */
.contact-section {
  background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
  color: #ffffff;
  padding: 5.5rem 0;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 3.5rem;
  align-items: start;
}

.contact-form-col h1 {
  color: #ffffff;
  font-size: 2.4rem;
  font-weight: 800;
  margin-bottom: 1rem;
}

.rkd-contact-form,
.vb-contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  background: rgba(255, 255, 255, 0.05);
  padding: 2.25rem;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.rkd-contact-form .form-row,
.vb-contact-form .form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
}

.rkd-contact-form .form-group,
.vb-contact-form .form-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.rkd-contact-form label,
.vb-contact-form label {
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: #e2e8f0;
}

.rkd-contact-form input[type="text"],
.rkd-contact-form input[type="email"],
.rkd-contact-form input[type="tel"],
.rkd-contact-form select,
.rkd-contact-form textarea,
.vb-contact-form input[type="text"],
.vb-contact-form input[type="email"],
.vb-contact-form input[type="tel"],
.vb-contact-form select,
.vb-contact-form textarea {
  width: 100%;
  padding: 0.85rem 1rem;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  color: #ffffff;
  font-family: var(--font-body);
  font-size: 0.95rem;
  outline: none;
  transition: all 0.25s ease;
}

.rkd-contact-form input::placeholder,
.rkd-contact-form textarea::placeholder,
.vb-contact-form input::placeholder,
.vb-contact-form textarea::placeholder {
  color: #94a3b8;
}

.rkd-contact-form input:focus,
.rkd-contact-form select:focus,
.rkd-contact-form textarea:focus,
.vb-contact-form input:focus,
.vb-contact-form select:focus,
.vb-contact-form textarea:focus {
  background: rgba(255, 255, 255, 0.12);
  border-color: #60a5fa;
  box-shadow: 0 0 0 3px rgba(96, 165, 250, 0.25);
}

.rkd-contact-form select option,
.vb-contact-form select option {
  background-color: #0f172a;
  color: #ffffff;
}

.contact-image-col {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.contact-image-col > div:first-child {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 16px;
  padding: 2.25rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

/* ==========================================================================
   FAQ SECTION (1:1 WITH RKD SPECIFICATION)
   ========================================================================== */
.faq-section {
  background-color: #f8fafc;
  padding: 6rem 0;
}

.faq-header {
  margin-bottom: 3.75rem;
  text-align: center;
}

.faq-header h2 {
  font-size: 2.5rem;
  color: #0f172a;
  font-weight: 800;
  margin-bottom: 1rem;
  line-height: 1.25;
}

.faq-header p {
  color: #64748b;
  font-size: 1.05rem;
  max-width: 680px;
  margin: 0 auto;
  line-height: 1.6;
  text-wrap: balance;
}

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

.faq-card {
  background-color: #ffffff;
  padding: 2.25rem 2rem;
  border-radius: 16px;
  box-shadow: 0 4px 20px rgba(15, 23, 42, 0.04);
  border: 1px solid #eef2f6;
  border-left: 4px solid var(--brand-primary);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-left-color 0.25s ease;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

.faq-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 30px rgba(15, 23, 42, 0.08);
  border-left-color: #ea580c;
}

.faq-card h3 {
  color: #0f172a;
  margin-top: 0;
  margin-bottom: 0.85rem;
  font-size: 1.2rem;
  font-weight: 700;
  line-height: 1.35;
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.faq-card h3 svg,
.faq-card h3 i {
  color: var(--brand-primary);
  font-size: 1.15rem;
  flex-shrink: 0;
  margin-top: 2px;
  transition: color 0.25s ease;
}

.faq-card:hover h3 svg,
.faq-card:hover h3 i {
  color: #ea580c;
}

.faq-card p {
  color: #475569;
  margin-bottom: 0;
  line-height: 1.7;
  font-size: 0.95rem;
  padding-left: 0;
}

/* Final CTA Section */
.final-cta-section {
  background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
  color: #ffffff;
  padding: 5.5rem 0;
  text-align: center;
  position: relative;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.final-cta-section h2 {
  color: #ffffff;
  font-size: 2.4rem;
  font-weight: 800;
  margin-bottom: 1.5rem;
}

.final-cta-bold {
  font-size: 1.35rem;
  font-weight: 800;
  color: #eef138;
  margin-top: 2rem;
  margin-bottom: 0.5rem;
}

.final-cta-italic {
  color: #cbd5e1;
  font-size: 1.1rem;
  font-style: italic;
}

/* Stories of Impact */
.story-card {
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.story-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 30px rgba(15, 23, 42, 0.08) !important;
  border-color: #cbd5e1 !important;
}

.story-card:hover .story-image-col img {
  transform: scale(1.04);
}

.story-card .story-title a:hover {
  color: var(--brand-primary) !important;
}

.channel-card-col {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 12px;
  padding: 2rem;
  display: flex !important;
  flex-direction: column !important;
  justify-content: space-between !important;
}

/* Site Footer */
.site-footer {
  background-color: #0f172a;
  color: #cbd5e1;
  padding: 5rem 0 2rem;
  position: relative;
  border-top: 3px solid var(--brand-primary);
}

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

.footer-widget h3 {
  color: #ffffff;
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  position: relative;
  padding-bottom: 0.75rem;
}

.footer-widget h3::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 32px;
  height: 3px;
  background-color: var(--brand-accent);
  border-radius: 2px;
}

.footer-widget ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-widget ul li {
  margin-bottom: 0.75rem;
}

.footer-widget ul li a {
  color: #94a3b8;
  font-size: 0.95rem;
  text-decoration: none;
  transition: all 0.2s ease;
  display: inline-block;
}

.footer-widget ul li a:hover {
  color: #eef138;
  transform: translateX(4px);
}

.footer-widget p {
  font-size: 0.95rem;
  line-height: 1.7;
  color: #94a3b8;
  margin-bottom: 0.5rem;
}

.footer-widget a {
  color: #cbd5e1;
  text-decoration: none;
  transition: color 0.2s ease;
}

.footer-widget a:hover {
  color: #eef138;
}

.footer-social-links a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  color: #ffffff !important;
  text-decoration: none;
  transition: all 0.25s ease;
}

.footer-social-links a:hover {
  background: var(--brand-primary) !important;
  color: #ffffff !important;
  transform: translateY(-3px);
  box-shadow: 0 4px 12px rgba(32, 76, 178, 0.4);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 2rem;
  text-align: center;
}

.footer-bottom-links {
  list-style: none;
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  flex-wrap: wrap;
  margin-bottom: 0;
  padding: 0;
}

.footer-bottom-links li a {
  color: #94a3b8;
  font-size: 0.88rem;
  text-decoration: none;
  transition: color 0.2s ease;
}

.footer-bottom-links li a:hover {
  color: #eef138;
}

/* Modal */
.team-modal-overlay {
  position: fixed;
  top: 0; left: 0; width: 100%; height: 100%;
  background: rgba(15, 23, 42, 0.7);
  backdrop-filter: blur(4px);
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

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

.team-modal {
  background: #ffffff;
  border-radius: 16px;
  max-width: 600px;
  width: 90%;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(15, 23, 42, 0.25);
  position: relative;
}

.team-modal-close {
  position: absolute;
  top: 15px; right: 15px;
  background: rgba(0, 0, 0, 0.5);
  color: #ffffff;
  border: none;
  width: 32px; height: 32px;
  border-radius: 50%;
  font-size: 1.25rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Responsive */
@media (max-width: 1023px) {
  .desktop-nav { display: none !important; }
  .menu-toggle { display: flex !important; }
  .grid-3, .grid-4, .footer-widgets { grid-template-columns: repeat(2, 1fr); }
  .grid-5 { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 768px) {
  .site-header .container { padding: 0 20px !important; }
  .header-logo { height: 38px !important; width: 38px !important; }
  .grid-2, .grid-3, .grid-4, .grid-5, .footer-widgets { grid-template-columns: 1fr; }
  .contact-grid, .faq-grid, .vb-contact-form .form-row, .rkd-contact-form .form-row { grid-template-columns: 1fr; }
  .story-card { flex-direction: column !important; padding: 1.25rem !important; }
  .story-image-col { flex: 0 0 200px !important; width: 100% !important; }
  .channel-cards-grid { grid-template-columns: 1fr !important; }
  .home .page-hero, .page-hero.home-hero, .page-hero-fullscreen { height: auto !important; min-height: calc(100vh - var(--header-height)) !important; padding: 60px 0; }
  .hero-content h1 { font-size: 2.2rem; }
  .section { padding: 50px 0; }
}

/* ==========================================================================
   ACTIVE SUB-MENU ITEM HIGHLIGHTING (100% CLEAR CURRENT PAGE INDICATION)
   ========================================================================== */
.desktop-menu .sub-menu li.current-menu-item > a,
.desktop-menu .sub-menu li.ecosystem-nav-item.current-menu-item .eco-nav-link,
.mobile-menu .sub-menu li.current-menu-item > a,
.mobile-menu .ecosystem-nav-item.current-menu-item .eco-nav-link {
  background-color: var(--brand-primary-light) !important;
  color: var(--brand-primary) !important;
  font-weight: 700 !important;
  border-left: 3px solid var(--brand-primary) !important;
}

.desktop-menu .sub-menu li.ecosystem-nav-item.current-menu-item .eco-nav-title,
.mobile-menu .ecosystem-nav-item.current-menu-item .eco-nav-title {
  color: var(--brand-primary) !important;
  font-weight: 800 !important;
}

.desktop-menu .sub-menu li.ecosystem-nav-item.current-menu-item .eco-nav-icon,
.mobile-menu .ecosystem-nav-item.current-menu-item .eco-nav-icon {
  transform: scale(1.08) !important;
  box-shadow: 0 2px 8px rgba(32, 76, 178, 0.25) !important;
}

/* Pathway Card Icons Styling */
.pathway-icon svg {
  display: block !important;
  width: 26px !important;
  height: 26px !important;
  margin: auto !important;
}

/* ==========================================================================
   5 LEARNING PATHWAYS CARD ICONS (PERMANENT CRISP VECTOR DATA URIs)
   ========================================================================== */
.pathway-icon {
  width: 60px !important;
  height: 60px !important;
  border-radius: 50% !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  margin: 0 auto 1.5rem auto !important;
  background-position: center !important;
  background-repeat: no-repeat !important;
  background-size: 28px 28px !important;
  transition: transform 0.25s ease !important;
}

.pathway-card:hover .pathway-icon {
  transform: scale(1.1) !important;
}

/* Card 1: Parents (Lavender / Purple) */
.pathway-card.card-purple .pathway-icon {
  background-color: #f3e8ff !important;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='28' height='28' viewBox='0 0 24 24' fill='none' stroke='%236366f1' stroke-width='2.2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='m3 9 9-7 9 7v11a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2z'/%3E%3Cpolyline points='9 22 9 12 15 12 15 22'/%3E%3C/svg%3E") !important;
}

/* Card 2: Students & Graduates (Warm Amber / Gold) */
.pathway-card.card-orange .pathway-icon {
  background-color: #fef3c7 !important;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='28' height='28' viewBox='0 0 24 24' fill='none' stroke='%23eef138' stroke-width='2.2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M22 10v6M2 10l10-5 10 5-10 5z'/%3E%3Cpath d='M6 12v5c3 3 9 3 12 0v-5'/%3E%3C/svg%3E") !important;
}

/* Card 3: Working Professionals (Royal Blue) */
.pathway-card.card-blue .pathway-icon {
  background-color: #eff6ff !important;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='28' height='28' viewBox='0 0 24 24' fill='none' stroke='%232563eb' stroke-width='2.2' stroke-linecap='round' stroke-linejoin='round'%3E%3Crect width='20' height='14' x='2' y='7' rx='2' ry='2'/%3E%3Cpath d='M16 21V5a2 2 0 0 0-2-2h-4a2 2 0 0 0-2 2v16'/%3E%3C/svg%3E") !important;
}

/* Card 4: Educators & Faculty (Emerald Mint) */
.pathway-card.card-green .pathway-icon {
  background-color: #ecfdf5 !important;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='28' height='28' viewBox='0 0 24 24' fill='none' stroke='%23059669' stroke-width='2.2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M2 3h20'/%3E%3Cpath d='M21 3v11a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2V3'/%3E%3Cpath d='m7 21 5-5 5 5'/%3E%3C/svg%3E") !important;
}

/* Card 5: Industry & Partners (Rose Pink) */
.pathway-card.card-pink .pathway-icon {
  background-color: #fdf2f8 !important;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='28' height='28' viewBox='0 0 24 24' fill='none' stroke='%23db2777' stroke-width='2.2' stroke-linecap='round' stroke-linejoin='round'%3E%3Crect width='16' height='20' x='4' y='2' rx='2' ry='2'/%3E%3Cpath d='M9 22v-4h6v4'/%3E%3Cpath d='M8 6h.01'/%3E%3Cpath d='M16 6h.01'/%3E%3Cpath d='M8 10h.01'/%3E%3Cpath d='M16 10h.01'/%3E%3Cpath d='M8 14h.01'/%3E%3Cpath d='M16 14h.01'/%3E%3C/svg%3E") !important;
}
/* ==========================================================================
   FORCE TEXT CENTER UTILITY FOR SECTION TITLES & EDIT PAGE COMPATIBILITY
   ========================================================================== */
.section-title.text-center,
.section-title.text-center *,
.text-center,
.text-center * {
  text-align: center !important;
}

.section-title.text-center p,
.text-center p {
  margin-left: auto !important;
  margin-right: auto !important;
  text-align: center !important;
}

.section-title.text-center .section-overline,
.text-center .section-overline {
  margin-left: auto !important;
  margin-right: auto !important;
  text-align: center !important;
}

/* ==========================================================================
   INTERACTIVE ACCORDION COMPONENT (1:1 NEUROBYTE SPECIFICATION)
   ========================================================================== */
.vb-accordion {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(15, 23, 42, 0.04);
  margin: 0 auto;
  width: 100%;
}

.vb-accordion-item {
  border-bottom: 1px solid #f1f5f9;
  transition: background-color 0.25s ease, border-color 0.25s ease;
}

.vb-accordion-item:last-child {
  border-bottom: none;
}

.vb-accordion-item.active {
  background-color: #fafbfd;
}

.vb-accordion-header {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.35rem 1.75rem;
  background: transparent;
  border: none;
  cursor: pointer;
  text-align: left;
  gap: 1.25rem;
  transition: all 0.25s ease;
}

.vb-accordion-header:hover .vb-accordion-title {
  color: var(--brand-primary);
}

.vb-accordion-header:hover .vb-accordion-icon {
  border-color: var(--brand-primary);
  background-color: var(--brand-primary-light);
  color: var(--brand-primary);
}

.vb-accordion-title {
  font-family: var(--font-heading);
  font-size: 1.12rem;
  font-weight: 700;
  color: #0f172a;
  line-height: 1.35;
  transition: color 0.25s ease;
  display: flex;
  align-items: center;
  gap: 14px;
  flex: 1;
}

.vb-accordion-item.active .vb-accordion-title {
  color: var(--brand-primary);
  font-weight: 800;
}

.vb-accordion-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  font-size: 0.82rem;
  font-weight: 800;
  background: #eff6ff;
  color: #2563eb;
  flex-shrink: 0;
  transition: all 0.25s ease;
}

.vb-accordion-item.active .vb-accordion-badge {
  background: var(--brand-primary);
  color: #ffffff;
  transform: scale(1.05);
}

.vb-accordion-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid #e2e8f0;
  background-color: #f8fafc;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: #64748b;
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1), background-color 0.3s ease, border-color 0.3s ease, color 0.3s ease;
}

.vb-accordion-icon svg {
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.vb-accordion-item.active .vb-accordion-icon {
  background-color: var(--brand-primary-light);
  border-color: var(--brand-primary-border);
  color: var(--brand-primary);
}

.vb-accordion-item.active .vb-accordion-icon svg {
  transform: rotate(180deg);
}

.vb-accordion-collapse {
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.3s ease;
}

.vb-accordion-item.active .vb-accordion-collapse {
  max-height: 600px;
  opacity: 1;
}

.vb-accordion-body {
  padding: 0 1.75rem 1.75rem 1.75rem;
  color: #475569;
  font-size: 0.98rem;
  line-height: 1.75;
}

.vb-accordion-body p:last-child {
  margin-bottom: 0;
}

/* ==========================================================================
   CUSTOM SELECT UI & ANIMATION (CONTACT FORM)
   ========================================================================== */
.custom-select-group {
  position: relative;
}

.custom-select-wrapper {
  position: relative;
  width: 100%;
}

/* ==========================================================================
   CUSTOM SELECT UI & ANIMATION (CONTACT FORM - WHITE BORDER & ARROW)
   ========================================================================== */
.custom-select-group {
  position: relative;
}

.custom-select-wrapper {
  position: relative;
  width: 100%;
}

.custom-select-wrapper select {
  width: 100%;
  background: rgba(255, 255, 255, 0.08) !important;
  border: 1.5px solid rgba(255, 255, 255, 0.45) !important;
  border-radius: 12px !important;
  color: #ffffff !important;
  padding: 14px 46px 14px 18px !important;
  font-size: 0.96rem !important;
  font-weight: 500 !important;
  appearance: none !important;
  -webkit-appearance: none !important;
  -moz-appearance: none !important;
  cursor: pointer !important;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1) !important;
  box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.15) !important;
}

.custom-select-wrapper select:hover {
  background: rgba(255, 255, 255, 0.14) !important;
  border-color: #ffffff !important;
  transform: translateY(-1px);
}

.custom-select-wrapper select:focus {
  background: rgba(15, 23, 42, 0.95) !important;
  border-color: #ffffff !important;
  box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.3), 0 10px 25px rgba(0, 0, 0, 0.35) !important;
  outline: none !important;
  transform: translateY(-2px);
}

.custom-select-wrapper select option {
  background-color: #0f172a !important;
  color: #ffffff !important;
  padding: 14px 18px !important;
  font-size: 0.95rem !important;
  font-weight: 500 !important;
}

.custom-select-arrow {
  position: absolute;
  right: 18px;
  top: 50%;
  transform: translateY(-50%);
  color: #ffffff !important;
  pointer-events: none;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1), color 0.3s ease;
}

.custom-select-arrow svg {
  stroke: #ffffff !important;
}

.custom-select-wrapper:hover .custom-select-arrow {
  transform: translateY(-50%) scale(1.15);
}

.custom-select-wrapper select:focus + .custom-select-arrow {
  transform: translateY(-50%) rotate(180deg) scale(1.15);
  color: #ffffff !important;
}

.vb-submit-btn {
  display: inline-flex !important;
  align-items: center !important;
  gap: 8px !important;
  transition: transform 0.2s ease, box-shadow 0.2s ease !important;
}

.vb-submit-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(32, 76, 178, 0.35);
}

/* ==========================================================================
   INSIGHTS & RESEARCH REPOSITORY STYLES
   ========================================================================== */
.research-card {
  transition: transform 0.25s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.25s cubic-bezier(0.4, 0, 0.2, 1), border-color 0.25s ease !important;
}

.research-card:hover {
  transform: translateY(-4px) !important;
  box-shadow: 0 12px 30px rgba(15, 23, 42, 0.08) !important;
  border-color: var(--brand-primary) !important;
}

.research-card h3 a:hover {
  color: var(--brand-primary) !important;
}

/* ==========================================================================
   ENHANCED SPLIT LAYOUT & IMAGE CONTAINER STYLES (NO EMPTY GAP ARTIFACTS)
   ========================================================================== */
.split-image,
.split-layout .split-image {
  width: 100% !important;
  border-radius: 16px !important;
  overflow: hidden !important;
  box-shadow: 0 12px 35px rgba(15, 23, 42, 0.12) !important;
  background: transparent !important;
  border: none !important;
  line-height: 0 !important;
  display: block !important;
  height: auto !important;
  min-height: 0 !important;
}

.split-image img,
.split-layout .split-image img {
  width: 100% !important;
  height: auto !important;
  max-height: 480px !important;
  object-fit: cover !important;
  display: block !important;
  border-radius: 16px !important;
}

.grid-2 > div > img {
  width: 100% !important;
  display: block !important;
}

/* ==========================================================================
   COMPREHENSIVE RESPONSIVE DESIGN (MOBILE & TABLET EXCELLENCE)
   ========================================================================== */
@media (max-width: 991px) {
  .grid-2 {
    grid-template-columns: 1fr !important;
    gap: 2.5rem !important;
  }
  
  .grid-3 {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 1.75rem !important;
  }
  
  .grid-4, .grid-5 {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 1.5rem !important;
  }
  
  .section {
    padding: 4rem 0 !important;
  }
}

@media (max-width: 768px) {
  :root {
    --header-height: 70px;
  }

  .site-header {
    height: 70px !important;
  }

  .site-header .container {
    padding: 0 1.25rem !important;
  }

  .container {
    padding: 0 1.25rem !important;
    width: 100% !important;
  }

  /* Typography Fluid Scaling */
  h1, .page-title, .hero-content h1 {
    font-size: 2.15rem !important;
    line-height: 1.25 !important;
  }

  h2, .section-title h2 {
    font-size: 1.75rem !important;
    line-height: 1.3 !important;
  }

  h3 {
    font-size: 1.3rem !important;
    line-height: 1.35 !important;
  }

  p, .lead, .hero-subtitle {
    font-size: 1rem !important;
    line-height: 1.65 !important;
  }

  /* All Grids Single Column on Mobile */
  .grid-2, .grid-3, .grid-4, .grid-5, .footer-widgets {
    grid-template-columns: 1fr !important;
    gap: 1.75rem !important;
  }

  /* Hero Sections */
  .page-hero,
  .home .page-hero,
  .page-hero.home-hero,
  .page-hero-fullscreen {
    padding: 4.5rem 0 3.5rem !important;
    min-height: auto !important;
    height: auto !important;
  }

  .hero-content {
    padding: 0 1rem !important;
  }

  /* Buttons on Mobile */
  .hero-content div:has(.btn),
  .section div:has(.btn) {
    display: flex !important;
    flex-direction: column !important;
    align-items: stretch !important;
    width: 100% !important;
    gap: 0.75rem !important;
  }

  .btn {
    width: 100% !important;
    text-align: center !important;
    padding: 12px 20px !important;
  }

  /* Story Cards (News & Updates) on Mobile */
  .story-card {
    flex-direction: column !important;
    padding: 1.25rem !important;
    gap: 1.25rem !important;
  }

  .story-image-col {
    flex: 0 0 200px !important;
    width: 100% !important;
    height: 200px !important;
  }

  .story-title {
    font-size: 1.2rem !important;
  }

  /* Research Cards (Insights & Research) on Mobile */
  .research-grid {
    grid-template-columns: 1fr !important;
    gap: 1.5rem !important;
  }

  .research-card {
    padding: 1.5rem 1.25rem !important;
  }

  /* Contact & Form Grid */
  .contact-grid,
  .faq-grid,
  .vb-contact-form .form-row {
    grid-template-columns: 1fr !important;
    gap: 1.25rem !important;
  }

  /* Accordions on Mobile */
  .vb-accordion-header {
    padding: 1.15rem 1.25rem !important;
    gap: 0.75rem !important;
  }

  .vb-accordion-title {
    font-size: 1rem !important;
  }

  .vb-accordion-body {
    padding: 0 1.25rem 1.25rem 1.25rem !important;
    font-size: 0.92rem !important;
  }

  /* Section Spacing */
  .section {
    padding: 3.5rem 0 !important;
  }

  /* Split Images on Mobile */
  .split-image,
  .split-image img {
    max-height: 320px !important;
    width: 100% !important;
  }
}
