/* Hero Section */
.hero {
  position: relative;
  padding: 100px 0;
  background: var(--white);
  overflow: hidden;
  text-align: center;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(rgba(255, 255, 255, 0.92), rgba(255, 255, 255, 0.92)), 
              url('../images/rice.webp') center/cover;
  z-index: -1;
}

.hero-title {
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  color: var(--royal-blue-dark);
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 20px;
}

.hero-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 3px;
  background: hsl(2, 100%, 69%);
}

/* Services Intro Section Enhancement */
.features {
  padding: 100px 0 70px;
  background: var(--white);
}

.section-title {
  font-size: clamp(2.2rem, 4vw, 2.8rem);
  color: var(--royal-blue-dark);
  margin-bottom: 25px;
  text-align: center;
}

.section-text {
  color: var(--cool-gray);
  font-size: 1.1rem;
  line-height: 1.7;
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

/* Services Cards Enhancement */
.about {
  padding: 70px 0 100px;
  background: hsl(0, 0%, 98%);
}

.about-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 30px;
}

.about-card {
  background: var(--white);
  padding: 40px 35px;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  border: 1px solid hsl(0, 0%, 90%);
  height: 100%;
  display: flex;
  flex-direction: column;
}

/* Process Section Enhancement */
.process-section {
  padding: 100px 0;
  background: var(--white);
}

.process-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  margin-top: 50px;
}

.process-image {
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
  height: 500px;
}

.process-banner {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.process-title {
  color: var(--royal-blue-dark);
  font-size: 1.8rem;
  margin-bottom: 20px;
}

.process-text {
  color: var(--cool-gray);
  margin-bottom: 30px;
  font-size: 1.1rem;
  line-height: 1.6;
}

.process-steps {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}

.step-item {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px;
  background: hsl(0, 0%, 98%);
  border-radius: 10px;
  border: 1px solid hsl(0, 0%, 90%);
  transition: all 0.3s ease;
}

.step-item:hover {
  transform: translateX(10px);
  background: var(--white);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
}

.step-number {
  font-size: 1.2rem;
  font-weight: 700;
  color: hsl(2, 100%, 69%);
  min-width: 40px;
}

.step-item p {
  color: var(--cool-gray);
  font-size: 1rem;
  line-height: 1.5;
}

/* Benefits Section Enhancement */
.benefits-section {
  padding: 100px 0;
  background: hsl(0, 0%, 98%);
}

.benefits-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.benefits-content {
  order: 2;
}

.benefits-image {
  order: 1;
  height: 550px;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
  border: 1px solid hsl(0, 0%, 90%);
  position: relative;
}

.benefits-image::after {
  content: '';
  position: absolute;
  inset: 20px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 10px;
  pointer-events: none;
}

.benefits-banner {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.benefits-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 25px;
  margin-top: 40px;
}

.benefit-item {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 20px;
  background: var(--white);
  border-radius: 10px;
  border: 1px solid hsl(0, 0%, 90%);
  transition: all 0.3s ease;
}

.benefit-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
}

.benefit-item ion-icon {
  font-size: 24px;
  color: hsl(2, 100%, 69%);
}

.benefit-item p {
  color: var(--cool-gray);
  font-size: 1rem;
  line-height: 1.5;
}

.benefits-section .section-title {
  text-align: left;
  margin-bottom: 20px;
}

/* CTA Section */
.cta {
  padding: 100px 0;
  background: hsl(0, 0%, 98%);
}

.cta-card {
  background: var(--white);
  padding: 60px 40px;
  border-radius: 20px;
  text-align: center;
  position: relative;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.06);
  border: 1px solid hsl(0, 0%, 90%);
}

.cta-title {
  color: var(--royal-blue-dark);
  font-size: clamp(2rem, 4vw, 2.5rem);
  margin-bottom: 20px;
}

.cta-text {
  color: var(--cool-gray);
  font-size: 1.1rem;
  margin-bottom: 30px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.btn-secondary {
  background: hsl(2, 100%, 69%);
  color: var(--white);
  padding: 15px 35px;
  border-radius: 8px;
  font-weight: 600;
  transition: all 0.3s ease;
  border: 2px solid hsl(2, 100%, 69%);
}

.btn-secondary:hover {
  background: transparent;
  color: hsl(2, 100%, 69%);
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.08);
}

/* Spacing & Layout Improvements */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Enhanced Responsive Adjustments */
@media (max-width: 1200px) {
  .benefits-wrapper {
    grid-template-columns: 1fr;
    gap: 50px;
  }

  .benefits-content {
    order: 1;
  }

  .benefits-image {
    order: 2;
    height: 400px;
    max-width: 700px;
    margin: 0 auto;
  }
}

@media (max-width: 992px) {
  .about-list {
    grid-template-columns: repeat(2, 1fr);
  }

  .benefits-grid {
    grid-template-columns: 1fr 1fr;
  }

  .process-wrapper,
  .benefits-wrapper {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .process-image,
  .benefits-image {
    height: 400px;
    max-width: 600px;
    margin: 0 auto;
  }
}

@media (max-width: 768px) {
  .about-list {
    grid-template-columns: 1fr;
    max-width: 500px;
    margin: 30px auto 0;
  }

  .benefits-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .process-image,
  .benefits-image {
    height: 300px;
  }
}

@media (max-width: 576px) {
  .about-card {
    padding: 30px 25px;
  }

  .step-item {
    padding: 15px;
  }

  .benefit-item {
    padding: 15px;
  }
}