/* ========================================
   HOMEPAGE LANDING PAGE - PREMIUM DESIGN
   Modern, High-Converting Layout
   ======================================== */

/* ===== HERO SECTION ENHANCEMENTS ===== */

.hero-section {
    position: relative;
    min-height: clamp(600px, 85vh, 900px);
    display: flex;
    align-items: center;
    padding: 80px 0 70px;
    overflow: hidden;
}

/* Small screen height adjustment */
@media (max-height: 800px) {
    .hero-section {
        min-height: auto;
        padding: 70px 0 60px;
    }
}

.hero-overlay {
    background: linear-gradient(90deg, rgba(44, 62, 80, 0.92) 0%, rgba(44, 62, 80, 0.75) 50%, rgba(44, 62, 80, 0.85) 100%);
}

.hero-content {
    animation: fadeInUp 0.8s ease-out;
    max-width: 1200px;
    margin: 0 auto;
}

.hero-content-left {
    max-width: 650px;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Trust Badge */
.hero-badge {
    display: inline-block;
    background: rgba(255, 107, 53, 0.15);
    color: var(--solar-orange);
    padding: 6px 20px;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    border: 1px solid rgba(255, 107, 53, 0.3);
    margin-bottom: 1.25rem;
    backdrop-filter: blur(10px);
}

/* Hero Title - Fluid Typography */
.hero-title {
    font-size: clamp(2rem, 4.5vw, 3.5rem);
    line-height: 1.1;
    margin-bottom: 1.25rem;
}

/* Hero Subtitle - Fluid Typography */
.hero-subtitle {
    font-size: clamp(1rem, 1.2vw, 1.125rem);
    line-height: 1.6;
    margin-bottom: 1.75rem;
}

/* Trust Metrics as Mini Cards - Compact */
.hero-stats {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.75rem;
    flex-wrap: wrap;
}

.stat-item {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 12px;
    padding: 10px 18px;
    transition: all 0.3s ease;
}

.stat-item:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

/* Scroll Indicator Animation */
.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    animation: bounce 2s infinite;
    z-index: 10;
}

@keyframes bounce {

    0%,
    20%,
    50%,
    80%,
    100% {
        transform: translateX(-50%) translateY(0);
    }

    40% {
        transform: translateX(-50%) translateY(-10px);
    }

    60% {
        transform: translateX(-50%) translateY(-5px);
    }
}

/* ===== BENEFITS SECTION - 3 COLUMN GRID ===== */

.benefits-section {
    background: #F8F9FA;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.benefit-card {
    background: var(--white);
    border-radius: 24px;
    padding: 40px 32px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
    border: 1px solid rgba(0, 0, 0, 0.03);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    opacity: 0;
    transform: translateY(20px);
}

.benefit-card.animate-in {
    animation: staggerFadeIn 0.6s ease-out forwards;
}

@keyframes staggerFadeIn {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.benefit-card:nth-child(1) {
    animation-delay: 0.1s;
}

.benefit-card:nth-child(2) {
    animation-delay: 0.2s;
}

.benefit-card:nth-child(3) {
    animation-delay: 0.3s;
}

.benefit-card:nth-child(4) {
    animation-delay: 0.4s;
}

.benefit-card:nth-child(5) {
    animation-delay: 0.5s;
}

.benefit-card:nth-child(6) {
    animation-delay: 0.6s;
}

.benefit-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 16px 48px rgba(255, 107, 53, 0.15),
        0 0 0 1px rgba(255, 107, 53, 0.1);
}

.benefit-icon {
    width: 90px;
    height: 90px;
    background: rgba(255, 107, 53, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.75rem;
    color: var(--solar-orange);
    font-size: 2.25rem;
    transition: all 0.3s ease;
}

.benefit-card:hover .benefit-icon {
    background: var(--solar-orange);
    color: var(--white);
    transform: scale(1.1);
    box-shadow: 0 8px 24px rgba(255, 107, 53, 0.3);
}

.benefit-card h3 {
    font-size: 1.375rem;
    font-weight: 700;
    color: var(--deep-blue);
    margin-bottom: 1rem;
}

.benefit-card p {
    color: var(--gray-600);
    line-height: 1.7;
    margin: 0;
}

/* ===== PROCESS SECTION - VISUAL JOURNEY ===== */

.process-section {
    background: var(--white);
}

.process-timeline {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
}

/* Connecting Lines */
.process-timeline::before {
    content: '';
    position: absolute;
    top: 40px;
    left: 16.66%;
    right: 16.66%;
    height: 2px;
    background: linear-gradient(90deg,
            var(--solar-orange) 0%,
            var(--solar-orange) 33%,
            transparent 33%,
            transparent 66%,
            var(--solar-orange) 66%,
            var(--solar-orange) 100%);
    opacity: 0.3;
    z-index: 0;
}

.process-step {
    background: var(--white);
    border-radius: 20px;
    padding: 32px 24px;
    text-align: center;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
    border: 1px solid rgba(0, 0, 0, 0.04);
    transition: all 0.3s ease;
    position: relative;
    z-index: 1;
}

.process-step:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.1);
    border-color: rgba(255, 107, 53, 0.2);
}

