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

.introduction-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: 1;
}

.introduction-content {
  position: relative;
  z-index: 2;
  background: var(--glass-bg);
  backdrop-filter: blur(10px);
  padding: 30px 15px;
  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-headline {
  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.2;
}

.introduction-subheadline {
  font-family: 'Neon-Regular', sans-serif;
  font-size: 1.1rem;
  color: var(--text-primary);
  margin-bottom: 20px;
  font-style: italic;
  opacity: 0.9;
}

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

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

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

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

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

  .introduction-subheadline {
    font-size: 1.4rem;
    margin-bottom: 25px;
  }

  .introduction-body {
    font-size: 1.1rem;
    margin-bottom: 25px;
  }
}

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

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

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

  .introduction-subheadline {
    font-size: 1rem;
    margin-bottom: 15px;
  }

  .introduction-body {
    font-size: 0.9rem;
    margin-bottom: 15px;
  }
}

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

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

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

.philosophy-tagline {
  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;
}

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

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

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

.philosophy-image: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) {
  .philosophy-overview-section {
    padding: 60px 40px;
  }

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

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

  .philosophy-tagline {
    font-size: 2.5rem;
    margin-bottom: 20px;
  }

  .philosophy-text p {
    font-size: 1.1rem;
    margin-bottom: 20px;
  }

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

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

  .philosophy-tagline {
    font-size: 1.5rem;
    margin-bottom: 12px;
  }

  .philosophy-text p {
    font-size: 0.95rem;
    margin-bottom: 12px;
  }

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

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

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

.services-intro {
  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;
}

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

.service-card-link {
  text-decoration: none;
}

.service-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);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  text-align: center;
}

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

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

.service-card:hover .service-icon {
  transform: scale(1.1);
}

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

.service-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) {
  .services-showcase-section {
    padding: 60px 40px;
  }

  .services-title {
    font-size: 2.5rem;
    margin-bottom: 25px;
  }

  .services-intro {
    font-size: 1.1rem;
    margin-bottom: 40px;
  }

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

  .service-card {
    padding: 25px;
  }

  .service-icon {
    font-size: 2.2rem;
    margin-bottom: 20px;
  }

  .service-card-title {
    font-size: 1.8rem;
    margin-bottom: 20px;
  }

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

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

  .services-title {
    font-size: 1.8rem;
    margin-bottom: 15px;
  }

  .services-intro {
    font-size: 0.95rem;
    margin-bottom: 25px;
  }

  .services-grid {
    gap: 15px;
  }

  .service-card {
    padding: 15px;
  }

  .service-icon {
    font-size: 1.8rem;
    margin-bottom: 12px;
  }

  .service-card-title {
    font-size: 1.3rem;
    margin-bottom: 12px;
  }

  .service-card 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 15px;
  box-shadow: var(--shadow-light);
  border: 1px solid rgba(255, 255, 255, 0.2);
  text-align: center;
  max-width: 800px;
  width: 100%;
  animation: fadeIn 0.8s ease-out;
}

.cta-headline {
  font-family: 'Neon-Heavy', sans-serif;
  font-size: 2rem;
  color: var(--text-light);
  margin-bottom: 20px;
  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: 30px;
  opacity: 0.95;
}

.cta-button {
  display: inline-block;
  padding: 15px 30px;
  font-family: 'Neon-Heavy', sans-serif;
  font-size: 1.1rem;
  color: var(--text-light);
  background: var(--btn-gradient);
  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.2), transparent);
  transition: left 0.5s;
}

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

.cta-button:hover {
  background: var(--btn-gradient-hover);
  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 {
    padding: 50px 30px;
  }

  .cta-headline {
    font-size: 2.5rem;
    margin-bottom: 25px;
  }

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

  .cta-button {
    padding: 18px 40px;
    font-size: 1.2rem;
  }
}

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

  .cta-content {
    padding: 20px 10px;
  }

  .cta-headline {
    font-size: 1.8rem;
    margin-bottom: 15px;
  }

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

  .cta-button {
    padding: 12px 25px;
    font-size: 1rem;
  }
}