/* New Sections Styling - Benefits, FAQ Accordion, Modern Footer */

/* Benefits Section */
.benefits-section {
  padding: 6rem 0;
  background-color: var(--white);
  position: relative;
}

.section-header {
  margin-bottom: 4rem;
  max-width: 700px;
}

.section-header.right-aligned {
  margin-left: auto;
  text-align: right;
}

.section-header.center {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

.section-tag {
  display: inline-block;
  background: linear-gradient(135deg, var(--secondary) 0%, var(--primary) 100%);
  color: white;
  padding: 0.5rem 1rem;
  border-radius: 2rem;
  font-size: 0.875rem;
  font-weight: 600;
  margin-bottom: 1rem;
  text-transform: uppercase;
}

.section-title {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  color: var(--dark);
}

.section-subtitle {
  font-size: 1.1rem;
  color: #666;
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 2rem;
  margin-bottom: 3rem;
}

.benefit-card {
  background-color: white;
  border-radius: 1rem;
  padding: 2rem;
  box-shadow: 0 10px 30px rgba(0,0,0,0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.benefit-image {
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 80px;
}

.benefit-icon {
  stroke: var(--primary);
}

.benefit-content h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: var(--dark);
}

.benefit-content p {
  color: #666;
  line-height: 1.6;
}

.benefits-cta {
  text-align: center;
  margin-top: 3rem;
}

/* FAQ Section with Accordions */
.faq-section {
  padding: 6rem 0;
  background-color: #f8f9fa;
  position: relative;
}

.section-background {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  overflow: hidden;
  z-index: 0;
}

.faq-pattern {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: radial-gradient(rgba(67, 97, 238, 0.1) 2px, transparent 2px);
  background-size: 30px 30px;
}

.accordion {
  max-width: 800px;
  margin: 0 auto;
  z-index: 1;
  position: relative;
}

.accordion-item {
  background-color: white;
  border-radius: 0.5rem;
  margin-bottom: 1rem;
  box-shadow: 0 5px 15px rgba(0,0,0,0.05);
  overflow: hidden;
}

.accordion-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 1.5rem;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--dark);
  border: none;
  background-color: white;
  cursor: pointer;
  text-align: left;
}

.accordion-icon {
  min-width: 24px;
  transition: transform 0.3s ease;
}

.accordion-item.active .accordion-icon {
  transform: rotate(45deg);
}

.accordion-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
  padding: 0 1.5rem;
}

.accordion-item.active .accordion-content {
  max-height: 500px;
  padding-bottom: 1.5rem;
}

/* CTA Section */
.cta-section {
  background: linear-gradient(135deg, var(--secondary) 0%, var(--primary) 100%);
  padding: 5rem 0;
  text-align: center;
  color: white;
}

.cta-content {
  max-width: 700px;
  margin: 0 auto;
}

.cta-title {
  color: white;
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.cta-text {
  color: rgba(255,255,255,0.9);
  font-size: 1.2rem;
  margin-bottom: 2rem;
}

/* Modern Footer */
.footer-section {
  background-color: var(--dark);
  color: rgba(255,255,255,0.7);
  padding: 4rem 0 2rem;
  position: relative;
}

.footer-waves {
  position: absolute;
  top: -100px;
  left: 0;
  width: 100%;
  overflow: hidden;
  line-height: 0;
  z-index: 1;
}

.footer-waves svg {
  width: 100%;
  height: 100px;
}

.footer-content {
  display: grid;
  grid-template-columns: 2fr 3fr;
  gap: 4rem;
  margin-bottom: 3rem;
}

.footer-brand {
  display: flex;
  flex-direction: column;
}

.footer-logo {
  display: flex;
  align-items: center;
  margin-bottom: 1.5rem;
}

.footer-brand-name {
  font-size: 1.8rem;
  font-weight: 700;
  color: white;
  margin-left: 1rem;
}

.footer-tagline {
  font-size: 1.2rem;
  color: white;
  margin-bottom: 1rem;
}

.footer-description {
  color: rgba(255,255,255,0.7);
  line-height: 1.6;
}

.footer-nav {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.footer-heading {
  color: white;
  font-size: 1.2rem;
  margin-bottom: 1.5rem;
  position: relative;
  padding-bottom: 0.5rem;
}

.footer-heading::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 30px;
  height: 3px;
  background: var(--primary);
}

.footer-links {
  list-style: none;
  padding: 0;
}

.footer-links li {
  margin-bottom: 0.75rem;
}

.footer-links a {
  color: rgba(255,255,255,0.7);
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: white;
}

.footer-divider {
  height: 1px;
  background-color: rgba(255,255,255,0.1);
  margin: 2rem 0;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.copyright {
  font-size: 0.9rem;
}

.footer-logo-small {
  display: flex;
  align-items: center;
}

.footer-logo-enhanced {
  display: flex;
  align-items: center;
  background: rgba(255,255,255,0.1);
  padding: 8px 15px;
  border-radius: 30px;
  transition: all 0.3s ease;
}

.footer-logo-enhanced:hover {
  background: rgba(255,255,255,0.15);
  transform: translateY(-2px);
}

.footer-logo-enhanced img {
  margin-right: 10px;
}

.seo-tagline {
  color: white;
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0.5px;
}

/* Media Queries for Responsiveness */
@media (max-width: 992px) {
  .footer-content {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  
  .section-header.right-aligned {
    text-align: center;
    margin: 0 auto 4rem;
  }
  
  .benefits-grid {
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  }
}

@media (max-width: 768px) {
  .section-title {
    font-size: 2rem;
  }
  
  .footer-nav {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}

@media (max-width: 576px) {
  .benefits-grid {
    grid-template-columns: 1fr;
  }
  
  .section-header {
    text-align: center !important;
    margin: 0 auto 3rem;
  }
  
  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
  
  .copyright {
    margin-bottom: 1rem;
  }
}
