@charset "UTF-8";
/* ============================================
   Group Services Section Styles
   ============================================ */
/* Group Services Section */
.group-services-section {
  padding: 50px 0;
  margin-top: 60px;
  background: linear-gradient(135deg, rgba(179, 27, 27, 0.02) 0%, rgb(255, 255, 255) 50%, rgba(179, 27, 27, 0.02) 100%);
  border-radius: 16px;
}

.group-services-title {
  display: flex;
  gap: 20px;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  font-size: 32px;
  font-weight: 800;
  color: #1a1a1a;
  text-align: center;
}

.title-decoration {
  font-size: 24px;
  font-weight: 300;
  color: var(--accent-color);
}

.group-services-subtitle {
  margin-bottom: 50px;
  font-size: 16px;
  line-height: 1.8;
  color: #666;
  text-align: center;
}

/* Group Services Grid */
.group-services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  padding: 0 20px;
}

/* Group Service Card */
.group-service-card {
  position: relative;
  padding: 30px;
  overflow: hidden;
  background: #fff;
  border: 1px solid rgba(179, 27, 27, 0.1);
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
}

.group-service-card::before {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  content: "";
  background: linear-gradient(90deg, var(--accent-color) 0%, #E63946 50%, rgba(179, 27, 27, 0.3) 100%);
  transition: transform 0.4s ease;
  transform: scaleX(0);
  transform-origin: left;
}

.group-service-card:hover::before {
  transform: scaleX(1);
}

/* Service Card Header */
.service-card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
}

.service-icon-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  color: #fff;
  background: linear-gradient(135deg, var(--accent-color) 0%, #E63946 100%);
  border-radius: 12px;
  transition: all 0.3s ease;
}

.service-card-badge {
  padding: 6px 14px;
  font-size: 11px;
  font-weight: 700;
  color: #1a1a1a;
  text-transform: uppercase;
  letter-spacing: 1px;
  background: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
  border-radius: 20px;
  box-shadow: 0 2px 8px rgba(255, 215, 0, 0.3);
}

/* Service Card Title */
.service-card-title {
  margin-bottom: 16px;
  font-size: 20px;
  font-weight: 700;
  line-height: 1.4;
  color: #1a1a1a;
}

/* Service Card Description */
.service-card-description {
  margin-bottom: 20px;
  font-size: 15px;
  line-height: 1.7;
  color: #666;
}

/* Service Card Features */
.service-card-features {
  padding: 0;
  margin: 0 0 20px;
  list-style: none;
}

.service-card-features li {
  position: relative;
  padding: 10px 0;
  padding-left: 28px;
  font-size: 14px;
  line-height: 1.6;
  color: #333;
  border-bottom: 1px solid rgba(179, 27, 27, 0.08);
}

.service-card-features li:last-child {
  border-bottom: 0;
}

.service-card-features li::before {
  position: absolute;
  top: 10px;
  left: 0;
  font-size: 16px;
  font-weight: 700;
  color: var(--accent-color);
  content: "✓";
}

/* Service Card Link */
.service-card-link {
  margin-top: auto;
}

.service-card-link a {
  display: inline-flex;
  gap: 6px;
  align-items: center;
  font-size: 15px;
  font-weight: 600;
  color: var(--accent-color);
  text-decoration: none;
  transition: all 0.3s ease;
}

.service-card-link a::after {
  display: inline-block;
  width: 0;
  height: 2px;
  content: "";
  background: var(--accent-color);
  transition: width 0.3s ease;
}

.service-card-link a:hover {
  gap: 10px;
  color: #8B1515;
}

.service-card-link a:hover::after {
  width: 100%;
}

/* Group Strengths Section */
.group-strengths-section {
  padding: 50px 30px;
  margin-top: 60px;
  background: linear-gradient(135deg, rgba(179, 27, 27, 0.03) 0%, rgb(255, 255, 255) 100%);
  border: 1px solid rgba(179, 27, 27, 0.1);
  border-radius: 16px;
}

.group-section-title {
  position: relative;
  padding-bottom: 20px;
  margin-bottom: 50px;
  font-size: 28px;
  font-weight: 800;
  color: #1a1a1a;
  text-align: center;
}

.group-section-title::after {
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 80px;
  height: 4px;
  content: "";
  background: linear-gradient(90deg, var(--accent-color) 0%, #E63946 100%);
  border-radius: 2px;
  transform: translateX(-50%);
}

/* Group Strengths Grid */
.group-strengths-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

/* Strength Card */
.strength-card {
  position: relative;
  padding: 35px 28px;
  background: #fff;
  border-left: 4px solid var(--accent-color);
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
}

.strength-number {
  margin-bottom: 16px;
  font-family: "Inter", sans-serif;
  font-size: 48px;
  font-weight: 800;
  line-height: 1;
  color: rgba(179, 27, 27, 0.12);
}

.strength-card h4 {
  margin-bottom: 14px;
  font-size: 20px;
  font-weight: 700;
  color: #1a1a1a;
}

.strength-card p {
  margin: 0;
  font-size: 15px;
  line-height: 1.8;
  color: #666;
}

/* Group Link Wrapper */
.group-link-wrapper {
  margin-top: 50px;
  text-align: center;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .group-services-grid {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
  }
  .group-strengths-grid {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
  }
}
@media (max-width: 768px) {
  .group-services-section {
    padding: 40px 0;
    margin-top: 40px;
  }
  .group-services-title {
    gap: 15px;
    font-size: 26px;
  }
  .title-decoration {
    font-size: 20px;
  }
  .group-services-subtitle {
    margin-bottom: 35px;
    font-size: 15px;
  }
  .group-services-grid {
    grid-template-columns: 1fr;
    gap: 20px;
    padding: 0 10px;
  }
  .group-service-card {
    padding: 25px;
  }
  .service-icon-wrapper {
    width: 50px;
    height: 50px;
  }
  .service-card-title {
    font-size: 18px;
  }
  .service-card-description {
    font-size: 14px;
  }
  .group-strengths-section {
    padding: 40px 20px;
    margin-top: 40px;
  }
  .group-section-title {
    margin-bottom: 35px;
    font-size: 24px;
  }
  .group-strengths-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .strength-card {
    padding: 28px 22px;
  }
  .strength-number {
    font-size: 40px;
  }
  .strength-card h4 {
    font-size: 18px;
  }
  .strength-card p {
    font-size: 14px;
  }
  .group-link-wrapper {
    margin-top: 40px;
  }
}
@media (max-width: 480px) {
  .group-services-title {
    flex-direction: column;
    gap: 8px;
    font-size: 22px;
  }
  .title-decoration {
    display: none;
  }
  .group-services-subtitle {
    padding: 0 10px;
    font-size: 14px;
  }
  .group-service-card {
    padding: 20px;
  }
  .service-card-features li {
    padding: 8px 0 8px 24px;
    font-size: 13px;
  }
  .group-section-title {
    font-size: 22px;
  }
  .strength-number {
    font-size: 36px;
  }
}