/* 
  APPIAH SIMON SKILLS EMPOWERMENT FOUNDATION (ASSET) 
  Dominant White Aesthetic - Design System & Modern CSS Framework
*/

@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@300;400;500;600;700;800&family=Playfair+Display:ital,wght@0,600;0,700;0,800;1,600&display=swap');

:root {
  /* Color Palette - White Dominant Theme */
  --bg-primary: #ffffff;
  --bg-secondary: #f8fafc;
  --bg-tertiary: #f1f5f9;
  --bg-glass: rgba(255, 255, 255, 0.88);
  --bg-glass-card: rgba(255, 255, 255, 0.95);
  
  --border-light: #e2e8f0;
  --border-subtle: #f1f5f9;
  --border-focus: #d97706;
  
  --text-primary: #0f172a;
  --text-secondary: #475569;
  --text-muted: #64748b;
  --text-white: #ffffff;
  
  /* Brand Accents */
  --gold-500: #f59e0b;
  --gold-600: #d97706;
  --gold-700: #b45309;
  --gold-light: #fef3c7;
  
  --teal-500: #10b981;
  --teal-600: #0d9488;
  --teal-700: #0f766e;
  --teal-light: #ccfbf1;
  
  --navy-900: #0f172a;
  --navy-800: #1e293b;
  --navy-700: #334155;
  
  /* Shadows & Elevation */
  --shadow-sm: 0 2px 8px rgba(15, 23, 42, 0.04);
  --shadow-md: 0 10px 30px -5px rgba(15, 23, 42, 0.06), 0 4px 6px -2px rgba(15, 23, 42, 0.03);
  --shadow-lg: 0 20px 40px -15px rgba(15, 23, 42, 0.08);
  --shadow-xl: 0 25px 50px -12px rgba(15, 23, 42, 0.14);
  --shadow-gold: 0 10px 25px -5px rgba(217, 119, 6, 0.25);
  --shadow-teal: 0 10px 25px -5px rgba(13, 148, 136, 0.25);
  
  /* Typography */
  --font-sans: 'Plus Jakarta Sans', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --font-serif: 'Playfair Display', Georgia, serif;

  /* Transitions */
  --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-normal: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-bounce: 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 20px;
  --radius-xl: 28px;
  --radius-full: 9999px;
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
  background-color: var(--bg-primary);
  color: var(--text-primary);
  font-family: var(--font-sans);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  min-height: 100vh;
  overflow-x: hidden;
  line-height: 1.6;
  background-color: var(--bg-primary);
}

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

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

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

/* Utility Containers & Typography */
.container {
  width: 100%;
  max-width: 1280px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}

