/* ========================================
   CSS Variables & Base Styles
   ======================================== */
:root {
  --primary: #3dcd58;
  --primary-dark: #2ba847;
  --primary-light: #5fdb76;
  --primary-glow: rgba(61, 205, 88, 0.3);
  
  --background: #ffffff;
  --foreground: #1a1a2e;
  --muted: #f5f5f7;
  --muted-foreground: #6b7280;
  --border: #e5e7eb;
  
  --card: #ffffff;
  --card-foreground: #1a1a2e;
  
  --accent: #f0fdf4;
  --accent-foreground: #166534;
  
  --radius: 12px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  
  --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
  --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
  --shadow-glow: 0 0 40px var(--primary-glow);
  
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;
  background: var(--background);
  color: var(--foreground);
  line-height: 1.6;
  overflow-x: hidden;
}

.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
}

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

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

ul {
  list-style: none;
}

/* ========================================
   Buttons
   ======================================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 24px;
  border-radius: var(--radius);
  font-weight: 600;
  font-size: 14px;
  cursor: pointer;
  transition: var(--transition);
  border: 2px solid transparent;
}

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

.btn-primary:hover {
  background: var(--primary-dark);
  border-color: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

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

.btn-primary-hero:hover {
  background: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow-glow);
}

.btn-outline {
  background: transparent;
  color: var(--foreground);
  border-color: var(--border);
}

.btn-outline:hover {
  background: var(--muted);
  border-color: var(--primary);
  color: var(--primary);
}

.btn-outline-hero {
  background: rgba(255, 255, 255, 0.1);
  color: white;
  border-color: rgba(255, 255, 255, 0.3);
  backdrop-filter: blur(10px);
}

.btn-outline-hero:hover {
  background: rgba(255, 255, 255, 0.2);
  border-color: white;
}

.btn-lg {
  padding: 16px 32px;
  font-size: 16px;
}

.btn-full {
  width: 100%;
}

/* ========================================
   Header
   ======================================== */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 20px 0;
  transition: var(--transition);
}

.header.scrolled {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(20px);
  box-shadow: var(--shadow-md);
  padding: 12px 0;
}

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

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
}

.logo-icon {
  width: 40px;
  height: 40px;
  background: var(--primary);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: 800;
  font-size: 20px;
}

.logo-text {
  font-weight: 700;
  font-size: 18px;
  color: white;
  transition: var(--transition);
}

.header.scrolled .logo-text {
  color: var(--foreground);
}

.nav-desktop {
  display: none;
  gap: 4px;
}

@media (min-width: 1024px) {
  .nav-desktop {
    display: flex;
  }
}

.nav-link {
  padding: 10px 16px;
  border-radius: var(--radius);
  font-weight: 500;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.9);
  transition: var(--transition);
}

.nav-link:hover {
  background: rgba(255, 255, 255, 0.1);
  color: white;
}

.header.scrolled .nav-link {
  color: var(--foreground);
}

.header.scrolled .nav-link:hover {
  background: var(--muted);
  color: var(--primary);
}

.header-cta {
  display: none;
  gap: 12px;
}

@media (min-width: 1024px) {
  .header-cta {
    display: flex;
  }
}

.header.scrolled .btn-outline-hero {
  background: transparent;
  color: var(--foreground);
  border-color: var(--border);
}

.header.scrolled .btn-outline-hero:hover {
  background: var(--muted);
  border-color: var(--primary);
  color: var(--primary);
}

.header.scrolled .btn-primary-hero {
  background: var(--primary);
  color: white;
}

.mobile-menu-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  background: transparent;
  border: none;
  border-radius: var(--radius);
  color: white;
  font-size: 20px;
  cursor: pointer;
  transition: var(--transition);
}

.header.scrolled .mobile-menu-btn {
  color: var(--foreground);
}

.mobile-menu-btn:hover {
  background: rgba(255, 255, 255, 0.1);
}

.header.scrolled .mobile-menu-btn:hover {
  background: var(--muted);
}

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

.mobile-menu {
  display: none;
  background: var(--background);
  border-top: 1px solid var(--border);
  padding: 16px;
}

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

