@import url("edusyms-design-system.css");
/* Solutions Page Styles */

/* Hero Section */
.solutions-hero {
  position: relative;
  min-height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: linear-gradient(120deg, #0e0f12 0%, #1c1f28 100%);
  color: white;
  padding: 80px 0;
}

.hero-inner {
  position: relative;
  z-index: 5;
  max-width: 1200px;
  width: 100%;
  text-align: center;
  padding: 0 20px;
}

.hero-title {
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 24px;
  color: var(--white);
}

.hero-title span {
  display: inline-block;
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-image: linear-gradient(90deg, var(--primary) 0%, var(--accent-blue) 50%, var(--accent-purple) 100%);
}

.hero-subtitle {
  font-size: clamp(1.1rem, 2vw, 1.3rem);
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 32px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.highlight-badge {
  display: inline-block;
  background: rgba(147, 195, 59, 0.15);
  color: var(--primary);
  padding: 8px 16px;
  border-radius: 50px;
  font-weight: 500;
  margin-top: 8px;
  box-shadow: 0 4px 24px rgba(147, 195, 59, 0.15);
}

.hero-cta {
  display: flex;
  gap: 20px;
  justify-content: center;
  margin-top: 40px;
}

.primary-btn,
.secondary-btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 32px;
  font-weight: 700;
  font-size: 1.1rem;
  border-radius: 50px;
  text-decoration: none;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.25, 1, 0.5, 1);
  z-index: 1;
}

.primary-btn {
  background: linear-gradient(90deg, var(--primary) 0%, var(--accent-blue) 100%);
  color: var(--white);
  box-shadow: 0 8px 25px rgba(147, 195, 59, 0.3);
}

.secondary-btn {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.primary-btn:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(147, 195, 59, 0.4);
}

.secondary-btn:hover {
  transform: translateY(-5px);
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.2);
}

