/* ========================================
   AMRIF Static Website Styles
   ======================================== */

/* CSS Variables */
:root {
  --color-primary: #1e40af;
  --color-primary-dark: #1e3a8a;
  --color-secondary: #f59e0b;
  --color-secondary-dark: #d97706;
  --color-green: #22c55e;
  --color-green-dark: #16a34a;
  --color-slate-900: #0f172a;
  --color-slate-800: #1e293b;
  --color-slate-700: #334155;
  --color-slate-600: #475569;
  --color-slate-400: #94a3b8;
  --color-slate-300: #cbd5e1;
  --color-slate-200: #e2e8f0;
  --color-slate-100: #f1f5f9;
  --color-slate-50: #f8fafc;
  --color-gray-50: #f9fafb;
  --color-gray-100: #f3f4f6;
  --color-gray-200: #e5e7eb;
  --color-gray-300: #d1d5db;
  --color-white: #ffffff;
  --font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-family);
  line-height: 1.6;
  color: var(--color-slate-700);
  background-color: var(--color-white);
}

a {
  text-decoration: none;
  color: inherit;
  transition: color 0.3s ease;
}

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

ul {
  list-style: none;
}

/* Container */
.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1rem;
}

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

@media (min-width: 1024px) {
  .container {
    padding: 0 2rem;
  }
}

/* ========================================
   NAVIGATION
   ======================================== */
.navbar {
  position: sticky;
  top: 0;
  z-index: 50;
  background-color: var(--color-white);
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
  border-bottom: 1px solid var(--color-gray-100);
}

.navbar-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 80px;
  overflow: hidden;
}

.navbar-logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex-shrink: 0;
}

.navbar-logo img {
  height: 64px;
  width: auto;
  transition: opacity 0.3s;
}

.navbar-logo:hover img {
  opacity: 0.9;
}

.navbar-links {
  display: none;
  align-items: center;
  gap: 2rem;
}

@media (min-width: 768px) {
  .navbar-links {
    display: flex;
  }
}

.navbar-links a {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--color-slate-700);
  white-space: nowrap;
  transition: color 0.3s;
}

.navbar-links a:hover {
  color: var(--color-primary);
}

.mobile-menu-btn {
  display: block;
  padding: 0.5rem;
  background: none;
  border: none;
  cursor: pointer;
  border-radius: 0.5rem;
  transition: background-color 0.3s;
}

.mobile-menu-btn:hover {
  background-color: var(--color-gray-100);
}

@media (min-width: 768px) {
  .mobile-menu-btn {
    display: none;
  }
}

.mobile-menu {
  display: none;
  padding-bottom: 1rem;
  border-top: 1px solid var(--color-gray-100);
}

.mobile-menu.active {
  display: block;
}

.mobile-menu a {
  display: block;
  padding: 0.75rem 1rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--color-slate-700);
  border-radius: 0.5rem;
  transition: all 0.3s;
}

.mobile-menu a:hover {
  background-color: #eff6ff;
  color: var(--color-primary);
}

