/* Green School Landing Page Styles */
/* Based on Figma Design Analysis - Mobile First Responsive Design */

/* CSS Variables for Design System */
:root {
  /* Colors */
  --color-primary-green: #7db239;
  --color-secondary-green: #8ec73d;
  --color-dark-green: #03221b;
  --color-orange: #f9900a;
  --color-white: #ffffff;
  --color-gray: #727272;
  --color-light-gray: #868681;
  --color-spring-green: #182f24;
  --color-chartreuse: #79b900;

  /* Typography */
  --font-primary: 'DM Sans', sans-serif;
  --font-secondary: 'Poppins', sans-serif;
  --font-rajdhani: 'Rajdhani', sans-serif;
  --font-inter: 'Inter', sans-serif;
  --font-poppins: 'Poppins', sans-serif;

  /* Spacing */
  --spacing-xs: 8px;
  --spacing-sm: 16px;
  --spacing-md: 24px;
  --spacing-lg: 32px;
  --spacing-xl: 48px;
  --spacing-xxl: 64px;

  /* Layout */
  --container-max-width: 1300px;
  --container-padding: 15px;
}

/* Reset and Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'DM Sans', sans-serif;
  line-height: 1.6;
  color: var(--color-dark-green);
  background-color: var(--color-white);
  overflow-x: hidden;
}

/* Typography */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: 'Poppins', sans-serif;
  font-weight: normal;
  line-height: 1.2;
}

h1 {
  font-size: clamp(36px, 8vw, 75px);
  line-height: 1.1;
}

h2 {
  font-size: clamp(28px, 6vw, 46px);
  line-height: 1.2;
}

h3 {
  font-size: clamp(18px, 4vw, 22px);
  line-height: 1.2;
}

p {
  font-family: 'DM Sans', sans-serif;
  font-size: clamp(14px, 3vw, 16px);
  line-height: 1.6;
  color: var(--color-gray);
}

/* Container */
.container {
  max-width: var(--container-max-width);
  margin: 0 auto;
  padding: 0 var(--container-padding);
  width: 100%;
  overflow-x: hidden;
}

/* Header */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(3, 34, 27, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.nav {
  padding: 0.6rem 0;
}

.nav-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 0.5rem;
  max-width: 100%;
  overflow: hidden;
}

.logo h1 {
  color: white;
  font-size: 1.5rem;
  font-weight: 500;
  font-family: 'DM Sans', sans-serif;
  margin: 0;
  white-space: nowrap;
  flex-shrink: 0;
}

.nav-menu {
  display: flex;
  list-style: none;
  gap: 1rem;
  align-items: center;
  margin: 0;
  padding: 0;
  flex-wrap: nowrap;
  flex: 1;
  justify-content: center;
}

.nav-link {
  color: white;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.8rem;
  transition: color 0.3s ease;
  text-transform: capitalize;
  font-family: 'DM Sans', sans-serif;
  white-space: nowrap;
  padding: 0.2rem 0.3rem;
}

.nav-link:hover {
  color: #2d6a1e;
}

.auth-buttons {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  white-space: nowrap;
  flex-shrink: 0;
}

.btn-primary,
.btn-secondary,
.btn-pledge {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.8rem;
  font-weight: 600;
  padding: 0.35rem 0.8rem;
  border-radius: 20px;
  text-decoration: none;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  white-space: nowrap;
  min-width: 85px;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 32px;
  line-height: 1;
}

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

.btn-primary:hover {
  background: #6a9a2a;
  transform: translateY(-2px);
}

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

.btn-pledge:hover {
  background: #e67e00;
  color: var(--color-white);
  transform: translateY(-2px);
}

/* Hero Section */
.hero {
  background: url('../../assets/images/hero-bg.png');
  background-size: cover;
  background-position: center;
  height: 100vh;
  display: flex;
  align-items: flex-end;
  position: relative;
  overflow: hidden;
  padding: 120px 0 0;
}

.hero-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(15px, 3vw, 30px);
  align-items: end;
  text-align: left;
}

/* Responsive padding for fixed header */
@media (max-width: 992px) {
  .hero {
    padding: 80px 0 0;
    align-items: center;
  }
}

@media (max-width: 768px) {
  .hero {
    padding: 90px 0 0;
    align-items: center;
  }
}

@media (max-width: 576px) {
  .hero {
    padding: 100px 0 0;
    align-items: flex-end;
    justify-content: center;
    height: 100vh;
  }

  .hero-content {
    align-items: end;
    margin-top: 0;
    gap: clamp(2px, 0.4vw, 4px);
  }

  .hero-image {
    height: clamp(300px, 40vh, 500px);
    align-self: flex-end;
    margin-top: 0;
    margin-bottom: 0;
  }
}

@media (max-width: 480px) {
  .hero {
    padding: 110px 0 0;
    align-items: flex-end;
    justify-content: center;
    height: 100vh;
  }

  .hero-title {
    font-size: clamp(28px, 6vw, 36px);
  }

  .hero-subtitle {
    font-size: clamp(10px, 2vw, 14px);
  }

  .hero-content {
    align-items: end;
    margin-top: 0;
    gap: clamp(1px, 0.25vw, 3px);
  }

  .hero-image {
    height: clamp(250px, 35vh, 400px);
    align-self: flex-end;
    margin-top: 0;
    margin-bottom: 0;
  }
}