.step-number {
    width: 80px;
    height: 80px;
    background: var(--white);
    border: 4px solid var(--solar-orange);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2rem;
    font-weight: 800;
    color: var(--solar-orange);
    box-shadow: 0 6px 20px rgba(255, 107, 53, 0.25);
    transition: all 0.3s ease;
}

.process-step:hover .step-number {
    background: var(--solar-orange);
    color: var(--white);
    transform: scale(1.15) rotate(360deg);
}

.step-content h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--deep-blue);
    margin-bottom: 0.75rem;
}

.step-content p {
    color: var(--gray-600);
    font-size: 0.9375rem;
    line-height: 1.6;
    margin: 0;
}

/* ===== SERVICES SECTION - ENHANCED CARDS ===== */

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.service-card {
    background: var(--white);
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    border: 1px solid rgba(0, 0, 0, 0.04);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.service-card:nth-child(2) {
    transform: scale(1.03);
    border: 2px solid rgba(255, 107, 53, 0.2);
    box-shadow: 0 8px 32px rgba(255, 107, 53, 0.12);
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.12);
}

.service-card:nth-child(2):hover {
    transform: scale(1.03) translateY(-8px);
}

.service-image {
    position: relative;
    height: 240px;
    overflow: hidden;
}

.service-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, transparent 0%, rgba(44, 62, 80, 0.7) 100%);
    z-index: 1;
    transition: opacity 0.3s ease;
}

.service-card:hover .service-image::before {
    opacity: 0.5;
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.service-card:hover .service-image img {
    transform: scale(1.1);
}

.service-content {
    padding: 32px 28px;
}

.service-content h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--deep-blue);
    margin-bottom: 1rem;
}

.service-content p {
    color: var(--gray-600);
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.service-features {
    list-style: none;
    padding: 0;
    margin: 0 0 1.75rem 0;
}

.service-features li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
    color: var(--gray-700);
    font-size: 0.9375rem;
}

.service-features li i {
    color: var(--energy-green);
    font-size: 1rem;
}

.service-content .btn {
    transition: all 0.3s ease;
}

.service-card:hover .btn-outline {
    background: var(--solar-orange);
    color: var(--white);
    border-color: var(--solar-orange);
}

/* ===== STATS SECTION - ENHANCED ===== */

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
}

.stat-box {
    text-align: center;
}

.stat-box .stat-icon {
    width: 72px;
    height: 72px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2rem;
    color: var(--white);
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.stat-value {
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--white);
    line-height: 1;
    margin-bottom: 0.5rem;
    display: inline-block;
}

.stat-suffix {
    font-size: 1.5rem;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.9);
    margin-left: 0.25rem;
}

.stat-label {
    font-size: 1.0625rem;
    color: rgba(255, 255, 255, 0.85);
    font-weight: 500;
}

/* ===== TESTIMONIALS - CAROUSEL STYLE ===== */

.testimonials-section {
    background: #F8F9FA;
}

.testimonials-slider {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.testimonial-card {
    background: var(--white);
    border-radius: 24px;
    padding: 36px 32px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    border: 1px solid rgba(0, 0, 0, 0.04);
    transition: all 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.1);
}

.testimonial-rating {
    margin-bottom: 1.25rem;
}

.testimonial-rating i {
    color: var(--solar-orange);
    font-size: 1.125rem;
    margin-right: 0.25rem;
}

.testimonial-text {
    color: var(--gray-700);
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 1rem;
    font-style: italic;
    white-space: pre-line;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 6;
    overflow: hidden;
}

.testimonial-text.is-expanded {
    display: block;
    overflow: visible;
}

.testimonial-toggle {
    background: none;
    border: none;
    color: var(--solar-orange);
    cursor: pointer;
    font-size: 0.95rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    padding: 0;
}

