/* ============================================
   EIA Website - Static CSS Version
   ============================================ */

/* CSS Variables / Design Tokens */
:root {
  /* EIA Brand Colors - Forest Green Theme */
  --background: hsl(0, 0%, 100%);
  --foreground: hsl(150, 30%, 15%);

  --card: hsl(0, 0%, 100%);
  --card-foreground: hsl(150, 30%, 15%);

  /* Primary - Deep Forest Green */
  --primary: hsl(145, 40%, 25%);
  --primary-foreground: hsl(0, 0%, 100%);

  /* Secondary - Sage Green */
  --secondary: hsl(90, 30%, 85%);
  --secondary-foreground: hsl(145, 40%, 25%);

  /* Muted - Light Sage */
  --muted: hsl(90, 20%, 95%);
  --muted-foreground: hsl(150, 15%, 45%);

  /* Accent - Bright Green */
  --accent: hsl(85, 55%, 50%);
  --accent-foreground: hsl(0, 0%, 100%);

  --border: hsl(90, 20%, 88%);
  --input: hsl(90, 20%, 88%);
  --ring: hsl(145, 40%, 25%);

  --radius: 0.5rem;

  /* Custom EIA Colors */
  --eia-forest: hsl(145, 40%, 25%);
  --eia-sage: hsl(90, 30%, 75%);
  --eia-sage-light: hsl(90, 30%, 92%);
  --eia-gold: hsl(43, 80%, 55%);
  --eia-cream: hsl(45, 30%, 97%);

  /* Gradients */
  --gradient-section: linear-gradient(180deg, hsl(0, 0%, 100%), hsl(90, 30%, 97%));

/* Font families */
  --font-sans: 'Inter', system-ui, -apple-system, sans-serif;
  --font-serif: 'Playfair Display', Georgia, serif;
  --font-heading: 'Inter', system-ui, -apple-system, sans-serif;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-sans);
  background-color: var(--background);
  color: var(--foreground);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  letter-spacing: -0.02em;
}

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

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

/* ============================================
   Layout Utilities
   ============================================ */

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

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

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

.section-padding {
  padding: 4rem 0;
}

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

/* ============================================
   Typography
   ============================================ */

.heading-section {
  font-family: var(--font-heading);
  font-size: 1.75rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.2;
}

@media (min-width: 768px) {
  .heading-section {
    font-size: 2rem;
  }
}

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

.section-subtitle {
  font-family: var(--font-sans);
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.7);
  max-width: 600px;
}

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

.text-primary {
  color: var(--primary);
}

.text-white {
  color: white;
}

.text-white-80 {
  color: rgba(255, 255, 255, 0.8);
}

.text-muted {
  color: var(--muted-foreground);
}

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

.mb-4 {
  margin-bottom: 1rem;
}

.mb-8 {
  margin-bottom: 2rem;
}

.mb-12 {
  margin-bottom: 3rem;
}

/* ============================================
   Background Colors
   ============================================ */

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

.bg-eia-cream {
  background-color: var(--background);
}

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

.gradient-section {
  background: var(--gradient-section);
}

/* ============================================
   Buttons
   ============================================ */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-weight: 600;
  border: none;
  border-radius: var(--radius);
  cursor: pointer;
  transition: all 0.2s ease;
  font-family: var(--font-sans);
  font-size: 0.875rem;
  padding: 0.625rem 1.25rem;
}

.btn-lg {
  padding: 0.75rem 2rem;
  font-size: 1rem;
}

.btn-cta {
  background-color: var(--accent);
  color: var(--primary-foreground);
}

.btn-cta:hover {
  background-color: hsl(145, 40%, 20%);
}

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

.btn-cta-light:hover {
  background-color: hsl(0, 0%, 95%);
}

.btn-cta-light .arrow-icon {
  transition: transform 0.2s ease;
}

.btn-cta-light:hover .arrow-icon {
  transform: translateX(4px);
}

.btn-full {
  width: 100%;
}

.btn:disabled {
  opacity: 0.7;
  cursor: not-allowed;
}

/* ============================================
   Header
   ============================================ */

.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  background-color: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--border);
}

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

.header-logo {
  display: flex;
  align-items: center;
}

.header-logo-img {
  height: 3.5rem;
  width: auto;
}

@media (min-width: 768px) {
  .header-logo-img {
    height: 3rem;
  }
}

