  /* ===== SERVICES PAGE STYLES ===== */
.services-section {
  background-color: var(--bg-white);
}

.services-tabs {
  margin-top: 50px;
}

.tabs-nav {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 40px;
}

.tab-btn {
  padding: 12px 25px;
  background-color: var(--bg-light);
  border: none;
  border-radius: var(--radius-md);
  font-weight: 500;
  cursor: pointer;
  transition: var(--transition-fast);
}

.tab-btn.active,
.tab-btn:hover {
  background-color: var(--primary-color);
  color: white;
}

.tabs-content {
  position: relative;
}

.tab-pane {
  display: none;
  animation: fadeIn 0.5s forwards;
}

.tab-pane.active {
  display: block;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.tab-image {
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

.tab-content {
  padding: 20px;
}

.tab-content h3 {
  color: var(--primary-color);
  margin-bottom: 20px;
}

.feature-list {
  margin-bottom: 30px;
}

.feature-list li {
  margin-bottom: 10px;
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.feature-list li i {
  color: var(--primary-color);
  margin-top: 5px;
}

/* ===== SOLUTIONS SECTION ===== */
.solutions-section {
  background-color: var(--bg-light);
  position: relative;
  overflow: hidden;
}

.solutions-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url("images/ph.jpg");
  background-repeat: no-repeat;
  background-position: left center;
  opacity: 0.05;
}

.solutions-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
}

.solution-card {
  background-color: white;
  border-radius: var(--radius-md);
  padding: 30px;
  box-shadow: var(--shadow-sm);
  transition: var(--transition-medium);
  text-align: center;
}

.solution-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-md);
}

.solution-icon {
  width: 70px;
  height: 70px;
  background-color: rgba(46, 125, 50, 0.1);
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 auto 20px;
  color: var(--primary-color);
  font-size: 1.8rem;
  transition: var(--transition-fast);
}

.solution-card:hover .solution-icon {
  background-color: var(--primary-color);
  color: white;
}

.solution-card h4 {
  margin-bottom: 10px;
  font-size: 1.2rem;
}

.solution-card p {
  color: var(--text-light);
  margin-bottom: 0;
}


.services-intro-section {
  padding-top: 80px;
}

.services-intro-image {
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

.greenhouse-types-section {
  background-color: var(--bg-light);
  padding: 100px 0;
}

.greenhouse-card {
  background-color: white;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  margin-bottom: 30px;
  height: 100%;
}

.greenhouse-image {
  overflow: hidden;
}

.greenhouse-image img {
  width: 100%;
  transition: var(--transition-medium);
}

.greenhouse-card:hover .greenhouse-image img {
  transform: scale(1.05);
}

.greenhouse-content {
  padding: 30px;
}

.greenhouse-content h3 {
  color: var(--primary-color);
  margin-bottom: 15px;
}

.greenhouse-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 25px;
  padding-top: 20px;
  border-top: 1px solid rgba(0, 0, 0, 0.1);
}

.price {
  font-weight: 500;
}

.price span {
  color: var(--primary-color);
  font-size: 1.2rem;
  font-weight: 700;
}

.additional-services-section {
  padding: 100px 0;
}

.service-card {
  background-color: white;
  border-radius: var(--radius-md);
  padding: 30px;
  box-shadow: var(--shadow-sm);
  height: 100%;
  transition: var(--transition-medium);
  margin-bottom: 30px;
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-md);
}

.service-icon {
  width: 70px;
  height: 70px;
  background-color: rgba(46, 125, 50, 0.1);
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 20px;
  color: var(--primary-color);
  font-size: 1.8rem;
  transition: var(--transition-fast);
}

.service-card:hover .service-icon {
  background-color: var(--primary-color);
  color: white;
}

.service-card h3 {
  margin-bottom: 15px;
  font-size: 1.3rem;
}

.service-card p {
  margin-bottom: 20px;
}

.read-more {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 500;
  color: var(--primary-color);
  transition: var(--transition-fast);
}

.read-more:hover {
  color: var(--primary-dark);
}

.read-more i {
  font-size: 0.8rem;
  transition: var(--transition-fast);
}

.read-more:hover i {
  transform: translateX(5px);
}

.process-section {
  padding: 80px 0;
  background-color: #f8f9fa;
}