/* ========================================
   HERO SECTION
   ======================================== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #1e3a8a 0%, #1e40af 50%, #0f172a 100%);
  overflow: hidden;
}

.hero-bg-effects {
  position: absolute;
  inset: 0;
  opacity: 0.1;
}

.hero-bg-effects .circle {
  position: absolute;
  border-radius: 50%;
  filter: blur(48px);
  mix-blend-mode: multiply;
}

.hero-bg-effects .circle-1 {
  top: 80px;
  left: 40px;
  width: 288px;
  height: 288px;
  background-color: var(--color-secondary);
}

.hero-bg-effects .circle-2 {
  bottom: 80px;
  right: 40px;
  width: 288px;
  height: 288px;
  background-color: var(--color-green);
}

.hero-content {
  position: relative;
  text-align: center;
  padding: 3rem 1rem 5rem;
  animation: fadeIn 0.8s ease-out;
}

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

.hero h1 {
  font-size: 2.25rem;
  font-weight: 700;
  color: var(--color-white);
  margin-bottom: 1rem;
  line-height: 1.2;
}

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

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

.hero-subtitle {
  font-size: 1.125rem;
  color: var(--color-gray-200);
  margin-bottom: 1.5rem;
  max-width: 48rem;
  margin-left: auto;
  margin-right: auto;
}

@media (min-width: 640px) {
  .hero-subtitle {
    font-size: 1.25rem;
  }
}

@media (min-width: 768px) {
  .hero-subtitle {
    font-size: 1.5rem;
  }
}

.hero-description {
  font-size: 1rem;
  color: var(--color-gray-300);
  max-width: 42rem;
  margin: 0 auto 2rem;
  line-height: 1.7;
}

@media (min-width: 640px) {
  .hero-description {
    font-size: 1.125rem;
    margin-bottom: 3rem;
  }
}

.hero-buttons {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  justify-content: center;
  margin-bottom: 3rem;
  animation: fadeIn 0.8s ease-out 0.2s both;
}

@media (min-width: 640px) {
  .hero-buttons {
    flex-direction: row;
    gap: 1rem;
  }
}

/* ========================================
   BUTTONS
   ======================================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  font-size: 0.875rem;
  font-weight: 600;
  border-radius: 0.5rem;
  cursor: pointer;
  transition: all 0.3s;
  border: none;
  text-decoration: none;
}

@media (min-width: 640px) {
  .btn {
    padding: 1rem 2rem;
    font-size: 1rem;
  }
}

.btn:hover {
  transform: scale(1.05);
}

.btn-primary {
  background-color: var(--color-secondary);
  color: var(--color-white);
  box-shadow: 0 10px 25px -5px rgba(245, 158, 11, 0.5);
}

.btn-primary:hover {
  background-color: var(--color-secondary-dark);
}

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

.btn-secondary:hover {
  background-color: var(--color-gray-100);
  box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.1);
}

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

.btn-blue:hover {
  background-color: var(--color-primary-dark);
  box-shadow: 0 10px 25px -5px rgba(30, 64, 175, 0.3);
}

.btn-green {
  background-color: var(--color-green);
  color: var(--color-white);
}

.btn-green:hover {
  background-color: var(--color-green-dark);
}

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

.btn-outline:hover {
  background-color: var(--color-white);
  color: var(--color-slate-900);
}

/* ========================================
   SECTIONS
   ======================================== */
.section {
  padding: 3rem 0;
}

@media (min-width: 640px) {
  .section {
    padding: 5rem 0;
  }
}

.section-gray {
  background-color: var(--color-gray-50);
}

.section-dark {
  background-color: var(--color-slate-900);
  color: var(--color-white);
}

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

.section-title {
  font-size: 1.875rem;
  font-weight: 700;
  color: var(--color-slate-900);
  margin-bottom: 1rem;
}

@media (min-width: 640px) {
  .section-title {
    font-size: 2.25rem;
  }
}

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

.section-subtitle {
  font-size: 1rem;
  color: var(--color-slate-600);
  max-width: 42rem;
  margin: 0 auto;
}

@media (min-width: 640px) {
  .section-subtitle {
    font-size: 1.25rem;
  }
}

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

/* ========================================
   WHO WE ARE SECTION
   ======================================== */
.who-we-are {
  background-color: var(--color-white);
}

.who-we-are-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  align-items: center;
}

@media (min-width: 768px) {
  .who-we-are-grid {
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
  }
}

.who-we-are-content {
  order: 2;
}

@media (min-width: 768px) {
  .who-we-are-content {
    order: 1;
  }
}

.who-we-are-content h2 {
  font-size: 1.875rem;
  font-weight: 700;
  color: var(--color-slate-900);
  margin-bottom: 1.5rem;
}

@media (min-width: 640px) {
  .who-we-are-content h2 {
    font-size: 2.25rem;
  }
}

.who-we-are-content p {
  font-size: 1rem;
  color: var(--color-slate-600);
  margin-bottom: 1.5rem;
  line-height: 1.7;
}

@media (min-width: 640px) {
  .who-we-are-content p {
    font-size: 1.125rem;
  }
}

.who-we-are-image {
  order: 1;
  position: relative;
  height: 256px;
}

@media (min-width: 640px) {
  .who-we-are-image {
    height: 320px;
  }
}

@media (min-width: 768px) {
  .who-we-are-image {
    order: 2;
    height: auto;
  }
}

