@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@300;400;500;600;700;800&display=swap');

* {
    font-family: 'Plus Jakarta Sans', sans-serif;
}

.gradient-bg {
    background: linear-gradient(135deg, #5DD5D5 0%, #A8E063 50%, #56AB2F 100%);
}

.gradient-text {
    background: linear-gradient(135deg, #5DD5D5 0%, #A8E063 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.solar-pattern {
    background-image:
        radial-gradient(circle at 20% 50%, rgba(93, 213, 213, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(168, 224, 99, 0.1) 0%, transparent 50%);
}

.card-hover {
    transition: all 0.3s ease;
}

.card-hover:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

/* Nav Link Styles */
.nav-link {
    position: relative;
    transition: color 0.3s ease;
}

.nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -4px;
    left: 0;
    background: currentColor;
    transition: width 0.3s ease;
}

.nav-link:hover::after {
    width: 100%;
}

.stat-number {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1;
}

/* Swiper Customization */
.swiper-button-next,
.swiper-button-prev {
    color: white;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.swiper-pagination-bullet-active {
    background: #5DD5D5;
}

.process-step-connector::after {
    content: '';
    position: absolute;
    top: 2rem;
    left: 50%;
    width: 100%;
    height: 2px;
    background: #e5e7eb;
    z-index: -1;
}

@media (max-width: 768px) {
    .process-step-connector::after {
        display: none;
    }
}

/* FAQ Accordion Styles */
.faq-item {
    transition: all 0.3s ease;
}

.faq-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(93, 213, 213, 0.15);
}

.faq-question {
    cursor: pointer;
    transition: all 0.3s ease;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.4s ease;
}

.faq-answer.active {
    max-height: 500px;
    padding-top: 1rem;
    padding-bottom: 1rem;
}

.faq-icon {
    transition: transform 0.3s ease;
}

.faq-icon.active {
    transform: rotate(180deg);
}