.hero-text {
  color: var(--color-white) !important;
  max-width: 800px;
  margin: 0 auto;
}

.hero-text * {
  color: var(--color-white) !important;
}

.hero-subtitle {
  font-family: 'DM Sans', sans-serif;
  font-weight: 600;
  font-size: clamp(12px, 2.5vw, 16px);
  text-transform: uppercase;
  letter-spacing: clamp(1px, 0.5vw, 3.2px);
  margin-bottom: var(--spacing-md);
  color: var(--color-white) !important;
}

.hero-title {
  font-size: clamp(36px, 8vw, 75px);
  line-height: 1.1;
  text-transform: uppercase;
  margin-bottom: var(--spacing-lg);
  color: var(--color-white) !important;
}

.hero-description {
  font-size: clamp(16px, 3.5vw, 20px);
  line-height: 1.4;
  color: var(--color-white) !important;
  margin-bottom: var(--spacing-xl);
  max-width: 612px;
  margin-left: auto;
  margin-right: auto;
}

.hero-description p {
  color: var(--color-white) !important;
}

.hero-moto {
  color: var(--color-white) !important;
}

.hero-image {
  position: relative;
  height: clamp(400px, 53vh, 1067px);
  background: url('../../assets/images/madam.png') no-repeat center bottom;
  background-size: contain;
  display: block;
  max-width: 100%;
  width: 100%;
  object-fit: contain;
  align-self: flex-end;
  margin-bottom: 0;
  padding-bottom: 0;
}

/* Section Styles */
.section {
  padding: clamp(40px, 8vw, var(--spacing-xxl)) 0;
}

.section-title {
  text-align: center;
  margin-bottom: var(--spacing-xl);
}

.section-subtitle {
  font-family: 'DM Sans', sans-serif;
  font-weight: 600;
  font-size: clamp(12px, 2.5vw, 16px);
  text-transform: uppercase;
  letter-spacing: clamp(1px, 0.5vw, 3.2px);
  color: var(--color-dark-green);
  margin-bottom: var(--spacing-md);
}

.section-heading {
  font-size: clamp(28px, 6vw, 46px);
  line-height: 1.2;
  color: var(--color-dark-green);
  margin-bottom: var(--spacing-lg);
}

/* Climate Challenges Section */
.climate-challenges {
  background: #f0f8f2;
}

.challenges-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: clamp(20px, 4vw, 30px);
  margin-top: var(--spacing-xl);
}

.challenge-card {
  background: var(--color-white);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.challenge-card:hover {
  transform: translateY(-5px);
}

.challenge-image {
  height: clamp(180px, 30vh, 220px);
  background-size: cover;
  background-position: center;
  position: relative;
}

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

.challenge-content {
  padding: clamp(20px, 4vw, 30px);
}

.challenge-card h3 {
  font-size: clamp(18px, 4vw, 22px);
  line-height: 1.2;
  color: var(--color-dark-green);
  margin-bottom: var(--spacing-md);
  text-align: center;
  padding: clamp(15px, 3vw, 20px);
  font-weight: 600;
}

.challenge-card p {
  text-align: center;
  margin-bottom: var(--spacing-lg);
  padding: 0 clamp(15px, 3vw, 20px) clamp(15px, 3vw, 20px);
  color: var(--color-gray);
  line-height: 1.5;
  font-size: clamp(14px, 2.5vw, 16px);
}

.read-more {
  color: var(--color-orange);
  text-decoration: none;
  font-family: var(--font-primary);
  font-weight: 700;
  font-size: clamp(12px, 2.5vw, 16px);
  text-transform: uppercase;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: color 0.3s ease;
}

.read-more:hover {
  color: #e67e00;
}

/* Potential Section */
.potential {
  background: var(--color-white);
  padding: clamp(60px, 8vw, 120px) 0;
}

.potential-content {
  display: grid;
  grid-template-columns: 3fr 1fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: center;
}

.potential-text {
  order: 2;
}

.potential-image {
  order: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-left: 20px;
}

.infographic-img {
  max-width: 150%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.infographic-img:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
}

.potential-description {
  margin-bottom: var(--spacing-xl);
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: clamp(20px, 4vw, 30px);
  margin-bottom: var(--spacing-xl);
}

.feature-card {
  background: var(--color-white);
  border: 1px solid rgba(3, 34, 27, 0.1);
  border-radius: 20px;
  padding: clamp(15px, 3vw, 21px);
  display: flex;
  align-items: center;
  gap: clamp(15px, 3vw, 20px);
  transition: all 0.3s ease;
}

.feature-card:hover {
  border-color: var(--color-primary-green);
  transform: translateY(-2px);
}

.feature-icon {
  width: clamp(50px, 10vw, 70px);
  height: clamp(50px, 10vw, 70px);
  background: var(--color-primary-green);
  border-radius: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.feature-text {
  font-size: clamp(14px, 3vw, 16px);
  line-height: 1.4;
  color: var(--color-dark-green);
  text-transform: capitalize;
}

/* Key Priorities Section */
.key-priorities {
  background: #f0f8f2;
}

.priorities-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(30px, 6vw, 60px);
  align-items: start;
}

.priorities-text {
  order: 1;
}

.priorities-visual {
  order: 2;
  display: flex;
  flex-direction: column;
  gap: clamp(20px, 4vw, 30px);
}

.priorities-list {
  list-style: none;
}

.priorities-list li {
  display: flex;
  align-items: flex-start;
  gap: clamp(15px, 3vw, 20px);
  margin-bottom: clamp(20px, 4vw, 30px);
  padding-left: 0;
  color: var(--color-gray);
  line-height: 1.4;
  font-size: clamp(14px, 3vw, 16px);
}

.priorities-list li::before {
  content: '';
  width: clamp(12px, 2.5vw, 16px);
  height: clamp(12px, 2.5vw, 16px);
  background: var(--color-primary-green);
  border-radius: 50%;
  flex-shrink: 0;
  margin-top: 4px;
}

.vision-card {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.vision-card img {
  max-width: 100%;
  height: auto;
  border-radius: 20px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.vision-card img:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
}

.vision-statement,
.goal-statement {
  background: var(--color-spring-green);
  color: var(--color-white);
  padding: clamp(20px, 4vw, 30px);
  border-radius: 20px;
  width: 100%;
  position: relative;
}

.vision-statement h3,
.goal-statement h3 {
  color: var(--color-chartreuse);
  font-family: 'Poppins', sans-serif;
  font-size: clamp(24px, 5vw, 40px);
  line-height: 1.2;
  margin-bottom: var(--spacing-md);
  font-weight: 600;
}

.vision-statement p,
.goal-statement p {
  color: var(--color-white);
  font-family: 'DM Sans', sans-serif;
  font-size: clamp(14px, 3vw, 18px);
  line-height: 1.6;
  margin-bottom: 0;
}

.leaf-icon {
  position: absolute;
  top: clamp(15px, 3vw, 20px);
  right: clamp(15px, 3vw, 20px);
  font-size: clamp(24px, 4vw, 32px);
  opacity: 0.3;
}

/* Arch Section */
.arch-section {
  width: 100%;
  margin: 0;
  padding: 0;
  overflow: hidden;
}

.arch-image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

/* Sectors Section */
.sectors {
  background: var(--color-white);
}

.sectors-header {
  display: flex;
  flex-direction: column;
  gap: clamp(15px, 3vw, 20px);
  align-items: center;
  margin-bottom: var(--spacing-xl);
  text-align: center;
}

.sectors-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: clamp(20px, 4vw, 30px);
}

.action-fields-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: clamp(5px, 1vw, 10px);
  align-items: start;
}

