/* Additional Landing Page Sections - Consistent Styling */

/* Section Titles */
.landing-page .section-title {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

/* Trust Indicators Section - Redesigned */
.landing-page .trust-section {
    background: var(--card-bg);
}

.landing-page .trust-section-title {
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    text-align: left;
}

.landing-page .trust-about-title {
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--primary-color);
    line-height: 1.2;
    margin-bottom: 1.5rem;
}

.landing-page .trust-stats-vertical {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.landing-page .trust-stat-card {
    display: flex;
    align-items: center;
    padding: 1.2rem;
    background: white;
    border: 1px solid #e5e7eb;
    border-radius: 16px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.04);
    transition: all 0.3s ease;
    gap: 1rem;
}

.landing-page .trust-stat-card:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.landing-page .trust-stat-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    background: rgba(130, 201, 30, 0.1);
    border-radius: 50%;
    flex-shrink: 0;
}

.landing-page .trust-stat-icon i {
    font-size: 1.3rem;
    color: #2E7D32;
}

.landing-page .trust-stat-content {
    flex: 1;
}

.landing-page .trust-number {
    font-size: 2rem;
    font-weight: 700;
    color: var(--checkout-btn-color);
    line-height: 1;
    margin-bottom: 0.3rem;
}

.landing-page .trust-label {
    font-size: 0.9rem;
    color: #6c757d;
    font-weight: 500;
    line-height: 1.3;
}

/* Trust About Section */

.landing-page .trust-about-text {
    font-size: 1.1rem;
    color: #555;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.landing-page .trust-highlights {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.landing-page .trust-highlight-item {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    font-size: 1rem;
    font-weight: 500;
    color: var(--primary-color);
}

.landing-page .trust-highlight-item i {
    color: var(--checkout-btn-color);
    font-size: 1.1rem;
    flex-shrink: 0;
    margin-top: 0.3rem;
}

/* Testimonials Section */
.landing-page .testimonials-section {
    background: var(--card-bg);
}

.landing-page .testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.landing-page .testimonial-card {
    background: white;
    border: 1px solid #e5e7eb;
    border-radius: 16px;
    padding: 2rem;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.04);
    transition: all 0.3s ease;
}

.landing-page .testimonial-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.08);
}

.landing-page .testimonial-stars {
    color: white;
    font-size: 0.8rem;
}

.landing-page .testimonial-quote {
    font-size: 1.1rem;
    line-height: 1.6;
    color: var(--primary-color);
    font-style: italic;
    margin-bottom: 1.5rem;
    position: relative;
}

.landing-page .testimonial-quote::before {
    content: '"';
    font-size: 4rem;
    color: var(--checkout-btn-color);
    position: absolute;
    top: -1rem;
    left: -1rem;
    opacity: 0.3;
}

.landing-page .testimonial-author strong {
    color: var(--primary-color);
    font-weight: 600;
}

/* Process Section */
.landing-page .process-section {
    background: linear-gradient(135deg, white 0%, #fafafa 100%);
}

.landing-page .process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.landing-page .process-step {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    padding: 1.5rem;
    background: white;
    border: 1px solid #e5e7eb;
    border-radius: 16px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.04);
    transition: all 0.3s ease;
}

.landing-page .process-step:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.08);
}

.landing-page .step-number {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    background: var(--checkout-btn-color);
    color: white;
    border-radius: 50%;
    font-size: 1.3rem;
    font-weight: 700;
    flex-shrink: 0;
}

.landing-page .step-title {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.landing-page .step-description {
    color: #6c757d;
    font-size: 0.95rem;
    line-height: 1.5;
    margin: 0;
}

/* FAQ Section */
.landing-page .faq-section {
    background: var(--card-bg);
}

.landing-page .faq-accordion {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.landing-page .faq-item {
    background: white;
    border: 1px solid #e5e7eb;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.04);
}

.landing-page .faq-question {
    padding: 1.5rem;
    font-weight: 600;
    color: var(--primary-color);
    cursor: pointer;
    background: white;
    border-bottom: 1px solid #f3f4f6;
    position: relative;
    transition: background 0.3s ease;
}

.landing-page .faq-question:hover {
    background: rgba(130, 201, 30, 0.03);
}

.landing-page .faq-question::after {
    content: '+';
    position: absolute;
    right: 1.5rem;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.5rem;
    color: var(--checkout-btn-color);
    transition: transform 0.3s ease;
}

.landing-page .faq-item.active .faq-question::after {
    transform: translateY(-50%) rotate(45deg);
}

.landing-page .faq-answer {
    padding: 1rem 1.5rem;
    color: #6c757d;
    line-height: 1.6;
    display: none;
}

.landing-page .faq-item.active .faq-answer {
    display: block;
}

/* Footer */
.landing-page .landing-footer {
    background: #ffffff;
    color: #333;
    border-top: 1px solid #e9ecef;
    width: 100%;
}

.landing-page .footer-title {
    font-size: 1.2rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 1rem;
}

.landing-page .footer-text {
    color: #666;
    font-size: 0.9rem;
    line-height: 1.5;
}

.landing-page .footer-contact p {
    color: #555;
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
}

.landing-page .footer-contact i {
    color: var(--checkout-btn-color);
    width: 16px;
}

.landing-page .social-links {
    display: flex;
    gap: 1rem;
}

.landing-page .social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: #f8f9fa;
    color: #666;
    border-radius: 50%;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 1px solid #dee2e6;
}

.landing-page .social-link:hover {
    background: var(--checkout-btn-color);
    color: white;
    text-decoration: none;
    transform: translateY(-2px);
}

.landing-page .footer-divider {
    border-color: #dee2e6;
    margin: 2rem 0;
}

.landing-page .footer-copyright {
    color: #6c757d;
    font-size: 0.85rem;
    margin: 0;
}

/* Responsive */
@media (max-width: 768px) {
    .landing-page .trust-stats {
        flex-direction: column;
        gap: 1rem;
    }

    .landing-page .trust-stats-vertical {
        gap: 1.2rem; /* was 1rem - improved spacing */
    }

    .landing-page .trust-number {
        font-size: 2.5rem;
    }

    .landing-page .brand-logos {
        justify-content: center;
    }

    .landing-page .testimonials-grid {
        grid-template-columns: 1fr;
    }

    .landing-page .process-steps {
        grid-template-columns: 1fr;
    }

    .landing-page .process-step {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }

    .landing-page .section-title {
        font-size: 1.8rem;
    }

    /* FAQ Mobile Styling */
    .landing-page .faq-question {
        padding: 1.2rem 1rem; /* was 1.5rem - adjusted for mobile */
        font-size: 0.95rem;
        padding-right: 3rem; /* Space for plus icon */
    }

    .landing-page .faq-answer {
        padding: 0.8rem 1rem; /* was 1rem 1.5rem */
        font-size: 0.9rem;
    }

    .landing-page .faq-question::after {
        font-size: 1.3rem; /* was 1.5rem - slightly smaller */
        right: 1rem; /* was 1.5rem */
    }

    .landing-page .faq-accordion {
        gap: 0.8rem; /* was 1rem - tighter on mobile */
    }
}