@media (min-width: 768px) {
  .header-inner {
    height: 5rem;
  }
}

.nav-desktop {
  display: none;
  align-items: center;
  gap: 2rem;
}

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

.nav-link {
  color: rgba(35, 60, 45, 0.8);
  font-weight: 500;
  transition: color 0.2s ease;
}

.nav-link:hover {
  color: var(--primary);
}

.mobile-menu-btn {
  display: block;
  padding: 0.5rem;
  background: none;
  border: none;
  cursor: pointer;
  color: var(--foreground);
}

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

.nav-mobile {
  padding: 1rem 0;
  border-top: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.nav-link-mobile {
  color: rgba(35, 60, 45, 0.8);
  font-weight: 500;
  padding: 0.5rem 0;
  transition: color 0.2s ease;
}

.nav-link-mobile:hover {
  color: var(--primary);
}

.hidden {
  display: none !important;
}

/* ============================================
   Hero Section
   ============================================ */

.hero-section {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background-color: var(--background);
}

.hero-container {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 3rem 0;
}

.hero-link {
  width: 100%;
  cursor: pointer;
}

.hero-logo {
  width: 100%;
  height: auto;
  transition: opacity 0.3s ease;
}

.hero-logo:hover {
  opacity: 0.9;
}

/* ============================================
   About Section
   ============================================ */

.about-grid {
  display: grid;
  gap: 3rem;
  align-items: stretch;
}

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

.about-image {
  position: relative;
}

.about-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 0.75rem;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
  min-height: 400px;
}

@media (min-width: 1024px) {
  .about-img {
    min-height: 100%;
  }
}

.about-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.about-label {
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 1rem;
}

.about-heading {
  line-height: 1.4;
  margin-bottom: 1.5rem;
}

.about-text {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  color: rgba(35, 60, 45, 0.8);
  line-height: 1.7;
}

.about-tagline {
  color: var(--primary);
  font-weight: 600;
  font-size: 1.125rem;
  font-family: var(--font-heading);
  letter-spacing: -0.01em;
}

/* ============================================
   Purple Banner
   ============================================ */

.purple-banner {
  width: 100%;
}

.purple-banner-img {
  width: 100%;
  height: auto;
}

/* ============================================
   Mission & Vision Section
   ============================================ */

.mission-vision-grid {
  display: grid;
  gap: 3rem;
}

@media (min-width: 768px) {
  .mission-vision-grid {
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
  }
}

.mission-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 2rem;
  border-radius: 1rem;
  background-color: var(--card);
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
  transition: box-shadow 0.3s ease;
}

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

.mission-icon {
  width: 5rem;
  height: 5rem;
  object-fit: contain;
  margin-bottom: 1.5rem;
}

.mission-text {
  color: rgba(35, 60, 45, 0.8);
  line-height: 1.7;
}

/* ============================================
   Section Headers
   ============================================ */

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

.section-subtitle {
  color: var(--muted-foreground);
  max-width: 42rem;
  margin: 0 auto;
}

/* ============================================
   Who Can Apply Section
   ============================================ */

.profiles-grid {
  display: grid;
  gap: 1.5rem;
}

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

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

.profile-card {
  background-color: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(8px);
  border-radius: 0.75rem;
  padding: 1.5rem;
  text-align: center;
  transition: background-color 0.3s ease;
}

.profile-card:hover {
  background-color: rgba(255, 255, 255, 0.15);
}

.profile-icon-wrapper {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 3.5rem;
  height: 3.5rem;
  border-radius: 50%;
  background-color: var(--accent);
  color: var(--accent-foreground);
  margin-bottom: 1rem;
}

.profile-title {
  font-size: 1.125rem;
  font-weight: 600;
  color: white;
  margin-bottom: 0.5rem;
}

.profile-desc {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.875rem;
  line-height: 1.5;
}

/* ============================================
   Program Schedule Section
   ============================================ */

.schedule-list {
  display: flex;
  flex-direction: column;
  gap: 3rem;
  max-width: 700px;
  margin: 0 auto;
}

.schedule-item {
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
}

.schedule-icon {
  flex-shrink: 0;
  color: var(--primary);
}

.schedule-icon svg {
  width: 48px;
  height: 48px;
}

.schedule-content {
  flex: 1;
}

.schedule-text {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--foreground);
}