.testimonial-toggle:hover {
    color: var(--deep-blue);
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.testimonial-author img {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid rgba(255, 107, 53, 0.2);
}

.author-info h4 {
    font-size: 1.0625rem;
    font-weight: 700;
    color: var(--deep-blue);
    margin-bottom: 0.25rem;
}

.author-info p {
    font-size: 0.875rem;
    color: var(--gray-500);
    margin: 0;
}

/* ===== CTA SECTION - PREMIUM ===== */

.cta-section {
    position: relative;
    overflow: hidden;
}

.cta-section::before,
.cta-section::after {
    content: '';
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
}

.cta-section::before {
    width: 400px;
    height: 400px;
    top: -200px;
    right: -100px;
}

.cta-section::after {
    width: 300px;
    height: 300px;
    bottom: -150px;
    left: -75px;
}

.cta-content {
    position: relative;
    z-index: 1;
}

.cta-title {
    font-size: 3rem;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 1.25rem;
    line-height: 1.2;
}

.cta-subtitle {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2.5rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.cta-buttons {
    display: flex;
    gap: 1.25rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 2rem;
}

.cta-note {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9375rem;
    font-weight: 500;
}

.cta-note i {
    margin-right: 0.5rem;
    color: var(--solar-yellow);
}

/* ===== FAQ SECTION - POLISHED ===== */

.faq-grid {
    max-width: 900px;
    margin: 0 auto;
    display: grid;
    gap: 18px;
}

.faq-item {
    background: var(--white);
    border: 1px solid rgba(13, 47, 92, 0.10);
    border-radius: 14px;
    box-shadow: 0 10px 28px rgba(15, 23, 42, 0.06);
    overflow: hidden;
    cursor: pointer;
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease, background-color 0.25s ease;
}

.faq-item:hover {
    transform: translateY(-2px);
    border-color: rgba(255, 107, 53, 0.35);
    background: #fffdf9;
    box-shadow: 0 16px 32px rgba(15, 23, 42, 0.08);
}

.faq-item.active {
    border-color: rgba(255, 107, 53, 0.45);
    background: linear-gradient(180deg, #ffffff 0%, #fff8ef 100%);
    box-shadow: 0 18px 36px rgba(255, 107, 53, 0.10);
}

.faq-question {
    width: 100%;
    background: transparent;
    border: none;
    padding: 22px 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    cursor: pointer;
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--deep-blue);
    text-align: left;
    line-height: 1.45;
    transition: color 0.25s ease;
}

.faq-question span {
    flex: 1;
    min-width: 0;
    padding-right: 0.5rem;
    overflow-wrap: anywhere;
}

.faq-item:hover .faq-question,
.faq-item.active .faq-question {
    color: var(--solar-orange);
}

.faq-question i {
    flex-shrink: 0;
    width: 2rem;
    height: 2rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    background: rgba(255, 107, 53, 0.10);
    color: var(--solar-orange);
    transition: transform 0.3s ease, background-color 0.25s ease, color 0.25s ease;
}

.faq-item:hover .faq-question i,
.faq-item.active .faq-question i {
    background: rgba(255, 107, 53, 0.18);
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, opacity 0.25s ease;
}

.faq-answer-inner {
    padding: 0 24px 22px;
}

.faq-answer p {
    margin: 0;
    padding-top: 16px;
    border-top: 1px solid rgba(13, 47, 92, 0.08);
    color: var(--gray-600);
    font-size: 1rem;
    line-height: 1.75;
    overflow-wrap: anywhere;
}

.faq-answer a {
    color: var(--solar-orange);
    font-weight: 600;
    text-decoration: none;
    transition: color 0.25s ease, text-decoration-color 0.25s ease;
}

.faq-answer a:hover {
    text-decoration: underline;
    text-underline-offset: 3px;
}
/* FAQ Mini CTA */
.faq-mini-cta {
    margin-top: 3rem;
    text-align: center;
    padding: 32px;
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.05) 0%, rgba(247, 184, 1, 0.05) 100%);
    border-radius: 20px;
    border: 2px dashed rgba(255, 107, 53, 0.2);
}

.faq-mini-cta h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--deep-blue);
    margin-bottom: 0.75rem;
}

.faq-mini-cta p {
    color: var(--gray-600);
    margin-bottom: 1.5rem;
}

/* ===== RESPONSIVE DESIGN ===== */

/* Laptop (1024px - 1200px) */
@media (max-width: 1200px) {
    .hero-section {
        padding: 70px 0 60px;
    }
}

/* Tablet (768px - 1023px) */
@media (max-width: 1023px) {
    .hero-section {
        padding: 60px 0 50px;
        min-height: clamp(550px, 80vh, 800px);
    }

    .hero-title {
        font-size: clamp(1.875rem, 4vw, 3rem);
    }

    .hero-stats {
        gap: 0.875rem;
    }

    .stat-item {
        padding: 8px 16px;
    }

    .benefits-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }

    .process-timeline {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }

    .process-timeline::before {
        display: none;
    }

    .services-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .service-card:nth-child(2) {
        transform: scale(1);
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }

    .testimonials-slider {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}

/* Mobile (< 768px) */
@media (max-width: 767px) {
    .hero-section {
        min-height: auto;
        padding: 50px 0 40px;
    }

    .hero-stats {
        flex-direction: column;
        gap: 0.75rem;
    }

    .stat-item {
        width: 100%;
    }

    .benefits-grid {
        grid-template-columns: 1fr;
        padding: 0 1.5rem;
    }

    .process-timeline {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .stats-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .stat-value {
        font-size: 2.5rem;
    }

    .cta-title {
        font-size: 2rem;
    }

    .cta-subtitle {
        font-size: 1.0625rem;
    }

    .cta-buttons {
        flex-direction: column;
        width: 100%;
    }

    

    .faq-grid {
        gap: 16px;
    }

    .faq-question {
        padding: 18px 20px;
        font-size: 1.05rem;
    }

    .faq-answer-inner {
        padding: 0 20px 18px;
    }

    .faq-answer p {
        padding-top: 14px;
        font-size: 0.95rem;
        line-height: 1.7;
    }
}