.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.mobile-nav-link {
  padding: 12px 16px;
  border-radius: var(--radius);
  font-weight: 500;
  transition: var(--transition);
}

.mobile-nav-link:hover {
  background: var(--muted);
}

.mobile-cta {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid var(--border);
}

/* ========================================
   Hero Section
   ======================================== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 120px 24px 80px;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background: url('https://images.unsplash.com/photo-1581091226825-a6a2a5aee158?w=1920') center/cover no-repeat;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(26, 26, 46, 0.95) 0%, rgba(26, 26, 46, 0.7) 50%, rgba(61, 205, 88, 0.3) 100%);
}

.hero-content {
  position: relative;
  z-index: 10;
  text-align: center;
  max-width: 900px;
}

.hero-partners {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  margin-bottom: 32px;
  opacity: 0;
  animation: fadeInUp 0.8s ease forwards;
  animation-delay: 0.2s;
}

.hero-partners span {
  color: rgba(255, 255, 255, 0.6);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.partner-logos {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px;
}

.partner-logo {
  padding: 8px 16px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: var(--radius);
  color: white;
  font-size: 12px;
  font-weight: 600;
  backdrop-filter: blur(10px);
}

.hero-tagline {
  color: var(--primary);
  font-weight: 600;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 3px;
  margin-bottom: 16px;
  opacity: 0;
  animation: fadeInUp 0.8s ease forwards;
  animation-delay: 0.4s;
}

.hero-title {
  font-size: clamp(32px, 6vw, 56px);
  font-weight: 800;
  color: white;
  line-height: 1.1;
  margin-bottom: 24px;
  opacity: 0;
  animation: fadeInUp 0.8s ease forwards;
  animation-delay: 0.6s;
}

.hero-highlight {
  display: block;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-subtitle {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.8);
  max-width: 700px;
  margin: 0 auto 40px;
  opacity: 0;
  animation: fadeInUp 0.8s ease forwards;
  animation-delay: 0.8s;
}

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px;
  margin-bottom: 48px;
  opacity: 0;
  animation: fadeInUp 0.8s ease forwards;
  animation-delay: 1s;
}

.hero-highlights {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 24px;
  opacity: 0;
  animation: fadeInUp 0.8s ease forwards;
  animation-delay: 1.2s;
}

.highlight-item {
  display: flex;
  align-items: center;
  gap: 8px;
  color: white;
  font-size: 14px;
}

.highlight-item i {
  color: var(--primary);
}

.scroll-indicator {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  animation: bounce 2s infinite;
}

.scroll-indicator i {
  color: white;
  font-size: 24px;
  opacity: 0.6;
}

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

@keyframes bounce {
  0%, 20%, 50%, 80%, 100% {
    transform: translateX(-50%) translateY(0);
  }
  40% {
    transform: translateX(-50%) translateY(-10px);
  }
  60% {
    transform: translateX(-50%) translateY(-5px);
  }
}

/* ========================================
   Section Styles
   ======================================== */
section {
  padding: 100px 0;
}

.section-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 60px;
}

.section-badge {
  display: inline-block;
  padding: 8px 16px;
  background: var(--accent);
  color: var(--primary);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  border-radius: 50px;
  margin-bottom: 16px;
}

.section-title {
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 800;
  color: var(--foreground);
  margin-bottom: 16px;
}

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

/* ========================================
   Why Us Section
   ======================================== */
.why-us {
  background: var(--muted);
}

.why-us-grid {
  display: grid;
  gap: 48px;
  margin-bottom: 80px;
}

@media (min-width: 1024px) {
  .why-us-grid {
    grid-template-columns: 1fr 1fr;
    align-items: center;
  }
}

.why-us-image {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
}

.why-us-image img {
  width: 100%;
  height: 400px;
  object-fit: cover;
}

.why-us-image .image-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(61, 205, 88, 0.2) 0%, transparent 100%);
}

.benefit-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.benefit-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 16px;
  background: var(--background);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