.who-we-are-image img {
  border-radius: 0.5rem;
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ========================================
   PROGRAMS SECTION
   ======================================== */
.programs-overview {
  background-color: var(--color-gray-50);
}

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

@media (min-width: 640px) {
  .programs-header {
    margin-bottom: 4rem;
  }
}

.programs-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

@media (min-width: 640px) {
  .programs-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
  }
}

.program-card {
  background-color: var(--color-white);
  padding: 1.5rem;
  border-radius: 0.5rem;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
  transition: all 0.3s;
  border: 2px solid transparent;
  display: block;
}

@media (min-width: 640px) {
  .program-card {
    padding: 2rem;
  }
}

.program-card:hover {
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
  border-color: var(--color-secondary);
}

.program-icon {
  width: 48px;
  height: 48px;
  padding: 0.75rem;
  background: linear-gradient(135deg, var(--color-secondary) 0%, var(--color-green) 100%);
  border-radius: 0.5rem;
  margin-bottom: 1rem;
  transition: transform 0.3s;
  display: flex;
  align-items: center;
  justify-content: center;
}

.program-card:hover .program-icon {
  transform: scale(1.1);
}

.program-icon svg {
  width: 24px;
  height: 24px;
  color: var(--color-white);
}

.program-card h3 {
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--color-slate-900);
  margin-bottom: 0.75rem;
  transition: color 0.3s;
  line-height: 1.4;
}

@media (min-width: 640px) {
  .program-card h3 {
    font-size: 1.25rem;
  }
}

.program-card:hover h3 {
  color: var(--color-primary);
}

.program-card p {
  font-size: 0.875rem;
  color: var(--color-slate-600);
  line-height: 1.6;
}

@media (min-width: 640px) {
  .program-card p {
    font-size: 1rem;
  }
}

/* Programs Page Cards */
.programs-page-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}

@media (min-width: 768px) {
  .programs-page-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.program-page-card {
  background-color: var(--color-white);
  border-radius: 0.5rem;
  overflow: hidden;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
  transition: all 0.3s;
  display: block;
}

.program-page-card:hover {
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
}

.program-page-card-image {
  position: relative;
  height: 192px;
  overflow: hidden;
  background-color: var(--color-gray-200);
}

.program-page-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s;
}

.program-page-card:hover .program-page-card-image img {
  transform: scale(1.05);
}

.program-page-card-content {
  padding: 2rem;
}

.program-page-card-content h3 {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--color-slate-900);
  margin-bottom: 0.75rem;
  transition: color 0.3s;
}

.program-page-card:hover .program-page-card-content h3 {
  color: var(--color-primary);
}

.program-page-card-content p {
  color: var(--color-slate-600);
  line-height: 1.6;
}

/* ========================================
   GET INVOLVED SECTION
   ======================================== */
