/* ================= SERVICES PAGE ONLY ================= */

/* Wrap all services content inside <main class="services-page"> */

.services-page .section {
  max-width: 1200px;
  margin: 80px auto;
  padding: 0 20px;
}

.services-page .intro {
  text-align: center;
}

.services-page .intro h2 {
  font-size: 2.5rem;
  color: #1da4c1;
  margin-bottom: 20px;
}

.services-page .intro p {
  font-size: 1.1rem;
  line-height: 1.8;
  color: #555;
  max-width: 800px;
  margin: 0 auto;
}

.services-page .products {
  max-width: 1200px;
  margin: 60px auto;
  padding: 0 20px;
}

.services-page .products h3 {
  font-size: 1.8rem;
  color: #333;
  margin-bottom: 30px;
  text-align: center;
}

.services-page .product-grid {
  display: grid;
  gap: 30px;
}

.services-page .product-grid.two {
  grid-template-columns: repeat(2, 1fr);
}

.services-page .product-grid.three {
  grid-template-columns: repeat(3, 1fr);
}

.services-page .product-grid a {
  position: relative;
  display: block;
  overflow: hidden;
  border-radius: 8px;
}

.services-page .product-grid img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  border-radius: 8px;
  transition: transform 0.3s ease;
}

.services-page .product-grid a:hover img {
  transform: scale(1.05);
}

.services-page .product-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(29, 164, 193, 0.9);
  color: white;
  padding: 15px;
  text-align: center;
  font-weight: 600;
  transform: translateY(100%);
  transition: transform 0.3s ease;
}

.services-page .product-grid a:hover .product-overlay {
  transform: translateY(0);
}

/* FEATURE SECTIONS */
.services-page .feature {
  max-width: 1200px;
  margin: 80px auto;
  padding: 0 20px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
}

.services-page .feature.reverse {
  direction: rtl;
}

.services-page .feature.reverse .text {
  direction: ltr;
}

.services-page .feature img {
  width: 100%;
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.services-page .feature .text {
  padding: 20px;
}

.services-page .feature h3 {
  font-size: 1.8rem;
  color: #333;
  margin-bottom: 20px;
}

.services-page .feature p {
  font-size: 1.05rem;
  line-height: 1.8;
  color: #555;
  margin-bottom: 20px;
}

/* STORE LINKS */
.services-page .store-links {
  margin-top: 25px;
}

.services-page .store-links a {
  display: inline-block;
  margin-right: 15px;
  background: #1da4c1;
  color: #fff;
  padding: 12px 24px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s;
}

.services-page .store-links a:hover {
  background: #147b96;
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .services-page .feature,
  .services-page .product-grid.two,
  .services-page .product-grid.three {
    grid-template-columns: 1fr;
  }
  
  .services-page .feature.reverse {
    direction: ltr;
  }
  
  .services-page .feature img {
    order: -1;
  }
  
  .services-page .store-links a {
    display: block;
    margin-right: 0;
    margin-bottom: 10px;
    text-align: center;
  }
}