.schedule-text strong {
  font-weight: 700;
  color: var(--primary);
}

.schedule-link {
  text-decoration: underline;
  text-underline-offset: 2px;
}

@media (max-width: 640px) {
  .schedule-item {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 1rem;
  }
}


/* ============================================
   Curriculum Section
   ============================================ */

/* ============================================
   Module Carousel (Curriculum & Timeline)
   ============================================ */

.module-carousel-container {
  position: relative;
  display: flex;
  align-items: center;
  gap: 1rem;
  max-width: 100%;
}

.module-carousel {
  flex: 1;
  overflow: hidden;
  padding-top: 1.5rem;
  margin-top: -0.5rem;
}

.module-carousel-track {
  display: flex;
  gap: 1.5rem;
  transition: transform 0.4s ease;
}

.module-carousel-track > * {
  flex: 0 0 100%;
  min-width: 0;
}

@media (min-width: 640px) {
  .module-carousel-track > * {
    flex: 0 0 calc(50% - 0.75rem);
  }
}

@media (min-width: 1024px) {
  .module-carousel-track > * {
    flex: 0 0 calc(25% - 1.125rem);
  }
}

.module-carousel-btn {
  flex-shrink: 0;
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  background: var(--card);
  border: 1px solid var(--border);
  color: var(--foreground);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.2s ease;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

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

.module-carousel-btn:disabled {
  opacity: 0.4;
  cursor: not-allowed;
}

.module-carousel-btn:disabled:hover {
  background: var(--card);
  color: var(--foreground);
  border-color: var(--border);
}

.carousel-indicator {
  text-align: center;
  margin-top: 1.5rem;
}

.indicator-text {
  font-size: 0.875rem;
  color: var(--muted-foreground);
  font-weight: 500;
}

/* Curriculum Cards in Carousel */
.module-carousel-track .curriculum-card {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: 1.5rem;
  border-radius: 0.75rem;
  background-color: var(--card);
  border: 1px solid var(--border);
  transition: all 0.3s ease;
  height: 100%;
}

.module-carousel-track .curriculum-card:hover {
  border-color: var(--primary);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
  transform: translateY(-2px);
}

.curriculum-icon {
  flex-shrink: 0;
  width: 3.5rem;
  height: 3.5rem;
  border-radius: 0.75rem;
  background-color: var(--primary);
  color: var(--primary-foreground);
  display: flex;
  align-items: center;
  justify-content: center;
}

.curriculum-title {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--foreground);
  margin-bottom: 0.25rem;
  line-height: 1.3;
}

.curriculum-instructor {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--primary);
  margin-bottom: 0.125rem;
}

.curriculum-date {
  font-size: 0.8rem;
  color: var(--accent);
  font-weight: 500;
  margin-bottom: 0.5rem;
}

.curriculum-desc {
  color: var(--muted-foreground);
  line-height: 1.5;
  font-size: 0.875rem;
}

/* Timeline Cards in Carousel */
.module-carousel-track .timeline-card-modern {
  position: relative;
  background: var(--card);
  border-radius: 1rem;
  padding: 1.5rem;
  padding-top: 2rem;
  border: 1px solid var(--border);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
  transition: all 0.3s ease;
  height: 100%;
}

.module-carousel-track .timeline-card-modern:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.12);
  border-color: var(--primary);
}

.timeline-step {
  position: absolute;
  top: -1rem;
  left: 50%;
  transform: translateX(-50%);
  width: 2.5rem;
  height: 2.5rem;
  background: linear-gradient(135deg, var(--primary) 0%, hsl(145, 50%, 35%) 100%);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1rem;
  box-shadow: 0 4px 12px rgba(35, 78, 52, 0.3);
  border: 3px solid var(--card);
}

.timeline-card-content {
  margin-top: 1rem;
  text-align: center;
}

.timeline-week-badge {
  display: inline-block;
  padding: 0.25rem 0.75rem;
  background: var(--eia-sage-light);
  color: var(--primary);
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  border-radius: 2rem;
  margin-bottom: 0.75rem;
}

.timeline-card-title {
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--foreground);
  margin-bottom: 0.5rem;
  line-height: 1.3;
}

.timeline-card-desc {
  color: var(--muted-foreground);
  font-size: 0.875rem;
  line-height: 1.5;
}