.hero-particles {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.hero-particles span {
  position: absolute;
  background: rgba(147, 195, 59, 0.15);
  border-radius: 50%;
  pointer-events: none;
}

/* Solutions Section */
.solutions-section {
  padding: 80px 0;
  background: linear-gradient(180deg, #0e0f12 0%, #14171f 100%);
  color: var(--white);
  position: relative;
  overflow: hidden;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  position: relative;
  z-index: 2;
}

.section-header {
  text-align: center;
  margin-bottom: 60px;
}

.section-title {
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 800;
  margin-bottom: 20px;
  position: relative;
  color: var(--white);
  display: inline-block;
}

.section-title::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: var(--primary);
  border-radius: 2px;
}

.section-description {
  font-size: clamp(1rem, 2vw, 1.2rem);
  max-width: 800px;
  margin: 0 auto;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.6;
}

.solutions-grid {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.solution-card {
  background: rgba(255, 255, 255, 0.03);
  border-radius: 16px;
  overflow: hidden;
  padding: 40px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  position: relative;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.solution-card.reverse {
  direction: rtl;
}

.solution-card.reverse .solution-content,
.solution-card.reverse .solution-image {
  direction: ltr;
}

.solution-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.solution-pattern {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  opacity: 0.05;
  pointer-events: none;
  transition: all 0.5s ease;
  background-size: cover;
  background-position: center;
}

.solution-card:hover .solution-pattern {
  opacity: 0.1;
}

.education-pattern {
  background-image: url('../images/solutions/education-pattern.svg');
}

.school-pattern {
  background-image: url('../images/solutions/school-pattern.svg');
}

.church-pattern {
  background-image: url('../images/solutions/church-pattern.svg');
}

.fitness-pattern {
  background-image: url('../images/solutions/fitness-pattern.svg');
}

.solution-content,
.solution-image {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.solution-title {
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 15px;
  color: var(--primary);
}

.solution-description {
  font-size: 1.1rem;
  line-height: 1.6;
  margin-bottom: 20px;
  color: rgba(255, 255, 255, 0.8);
}

.solution-features {
  list-style: none;
  padding: 0;
  margin: 0 0 30px 0;
}

.feature-item {
  position: relative;
  padding-left: 28px;
  margin-bottom: 12px;
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.7);
  transition: transform 0.3s ease, color 0.3s ease;
}

.feature-item:before {
  content: "";
  position: absolute;
  left: 0;
  top: 8px;
  width: 16px;
  height: 16px;
  background-color: rgba(147, 195, 59, 0.2);
  border: 2px solid var(--primary);
  border-radius: 50%;
  transition: background-color 0.3s ease;
}

.feature-item:after {
  content: "✓";
  position: absolute;
  left: 5px;
  top: 4px;
  font-size: 10px;
  color: var(--primary);
}

.solution-card:hover .feature-item {
  transform: translateX(5px);
  color: rgba(255, 255, 255, 0.9);
}

.solution-btn {
  display: inline-flex;
  align-items: center;
  background: var(--primary);
  color: var(--white);
  padding: 12px 24px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  font-size: 1rem;
  transition: all 0.3s ease;
  box-shadow: 0 8px 20px rgba(147, 195, 59, 0.2);
  gap: 8px;
}

.solution-btn:hover {
  background: #3a7ae8;
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(79, 140, 255, 0.3);
}

.solution-image img {
  max-width: 100%;
  height: auto;
  border-radius: 12px;
  transition: transform 0.3s ease;
}

.solution-card:hover .solution-image img {
  transform: scale(1.03);
}

/* Benefits Section */
.benefits-section {
  background: linear-gradient(180deg, #14171f 0%, #0e0f12 100%);
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.benefit-card {
  background: rgba(255, 255, 255, 0.03);
  border-radius: 16px;
  padding: 30px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  position: relative;
  overflow: hidden;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.benefit-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.benefit-icon {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: rgba(147, 195, 59, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  transition: background 0.3s ease;
}

.benefit-card:hover .benefit-icon {
  background: rgba(147, 195, 59, 0.2);
}

.benefit-icon i {
  font-size: 24px;
  color: var(--primary);
}

.benefit-title {
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 15px;
  color: var(--white);
}

.benefit-description {
  font-size: 1rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.7);
}

/* CTA Section */
.cta-section {
  background: linear-gradient(45deg, #0e0f12 0%, #1c1f28 100%);
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}

.cta-container {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
  position: relative;
  z-index: 2;
}

.cta-title {
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 800;
  margin-bottom: 20px;
  color: var(--white);
}

.cta-description {
  font-size: 1.2rem;
  line-height: 1.6;
  margin-bottom: 15px;
  color: rgba(255, 255, 255, 0.8);
}

.cta-tagline {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 30px;
}

.cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--primary);
  color: var(--white);
  padding: 14px 32px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 700;
  font-size: 1.1rem;
  transition: all 0.3s ease;
  box-shadow: 0 8px 20px rgba(147, 195, 59, 0.2);
}

.cta-btn:hover {
  background: #3a7ae8;
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(79, 140, 255, 0.3);
}

/* Animation for floating particles */
@keyframes float {
  0% {
    transform: translateY(0) rotate(0deg);
  }
  50% {
    transform: translateY(-20px) rotate(5deg);
  }
  100% {
    transform: translateY(0) rotate(0deg);
  }
}

/* Responsive Styles */
@media (max-width: 992px) {
  .solution-card {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .solution-card.reverse {
    direction: ltr;
  }

  .solution-image {
    order: -1;
  }

  .solution-card.reverse .solution-image {
    order: -1;
  }

  .hero-cta {
    flex-direction: column;
    align-items: center;
  }
}

@media (max-width: 768px) {
  .hero-title {
    font-size: clamp(2rem, 5vw, 3rem);
  }

  .section-title {
    font-size: clamp(1.8rem, 4vw, 2.4rem);
  }

  .cta-title {
    font-size: clamp(1.8rem, 4vw, 2.4rem);
  }

  .solution-card {
    padding: 30px 20px;
  }

  .primary-btn,
  .secondary-btn,
  .cta-btn {
    width: 100%;
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .hero-title {
    font-size: clamp(1.8rem, 5vw, 2.5rem);
  }

  .hero-subtitle {
    font-size: 1rem;
  }

  .benefit-card {
    padding: 20px;
  }
}