.text-gradient-gold {
  background: linear-gradient(135deg, var(--gold-600) 0%, #f59e0b 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.text-gradient-teal {
  background: linear-gradient(135deg, var(--teal-600) 0%, var(--teal-500) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.text-gradient-dark {
  background: linear-gradient(135deg, var(--navy-900) 0%, var(--navy-700) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.4rem 1rem;
  border-radius: var(--radius-full);
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.badge-gold {
  background-color: var(--gold-light);
  color: var(--gold-700);
  border: 1px solid rgba(245, 158, 11, 0.3);
}

.badge-teal {
  background-color: var(--teal-light);
  color: var(--teal-700);
  border: 1px solid rgba(16, 185, 129, 0.3);
}

.badge-white {
  background-color: rgba(255, 255, 255, 0.9);
  color: var(--navy-900);
  box-shadow: var(--shadow-sm);
}

.section-padding {
  padding-top: 5rem;
  padding-bottom: 5rem;
}

.section-header {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 3.5rem auto;
}

.section-title {
  font-family: var(--font-sans);
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--navy-900);
  line-height: 1.2;
  letter-spacing: -0.02em;
  margin-top: 0.75rem;
  margin-bottom: 1rem;
}

.section-subtitle {
  font-size: 1.125rem;
  color: var(--text-secondary);
  line-height: 1.7;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  padding: 0.85rem 1.75rem;
  border-radius: var(--radius-full);
  font-weight: 700;
  font-size: 0.95rem;
  transition: all var(--transition-normal);
  white-space: nowrap;
}

.btn-primary {
  background: linear-gradient(135deg, var(--gold-600) 0%, var(--gold-500) 100%);
  color: var(--text-white);
  box-shadow: var(--shadow-gold);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 28px -6px rgba(217, 119, 6, 0.35);
  background: linear-gradient(135deg, var(--gold-700) 0%, var(--gold-600) 100%);
}

.btn-secondary {
  background-color: var(--bg-primary);
  color: var(--navy-900);
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-sm);
}

.btn-secondary:hover {
  background-color: var(--bg-secondary);
  border-color: var(--navy-900);
  transform: translateY(-2px);
}

.btn-teal {
  background: linear-gradient(135deg, var(--teal-600) 0%, var(--teal-500) 100%);
  color: var(--text-white);
  box-shadow: var(--shadow-teal);
}

.btn-teal:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 28px -6px rgba(13, 148, 136, 0.35);
}

.btn-outline-white {
  background: rgba(255, 255, 255, 0.15);
  color: #ffffff;
  border: 1.5px solid rgba(255, 255, 255, 0.4);
  backdrop-filter: blur(10px);
}

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

/* Header & Navbar */
.header-top {
  background-color: var(--navy-900);
  color: rgba(255, 255, 255, 0.85);
  padding: 0.5rem 0;
  font-size: 0.85rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

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

.top-info {
  display: flex;
  gap: 1.5rem;
  align-items: center;
}

.top-info span {
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.navbar {
  position: sticky;
  top: 0;
  z-index: 1000;
  background-color: var(--bg-glass);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border-light);
  transition: all var(--transition-normal);
}

.navbar.scrolled {
  box-shadow: var(--shadow-md);
  background-color: rgba(255, 255, 255, 0.96);
}

.navbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 84px;
}

.brand-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.brand-logo img {
  height: 52px;
  width: auto;
}

nav {
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 1;
  margin: 0 1.5rem;
}

.nav-links {
  display: flex;
  align-items: center;
  justify-content: space-evenly;
  width: 100%;
  gap: 1.25rem;
  list-style: none;
}

.nav-link {
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--text-secondary);
  transition: color var(--transition-fast);
  position: relative;
  padding: 0.5rem 0;
  white-space: nowrap;
}

.nav-link:hover, .nav-link.active {
  color: var(--gold-600);
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--gold-600);
  transition: width var(--transition-fast);
  border-radius: 2px;
}

.nav-link:hover::after, .nav-link.active::after {
  width: 100%;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.mobile-toggle {
  display: none;
  font-size: 1.5rem;
  color: var(--navy-900);
  padding: 0.5rem;
}

/* Mobile Nav Drawer */
.mobile-drawer {
  position: fixed;
  top: 0;
  right: -100%;
  width: 85%;
  max-width: 380px;
  height: 100vh;
  background-color: var(--bg-primary);
  z-index: 2000;
  box-shadow: var(--shadow-xl);
  transition: right var(--transition-normal);
  padding: 2rem;
  display: flex;
  flex-direction: column;
}

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

.drawer-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-color: rgba(15, 23, 42, 0.5);
  backdrop-filter: blur(4px);
  z-index: 1999;
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition-fast);
}

.drawer-overlay.open {
  opacity: 1;
  visibility: visible;
}

.drawer-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid var(--border-light);
  margin-bottom: 1.5rem;
}

.drawer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.drawer-links a {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--navy-900);
}

/* Hero Section */
.hero {
  position: relative;
  background-color: var(--bg-primary);
  padding: 4rem 0 6rem 0;
  overflow: hidden;
}

.hero-bg-decoration {
  position: absolute;
  top: -100px;
  right: -100px;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(245, 158, 11, 0.08) 0%, rgba(255, 255, 255, 0) 70%);
  border-radius: 50%;
  pointer-events: none;
}

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

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

.hero-headline {
  font-size: 3.5rem;
  font-weight: 800;
  line-height: 1.15;
  color: var(--navy-900);
  margin-top: 1.25rem;
  margin-bottom: 1.5rem;
  letter-spacing: -0.03em;
}

.hero-lead {
  font-size: 1.2rem;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 2rem;
}

.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 3rem;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  width: 100%;
  padding-top: 2rem;
  border-top: 1px solid var(--border-light);
}

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

.stat-number {
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--navy-900);
  line-height: 1;
}

.stat-label {
  font-size: 0.85rem;
  color: var(--text-muted);
  font-weight: 600;
  margin-top: 0.4rem;
}

.hero-media-wrapper {
  position: relative;
}

