/* Introduction Section */
.introduction-section {
  position: relative;
  width: 100%;
  min-height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--primary-bg);
  overflow: hidden;
  padding: 40px 20px;
}

.intro-content-wrapper {
  position: relative;
  z-index: 2;
  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);
}

.intro-content-wrapper 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;
}

.intro-content-wrapper 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 */
.intro-content-wrapper h1,
.intro-content-wrapper p {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.intro-content-wrapper h1.visible,
.intro-content-wrapper p.visible {
  opacity: 1;
  transform: translateY(0);
}

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

  .intro-content-wrapper {
    padding: 40px 30px;
    max-width: 70%;
  }

  .intro-content-wrapper h1 {
    font-size: 2.5rem;
    margin-bottom: 20px;
  }

  .intro-content-wrapper p {
    font-size: 1.1rem;
  }
}

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

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

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

  .intro-content-wrapper p {
    font-size: 0.95rem;
  }
}

/* Service Overview Section */
.service-overview-section {
  padding: 40px 20px;
  background: var(--secondary-bg);
  display: flex;
  justify-content: center;
  align-items: center;
}

.overview-layout {
  display: flex;
  flex-direction: column;
  gap: 20px;
  max-width: 1200px;
  margin: 0 auto;
  align-items: center;
}

.overview-text-column {
  text-align: center;
  max-width: 100%;
}

.overview-text-column h2 {
  font-family: 'Neon-Heavy', sans-serif;
  font-size: 1.8rem;
  color: var(--logo-green);
  margin-bottom: 15px;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  animation: fadeIn 0.8s ease-out;
}

.overview-text-column h2 i {
  font-size: 1.6rem;
  color: var(--primary-green);
  transition: transform 0.3s ease;
}

.overview-text-column h2:hover i {
  transform: scale(1.1);
}

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

.overview-image-column {
  max-width: 100%;
  overflow: hidden;
  border-radius: 10px;
  box-shadow: var(--shadow-light);
}

.overview-image-column img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.5s ease;
}

.overview-image-column:hover img {
  transform: scale(1.05);
}

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

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

  .overview-layout {
    flex-direction: row;
    gap: 40px;
    align-items: flex-start;
  }

  .overview-text-column {
    max-width: 50%;
    text-align: left;
  }

  .overview-text-column h2 {
    font-size: 2.3rem;
    margin-bottom: 20px;
    justify-content: flex-start;
  }

  .overview-text-column h2 i {
    font-size: 1.8rem;
  }

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

  .overview-image-column {
    max-width: 50%;
  }
}

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

  .overview-text-column h2 {
    font-size: 1.5rem;
    margin-bottom: 12px;
    gap: 8px;
  }

  .overview-text-column h2 i {
    font-size: 1.4rem;
  }

  .overview-text-column p {
    font-size: 0.95rem;
  }

  .overview-image-column {
    max-width: 100%;
  }
}

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

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

.benefits-section .section-subtitle {
  font-family: 'Neon-Regular', sans-serif;
  font-size: 1rem;
  color: var(--text-primary);
  line-height: 1.6;
  margin-bottom: 30px;
  max-width: 800px;
  text-align: center;
  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.4rem;
  color: var(--text-primary);
  margin-bottom: 10px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

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

/* Animation for fade-in */
@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;
  }

  .benefits-section h2 {
    font-size: 2.3rem;
    margin-bottom: 20px;
  }

  .benefits-section .section-subtitle {
    font-size: 1.1rem;
    margin-bottom: 40px;
  }

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

  .benefit-card {
    padding: 30px;
  }

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

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

  .benefit-card i {
    font-size: 2.2rem;
    margin-bottom: 20px;
  }
}

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

  .benefits-section h2 {
    font-size: 1.5rem;
    margin-bottom: 12px;
  }

  .benefits-section .section-subtitle {
    font-size: 0.95rem;
    margin-bottom: 20px;
  }

  .benefits-grid {
    gap: 15px;
  }

  .benefit-card {
    padding: 15px;
  }

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

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

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

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

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

.solutions-list {
  display: flex;
  flex-direction: column;
  gap: 30px;
  max-width: 1200px;
  width: 100%;
}

.solution-block {
  display: flex;
  flex-direction: column;
  gap: 20px;
  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;
}

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

.solution-text h3 {
  font-family: 'Neon-Heavy', sans-serif;
  font-size: 1.4rem;
  color: var(--primary-green);
  margin-bottom: 10px;
  text-transform: uppercase;
  letter-spacing: 1px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.solution-text h3 i {
  font-size: 1.6rem;
  color: var(--primary-green);
  transition: transform 0.3s ease;
}

.solution-text h3:hover i {
  transform: scale(1.1);
}

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

.solution-image {
  max-width: 100%;
  overflow: hidden;
  border-radius: 10px;
  box-shadow: var(--shadow-light);
}

.solution-image img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.5s ease;
}

.solution-block:hover .solution-image img {
  transform: scale(1.05);
}

.solution-block-reverse {
  flex-direction: column-reverse;
}

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

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

  .solutions-section h2 {
    font-size: 2.3rem;
    margin-bottom: 40px;
  }

  .solutions-list {
    gap: 40px;
  }

  .solution-block {
    flex-direction: row;
    align-items: center;
    padding: 30px;
    gap: 30px;
  }

  .solution-block-reverse {
    flex-direction: row-reverse;
  }

  .solution-text {
    max-width: 50%;
  }

  .solution-text h3 {
    font-size: 1.6rem;
    margin-bottom: 15px;
  }

  .solution-text h3 i {
    font-size: 1.8rem;
  }

  .solution-text p {
    font-size: 1rem;
  }

  .solution-image {
    max-width: 50%;
  }
}

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

  .solutions-section h2 {
    font-size: 1.5rem;
    margin-bottom: 20px;
  }

  .solutions-list {
    gap: 20px;
  }

  .solution-block {
    padding: 15px;
  }

  .solution-text h3 {
    font-size: 1.2rem;
    margin-bottom: 8px;
    gap: 8px;
  }

  .solution-text h3 i {
    font-size: 1.4rem;
  }

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

  .solution-image {
    max-width: 100%;
  }
}

/* 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-wrapper {
  text-align: center;
  max-width: 800px;
  width: 100%;
}

.cta-content-wrapper h2 {
  font-family: 'Neon-Heavy', sans-serif;
  font-size: 1.8rem;
  color: var(--text-light);
  margin-bottom: 15px;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  animation: fadeIn 0.8s ease-out;
}

.cta-content-wrapper h2 i {
  font-size: 1.6rem;
  color: var(--accent-yellow);
  transition: transform 0.3s ease;
}

.cta-content-wrapper h2:hover i {
  transform: scale(1.1);
}

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

.cta-button {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  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 i {
  font-size: 1.2rem;
}

.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 */
@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-wrapper h2 {
    font-size: 2.3rem;
    margin-bottom: 20px;
  }

  .cta-content-wrapper h2 i {
    font-size: 1.8rem;
  }

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

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

  .cta-button i {
    font-size: 1.3rem;
  }
}

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

  .cta-content-wrapper h2 {
    font-size: 1.5rem;
    margin-bottom: 12px;
    gap: 8px;
  }

  .cta-content-wrapper h2 i {
    font-size: 1.4rem;
  }

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

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

  .cta-button i {
    font-size: 1.1rem;
  }
}