.benefit-item:hover {
  transform: translateX(8px);
  box-shadow: var(--shadow-md);
}

.benefit-item i {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--accent);
  color: var(--primary);
  border-radius: var(--radius);
  flex-shrink: 0;
}

.benefit-item span {
  font-weight: 500;
  color: var(--foreground);
}

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

.audience-title {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 40px;
}

.audience-cards {
  display: grid;
  gap: 24px;
}

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

.audience-card {
  padding: 32px;
  background: var(--background);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  text-align: center;
  transition: var(--transition);
}

.audience-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-xl);
}

.audience-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
  border-radius: 50%;
  color: white;
  font-size: 24px;
}

.audience-card h4 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 8px;
}

.audience-card p {
  font-size: 14px;
  color: var(--muted-foreground);
}

/* ========================================
   Program Cards Section
   ======================================== */
.programs-grid {
  display: grid;
  gap: 32px;
}

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

.program-card {
  background: var(--card);
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  transition: var(--transition);
}

.program-card:hover {
  transform: translateY(-12px);
  box-shadow: var(--shadow-xl);
}

.program-image {
  position: relative;
  height: 200px;
  overflow: hidden;
}

.program-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition);
}

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

.program-badge {
  position: absolute;
  top: 16px;
  right: 16px;
  padding: 8px 16px;
  background: var(--primary);
  color: white;
  font-size: 12px;
  font-weight: 700;
  border-radius: 50px;
}

.program-content {
  padding: 24px;
}

.program-icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius);
  margin-bottom: 16px;
  font-size: 20px;
}

.program-icon.blue {
  background: #dbeafe;
  color: #2563eb;
}

.program-icon.green {
  background: #dcfce7;
  color: #16a34a;
}

.program-icon.purple {
  background: #f3e8ff;
  color: #9333ea;
}

.program-content h3 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 8px;
}

.program-focus {
  font-size: 14px;
  color: var(--muted-foreground);
  margin-bottom: 8px;
}

.program-tagline {
  font-size: 14px;
  font-style: italic;
  color: var(--primary);
  margin-bottom: 20px;
}

/* ========================================
   Program Details Section
   ======================================== */
.program-details {
  background: var(--muted);
}

.program-detail-section {
  display: grid;
  gap: 48px;
  margin-bottom: 80px;
  align-items: center;
}

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

.program-detail-section:last-child {
  margin-bottom: 0;
}

.program-detail-badge {
  display: inline-block;
  padding: 8px 20px;
  background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
  color: white;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  border-radius: 50px;
  margin-bottom: 20px;
}

.program-detail-badge.green {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
}

.program-detail-badge.purple {
  background: linear-gradient(135deg, #9333ea 0%, #7e22ce 100%);
}

.program-detail-content h3 {
  font-size: 32px;
  font-weight: 800;
  margin-bottom: 16px;
}

.program-description {
  font-size: 16px;
  color: var(--muted-foreground);
  margin-bottom: 24px;
  line-height: 1.8;
}

.eligibility-box {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 20px;
  background: var(--accent);
  border-radius: var(--radius);
  margin-bottom: 24px;
}

.eligibility-box i {
  color: var(--primary);
  font-size: 20px;
  margin-top: 2px;
}

.eligibility-box strong {
  display: block;
  margin-bottom: 4px;
}

.eligibility-box span {
  color: var(--muted-foreground);
  font-size: 14px;
}

.modules-grid {
  display: grid;
  gap: 12px;
  margin-bottom: 32px;
}

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

.module-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 16px;
  background: var(--background);
  border-radius: var(--radius);
  font-size: 14px;
  font-weight: 500;
}

.module-item i {
  color: var(--primary);
}

.program-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.program-detail-image {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
}

.program-detail-image img {
  width: 100%;
  height: 450px;
  object-fit: cover;
}

.hours-badge {
  position: absolute;
  top: 24px;
  right: 24px;
  padding: 16px 24px;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  border-radius: var(--radius);
  font-size: 18px;
  font-weight: 800;
  color: var(--primary);
  box-shadow: var(--shadow-lg);
}