.hero-media-card {
  position: relative;
  background-color: #ffffff;
  padding: 0.75rem;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-xl);
  border: 1px solid var(--border-light);
  transform: perspective(1000px) rotateY(-4deg) rotateX(2deg);
  transition: transform var(--transition-normal);
}

.hero-media-card:hover {
  transform: perspective(1000px) rotateY(0deg) rotateX(0deg);
}

.media-frame {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4/3;
  background-color: var(--navy-900);
}

.media-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.media-play-overlay {
  position: absolute;
  inset: 0;
  background: rgba(15, 23, 42, 0.35);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background var(--transition-fast);
}

.media-play-overlay:hover {
  background: rgba(15, 23, 42, 0.2);
}

.play-btn-circle {
  width: 76px;
  height: 76px;
  border-radius: 50%;
  background-color: #ffffff;
  color: var(--gold-600);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.75rem;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.25);
  transition: transform var(--transition-bounce);
}

.play-btn-circle:hover {
  transform: scale(1.1);
}

.floating-badge-card {
  position: absolute;
  bottom: -25px;
  left: -25px;
  background-color: #ffffff;
  padding: 1.2rem 1.5rem;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border-light);
  display: flex;
  align-items: center;
  gap: 1rem;
  z-index: 10;
}

.badge-icon-box {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-sm);
  background-color: var(--teal-light);
  color: var(--teal-600);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
}

/* 6 Objectives Pillars Section */
.objectives-section {
  background-color: var(--bg-secondary);
  border-top: 1px solid var(--border-light);
  border-bottom: 1px solid var(--border-light);
}

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

.objective-card {
  background-color: var(--bg-primary);
  border-radius: var(--radius-lg);
  padding: 2.25rem;
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-normal);
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
}

.objective-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--gold-500), var(--teal-500));
  opacity: 0;
  transition: opacity var(--transition-fast);
}

.objective-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(217, 119, 6, 0.3);
}

.objective-card:hover::before {
  opacity: 1;
}

.obj-number {
  font-size: 3rem;
  font-weight: 800;
  color: var(--bg-tertiary);
  position: absolute;
  top: 1.25rem;
  right: 1.5rem;
  line-height: 1;
  user-select: none;
}

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

.objective-card:nth-child(even) .obj-icon {
  background-color: var(--teal-light);
  color: var(--teal-700);
}

.obj-title {
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--navy-900);
  margin-bottom: 0.85rem;
  line-height: 1.35;
}

.obj-desc {
  font-size: 0.95rem;
  color: var(--text-secondary);
  line-height: 1.65;
  margin-bottom: 1.5rem;
  flex-grow: 1;
}

.obj-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin-top: auto;
}

.obj-tag {
  font-size: 0.75rem;
  font-weight: 600;
  padding: 0.25rem 0.6rem;
  background-color: var(--bg-tertiary);
  color: var(--navy-700);
  border-radius: var(--radius-sm);
}

/* About & Vision Section */
.about-section {
  background-color: var(--bg-primary);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.about-images-collage {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  position: relative;
}

.collage-img {
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border-light);
  height: 220px;
}

.collage-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-normal);
}

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

.about-content h2 {
  font-size: 2.4rem;
  font-weight: 800;
  color: var(--navy-900);
  margin-top: 0.75rem;
  margin-bottom: 1.25rem;
  line-height: 1.2;
}

.about-content p {
  color: var(--text-secondary);
  font-size: 1.05rem;
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.checklist {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  margin-bottom: 2rem;
}

.checklist li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-weight: 600;
  color: var(--navy-900);
}

.checklist li i {
  color: var(--teal-600);
  font-size: 1.2rem;
  margin-top: 0.15rem;
}

/* Media Gallery Section */
.gallery-section {
  background-color: var(--bg-secondary);
  border-top: 1px solid var(--border-light);
}

.gallery-filters {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 3rem;
}

.filter-btn {
  padding: 0.6rem 1.4rem;
  border-radius: var(--radius-full);
  font-size: 0.9rem;
  font-weight: 700;
  background-color: var(--bg-primary);
  color: var(--text-secondary);
  border: 1px solid var(--border-light);
  transition: all var(--transition-fast);
}

.filter-btn:hover, .filter-btn.active {
  background-color: var(--navy-900);
  color: var(--text-white);
  border-color: var(--navy-900);
  box-shadow: var(--shadow-sm);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 1.75rem;
}