.process-steps {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  max-width: 1000px;
  margin: 50px auto;
  position: relative;
  padding: 0;
  list-style: none;
}

.process-steps::before {
  content: '';
  position: absolute;
  top: 30px;
  left: 0;
  right: 0;
  height: 2px;
  background-color: #ccc;
  z-index: 1;
}

.process-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  position: relative;
  z-index: 2;
  flex: 1;
  margin: 0;
  padding: 0 10px;
  background-color: var(--bg-light);
}

.step-number {
  width: 60px;
  height: 60px;
  background-color: var(--primary-color);
  color: white;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 15px;
  border: 4px solid var(--bg-light);
  transition: background-color 0.3s ease, border-color 0.3s ease;
}

.process-step.completed .step-number {
  background-color: green;
  border-color: #f0f0f0;
}

.step-content h3 {
  margin-bottom: 5px;
  color: var(--primary-color);
  font-size: 1rem;
  font-weight: 600;
}

.step-content p {
  font-size: 0.85rem;
  color: var(--text-light);
  margin-bottom: 0;
}

/* Media query for responsiveness */
@media (max-width: 768px) {
  .process-steps {
    flex-direction: column;
    align-items: flex-start;
    max-width: 100%;
  }

  .process-steps::before {
    left: 30px;
    top: 0;
    bottom: 0;
    width: 2px;
    height: 100%;
    right: auto;
  }

  .process-step {
    flex-direction: row;
    align-items: center;
    text-align: left;
    padding: 20px 0;
    margin-bottom: 20px;
    background-color: transparent;
    box-shadow: none;
  }

  .step-number {
    margin-right: 15px;
    margin-bottom: 0;
    border: none;
  }

  .step-content h3,
  .step-content p {
    text-align: left;
  }
}

.benefits-section {
  padding: 100px 0;
}

.benefits-image {
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

.benefits-list {
  margin-top: 30px;
}

.benefit-item {
  display: flex;
  gap: 20px;
  margin-bottom: 25px;
}

.benefit-icon {
  width: 60px;
  height: 60px;
  background-color: rgba(46, 125, 50, 0.1);
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  color: var(--primary-color);
  font-size: 1.5rem;
  flex-shrink: 0;
}

.benefit-content h4 {
  margin-bottom: 10px;
}

.benefit-content p {
  margin-bottom: 0;
}

.faq-section {
  background-color: var(--bg-light);
  padding: 100px 0;
}

.faq-accordion {
  max-width: 800px;
  margin: 0 auto;
}

.accordion-item {
  margin-bottom: 15px;
  border: none;
  border-radius: var(--radius-md);
  overflow: hidden;
}

.accordion-button {
  padding: 20px 25px;
  font-weight: 600;
  background-color: white;
  box-shadow: var(--shadow-sm);
}

.accordion-button:not(.collapsed) {
  color: var(--primary-color);
  background-color: white;
  box-shadow: var(--shadow-sm);
}

.accordion-button:focus {
  box-shadow: none;
  border-color: rgba(46, 125, 50, 0.1);
}

.accordion-button::after {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='%232e7d32' viewBox='0 0 16 16'%3E%3Cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3E%3C/svg%3E");
}

.accordion-body {
  padding: 20px 25px;
  background-color: white;
}

/* Process Section Styles */
.process-card {
  background: #ffffff;
  border-radius: 10px;
  padding: 30px;
  height: 100%;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  position: relative;
  overflow: hidden;
}

.process-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.process-number {
  font-size: 48px;
  font-weight: 700;
  color: rgba(0, 0, 0, 0.05);
  position: absolute;
  top: 10px;
  right: 20px;
  line-height: 1;
}

.process-card h3 {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 15px;
  color: #333;
  position: relative;
  z-index: 1;
}

.process-card p {
  font-size: 14px;
  color: #666;
  margin-bottom: 0;
  position: relative;
  z-index: 1;
}

@media (max-width: 991px) {
  .process-card {
    margin-bottom: 30px;
  }
}

@media (max-width: 767px) {
  .process-section {
    padding: 60px 0;
  }
  
  .process-card {
    padding: 25px;
  }
  
  .process-number {
    font-size: 36px;
  }
  
  .process-card h3 {
    font-size: 18px;
  }
}