/* ========================================
   Placement Section
   ======================================== */
.placement-grid {
  display: grid;
  gap: 48px;
}

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

.placement-about,
.placement-support {
  padding: 40px;
  background: var(--muted);
  border-radius: var(--radius-xl);
}

.placement-about h2,
.placement-support h2 {
  font-size: 28px;
  font-weight: 700;
  margin: 16px 0;
}

.placement-about p {
  color: var(--muted-foreground);
  margin-bottom: 32px;
}

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

.stat-item {
  text-align: center;
  padding: 24px;
  background: var(--background);
  border-radius: var(--radius);
}

.stat-value {
  display: block;
  font-size: 36px;
  font-weight: 800;
  color: var(--primary);
  margin-bottom: 4px;
}

.stat-label {
  font-size: 14px;
  color: var(--muted-foreground);
}

.placement-features {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.placement-feature {
  display: flex;
  gap: 16px;
  padding: 16px;
  background: var(--background);
  border-radius: var(--radius);
  transition: var(--transition);
}

.placement-feature:hover {
  transform: translateX(8px);
}

.feature-icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--accent);
  color: var(--primary);
  border-radius: var(--radius);
  flex-shrink: 0;
}

.placement-feature h4 {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 4px;
}

.placement-feature p {
  font-size: 14px;
  color: var(--muted-foreground);
}

/* ========================================
   Partners Section
   ======================================== */
.partners {
  background: var(--foreground);
  color: white;
}

.partners .section-badge {
  background: rgba(61, 205, 88, 0.2);
}

.partners .section-title {
  color: white;
}

.partners .section-subtitle {
  color: rgba(255, 255, 255, 0.7);
}

.marquee-container {
  position: relative;
  overflow: hidden;
  margin: 0 -24px;
  padding: 40px 0;
}

.marquee-gradient {
  position: absolute;
  top: 0;
  bottom: 0;
  width: 100px;
  z-index: 10;
  pointer-events: none;
}

.marquee-gradient.left {
  left: 0;
  background: linear-gradient(to right, var(--foreground), transparent);
}

.marquee-gradient.right {
  right: 0;
  background: linear-gradient(to left, var(--foreground), transparent);
}

.marquee-track {
  overflow: hidden;
}

.marquee-content {
  display: flex;
  gap: 24px;
  animation: marquee 30s linear infinite;
}

.marquee-content:hover {
  animation-play-state: paused;
}

@keyframes marquee {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

.partner-card {
  flex-shrink: 0;
  width: 280px;
  padding: 24px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-lg);
  text-align: center;
  transition: var(--transition);
}

.partner-card:hover {
  background: rgba(255, 255, 255, 0.1);
  transform: translateY(-4px);
}

.partner-logo-box {
  width: 60px;
  height: 60px;
  margin: 0 auto 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius);
  font-size: 24px;
  font-weight: 800;
  color: white;
}

.partner-logo-box.green {
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
}

.partner-logo-box.blue {
  background: linear-gradient(135deg, #3b82f6, #2563eb);
}

.partner-logo-box.purple {
  background: linear-gradient(135deg, #9333ea, #7e22ce);
}

.partner-logo-box.orange {
  background: linear-gradient(135deg, #f97316, #ea580c);
}

.partner-logo-box.teal {
  background: linear-gradient(135deg, #14b8a6, #0d9488);
}

.partner-card h4 {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 8px;
}

.partner-card p {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.6);
}

.trust-banner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 20px;
  background: rgba(61, 205, 88, 0.1);
  border: 1px solid rgba(61, 205, 88, 0.2);
  border-radius: var(--radius);
  margin-top: 40px;
}

.trust-banner i {
  color: var(--primary);
  font-size: 20px;
}

.trust-banner span {
  color: rgba(255, 255, 255, 0.8);
  font-size: 14px;
}

/* ========================================
   Outcomes Section
   ======================================== */
.outcomes {
  background: var(--muted);
}

.outcomes-grid {
  display: grid;
  gap: 48px;
  margin-bottom: 60px;
}

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

.outcomes-column h3 {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 24px;
  color: var(--primary);
}

.outcomes-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.outcomes-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 16px;
  background: var(--background);
  border-radius: var(--radius);
  font-weight: 500;
}

.outcomes-list li i {
  color: var(--primary);
  margin-top: 2px;
}

.career-path {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 16px;
  padding: 40px;
  background: var(--background);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-lg);
}