.gallery-item {
  background-color: var(--bg-primary);
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-normal);
  position: relative;
}

.gallery-item:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

.gallery-media {
  position: relative;
  aspect-ratio: 16/10;
  overflow: hidden;
  background-color: var(--navy-900);
}

.gallery-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-normal);
}

.gallery-item:hover .gallery-media img {
  transform: scale(1.06);
}

.media-type-tag {
  position: absolute;
  top: 1rem;
  left: 1rem;
  padding: 0.3rem 0.7rem;
  border-radius: var(--radius-sm);
  background-color: rgba(15, 23, 42, 0.75);
  color: #ffffff;
  font-size: 0.75rem;
  font-weight: 700;
  backdrop-filter: blur(4px);
  display: flex;
  align-items: center;
  gap: 0.35rem;
}

.gallery-content {
  padding: 1.25rem;
}

.gallery-title {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--navy-900);
  margin-bottom: 0.4rem;
}

.gallery-desc {
  font-size: 0.85rem;
  color: var(--text-secondary);
}

/* Impact & Sponsorship Calculator */
.calculator-section {
  background-color: var(--bg-primary);
}

.calculator-card {
  background: linear-gradient(135deg, #ffffff 0%, var(--bg-secondary) 100%);
  border-radius: var(--radius-xl);
  padding: 3.5rem;
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-xl);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3.5rem;
  align-items: center;
}

.calc-controls h3 {
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--navy-900);
  margin-bottom: 1rem;
}

.amount-presets {
  display: flex;
  gap: 0.75rem;
  margin: 1.5rem 0;
  flex-wrap: wrap;
}

.preset-btn {
  padding: 0.75rem 1.5rem;
  border-radius: var(--radius-md);
  font-size: 1.1rem;
  font-weight: 700;
  background-color: var(--bg-primary);
  border: 1.5px solid var(--border-light);
  color: var(--navy-900);
  transition: all var(--transition-fast);
}

.preset-btn:hover, .preset-btn.active {
  border-color: var(--gold-600);
  background-color: var(--gold-light);
  color: var(--gold-700);
}

.custom-slider-group {
  margin-bottom: 2rem;
}

.slider-label {
  display: flex;
  justify-content: space-between;
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--text-secondary);
  margin-bottom: 0.75rem;
}

.custom-range-slider {
  width: 100%;
  height: 8px;
  border-radius: 4px;
  background-color: var(--border-light);
  outline: none;
  accent-color: var(--gold-600);
  cursor: pointer;
}

.calc-result-box {
  background-color: var(--navy-900);
  color: var(--text-white);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  box-shadow: var(--shadow-lg);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 380px;
}

.result-header {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--gold-500);
  font-weight: 700;
}

.result-impact-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  margin: 1.5rem 0;
}

.impact-item {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.impact-icon {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.1);
  color: var(--gold-500);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
}

.impact-text h4 {
  font-size: 1.1rem;
  font-weight: 700;
}

.impact-text p {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.7);
}

/* Networking & Partnership Hub (Objective 6) */
.network-section {
  background-color: var(--bg-secondary);
  border-top: 1px solid var(--border-light);
}

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

.network-info-card {
  background-color: var(--bg-primary);
  border-radius: var(--radius-lg);
  padding: 3rem;
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-md);
}

.network-info-card h3 {
  font-size: 2rem;
  font-weight: 800;
  color: var(--navy-900);
  margin-bottom: 1.25rem;
}

.partner-types {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-top: 2rem;
}

.partner-type-item {
  padding: 1rem;
  background-color: var(--bg-secondary);
  border-radius: var(--radius-md);
  border: 1px solid var(--border-light);
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--navy-900);
}

.partner-form-card {
  background-color: var(--bg-primary);
  border-radius: var(--radius-lg);
  padding: 3rem;
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-md);
}

/* Form Styles */
.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-bottom: 1.25rem;
}

.form-label {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--navy-900);
}

.form-input, .form-select, .form-textarea {
  width: 100%;
  padding: 0.85rem 1.1rem;
  border-radius: var(--radius-sm);
  border: 1.5px solid var(--border-light);
  font-family: inherit;
  font-size: 0.95rem;
  background-color: var(--bg-primary);
  color: var(--navy-900);
  transition: border-color var(--transition-fast);
}

.form-input:focus, .form-select:focus, .form-textarea:focus {
  outline: none;
  border-color: var(--gold-600);
  box-shadow: 0 0 0 3px rgba(217, 119, 6, 0.15);
}