/* Responsive breakpoints for action fields grid */
@media (max-width: 768px) {
  .action-fields-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: clamp(15px, 2vw, 20px);
  }
}

@media (max-width: 480px) {
  .action-fields-grid {
    grid-template-columns: 1fr;
  }
}

/* Action Slider Container - Horizontal Carousel */
.action-slider-container {
  position: relative;
  margin-top: var(--spacing-xl);
  overflow: hidden;
  padding: 0 60px;
  width: 100%;
  z-index: 1;
}

.action-slider {
  display: flex;
  transition: transform 0.3s ease;
  gap: clamp(20px, 4vw, 30px);
  padding: 0;
}

.sector-card {
  flex: 0 0 calc(20% - 16px);
  min-width: 280px;
  max-width: 350px;
  margin: 0 8px;
}

/* Navigation Controls */
.slider-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: #ff0000 !important;
  border: 3px solid #ff0000 !important;
  color: white !important;
  width: 80px;
  height: 80px;
  border-radius: 50%;
  display: flex !important;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  z-index: 99999;
  font-size: 32px;
  pointer-events: auto;
  box-shadow: 0 8px 25px rgba(255, 0, 0, 0.6);
}

.slider-nav:hover {
  background: var(--color-secondary-green);
  color: var(--color-white);
  transform: translateY(-50%) scale(1.1);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.4);
}

.slider-nav:disabled {
  opacity: 0.3;
  cursor: not-allowed;
  transform: translateY(-50%) scale(1);
  background: #ccc;
  border-color: #ccc;
}

.slider-nav:disabled:hover {
  background: #ccc;
  color: var(--color-white);
  transform: translateY(-50%) scale(1);
}

.slider-prev {
  left: 10px;
}

.slider-next {
  right: 10px;
}

/* Pagination Dots */
.slider-dots {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 30px;
}

.slider-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(125, 178, 57, 0.3);
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
}

.slider-dot.active {
  background: var(--color-primary-green);
  transform: scale(1.2);
}

.slider-dot:hover {
  background: var(--color-primary-green);
  transform: scale(1.1);
}

.sector-card {
  background: var(--color-white);
  border: 1px solid rgba(3, 34, 27, 0.1);
  border-radius: 15px;
  padding: clamp(10px, 1.5vw, 15px);
  text-align: center;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  height: 450px;
  margin: 0 2px;
  min-width: 0;
}

.sector-card:hover {
  background: var(--color-secondary-green);
  border-color: var(--color-secondary-green);
  transform: translateY(-2px);
}

.sector-card:hover .sector-title,
.sector-card:hover .sector-description,
.sector-card:hover h3,
.sector-card:hover p {
  color: var(--color-white);
}

