/* Introduction Section */
.introduction-section.hero-style-background {
  position: relative;
  width: 100%;
  min-height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: var(--primary-bg);
  background-size: cover;
  background-position: center;
}

.introduction-section .hero-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.introduction-section .hero-background img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s ease;
}

.introduction-section .hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.6));
  z-index: 2;
}

.introduction-content {
  position: relative;
  z-index: 3;
  background: var(--glass-bg);
  backdrop-filter: blur(10px);
  padding: 30px 20px;
  border-radius: 12px;
  box-shadow: var(--shadow-light);
  text-align: center;
  max-width: 90%;
  margin: 0 auto;
  border: 1px solid rgba(255, 255, 255, 0.2);
  animation: fadeInUp 1s ease-out;
}

.introduction-content h1 {
  font-family: 'Neon-Heavy', sans-serif;
  font-size: 1.8rem;
  color: var(--text-primary);
  margin-bottom: 15px;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  line-height: 1.3;
}

.introduction-content p {
  font-family: 'Neon-Regular', sans-serif;
  font-size: 1rem;
  color: var(--text-primary);
  line-height: 1.6;
  margin-bottom: 15px;
  opacity: 0.95;
}

/* Hover effect for background image */
.introduction-section:hover .hero-background img {
  transform: scale(1.05);
}

/* Animation for fade-in effect */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Medium screens (768px and up) */
@media (min-width: 768px) {
  .introduction-section.hero-style-background {
    min-height: 100vh;
  }

  .introduction-content {
    padding: 50px 40px;
    max-width: 70%;
  }

  .introduction-content h1 {
    font-size: 3rem;
    margin-bottom: 20px;
  }

  .introduction-content p {
    font-size: 1.1rem;
    margin-bottom: 20px;
  }
}

/* Small screens (480px and below) */
@media (max-width: 480px) {
  .introduction-section.hero-style-background {
    min-height: 70vh;
  }

  .introduction-content {
    padding: 20px 15px;
    max-width: 95%;
  }

  .introduction-content h1 {
    font-size: 1.5rem;
    margin-bottom: 12px;
  }

  .introduction-content p {
    font-size: 0.9rem;
    margin-bottom: 12px;
  }
}

/* Benefits Section */
.benefits-section {
  padding: 40px 20px;
  background: var(--secondary-bg);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.section-heading {
  text-align: center;
  margin-bottom: 30px;
}

.section-heading h2 {
  font-family: 'Neon-Heavy', sans-serif;
  font-size: 2rem;
  color: var(--logo-green);
  margin-bottom: 15px;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  animation: fadeIn 0.8s ease-out;
}

.section-heading p {
  font-family: 'Neon-Regular', sans-serif;
  font-size: 1rem;
  color: var(--text-primary);
  line-height: 1.6;
  max-width: 800px;
  margin: 0 auto;
  opacity: 0.95;
}

.benefits-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  max-width: 1200px;
  width: 100%;
}

.benefit-card {
  background: var(--glass-bg);
  backdrop-filter: blur(10px);
  border-radius: 12px;
  padding: 20px;
  box-shadow: var(--shadow-light);
  border: 1px solid rgba(255, 255, 255, 0.2);
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.benefit-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-hover);
}

.benefit-card i {
  font-size: 2rem;
  color: var(--primary-green);
  margin-bottom: 15px;
  transition: transform 0.3s ease;
}

.benefit-card:hover i {
  transform: scale(1.1);
}

.benefit-card h3 {
  font-family: 'Neon-Heavy', sans-serif;
  font-size: 1.5rem;
  color: var(--primary-green);
  margin-bottom: 10px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.benefit-card p {
  font-family: 'Neon-Regular', sans-serif;
  font-size: 1rem;
  color: var(--text-primary);
  line-height: 1.6;
  opacity: 0.95;
}

/* Animation for fade-in effect */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Medium screens (768px and up) */
@media (min-width: 768px) {
  .benefits-section {
    padding: 60px 40px;
  }

  .section-heading h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
  }

  .section-heading p {
    font-size: 1.1rem;
  }

  .benefits-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
  }

  .benefit-card {
    padding: 30px;
  }

  .benefit-card h3 {
    font-size: 1.8rem;
    margin-bottom: 15px;
  }

  .benefit-card p {
    font-size: 1.1rem;
  }
}

/* Small screens (480px and below) */
@media (max-width: 480px) {
  .benefits-section {
    padding: 30px 15px;
  }

  .section-heading h2 {
    font-size: 1.8rem;
    margin-bottom: 12px;
  }

  .section-heading p {
    font-size: 0.95rem;
  }

  .benefits-grid {
    gap: 15px;
  }

  .benefit-card {
    padding: 15px;
  }

  .benefit-card i {
    font-size: 1.8rem;
    margin-bottom: 10px;
  }

  .benefit-card h3 {
    font-size: 1.3rem;
    margin-bottom: 8px;
  }

  .benefit-card p {
    font-size: 0.9rem;
  }
}

