/* ========================================
   HOME SERVICES SECTION - SITE 2
   Service cards with eyebrow, heading, description, CTA
   ======================================== */

.home-services-2 {
  background: linear-gradient(180deg, #f5f5f5 0%, #ffffff 100%);
  padding: 80px 0;
}

.home-services-2 .services-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* ========================================
   HEADER SECTION
   ======================================== */

.home-services-2 .services-header {
  text-align: left;
  margin-bottom: 60px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
}

.home-services-2 .services-eyebrow {
  color: rgb(120, 104, 230);
  font-size: var(--section-eyebrow-size);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin: 0;
  font-family: 'Mulish', sans-serif;
}

.home-services-2 .services-heading {
  font-size: var(--section-heading-size);
  font-weight: 800;
  color: #232325;
  line-height: 1.2;
  margin: 0;
  font-family: 'Mulish', sans-serif;
  width: 100%;
}

.home-services-2 .services-description {
  font-size: var(--section-body-size);
  font-weight: 400;
  color: #5a5a5a;
  line-height: var(--section-body-line-height);
  margin: 0;
  font-family: 'Mulish', sans-serif;
  width: 100%;
}

.home-services-2 .services-cta {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: linear-gradient(135deg, rgb(120, 104, 230) 0%, rgb(100, 84, 210) 100%);
  color: #ffffff;
  padding: 15px 40px;
  border-radius: 50px;
  text-decoration: none;
  font-family: 'Poppins', sans-serif;
  font-size: 16px;
  font-weight: 600;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(120, 104, 230, 0.3);
}

.home-services-2 .services-cta:hover {
  background: linear-gradient(135deg, rgb(100, 84, 210) 0%, rgb(80, 64, 190) 100%);
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(120, 104, 230, 0.4);
}

.home-services-2 .cta-icon-bg {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
}

.home-services-2 .cta-icon {
  font-size: 12px;
  color: #ffffff;
}

.home-services-2 .cta-icon.icon-star::before {
  content: "★";
}

/* ========================================
   SERVICE CARDS GRID
   ======================================== */

.home-services-2 .services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-bottom: 40px;
}

.home-services-2 .service-card {
  background: #ffffff;
  border: 1px solid rgba(184, 181, 255, 0.3);
  border-radius: 15px;
  padding: 40px 30px;
  text-align: left;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(184, 181, 255, 0.2);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.home-services-2 .service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(184, 181, 255, 0.35);
}

.home-services-2 .service-card.hidden {
  display: none;
}

/* Service Icon */
.home-services-2 .service-icon {
  width: 80px;
  height: 80px;
  background: rgba(184, 181, 255, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 25px;
}

.home-services-2 .service-icon svg {
  width: 50px;
  height: 50px;
  fill: rgb(120, 104, 230);
}

/* Service Title */
.home-services-2 .service-title {
  font-size: 22px;
  font-weight: 700;
  color: rgb(120, 104, 230);
  margin: 0 0 20px 0;
  font-family: 'Mulish', sans-serif;
  line-height: 1.3;
}

/* Dotted Divider */
.home-services-2 .service-divider {
  width: 100%;
  border: none;
  border-top: 2px dotted #d0d0d0;
  margin: 0 0 20px 0;
}

/* Service Description */
.home-services-2 .service-description {
  font-size: 16px;
  font-weight: 400;
  color: #5a5a5a;
  line-height: 1.7;
  margin: 0 0 20px 0;
  font-family: 'Mulish', sans-serif;
  flex-grow: 1;
}

/* Read More Link */
.home-services-2 .service-link {
  color: rgb(120, 104, 230);
  font-size: 16px;
  font-family: 'Mulish', sans-serif;
  text-decoration: none;
  transition: color 0.3s ease;
}

.home-services-2 .service-link:hover {
  color: rgb(100, 84, 210);
}

.home-services-2 .service-link strong {
  font-weight: 700;
}

/* ========================================
   VIEW MORE BUTTON
   ======================================== */

.home-services-2 .view-more-container {
  text-align: center;
  margin-top: 40px;
}

.home-services-2 .view-more-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: linear-gradient(135deg, rgb(120, 104, 230) 0%, rgb(100, 84, 210) 100%);
  color: #ffffff;
  border: none;
  padding: 15px 40px;
  border-radius: 50px;
  font-family: 'Poppins', sans-serif;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(120, 104, 230, 0.3);
}

.home-services-2 .view-more-btn:hover {
  background: linear-gradient(135deg, rgb(100, 84, 210) 0%, rgb(80, 64, 190) 100%);
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(120, 104, 230, 0.4);
}

.home-services-2 .view-more-icon {
  font-size: 12px;
  transition: transform 0.3s ease;
}

/* ========================================
   RESPONSIVE - TABLET
   ======================================== */

@media (max-width: 1024px) {
  .home-services-2 {
    padding: 60px 0;
  }

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

  .home-services-2 .services-heading {
    font-size: var(--section-heading-size-tablet);
  }

  .home-services-2 .services-description {
    font-size: 16px;
  }
}

/* ========================================
   RESPONSIVE - MOBILE
   ======================================== */

@media (max-width: 768px) {
  .home-services-2 {
    padding: 50px 0;
  }

  .home-services-2 .services-header {
    margin-bottom: 40px;
  }

  .home-services-2 .services-header {
    text-align: center;
    align-items: center;
  }

  .home-services-2 .services-eyebrow {
    font-size: 11px;
  }

  .home-services-2 .services-heading {
    font-size: 32px;
  }

  .home-services-2 .services-description {
    font-size: 16px;
  }

  .home-services-2 .service-card {
    text-align: center;
    align-items: center;
  }

  .home-services-2 .services-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .home-services-2 .service-card {
    padding: 30px 25px;
  }

  .home-services-2 .service-title {
    font-size: 20px;
  }

  .home-services-2 .service-description {
    font-size: 15px;
  }

  .home-services-2 .services-cta,
  .home-services-2 .view-more-btn {
    width: 100%;
    max-width: 300px;
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .home-services-2 .services-heading {
    font-size: 28px;
  }

  .home-services-2 .service-icon {
    width: 70px;
    height: 70px;
  }

  .home-services-2 .service-icon svg {
    width: 40px;
    height: 40px;
  }

  .home-services-2 .services-cta,
  .home-services-2 .view-more-btn {
    font-size: 14px;
    padding: 12px 30px;
  }
}