.sector-card:hover .read-more {
  color: var(--color-white);
}

.sector-card:hover .action-point {
  color: var(--color-white);
}

.sector-card:hover .points {
  background: linear-gradient(135deg, var(--color-white) 0%, rgba(255, 255, 255, 0.9) 100%);
  color: var(--color-secondary-green);
  box-shadow: 0 2px 8px rgba(255, 255, 255, 0.3);
}

.sector-icon {
  width: clamp(30px, 6vw, 45px);
  height: clamp(30px, 6vw, 45px);
  background: var(--color-secondary-green);
  border-radius: 22px;
  margin: 0 auto var(--spacing-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.sector-card:hover .sector-icon {
  background: var(--color-white);
}

.sector-title {
  font-size: clamp(14px, 2.5vw, 18px);
  line-height: 1.2;
  color: var(--color-dark-green);
  margin-bottom: var(--spacing-sm);
}

.sector-description {
  margin-bottom: var(--spacing-lg);
}

/* Action List Styling */
.action-list {
  list-style: none;
  padding: 0;
  margin: 0;
  text-align: left;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  flex: 1;
  overflow: hidden;
}

.action-list li {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.3rem;
  border: 1px solid rgba(125, 178, 57, 0.1);
  border-radius: 6px;
  transition: all 0.3s ease;
  background: rgba(255, 255, 255, 0.5);
  font-size: clamp(11px, 2vw, 13px);
}

.action-list li.hidden-item {
  display: none !important;
}

.action-list li.hidden-item.show {
  display: flex !important;
  animation: fadeIn 0.3s ease-in;
}

.action-list li:hover {
  background: rgba(125, 178, 57, 0.05);
  border-color: rgba(125, 178, 57, 0.3);
  transform: translateY(-1px);
  box-shadow: 0 2px 8px rgba(125, 178, 57, 0.1);
}

.action-point {
  flex: 1;
  font-size: 0.9rem;
  color: #333;
  font-weight: 500;
  line-height: 1.4;
}

.points {
  background: linear-gradient(135deg, #7db239 0%, #5a8a2a 100%);
  color: white;
  padding: 0.25rem 0.5rem;
  border-radius: 12px;
  font-size: 0.75rem;
  font-weight: 700;
  min-width: 35px;
  text-align: center;
  box-shadow: 0 2px 8px rgba(125, 178, 57, 0.3);
  flex-shrink: 0;
}

/* Hidden items for read more functionality */
.hidden-item {
  display: none !important;
}

.hidden-item.show {
  display: flex !important;
  animation: fadeIn 0.3s ease-in;
}

/* Expanded card state */
.sector-card.expanded {
  height: auto;
  min-height: 600px;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Read More Button */
.read-more-btn {
  background: var(--color-primary-green);
  color: var(--color-white);
  border: none;
  padding: 8px 16px;
  border-radius: 20px;
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  margin-top: 15px;
  align-self: center;
  z-index: 15;
  position: relative;
  pointer-events: auto;
}

.read-more-btn:hover {
  background: #6a9a2a;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(125, 178, 57, 0.3);
}

.read-more-btn.expanded {
  background: var(--color-orange);
}

.read-more-btn.expanded:hover {
  background: #e67e00;
}

/* Categories Section */
.categories {
  background: #f0f8f2;
}

.categories-header {
  display: flex;
  flex-direction: column;
  gap: clamp(15px, 3vw, 20px);
  align-items: center;
  margin-bottom: var(--spacing-xl);
  text-align: center;
}

.categories-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: clamp(20px, 4vw, 41px);
}

.category-card {
  background: var(--color-white);
  border: 1px solid rgba(3, 34, 27, 0.1);
  border-radius: 20px;
  padding: clamp(20px, 4vw, 31px);
  text-align: center;
  transition: all 0.3s ease;
}

.category-card:hover {
  border-color: var(--color-primary-green);
  transform: translateY(-2px);
}

.category-icon {
  width: clamp(50px, 10vw, 73px);
  height: clamp(50px, 10vw, 73px);
  border-radius: 90px;
  margin: 0 auto var(--spacing-lg);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.star-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
}

.category-title {
  font-size: clamp(18px, 4vw, 22px);
  line-height: 1.2;
  color: var(--color-dark-green);
  margin-bottom: var(--spacing-sm);
}

.category-points {
  background: var(--color-secondary-green);
  color: var(--color-white);
  padding: 5px 13px;
  border-radius: 30px;
  font-size: clamp(18px, 4vw, 22px);
  line-height: 1.2;
  margin-bottom: var(--spacing-sm);
  display: inline-block;
}

.category-description {
  margin-bottom: var(--spacing-sm);
}

/* Senior Messages Section */
.senior-messages {
  background: var(--color-dark-green);
  color: var(--color-white);
}

.senior-messages .section-heading {
  color: var(--color-white);
}

.messages-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: clamp(20px, 4vw, 30px);
}

.message-card {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  height: clamp(350px, 50vh, 500px);
}

.message-image {
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  position: relative;
}

.message-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(transparent, rgba(3, 34, 27, 0.8));
  padding: clamp(20px, 4vw, 30px);
  color: #ffffff;
}

.message-name {
  font-size: clamp(18px, 4vw, 22px);
  line-height: 1.2;
  margin-bottom: var(--spacing-sm);
  color: #ffffff;
}

.message-title {
  opacity: 0.8;
  font-size: clamp(14px, 3vw, 16px);
  line-height: 1.4;
  color: #ffffff;
}



/* Process Section Styling */
.process-section {
  padding: clamp(30px, 4vw, 60px) 0;
  position: relative;
  min-height: 600px;
  overflow: hidden;
}

/* Video Background */
.process-video-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

.process-video-background video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

/* Fallback background for browsers that don't support video */
.process-fallback-bg {
  width: 100%;
  height: 100%;
  background: url('../landing_final_assets/images/ac0825a0a7800f6068dbf76cf0bc50b2d2a47d62.png') center center/cover no-repeat;
}

/* Mobile optimizations for video background */
@media (max-width: 768px) {
  .process-video-background video {
    object-position: center 20%;
  }

  /* Reduce video quality on mobile for better performance */
  .process-section {
    min-height: 500px;
  }
}

/* Disable video on very small screens for performance */
@media (max-width: 480px) {
  .process-video-background video {
    display: none;
  }

  .process-fallback-bg {
    display: block;
  }
}

.process-container {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: var(--spacing-md);
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.process-image-side {
  display: flex;
  justify-content: center;
  align-items: center;
  order: 1;
  height: 100%;
}

.process-main-image {
  max-width: 200%;
  height: auto;
  max-height: 600px;
  border-radius: 12px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  object-fit: contain;
  margin: 0 20px;
}

.process-main-image:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

.process-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(3, 34, 27, 0.7);
  z-index: 2;
}

.process-content-side {
  display: flex;
  flex-direction: column;
  gap: var(--spacing-md);
  height: 100%;
  justify-content: center;
  z-index: 3;
  position: relative;
}

.process-section .section-title {
  color: var(--color-white);
  text-align: center;
  z-index: 3;
  position: relative;
}

.process-section .section-subtitle {
  color: var(--color-chartreuse);
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.process-section .section-heading {
  color: var(--color-chartreuse);
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.process-steps-container {
  display: flex;
  flex-direction: column;
  gap: clamp(2.5px, 0.5vw, 4px);
}

.process-step-card {
  background: var(--color-spring-green);
  border-radius: 12px;
  padding: clamp(12px, 2vw, 16px);
  display: flex;
  align-items: center;
  gap: clamp(10px, 1.5vw, 12px);
  transition: all 0.3s ease;
  position: relative;
}

.process-step-card:hover {
  transform: translateX(2px);
  box-shadow: 0 4px 12px rgba(24, 47, 36, 0.2);
}

.step-icon {
  font-size: clamp(24px, 4vw, 32px);
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: clamp(35px, 6vw, 45px);
  height: clamp(35px, 6vw, 45px);
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  transition: all 0.3s ease;
}

.process-step-card:hover .step-icon {
  background: rgba(255, 255, 255, 0.2);
  transform: scale(1.05);
}

.step-content {
  flex: 1;
}

.step-title {
  color: var(--color-chartreuse);
  font-family: 'Poppins', sans-serif;
  font-size: clamp(16px, 3vw, 20px);
  line-height: 1.2;
  margin-bottom: clamp(4px, 1vw, 6px);
  font-weight: normal;
}

.step-description {
  color: var(--color-white);
  font-family: 'DM Sans', sans-serif;
  font-size: clamp(12px, 2.5vw, 14px);
  line-height: 1.4;
  margin: 0;
}

.process-arrow {
  display: flex;
  justify-content: center;
  align-items: center;
  color: var(--color-primary-green);
  font-size: clamp(14px, 2.5vw, 16px);
  margin: clamp(1.5px, 0.25vw, 2px) 0;
  animation: bounce 2s infinite;
}

@keyframes bounce {

  0%,
  20%,
  50%,
  80%,
  100% {
    transform: translateY(0);
  }

  40% {
    transform: translateY(-10px);
  }

  60% {
    transform: translateY(-5px);
  }
}

.process-cta {
  display: flex;
  justify-content: center;
  margin-top: var(--spacing-lg);
}



/* Footer */
.footer {
  background: #1a1a1a;
  color: var(--color-white);
  padding: clamp(40px, 8vw, var(--spacing-xxl)) 0 var(--spacing-xl);
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: clamp(30px, 6vw, 60px);
  margin-bottom: var(--spacing-xxl);
}

.footer-section h3 {
  font-family: 'DM Sans', sans-serif;
  font-weight: 600;
  font-size: clamp(18px, 4vw, 22px);
  line-height: 1.2;
  margin-bottom: var(--spacing-lg);
  text-transform: capitalize;
}

.footer-section p,
.footer-section a {
  color: var(--color-white);
  text-decoration: none;
  font-family: 'DM Sans', sans-serif;
  font-size: clamp(14px, 3vw, 16px);
  line-height: 1.4;
  margin-bottom: var(--spacing-sm);
  display: block;
}

.footer-section a:hover {
  color: var(--color-orange);
}

.footer-contact {
  display: flex;
  align-items: center;
  gap: clamp(15px, 3vw, 20px);
  margin-bottom: var(--spacing-lg);
}

.contact-icon {
  width: clamp(40px, 8vw, 60px);
  height: clamp(40px, 8vw, 60px);
  background: var(--color-secondary-green);
  border-radius: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.newsletter-form {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: var(--spacing-lg);
  width: 100%;
  max-width: 100%;
}

.newsletter-input {
  padding: clamp(12px, 3vw, 15px) clamp(15px, 3vw, 21px);
  border: 1px solid rgba(255, 255, 255, 0.02);
  border-radius: 10px;
  background: transparent;
  color: var(--color-white);
  font-family: 'DM Sans', sans-serif;
  font-weight: 500;
  font-size: clamp(14px, 3vw, 16px);
  width: 100%;
  box-sizing: border-box;
}

.newsletter-input::placeholder {
  color: var(--color-gray);
}

.newsletter-button {
  background: var(--color-secondary-green);
  color: var(--color-dark-green);
  padding: clamp(12px, 3vw, 17px) clamp(15px, 3vw, 20px);
  border: none;
  border-radius: 10px;
  font-family: 'DM Sans', sans-serif;
  font-weight: 700;
  font-size: clamp(12px, 2.5vw, 16px);
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.3s ease;
  white-space: nowrap;
  min-width: fit-content;
}

.newsletter-button:hover {
  background: #7db239;
}

.social-links {
  display: flex;
  gap: clamp(10px, 2vw, 14px);
  margin-top: var(--spacing-lg);
  justify-content: center;
}

.social-link {
  width: clamp(35px, 7vw, 40px);
  height: clamp(35px, 7vw, 40px);
  background: var(--color-secondary-green);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-dark-green);
  text-decoration: none;
  transition: all 0.3s ease;
  overflow: hidden;
}

.social-link i {
  font-size: clamp(16px, 3vw, 18px);
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.social-link:hover {
  background: var(--color-orange);
  color: var(--color-white);
  transform: translateY(-2px);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.02);
  padding-top: var(--spacing-lg);
  display: flex;
  flex-direction: column;
  gap: clamp(15px, 3vw, var(--spacing-md));
  text-align: center;
}

.footer-bottom p,
.footer-bottom a {
  color: var(--color-white);
  text-decoration: none;
  font-family: 'DM Sans', sans-serif;
  font-size: clamp(14px, 3vw, 16px);
  line-height: 1.4;
}

.footer-bottom a:hover {
  color: var(--color-orange);
}

.footer-links {
  display: flex;
  gap: clamp(20px, 4vw, 34px);
  justify-content: center;
  flex-wrap: wrap;
}

/* Responsive Design - Tablet */
@media (min-width: 768px) {
  .nav-menu {
    gap: 1.2rem;
  }

  .nav-link {
    font-size: 0.85rem;
  }

  .btn-primary,
  .btn-secondary,
  .btn-pledge {
    font-size: 0.85rem;
    padding: 0.4rem 1rem;
    min-width: 90px;
    height: 35px;
  }

  .hero-content {
    grid-template-columns: 1fr 1fr;
    text-align: left;
    gap: 40px;
    align-items: center;
  }

  .hero-image {
    display: block;
    height: clamp(467px, 60vh, 933px);
    max-width: 100%;
    width: 100%;
    align-self: end;
    margin-bottom: 0;
  }

  .potential-content,
  .priorities-content {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }



  .sectors-header,
  .categories-header {
    flex-direction: row;
    justify-content: space-between;
    text-align: left;
  }

  /* Action slider tablet adjustments */
  .sector-card {
    flex: 0 0 calc(20% - 16px);
    min-width: 250px;
    height: 550px;
  }

  .action-slider-container {
    padding: 0 50px;
    overflow: hidden;
  }

  .slider-nav {
    width: 45px;
    height: 45px;
    font-size: 16px;
  }

  .newsletter-form {
    flex-direction: row;
    gap: 0;
    flex-wrap: wrap;
    align-items: stretch;
  }

  .newsletter-input {
    border-radius: 10px 0 0 10px;
    flex: 1;
    min-width: 200px;
  }

  .newsletter-button {
    border-radius: 0 10px 10px 0;
    flex-shrink: 0;
  }

  .footer-bottom {
    flex-direction: row;
    justify-content: space-between;
    text-align: left;
  }

  .social-links {
    justify-content: flex-start;
  }
}

/* Responsive Design - Desktop */
@media (min-width: 1200px) {
  .nav-menu {
    gap: 1.5rem;
  }

  .nav-link {
    font-size: 0.9rem;
  }

  .btn-primary,
  .btn-secondary,
  .btn-pledge {
    font-size: 0.9rem;
    padding: 0.45rem 1.2rem;
    min-width: 100px;
    height: 38px;
  }
}

/* Large screens - optimal spacing */
@media (min-width: 1400px) {
  .nav-menu {
    gap: 1.8rem;
  }

  .nav-link {
    font-size: 1rem;
  }

  .btn-primary,
  .btn-secondary,
  .btn-pledge {
    font-size: 1rem;
    padding: 0.5rem 1.5rem;
    min-width: 110px;
    height: 40px;
  }

  .hero-content {
    gap: 60px;
    align-items: center;
  }

  .hero-image {
    height: clamp(800px, 67vh, 1200px);
    max-width: 100%;
    width: 100%;
    align-self: end;
    margin-bottom: 0;
  }

  .potential-content,
  .priorities-content {
    gap: 60px;
  }

  .policy-item {
    gap: 60px;
  }

  .challenges-grid {
    grid-template-columns: repeat(auto-fit, minmax(295px, 1fr));
  }

  .sectors-grid {
    grid-template-columns: repeat(auto-fit, minmax(295px, 1fr));
  }

  .action-slider-container {
    margin-top: var(--spacing-xl);
  }

  .sector-card {
    flex: 0 0 calc(20% - 16px);
    min-width: 280px;
    height: 600px;
  }

  .categories-grid {
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
  }

  .messages-grid {
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  }
}

/* Utility Classes */
.text-center {
  text-align: center;
}

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

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

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

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

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

.bg-light-green {
  background-color: #f0f8f2;
}

.mb-0 {
  margin-bottom: 0;
}

.mb-1 {
  margin-bottom: var(--spacing-sm);
}

.mb-2 {
  margin-bottom: var(--spacing-md);
}

.mb-3 {
  margin-bottom: var(--spacing-lg);
}

.mb-4 {
  margin-bottom: var(--spacing-xl);
}

.mt-0 {
  margin-top: 0;
}

.mt-1 {
  margin-top: var(--spacing-sm);
}

.mt-2 {
  margin-top: var(--spacing-md);
}

.mt-3 {
  margin-top: var(--spacing-lg);
}

.mt-4 {
  margin-top: var(--spacing-xl);
}

/* Animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.fade-in-up {
  animation: fadeInUp 0.6s ease-out;
}

/* Focus styles for accessibility */
button:focus,
a:focus,
input:focus {
  outline: 2px solid var(--color-orange);
  outline-offset: 2px;
}

/* Loading states */
.loading {
  opacity: 0.7;
  pointer-events: none;
}

/* CTA Button Styling */
.cta-button {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: clamp(12px, 2.5vw, 16px) clamp(20px, 4vw, 32px);
  background: linear-gradient(135deg, var(--color-primary-green) 0%, #5a8a2a 100%);
  color: var(--color-white);
  text-decoration: none;
  border-radius: 25px;
  font-family: 'DM Sans', sans-serif;
  font-weight: 600;
  font-size: clamp(14px, 2.5vw, 16px);
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  box-shadow: 0 4px 15px rgba(125, 178, 57, 0.3);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.cta-button:hover {
  background: linear-gradient(135deg, #5a8a2a 0%, #4a7a22 100%);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(125, 178, 57, 0.4);
  color: var(--color-white);
  text-decoration: none;
}

/* Explore Button Styling */
.explore-button {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: clamp(10px, 2vw, 14px) clamp(18px, 3.5vw, 28px);
  background: var(--color-orange);
  color: var(--color-white);
  text-decoration: none;
  border-radius: 20px;
  font-family: 'DM Sans', sans-serif;
  font-weight: 600;
  font-size: clamp(12px, 2.2vw, 14px);
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  box-shadow: 0 3px 12px rgba(249, 144, 10, 0.3);
}

.explore-button:hover {
  background: #e67e00;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(249, 144, 10, 0.4);
  color: var(--color-white);
  text-decoration: none;
}

/* Print styles */
@media print {

  .header,
  .footer,
  .cta-button {
    display: none;
  }

  .hero {
    min-height: auto;
    padding: 40px 0;
  }
}

/* Medium screens - optimize navigation layout */
@media (min-width: 481px) and (max-width: 767px) {
  .nav {
    gap: 10px;
  }

  .nav-menu {
    gap: 1rem;
    justify-content: center;
  }

  .nav-link {
    font-size: 0.8rem;
  }

  .cta-button {
    font-size: 0.8rem;
    padding: clamp(8px, 2vw, 12px) clamp(15px, 3vw, 25px);
  }
}

/* Mobile menu toggle for very small screens */
@media (max-width: 480px) {
  .nav-content {
    flex-direction: column;
    gap: 1rem;
  }

  .nav-menu {
    flex-wrap: wrap;
    gap: 0.5rem;
    justify-content: center;
  }

  .nav-link {
    font-size: 0.7rem;
    padding: 0.1rem 0.2rem;
  }

  .logo h1 {
    font-size: 1.2rem;
  }

  .auth-buttons {
    flex-direction: column;
    gap: 0.3rem;
  }

  .btn-primary,
  .btn-secondary,
  .btn-pledge {
    font-size: 0.7rem;
    padding: 0.25rem 0.6rem;
    min-width: 70px;
    height: 28px;
  }

  /* Hero section mobile layout */
  .hero-content {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 30px;
    align-items: flex-start;
    margin-top: 1rem;
  }

  /* Additional mobile hero padding to prevent header overlap */
  .hero {
    padding: 120px 0 0;
    align-items: flex-end;
    justify-content: center;
    height: 100vh;
  }

  .hero-content {
    gap: clamp(2px, 0.4vw, 4px);
  }

  .hero-image {
    height: clamp(350px, 45vh, 600px);
    align-self: flex-end;
    margin-top: 0;
    margin-bottom: 0;
    display: block;
    max-width: 100%;
    width: 100%;
    margin: 0 auto;
  }

  /* Potential section mobile layout */
  .potential-content {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .potential-text {
    order: 2;
  }

  .potential-image {
    order: 1;
  }

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



  /* Action list mobile adjustments */
  .action-list li {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.5rem;
  }

  .points {
    align-self: flex-end;
  }

  /* Action slider container mobile adjustments */
  .action-slider-container {
    margin-top: var(--spacing-lg);
  }

  .sector-card {
    flex: 0 0 calc(100% - 20px);
    min-width: 280px;
    height: 500px;
  }

  .action-slider-container {
    padding: 0 40px;
    overflow: hidden;
    width: 100%;
  }

  .slider-nav {
    width: 40px;
    height: 40px;
    font-size: 14px;
    background: var(--color-primary-green);
    color: var(--color-white);
    border-color: var(--color-primary-green);
    z-index: 100;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
  }

  .slider-prev {
    left: 5px;
  }

  .slider-next {
    right: 5px;
  }

  /* Process section mobile adjustments */
  .process-container {
    grid-template-columns: 1fr;
    gap: 20px;
    align-items: start;
  }

  .process-image-side {
    order: 1;
    height: auto;
  }

  .process-content-side {
    order: 2;
    height: auto;
    justify-content: flex-start;
  }

  .process-main-image {
    max-height: 250px;
  }

  .process-step-card {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
    text-align: center;
  }

  .step-icon {
    align-self: center;
  }

  .process-arrow {
    margin: 8px 0;
  }

  /* Priorities section mobile adjustments */
  .priorities-content {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .priorities-text {
    order: 2;
  }

  .priorities-visual {
    order: 1;
  }

  /* Ensure hero text is white on mobile */
  .hero-text,
  .hero-text *,
  .hero-subtitle,
  .hero-title,
  .hero-description,
  .hero-description p,
  .hero-moto {
    color: var(--color-white) !important;
  }
}

/* Contact Section Styles */
.contact-section {
  padding: var(--spacing-xl) 0;
  background: var(--color-white);
}

.contact-section .section-header {
  text-align: center;
}

.contact-content {
  display: flex;
  justify-content: center;
  margin-top: var(--spacing-lg);
}

.contact-info {
  display: none;
}

.contact-card {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border-radius: 12px;
  padding: var(--spacing-md);
  display: flex;
  align-items: center;
  gap: var(--spacing-sm);
  transition: all 0.3s ease;
}

.contact-card:hover {
  background: rgba(255, 255, 255, 0.15);
  transform: translateY(-2px);
}

.contact-icon {
  width: 50px;
  height: 50px;
  background: var(--color-chartreuse);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-primary-green);
  font-size: 20px;
  flex-shrink: 0;
}

.contact-card h3 {
  color: var(--color-chartreuse);
  font-family: 'Poppins', sans-serif;
  font-size: 18px;
  margin: 0 0 4px 0;
  font-weight: 600;
}

.contact-card p {
  color: var(--color-white);
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  margin: 0;
  line-height: 1.4;
}

.contact-form-container {
  background: var(--color-white);
  border-radius: 16px;
  padding: var(--spacing-lg);
  border: 1px solid var(--color-light-gray);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  width: 100%;
  max-width: 800px;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: var(--spacing-md);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--spacing-md);
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-label {
  color: var(--color-primary-green);
  font-family: 'Poppins', sans-serif;
  font-size: 14px;
  font-weight: 500;
}

.form-input,
.form-textarea {
  background: var(--color-white);
  border: 1px solid var(--color-light-gray);
  border-radius: 8px;
  padding: 12px 16px;
  color: var(--color-primary-green);
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  transition: all 0.3s ease;
}

.form-input::placeholder,
.form-textarea::placeholder {
  color: var(--color-gray);
}

.form-input:focus,
.form-textarea:focus {
  outline: none;
  border-color: var(--color-primary-green);
  background: var(--color-white);
  box-shadow: 0 0 0 3px rgba(3, 34, 27, 0.1);
}

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

.contact-submit-btn {
  background: var(--color-primary-green);
  color: var(--color-white);
  border: none;
  border-radius: 8px;
  padding: 14px 28px;
  font-family: 'Poppins', sans-serif;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  align-self: flex-start;
  margin-top: var(--spacing-sm);
}

.contact-submit-btn:hover {
  background: var(--color-spring-green);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(3, 34, 27, 0.3);
}

.contact-submit-btn:active {
  transform: translateY(0);
}

/* Responsive Design for Contact Section */
@media (max-width: 768px) {
  .contact-content {
    padding: 0 var(--spacing-md);
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .contact-card {
    padding: var(--spacing-sm);
  }

  .contact-icon {
    width: 40px;
    height: 40px;
    font-size: 16px;
  }

  .contact-card h3 {
    font-size: 16px;
  }

  .contact-card p {
    font-size: 13px;
  }

  .contact-form-container {
    padding: var(--spacing-md);
  }

  .contact-submit-btn {
    width: 100%;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .contact-section {
    padding: var(--spacing-lg) 0;
  }

  .contact-info {
    gap: var(--spacing-sm);
  }

  .contact-card {
    flex-direction: column;
    text-align: center;
    gap: var(--spacing-sm);
  }
}