/* Design Process Section */
.design-process-section {
  padding: 40px 20px;
  background: var(--primary-bg);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.section-heading {
  text-align: center;
  margin-bottom: 30px;
}

.section-heading h2 {
  font-family: 'Neon-Heavy', sans-serif;
  font-size: 2rem;
  color: var(--logo-green);
  text-transform: uppercase;
  letter-spacing: 1.2px;
  animation: fadeIn 0.8s ease-out;
}

.process-timeline {
  display: flex;
  flex-direction: column;
  gap: 20px;
  max-width: 800px;
  width: 100%;
}

.process-step {
  display: flex;
  align-items: center;
  background: var(--glass-bg);
  backdrop-filter: blur(10px);
  border-radius: 12px;
  padding: 20px;
  box-shadow: var(--shadow-light);
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  opacity: 0;
  transform: translateY(20px);
}

.process-step.is-visible {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.process-step:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-hover);
}

.process-icon {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 50px;
  height: 50px;
  background: var(--primary-green);
  border-radius: 50%;
  margin-right: 15px;
  flex-shrink: 0;
  transition: transform 0.3s ease;
}

.process-step:hover .process-icon {
  transform: scale(1.1);
}

.process-icon i {
  font-size: 1.5rem;
  color: var(--text-light);
}

.process-text h3 {
  font-family: 'Neon-Heavy', sans-serif;
  font-size: 1.5rem;
  color: var(--primary-green);
  margin-bottom: 10px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.process-text p {
  font-family: 'Neon-Regular', sans-serif;
  font-size: 1rem;
  color: var(--text-primary);
  line-height: 1.6;
  opacity: 0.95;
}

/* Animation for fade-in effect */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Medium screens (768px and up) */
@media (min-width: 768px) {
  .design-process-section {
    padding: 60px 40px;
  }

  .section-heading h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
  }

  .process-timeline {
    gap: 30px;
  }

  .process-step {
    padding: 30px;
  }

  .process-icon {
    width: 60px;
    height: 60px;
    margin-right: 20px;
  }

  .process-icon i {
    font-size: 1.8rem;
  }

  .process-text h3 {
    font-size: 1.8rem;
    margin-bottom: 15px;
  }

  .process-text p {
    font-size: 1.1rem;
  }
}

/* Small screens (480px and below) */
@media (max-width: 480px) {
  .design-process-section {
    padding: 30px 15px;
  }

  .section-heading h2 {
    font-size: 1.8rem;
    margin-bottom: 15px;
  }

  .process-timeline {
    gap: 15px;
  }

  .process-step {
    padding: 15px;
    flex-direction: column;
    align-items: flex-start;
  }

  .process-icon {
    width: 40px;
    height: 40px;
    margin-right: 0;
    margin-bottom: 10px;
  }

  .process-icon i {
    font-size: 1.3rem;
  }

  .process-text h3 {
    font-size: 1.3rem;
    margin-bottom: 8px;
  }

  .process-text p {
    font-size: 0.9rem;
  }
}

/* Call-to-Action Section */
.cta-section {
  padding: 40px 20px;
  background: linear-gradient(180deg, var(--primary-green) 0%, var(--logo-green) 100%);
  display: flex;
  justify-content: center;
  align-items: center;
}

.cta-content {
  background: var(--glass-bg);
  backdrop-filter: blur(10px);
  border-radius: 12px;
  padding: 30px 20px;
  box-shadow: var(--shadow-light);
  border: 1px solid rgba(255, 255, 255, 0.2);
  text-align: center;
  max-width: 800px;
  width: 90%;
  animation: fadeIn 0.8s ease-out;
}

.cta-content h2 {
  font-family: 'Neon-Heavy', sans-serif;
  font-size: 2rem;
  color: var(--text-light);
  margin-bottom: 15px;
  text-transform: uppercase;
  letter-spacing: 1.2px;
}

.cta-content p {
  font-family: 'Neon-Regular', sans-serif;
  font-size: 1rem;
  color: var(--text-light);
  line-height: 1.6;
  margin-bottom: 20px;
  opacity: 0.95;
}

.cta-button {
  display: inline-block;
  padding: 12px 25px;
  font-family: 'Neon-Heavy', sans-serif;
  font-size: 1rem;
  color: var(--logo-green);
  background: var(--accent-yellow);
  text-decoration: none;
  border-radius: 8px;
  box-shadow: var(--shadow-light);
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 1px;
  position: relative;
  overflow: hidden;
}

.cta-button::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
  transition: left 0.5s;
}

.cta-button:hover::before {
  left: 100%;
}

.cta-button:hover {
  background: #f0c400; /* Slightly darker yellow */
  transform: translateY(-3px);
  box-shadow: var(--shadow-hover);
}

.cta-button:active {
  transform: translateY(0);
}

/* Animation for fade-in effect */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Medium screens (768px and up) */
@media (min-width: 768px) {
  .cta-section {
    padding: 60px 40px;
  }

  .cta-content {
    padding: 50px 40px;
    max-width: 70%;
  }

  .cta-content h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
  }

  .cta-content p {
    font-size: 1.1rem;
    margin-bottom: 30px;
  }

  .cta-button {
    padding: 15px 30px;
    font-size: 1.1rem;
  }
}

/* Small screens (480px and below) */
@media (max-width: 480px) {
  .cta-section {
    padding: 30px 15px;
  }

  .cta-content {
    padding: 20px 15px;
    max-width: 95%;
  }

  .cta-content h2 {
    font-size: 1.8rem;
    margin-bottom: 12px;
  }

  .cta-content p {
    font-size: 0.95rem;
    margin-bottom: 15px;
  }

  .cta-button {
    padding: 10px 20px;
    font-size: 0.9rem;
  }
}