/* Call to Action Banner */
.cta-banner {
  background: linear-gradient(135deg, var(--navy-900) 0%, var(--navy-800) 100%);
  color: #ffffff;
  border-radius: var(--radius-xl);
  padding: 4rem 3rem;
  margin: 4rem auto;
  text-align: center;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-xl);
}

.cta-banner h2 {
  font-size: 2.6rem;
  font-weight: 800;
  margin-bottom: 1rem;
}

.cta-banner p {
  font-size: 1.15rem;
  max-width: 680px;
  margin: 0 auto 2rem auto;
  color: rgba(255, 255, 255, 0.85);
}

.cta-buttons {
  display: flex;
  justify-content: center;
  gap: 1.25rem;
  flex-wrap: wrap;
}

/* Footer */
.footer {
  background-color: #ffffff;
  border-top: 1px solid var(--border-light);
  padding-top: 4rem;
  padding-bottom: 2rem;
}

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

.footer-brand p {
  color: var(--text-secondary);
  font-size: 0.95rem;
  margin-top: 1.25rem;
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

.footer-title {
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--navy-900);
  margin-bottom: 1.25rem;
}

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

.footer-links a {
  color: var(--text-secondary);
  font-size: 0.9rem;
  font-weight: 600;
  transition: color var(--transition-fast);
}

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

.footer-bottom {
  border-top: 1px solid var(--border-light);
  padding-top: 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.85rem;
  color: var(--text-muted);
}

/* Modals */
.modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-color: rgba(15, 23, 42, 0.7);
  backdrop-filter: blur(6px);
  z-index: 3000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition-fast);
}

.modal.active {
  opacity: 1;
  visibility: visible;
}

.modal-card {
  background-color: var(--bg-primary);
  border-radius: var(--radius-xl);
  max-width: 650px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  padding: 2.5rem;
  box-shadow: var(--shadow-xl);
  position: relative;
  transform: translateY(20px);
  transition: transform var(--transition-normal);
}

.modal.active .modal-card {
  transform: translateY(0);
}

.modal-close {
  position: absolute;
  top: 1.25rem;
  right: 1.25rem;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background-color: var(--bg-secondary);
  color: var(--navy-900);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  transition: background var(--transition-fast);
}

.modal-close:hover {
  background-color: var(--border-light);
}

.video-modal-card {
  max-width: 900px;
  padding: 1rem;
  background-color: var(--navy-900);
}

.video-container {
  width: 100%;
  aspect-ratio: 16/9;
  border-radius: var(--radius-md);
  overflow: hidden;
  background-color: #000000;
}

.video-container video {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

/* Toast Notifications */
.toast-container {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 4000;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.toast {
  background-color: var(--navy-900);
  color: #ffffff;
  padding: 1rem 1.5rem;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-xl);
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-weight: 600;
  font-size: 0.9rem;
  animation: slideInRight 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.toast i {
  color: var(--gold-500);
  font-size: 1.2rem;
}

@keyframes slideInRight {
  from {
    transform: translateX(100%);
    opacity: 0;
  }
  to {
    transform: translateX(0);
    opacity: 1;
  }
}

/* Responsive Media Queries */
@media (max-width: 1024px) {
  .hero-grid, .about-grid, .calculator-card, .network-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .objectives-grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

  .hero-headline {
    font-size: 2.8rem;
  }
}

@media (max-width: 768px) {
  .nav-links, .top-info {
    display: none;
  }

  .nav-actions .btn-secondary {
    display: none;
  }

  .brand-logo img {
    height: 42px;
    max-width: 180px;
    object-fit: contain;
  }

  .mobile-toggle {
    display: block;
  }

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

  .section-title {
    font-size: 2rem;
  }

  .hero-headline {
    font-size: 2.2rem;
  }

  .calculator-card {
    padding: 2rem;
  }

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

  .footer-bottom {
    flex-direction: column;
    gap: 1rem;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .navbar-inner {
    height: 72px;
  }

  .brand-logo img {
    height: 38px;
    max-width: 150px;
  }

  .nav-actions {
    gap: 0.5rem;
  }

  .nav-actions .btn-primary {
    padding: 0.5rem 0.9rem;
    font-size: 0.8rem;
  }

  .nav-actions .btn-primary span {
    display: none;
  }
}