/* ============================================
   Instructors Section
   ============================================ */

/* Instructors Carousel */
.instructors-carousel-container {
  display: flex;
  align-items: center;
  gap: 1rem;
  position: relative;
}

.instructors-carousel {
  flex: 1;
  overflow: hidden;
}

.instructors-carousel-track {
  display: flex;
  transition: transform 0.5s ease;
}

.instructor-carousel-btn {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  flex-shrink: 0;
}

.instructor-carousel-btn:hover {
  background-color: rgba(255, 255, 255, 0.3);
  transform: scale(1.05);
}

.instructor-carousel-btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

.instructor-carousel-indicator {
  text-align: center;
  margin-top: 1.5rem;
}

.instructor-carousel-indicator .indicator-text {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.7);
}

@media (min-width: 1024px) {
  .instructors-carousel-track .instructor-card {
    min-width: 33.333%;
    flex: 0 0 33.333%;
    padding: 0 0.75rem;
  }
}

@media (max-width: 1023px) {
  .instructors-carousel-track .instructor-card {
    min-width: 50%;
    flex: 0 0 50%;
    padding: 0 0.5rem;
  }
}

@media (max-width: 639px) {
  .instructors-carousel-track .instructor-card {
    min-width: 100%;
    flex: 0 0 100%;
    padding: 0 0.5rem;
  }
  
  .instructor-carousel-btn {
    width: 40px;
    height: 40px;
  }
}

.instructor-card {
  background-color: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(8px);
  border-radius: 1rem;
  overflow: hidden;
  transition: all 0.3s ease;
}

.instructor-card:hover {
  background-color: rgba(255, 255, 255, 0.15);
  transform: translateY(-4px);
}

.instructor-image {
  width: 100%;
  height: 400px;
  overflow: hidden;
  background-color: rgba(255, 255, 255, 0.05);
}

.instructor-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
}

.instructor-info {
  padding: 1.5rem;
}

.instructor-name {
  font-size: 1.25rem;
  font-weight: 700;
  color: white;
  margin-bottom: 0.25rem;
}

.instructor-title {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--accent);
  margin-bottom: 0.5rem;
}

.instructor-module {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 0.75rem;
  padding: 0.25rem 0.75rem;
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 1rem;
  display: inline-block;
}

.instructor-bio {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.6;
}

/* ============================================
   CTA Section
   ============================================ */

.cta-text {
  font-size: 1.125rem;
  max-width: 36rem;
  margin: 0 auto 2rem;
}

/* ============================================
   Partners Section
   ============================================ */

.partners-grid {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 2rem;
}

@media (min-width: 768px) {
  .partners-grid {
    gap: 3rem;
  }
}

@media (min-width: 1024px) {
  .partners-grid {
    gap: 4rem;
  }
}

.partner-item {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
}

.partner-logo {
  width: 100%;
  max-width: 100%;
  height: auto;
  object-fit: contain;
}

/* ============================================
   Gallery / Carousel Section
   ============================================ */

.carousel-container {
  position: relative;
  width: 100%;
}

.carousel {
  position: relative;
  overflow: hidden;
  width: 100%;
}

.carousel-track {
  display: flex;
  transition: transform 0.5s ease-in-out;
}

.carousel-slide {
  flex: 0 0 100%;
  position: relative;
  aspect-ratio: 16 / 9;
}

.carousel-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  background-color: var(--primary);
  color: var(--primary-foreground);
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background-color 0.2s ease;
  z-index: 10;
}

.carousel-btn:hover {
  background-color: hsl(145, 40%, 20%);
}

.carousel-prev {
  left: 1rem;
}

.carousel-next {
  right: 1rem;
}

.carousel-dots {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 1.5rem;
}

.carousel-dot {
  width: 0.75rem;
  height: 0.75rem;
  border-radius: 50%;
  background-color: rgba(35, 78, 52, 0.3);
  border: none;
  cursor: pointer;
  transition: background-color 0.2s ease;
}

.carousel-dot.active {
  background-color: var(--primary);
}

/* ============================================
   Registration Modal
   ============================================ */

.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 100;
  padding: 1rem;
  overflow-y: auto;
}

.modal-overlay.hidden {
  display: none;
}

.modal-content {
  background-color: var(--background);
  border-radius: 1rem;
  padding: 2rem;
  max-width: 42rem;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  position: relative;
  animation: modalFadeIn 0.3s ease;
}