.get-involved-section {
  background: linear-gradient(180deg, var(--color-slate-900) 0%, #1e3a5f 100%);
  color: var(--color-white);
}

.get-involved-content {
  text-align: center;
}

.get-involved-content h2 {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

@media (min-width: 640px) {
  .get-involved-content h2 {
    font-size: 2rem;
  }
}

.get-involved-content p {
  font-size: 1rem;
  color: var(--color-gray-300);
}

.get-involved-content a {
  color: var(--color-secondary);
  font-weight: 600;
}

.get-involved-content a:hover {
  text-decoration: underline;
}

/* ========================================
   FOOTER
   ======================================== */
.footer {
  background-color: var(--color-slate-900);
  color: var(--color-gray-100);
  padding-top: 4rem;
  padding-bottom: 2rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  margin-bottom: 3rem;
}

@media (min-width: 768px) {
  .footer-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.footer-brand p {
  font-size: 0.875rem;
  color: var(--color-gray-300);
  margin-top: 1rem;
}

.footer-brand strong {
  color: var(--color-white);
}

.footer h4 {
  font-weight: 600;
  color: var(--color-white);
  margin-bottom: 1rem;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.footer-links a {
  font-size: 0.875rem;
  color: var(--color-gray-300);
  transition: color 0.3s;
}

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

.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  font-size: 0.875rem;
}

.footer-contact-item svg {
  width: 16px;
  height: 16px;
  margin-top: 2px;
  flex-shrink: 0;
  color: var(--color-secondary);
}

.footer-social {
  display: flex;
  gap: 1rem;
}

.footer-social a {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.5rem;
  background-color: var(--color-slate-800);
  border-radius: 0.5rem;
  transition: background-color 0.3s;
}

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

.footer-social svg {
  width: 18px;
  height: 18px;
}

.footer-bottom {
  border-top: 1px solid var(--color-slate-700);
  padding-top: 2rem;
  text-align: center;
}

.footer-bottom p {
  font-size: 0.875rem;
  color: var(--color-slate-400);
}

/* ========================================
   PAGE HERO SECTIONS
   ======================================== */
.page-hero {
  padding: 5rem 0;
  background: linear-gradient(135deg, #1e3a8a 0%, #0f172a 100%);
  color: var(--color-white);
}

.page-hero h1 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
}

@media (min-width: 640px) {
  .page-hero h1 {
    font-size: 3rem;
  }
}

.page-hero p {
  font-size: 1.25rem;
  color: var(--color-gray-200);
  max-width: 42rem;
}

/* ========================================
   CARDS & BOXES
   ======================================== */
.card {
  background-color: var(--color-white);
  border-radius: 0.5rem;
  padding: 1.5rem;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.card-hover:hover {
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
}

.info-box {
  background-color: #eff6ff;
  padding: 1.5rem;
  border-radius: 0.5rem;
  border-left: 4px solid var(--color-primary);
}

.cta-box {
  background-color: var(--color-gray-50);
  padding: 2rem;
  border-radius: 0.5rem;
  text-align: center;
}

/* ========================================
   GRID UTILITIES
   ======================================== */
.grid-2 {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

@media (min-width: 768px) {
  .grid-2 {
    grid-template-columns: repeat(2, 1fr);
  }
}

.grid-3 {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

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

.grid-4 {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

@media (min-width: 640px) {
  .grid-4 {
    grid-template-columns: repeat(2, 1fr);
  }
}

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

/* ========================================
   ABOUT PAGE
   ======================================== */
.objectives-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  background-color: var(--color-gray-50);
  padding: 3rem;
  border-radius: 0.5rem;
}

@media (min-width: 768px) {
  .objectives-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.objective-card {
  background-color: var(--color-white);
  padding: 1.5rem;
  border-radius: 0.5rem;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.objective-card h3 {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--color-slate-900);
  margin-bottom: 0.75rem;
}

.objective-card p {
  color: var(--color-slate-600);
  line-height: 1.6;
}

/* ========================================
   MISKA PAGE
   ======================================== */
.miska-hero {
  background: linear-gradient(135deg, #16a34a 0%, #1d4ed8 100%);
  padding: 5rem 0;
  text-align: center;
  color: var(--color-white);
}

.miska-hero h1 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
}

@media (min-width: 640px) {
  .miska-hero h1 {
    font-size: 3rem;
  }
}

.miska-hero .subtitle {
  font-size: 1.25rem;
  color: #bbf7d0;
  margin-bottom: 1rem;
}

.miska-hero .description {
  font-size: 1.125rem;
  max-width: 48rem;
  margin: 0 auto;
  line-height: 1.7;
}

.what-we-do-card {
  background-color: var(--color-white);
  padding: 1.5rem;
  border-radius: 0.5rem;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
  transition: box-shadow 0.3s;
}

.what-we-do-card:hover {
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

.what-we-do-card .emoji {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.what-we-do-card h3 {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--color-slate-900);
  margin-bottom: 0.75rem;
}

.what-we-do-card p {
  color: var(--color-slate-600);
}

.why-it-matters {
  background: linear-gradient(to right, #f0fdf4, #eff6ff);
  padding: 4rem 0;
  text-align: center;
}

/* ========================================
   DONATE PAGE
   ======================================== */
.donate-hero {
  background: linear-gradient(135deg, #dc2626 0%, #c026d3 50%, #7c3aed 100%);
  padding: 6rem 0;
  text-align: center;
  color: var(--color-white);
  position: relative;
  overflow: hidden;
}

.donation-tier {
  background-color: var(--color-white);
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
  transition: all 0.3s;
  border: 1px solid var(--color-gray-100);
}

.donation-tier:hover {
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
  transform: translateY(-8px);
}

.donation-tier-header {
  height: 8px;
}

.donation-tier-content {
  padding: 2rem;
}

.donation-tier-icon {
  width: 56px;
  height: 56px;
  border-radius: 0.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
  transition: transform 0.3s;
}

.donation-tier:hover .donation-tier-icon {
  transform: scale(1.1);
}

.donation-tier h3 {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--color-slate-900);
  margin-bottom: 0.75rem;
}

.donation-tier p {
  color: var(--color-slate-600);
  margin-bottom: 1rem;
  line-height: 1.6;
}

.donation-tier .impact {
  background-color: #f0fdf4;
  padding: 1rem;
  border-radius: 0.75rem;
}

.donation-tier .impact p {
  font-size: 0.875rem;
  color: #166534;
  margin: 0;
}

/* ========================================
   RESOURCES PAGE
   ======================================== */
.resources-hero {
  background: linear-gradient(135deg, #1e3a8a 0%, #1e40af 50%, #0f172a 100%);
  padding: 6rem 0;
  text-align: center;
  color: var(--color-white);
  position: relative;
  overflow: hidden;
}

.video-section {
  background-color: var(--color-white);
  padding: 4rem 0;
}

.video-container {
  max-width: 960px;
  margin: 0 auto;
}

.video-wrapper {
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
  background-color: var(--color-slate-900);
}

.video-wrapper video {
  width: 100%;
  aspect-ratio: 16 / 9;
  display: block;
}

.publication-card {
  background-color: var(--color-white);
  padding: 2rem;
  border-radius: 1rem;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
  border: 1px solid var(--color-gray-100);
  transition: all 0.3s;
  display: block;
}

.publication-card:hover {
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
  transform: translateY(-4px);
}

.publication-card h3 {
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--color-slate-900);
  margin-bottom: 0.75rem;
  transition: color 0.3s;
  line-height: 1.4;
}

.publication-card:hover h3 {
  color: var(--color-primary);
}

.publication-card p {
  font-size: 0.875rem;
  color: var(--color-slate-600);
  margin-bottom: 1rem;
  line-height: 1.6;
}

.publication-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--color-primary);
}

/* ========================================
   CONTACT PAGE
   ======================================== */
.contact-form {
  background-color: var(--color-white);
  padding: 2rem;
  border-radius: 0.5rem;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-group label {
  display: block;
  font-weight: 500;
  color: var(--color-slate-700);
  margin-bottom: 0.5rem;
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1px solid var(--color-gray-200);
  border-radius: 0.5rem;
  font-size: 1rem;
  transition: border-color 0.3s, box-shadow 0.3s;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--color-primary);
  box-shadow: 0 0 0 3px rgba(30, 64, 175, 0.1);
}

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

/* ========================================
   WEBINARS & EVENTS
   ======================================== */
.event-card {
  background-color: var(--color-white);
  border-radius: 0.5rem;
  overflow: hidden;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.event-card-image {
  height: 200px;
  overflow: hidden;
}

.event-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.event-card-content {
  padding: 1.5rem;
}

.event-card-content h3 {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--color-slate-900);
  margin-bottom: 0.5rem;
}

.event-card-content p {
  color: var(--color-slate-600);
  margin-bottom: 1rem;
}

.event-date {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: var(--color-primary);
  font-weight: 500;
}

/* ========================================
   UTILITY CLASSES
   ======================================== */
.mb-0 { margin-bottom: 0; }
.mb-1 { margin-bottom: 0.25rem; }
.mb-2 { margin-bottom: 0.5rem; }
.mb-3 { margin-bottom: 0.75rem; }
.mb-4 { margin-bottom: 1rem; }
.mb-6 { margin-bottom: 1.5rem; }
.mb-8 { margin-bottom: 2rem; }
.mb-10 { margin-bottom: 2.5rem; }
.mb-12 { margin-bottom: 3rem; }

.mt-4 { margin-top: 1rem; }
.mt-6 { margin-top: 1.5rem; }
.mt-8 { margin-top: 2rem; }
.mt-10 { margin-top: 2.5rem; }
.mt-12 { margin-top: 3rem; }

.py-4 { padding-top: 1rem; padding-bottom: 1rem; }
.py-8 { padding-top: 2rem; padding-bottom: 2rem; }
.py-12 { padding-top: 3rem; padding-bottom: 3rem; }
.py-16 { padding-top: 4rem; padding-bottom: 4rem; }
.py-20 { padding-top: 5rem; padding-bottom: 5rem; }

.px-4 { padding-left: 1rem; padding-right: 1rem; }
.px-6 { padding-left: 1.5rem; padding-right: 1.5rem; }
.px-8 { padding-left: 2rem; padding-right: 2rem; }

.text-sm { font-size: 0.875rem; }
.text-lg { font-size: 1.125rem; }
.text-xl { font-size: 1.25rem; }
.text-2xl { font-size: 1.5rem; }
.text-3xl { font-size: 1.875rem; }
.text-4xl { font-size: 2.25rem; }
.text-5xl { font-size: 3rem; }

.font-medium { font-weight: 500; }
.font-semibold { font-weight: 600; }
.font-bold { font-weight: 700; }

.text-white { color: var(--color-white); }
.text-slate-600 { color: var(--color-slate-600); }
.text-slate-900 { color: var(--color-slate-900); }
.text-amber { color: var(--color-secondary); }
.text-blue { color: var(--color-primary); }
.text-green { color: var(--color-green); }

.bg-white { background-color: var(--color-white); }
.bg-gray-50 { background-color: var(--color-gray-50); }
.bg-slate-900 { background-color: var(--color-slate-900); }

.rounded { border-radius: 0.25rem; }
.rounded-lg { border-radius: 0.5rem; }
.rounded-xl { border-radius: 0.75rem; }
.rounded-2xl { border-radius: 1rem; }
.rounded-full { border-radius: 9999px; }

.shadow { box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1); }
.shadow-md { box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1); }
.shadow-lg { box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1); }
.shadow-xl { box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1); }
.shadow-2xl { box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25); }

.flex { display: flex; }
.flex-col { flex-direction: column; }
.items-center { align-items: center; }
.justify-center { justify-content: center; }
.justify-between { justify-content: space-between; }
.gap-2 { gap: 0.5rem; }
.gap-4 { gap: 1rem; }
.gap-6 { gap: 1.5rem; }
.gap-8 { gap: 2rem; }

.hidden { display: none; }

@media (min-width: 768px) {
  .md-flex { display: flex; }
  .md-hidden { display: none; }
}

.leading-relaxed { line-height: 1.625; }

.transition { transition: all 0.3s ease; }

/* Gradient backgrounds */
.gradient-amber-green {
  background: linear-gradient(135deg, var(--color-secondary) 0%, var(--color-green) 100%);
}

.gradient-blue-slate {
  background: linear-gradient(135deg, #1e3a8a 0%, #0f172a 100%);
}

.gradient-green-blue {
  background: linear-gradient(135deg, #16a34a 0%, #1d4ed8 100%);
}

.gradient-rose-purple {
  background: linear-gradient(135deg, #dc2626 0%, #c026d3 50%, #7c3aed 100%);
}

/* ========================================
   Program Detail Pages
   ======================================== */

.program-detail-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
}

@media (min-width: 1024px) {
  .program-detail-grid {
    grid-template-columns: 2fr 1fr;
  }
}

.program-detail-content h2 {
  margin-bottom: 1.5rem;
}

.program-detail-content p {
  color: var(--color-slate-600);
  line-height: 1.7;
}

.program-features-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.program-features-list li {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.feature-icon {
  font-size: 1.5rem;
  flex-shrink: 0;
}

.program-features-list li div strong {
  display: block;
  color: var(--color-slate-900);
  font-weight: 600;
  margin-bottom: 0.25rem;
}

.program-features-list li div p {
  font-size: 0.9375rem;
  margin: 0;
}

.program-detail-sidebar {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.program-detail-image {
  border-radius: 0.5rem;
  overflow: hidden;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

.program-detail-image img {
  width: 100%;
  height: auto;
  display: block;
}

.program-info-card {
  background: var(--color-slate-50);
  border-radius: 0.5rem;
  padding: 1.5rem;
  border: 1px solid var(--color-slate-200);
}

.program-info-card h4 {
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--color-slate-900);
  margin-bottom: 0.75rem;
}

.program-info-card p {
  color: var(--color-slate-600);
  font-size: 0.9375rem;
  margin-bottom: 1rem;
}

.w-full {
  width: 100%;
}