.path-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.step-number {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--primary);
  color: white;
  font-size: 20px;
  font-weight: 800;
  border-radius: 50%;
}

.path-step span {
  font-weight: 600;
  color: var(--foreground);
}

.path-line {
  width: 60px;
  height: 2px;
  background: linear-gradient(90deg, var(--primary), var(--primary-light));
}

@media (max-width: 640px) {
  .path-line {
    display: none;
  }
}

/* ========================================
   Contact Section
   ======================================== */
.contact-grid {
  display: grid;
  gap: 48px;
}

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

.contact-form {
  padding: 40px;
  background: var(--card);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-lg);
}

.form-row {
  display: grid;
  gap: 20px;
  margin-bottom: 20px;
}

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

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  font-weight: 600;
  font-size: 14px;
  margin-bottom: 8px;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 14px 16px;
  border: 2px solid var(--border);
  border-radius: var(--radius);
  font-family: inherit;
  font-size: 14px;
  transition: var(--transition);
  background: var(--background);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 4px var(--primary-glow);
}

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

.contact-info {
  padding: 40px;
  background: var(--foreground);
  border-radius: var(--radius-xl);
  color: white;
}

.contact-info h3 {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 32px;
}

.contact-item {
  display: flex;
  gap: 16px;
  margin-bottom: 24px;
}

.contact-icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(61, 205, 88, 0.2);
  color: var(--primary);
  border-radius: var(--radius);
  flex-shrink: 0;
}

.contact-item h4 {
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 4px;
  color: rgba(255, 255, 255, 0.7);
}

.contact-item p {
  font-size: 16px;
}

/* ========================================
   Footer
   ======================================== */
.footer {
  background: var(--foreground);
  color: white;
  padding: 80px 0 0;
}

.footer-grid {
  display: grid;
  gap: 40px;
  margin-bottom: 60px;
}

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

.footer-brand .logo {
  margin-bottom: 16px;
}

.footer-brand .logo span {
  color: white;
  font-weight: 700;
}

.footer-brand p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 14px;
  line-height: 1.7;
  margin-bottom: 12px;
}

.footer-note {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.5);
}

.footer-links h4,
.footer-contact h4 {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 20px;
}

.footer-links ul,
.footer-contact ul {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-links a,
.footer-contact li {
  color: rgba(255, 255, 255, 0.7);
  font-size: 14px;
  transition: var(--transition);
}

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

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

.footer-bottom p {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.5);
}

.scroll-top-btn {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(61, 205, 88, 0.2);
  border: none;
  border-radius: var(--radius);
  color: var(--primary);
  cursor: pointer;
  transition: var(--transition);
}

.scroll-top-btn:hover {
  background: var(--primary);
  color: white;
}

/* ========================================
   Toast Notification
   ======================================== */
.toast {
  position: fixed;
  bottom: 24px;
  right: 24px;
  display: none;
  align-items: center;
  gap: 12px;
  padding: 16px 24px;
  background: var(--foreground);
  color: white;
  border-radius: var(--radius);
  box-shadow: var(--shadow-xl);
  z-index: 9999;
  animation: slideIn 0.3s ease;
}

.toast.show {
  display: flex;
}

.toast i {
  color: var(--primary);
  font-size: 20px;
}

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

/* ========================================
   Responsive Utilities
   ======================================== */
@media (max-width: 640px) {
  .container {
    padding: 0 16px;
  }
  
  section {
    padding: 60px 0;
  }
  
  .hero {
    padding: 100px 16px 60px;
  }
  
  .hero-title {
    font-size: 28px;
  }
  
  .hero-subtitle {
    font-size: 16px;
  }
  
  .btn-lg {
    padding: 14px 24px;
    font-size: 14px;
  }
}