@keyframes modalFadeIn {
  from {
    opacity: 0;
    transform: scale(0.95);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

.modal-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: none;
  border: none;
  cursor: pointer;
  color: var(--muted-foreground);
  padding: 0.5rem;
  border-radius: 50%;
  transition: background-color 0.2s ease, color 0.2s ease;
}

.modal-close:hover {
  background-color: var(--muted);
  color: var(--foreground);
}

.modal-title {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary);
  text-align: center;
  margin-bottom: 1rem;
}

@media (min-width: 768px) {
  .modal-title {
    font-size: 2rem;
  }
}

/* ============================================
   Registration Form
   ============================================ */

.form-intro {
  text-align: center;
  color: rgba(35, 60, 45, 0.7);
  margin-bottom: 2.5rem;
}

.registration-form {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.form-row {
  display: grid;
  gap: 1.5rem;
}

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

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.form-group.full-width {
  grid-column: 1 / -1;
}

.form-group label {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--foreground);
}

.form-group input,
.form-group textarea {
  padding: 0.75rem 1rem;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  font-family: var(--font-sans);
  font-size: 1rem;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
  background-color: var(--background);
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(35, 78, 52, 0.1);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--muted-foreground);
}

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

/* ============================================
   Newsletter Section
   ============================================ */

.newsletter-wrapper {
  max-width: 42rem;
  margin: 0 auto;
}

.newsletter-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.newsletter-row {
  display: grid;
  gap: 1rem;
}

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

.newsletter-row:last-child {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

@media (min-width: 640px) {
  .newsletter-row:last-child {
    flex-direction: row;
  }
}

.newsletter-input {
  padding: 0.75rem 1rem;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  font-family: var(--font-sans);
  font-size: 1rem;
  background-color: var(--card);
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.newsletter-input:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(35, 78, 52, 0.1);
}

.newsletter-input.flex-1 {
  flex: 1;
}

/* ============================================
   Contact Section
   ============================================ */

.contact-section {
  padding: 2.5rem 0;
}

@media (min-width: 768px) {
  .contact-section {
    padding: 3rem 0;
  }
}

.contact-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
}

@media (min-width: 768px) {
  .contact-wrapper {
    flex-direction: row;
    align-items: center;
    gap: 3rem;
  }
}

.contact-logo {
  flex-shrink: 0;
}

.contact-logo-img {
  height: 5rem;
  width: auto;
}

@media (min-width: 768px) {
  .contact-logo-img {
    height: 6rem;
  }
}

.contact-info {
  flex: 1;
}

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

.contact-item-compact {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: rgba(255, 255, 255, 0.8);
}

.contact-item-compact svg {
  flex-shrink: 0;
  color: var(--accent);
}

.contact-emails {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.5rem;
}

.contact-separator {
  color: rgba(255, 255, 255, 0.4);
}

.contact-link {
  color: rgba(255, 255, 255, 0.8);
  transition: color 0.2s ease;
}

.contact-link:hover {
  color: white;
}

/* ============================================
   Footer
   ============================================ */

.footer {
  padding: 2rem 0;
  background-color: var(--foreground);
}

.footer-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1rem;
}

@media (min-width: 768px) {
  .footer-content {
    flex-direction: row;
    gap: 2rem;
  }
}

.footer-copyright {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.875rem;
}

.footer-links {
  display: flex;
  gap: 1.5rem;
}

.footer-link {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.875rem;
  transition: color 0.2s ease;
}

.footer-link:hover {
  color: white;
}

/* ============================================
   Toast Notification
   ============================================ */

.toast {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  background-color: var(--card);
  border: 1px solid var(--border);
  border-radius: 0.5rem;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
  padding: 1rem;
  z-index: 100;
  animation: slideIn 0.3s ease;
}

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

.toast-content {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
}

.toast-icon {
  color: var(--accent);
  flex-shrink: 0;
  margin-top: 0.125rem;
}

.toast-title {
  display: block;
  font-weight: 600;
  color: var(--foreground);
}

.toast-message {
  color: var(--muted-foreground);
  font-size: 0.875rem;
  margin-top: 0.25rem;
}

/* ============================================
   Animations
   ============================================ */

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

.animate-fade-up {
  animation: fade-up 0.8s ease-out forwards;
}