﻿/* Hero Section */
.hero-section {
    padding: 160px 0 80px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: white;
    position: relative;
    overflow: hidden;
}

    .hero-section::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        /* background: url('../images/hero-pattern.svg') center/cover; */ /* Image missing */
        opacity: 0.1;
    }

.hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    letter-spacing: -1px;
    line-height: 1.2;
}

.hero-desc {
    font-size: 1.25rem;
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto 2rem;
}

.hero-cta {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-top: 2rem;
}

/* Buttons */
.custom-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 12px 24px;
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
    transition: var(--transition);
    cursor: pointer;
}

.primary-btn {
    background: rgb(49, 128, 204);
    color: var(--primary-color);
}

    .primary-btn:hover {
        transform: translateY(-2px);
        box-shadow: 0 4px 12px rgba(214, 158, 46, 0.2);
    }

.secondary-btn {
    background: rgba(255, 255, 255, 0.1);
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

    .secondary-btn:hover {
        background: rgba(255, 255, 255, 0.2);
        transform: translateY(-2px);
    }

/* Features Section */
.section-features {
    padding: 80px 0;
    background: var(--white);
}

.features-header {
    text-align: center;
    margin-bottom: 48px;
}

    .features-header h2 {
        font-size: 2.5rem;
        font-weight: 800;
        margin-bottom: 1rem;
    }

    .features-header p {
        font-size: 1.125rem;
    }

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 32px;
}

.feature-card {
    background: white;
    padding: 32px;
    border-radius: 12px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    transition: var(--transition);
}

    .feature-card:hover {
        transform: translateY(-4px);
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    }

.feature-icon {
    font-size: 2.5rem;
    color: var(--blue-800);
    margin-bottom: 1.5rem;
    text-align: center
}

.feature-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--primary-color);
    text-align: center;
    vertical-align: middle;
    min-height: 50px;
}

.feature-card p {
    color: var(--light-text);
    line-height: 1.7;
}

/* Process Section */


.process-steps {
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    position: relative;
}

    .process-steps::before {
        content: '';
        position: absolute;
        top: 40px;
        left: 0;
        right: 0;
        height: 2px;
        background: #1565c0;
        z-index: 0;
    }

.step {
    text-align: center;
    position: relative;
    z-index: 1;
    flex: 1;
}

.step-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    background: white;
    border: 2px solid #1565c0;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

    .step-icon i {
        font-size: 2rem;
        color: #1565c0;
    }




.section-process {
    padding: 80px 0;
    background: linear-gradient(135deg, #f5f7fa 0%, #e4e7eb 100%);
    position: relative;
}

    .section-process::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        /* background: url('../images/process-pattern.svg') center/cover; */ /* Image missing */
        opacity: 0.05;
    }

.process-header {
    text-align: center;
    margin-bottom: 64px;
}

    .process-header h2 {
        font-size: 2.5rem;
        font-weight: 800;
        margin-bottom: 1rem;
        color: var(--primary-color);
    }

    .process-header p {
        font-size: 1.125rem;
        color: var(--light-text);
    }

.process-timeline {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
}

    .process-timeline::before {
        content: '';
        position: absolute;
        top: 0;
        left: 50%;
        transform: translateX(-50%);
        width: 2px;
        height: 100%;
        background: var(--border-color);
    }

.process-step {
    display: flex;
    align-items: center;
    margin-bottom: 48px;
    position: relative;
}

    .process-step:nth-child(odd) {
        flex-direction: row-reverse;
    }

.step-number {
    width: 40px;
    height: 40px;
    background: var(--primary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    position: relative;
    z-index: 1;
}

.step-content {
    flex: 1;
    padding: 18px;
    background: var(--gray-200);
    border-radius: 12px;
    margin: 0 13px;
    transition: var(--transition);
}

    .step-content:hover {
        transform: translateY(-4px);
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    }

    .step-content h3 {
        font-size: 1.25rem;
        font-weight: 700;
        margin-bottom: 0.5rem;
        color: var(--primary-color);
    }

    .step-content p {
        color: var(--light-text);
        line-height: 1.7;
        text-align: left
    }

/* Stats Section */
.section-stats {
    padding: 80px 0;
    background: var(--blue-800);
    color: white;
}

.stats-bar-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 32px;
}

.stat-bar-item {
    text-align: center;
}

.stat-bar-number {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
    color: var(--accent-color);
}

.stat-bar-label {
    font-size: 1.125rem;
    opacity: 0.9;
}

/* Team Section */
.section-team {
    padding: 80px 0;
    background: var(--light-background);
}

.team-header {
    text-align: center;
    margin-bottom: 48px;
}

    .team-header h2 {
        font-size: 2.5rem;
        font-weight: 800;
        margin-bottom: 1rem;
        color: var(--primary-color);
    }

    .team-header p {
        font-size: 1.125rem;
        color: var(--light-text);
    }

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 32px;
}

.team-member {
    background: white;
    padding: 32px;
    border-radius: 12px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    transition: var(--transition);
    text-align: center;
}

    .team-member:hover {
        transform: translateY(-4px);
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    }

.team-image {
    width: 150px;
    height: 150px;
    margin: 0 auto 24px;
    border-radius: 50%;
    overflow: hidden;
    border: 4px solid var(--light-background);
}

    .team-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

.team-member h3 {
    font-size: 1.5rem;
    margin-bottom: 8px;
    color: var(--primary-color);
}

.team-title {
    color: var(--accent-color);
    font-weight: 600;
    margin-bottom: 16px;
}

.team-description {
    color: var(--light-text);
    margin-bottom: 24px;
}

.team-social {
    display: flex;
    justify-content: center;
    gap: 16px;
}

    .team-social a {
        color: var(--light-text);
        font-size: 1.25rem;
        transition: var(--transition);
    }

        .team-social a:hover {
            color: var(--secondary-color);
        }

/* Testimonials Section */
.section-testimonials {
    padding: 80px 0;
    background: white;
}

.testimonials-header {
    text-align: center;
    margin-bottom: 48px;
}

    .testimonials-header h2 {
        font-size: 2.5rem;
        font-weight: 800;
        margin-bottom: 1rem;
        color: var(--primary-color);
    }

    .testimonials-header p {
        font-size: 1.125rem;
        color: var(--light-text);
    }

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 32px;
}




.testimonials-optimized {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 32px;
    align-items: stretch;
}

    .testimonials-optimized .testimonial-card {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        justify-content: stretch;
        height: 100%;
        background: #fff;
        border-radius: 18px;
        box-shadow: 0 4px 18px 0 rgba(35,64,110,0.10);
        padding: 32px 28px 28px 28px;
        min-width: 0;
        max-width: 100%;
        transition: box-shadow 0.18s, transform 0.18s;
    }

    .testimonials-optimized .testimonial-quote {
        flex: 1 1 0;
        display: flex;
        flex-direction: column;
        justify-content: flex-start;
        font-size: 1.08rem;
        color: #23406e;
        margin-bottom: 18px;
        position: relative;
        width: 100%;
    }

    .testimonials-optimized .testimonial-divider {
        width: 100%;
        height: 1px;
        background: #e3eefe;
        margin: 18px 0 14px 0;
        border: none;
    }

    .testimonials-optimized .testimonial-author {
        display: flex;
        align-items: flex-start;
        gap: 14px;
        margin-top: 0;
        width: 100%;
        min-height: 80px
    }

    .testimonials-optimized .author-avatar {
        width: 60px;
        height: 60px;
        border-radius: 50%;
        text-align: center
    }

        .testimonials-optimized .author-avatar i {
            font-size: 2.2rem;
            color: #2561a7;
        }

    .testimonials-optimized .author-info {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
    }

        .testimonials-optimized .author-info h4 {
            font-size: 1.1rem;
            font-weight: 700;
            color: #23406e;
            margin-bottom: 2px;
        }

        .testimonials-optimized .author-info p {
            color: #718096;
            font-size: 0.98rem;
            margin: 0;
        }




/* CTA Section */
.cta-section {
    padding: 160px 0 80px;
    background: linear-gradient(135deg, var(--blue-900) 0%, var(--blue-800) 100%);
    color: white;
    position: relative;
    overflow: hidden;
}

    .cta-section::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: var(--primary-dark);
        /* background: url('../images/cta-pattern.svg') center/cover; */ /* Image missing */
        opacity: 0.05;
        z-index: -1;
    }

.cta-content {
    position: relative;
    z-index: 1;
    text-align: center;
    margin: 0 auto;
}

    .cta-content h2 {
        font-size: 2.5rem;
        font-weight: 800;
        margin-bottom: 1.5rem;
        letter-spacing: -1px;
        color: var(--white);
    }

    .cta-content p {
        font-size: 1.25rem;
        opacity: 0.9;
        margin-bottom: 2rem;
    }

/* Footer */
.main-footer {
    background: var(--blue-900);
    color: white;
    padding: 80px 0 40px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 48px;
}

.footer-brand {
    margin-bottom: 24px;
}

.footer-logo {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.footer-desc {
    opacity: 0.8;
    line-height: 1.7;
}

.footer-title {
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.footer-link {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: white;
    text-decoration: none;
    opacity: 0.8;
    transition: var(--transition);
    margin-bottom: 0.75rem;
}

    .footer-link:hover {
        opacity: 1;
        color: var(--accent-color);
    }

.footer-links a {
    display: block;
    color: white;
    text-decoration: none;
    opacity: 0.8;
    transition: var(--transition);
    margin-bottom: 0.75rem;
}

    .footer-links a:hover {
        opacity: 1;
        color: var(--accent-color);
    }

/* Responsive Design */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }

    .hero-desc {
        font-size: 1.125rem;
    }

    .features-header h2,
    .process-header h2,
    .testimonials-header h2,
    .cta-content h2 {
        font-size: 2rem;
    }

    .footer-content {
        grid-template-columns: 1fr;
    }

    .footer-logo {
        display: unset;
    }

    .footer-link {
        display: flex;
        justify-content: center
    }

    .footer-links {
        display: flex;
        gap: 30px;
        justify-content: center;
    }
}

/* Mission Section */
.section-mission {
    padding: 80px 0;
}

.mission-content {
    margin: 0 auto;
    text-align: center;
}

    .mission-content h2 {
        font-size: 2.5rem;
        font-weight: 800;
        margin-bottom: 1.5rem;
        color: var(--primary-color);
    }

    .mission-content p {
        font-size: 1.125rem;
        color: var(--light-text);
        margin-bottom: 3rem;
        line-height: 1.7;
    }

.mission-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.stat-item {
    padding: 2rem;
    background: var(--light-background);
    border-radius: 12px;
    transition: var(--transition);
}

    .stat-item:hover {
        transform: translateY(-4px);
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    }

.stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 1rem;
    color: var(--light-text);
}

/* Team Section Updates */
.team-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition);
    border-radius: 50%;
}

.team-image {
    position: relative;
}

    .team-image:hover .team-overlay {
        opacity: 1;
    }

.team-overlay a {
    color: white;
    font-size: 1.5rem;
    transition: var(--transition);
}

    .team-overlay a:hover {
        transform: scale(1.2);
    }

/* Gallery Section */
.section-gallery {
    padding: 80px 0;
    background: var(--light-background);
}

.gallery-header {
    text-align: center;
    margin-bottom: 48px;
}

    .gallery-header h2 {
        font-size: 2.5rem;
        font-weight: 800;
        margin-bottom: 1rem;
        color: var(--primary-color);
    }

    .gallery-header p {
        font-size: 1.125rem;
        color: var(--light-text);
    }

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 24px;
}

.gallery-item {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    aspect-ratio: 4/3;
}

    .gallery-item img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: var(--transition);
    }

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition);
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-overlay i {
    color: white;
    font-size: 2rem;
    transition: var(--transition);
}

.gallery-item:hover .gallery-overlay i {
    transform: scale(1.2);
}

/* Responsive Updates */
@media (max-width: 768px) {
    .stat-item {
        padding: 1rem;
    }
    .stat-item div {
        font-size:1.5rem
    }
    .stat-item .stat-label{font-size:1rem}

    .gallery-grid {
        grid-template-columns: 1fr;
    }

    .team-grid {
        grid-template-columns: 1fr;
    }

    .mission-content h2,
    .gallery-header h2,
    .team-header h2 {
        font-size: 2rem;
    }
}

/* Accessibility Improvements */
.team-social a,
.gallery-item,
.team-overlay a {
    outline: none;
}

    .team-social a:focus-visible,
    .gallery-item:focus-visible,
    .team-overlay a:focus-visible {
        box-shadow: 0 0 0 3px var(--accent-color);
    }

/* Performance Optimizations */
img.lazy {
    opacity: 0;
    transition: opacity 0.3s ease-in-out;
}

    img.lazy.loaded {
        opacity: 1;
    }

/* Mission Section Updates */
.stat-icon {
    font-size: 2.5rem;
    color: var(--accent-color);
    margin-bottom: 1rem;
}

/* FAQ Section */
.section-faq {
    padding: 80px 0;
    background: var(--light-background);
}

.faq-header {
    text-align: center;
    margin-bottom: 48px;
}

    .faq-header h2 {
        font-size: 2.5rem;
        font-weight: 800;
        margin-bottom: 1rem;
        color: var(--primary-color);
    }

    .faq-header p {
        font-size: 1.125rem;
        color: var(--light-text);
    }

.faq-grid {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    margin-bottom: 16px;
    border-radius: 12px;
    overflow: hidden;
    background: white;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.faq-question {
    padding: 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    transition: var(--transition);
}

    .faq-question:hover {
        background: var(--light-background);
    }

    .faq-question h3 {
        font-size: 1.125rem;
        font-weight: 600;
        color: var(--primary-color);
        margin: 0;
    }

    .faq-question i {
        color: var(--light-text);
        transition: var(--transition);
    }

        .faq-question i.rotate {
            transform: rotate(180deg);
        }

.faq-answer {
    padding: 0 24px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
}

    .faq-answer p {
        padding: 24px 0;
        color: var(--light-text);
        line-height: 1.7;
        margin: 0;
    }

/* Responsive Updates */
@media (max-width: 768px) {
    .process-timeline::before {
        left: 0;
        transform: none;
    }

    .process-step {
        flex-direction: row !important;
        margin-left: 20px;
    }

    .step-content {
        margin-left: 16px;
    }

    .faq-question h3 {
        font-size: 1rem;
    }
}

/* Animation Classes */
.animate__animated {
    animation-duration: 1s;
    animation-fill-mode: both;
}

.animate__fadeInUp {
    animation-name: fadeInUp;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translate3d(0, 20px, 0);
    }

    to {
        opacity: 1;
        transform: translate3d(0, 0, 0);
    }
}


.services-grid {
    display: flex;
    gap: 32px;
    justify-content: center;
    align-items: stretch;
    margin-top: 32px;
}

.service-card {
    flex: 1 1 320px;
    max-width: 370px;
    min-width: 260px;
    background: #fff;
    border-radius: 10px;
    box-shadow: none;
    border: 1.5px solid #e2e8f0;
    margin: 0;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    padding: 32px 24px 28px 24px;
    transition: background 0.2s, border-color 0.2s;
    text-align: left;
    min-height: 420px;
}

.service-card {
    flex: unset;
}


    .service-card:hover {
        background: #f7fafc;
        border-color: #90cdf4;
    }

    .service-card .custom-btn {
        display: block;
        align-items: center;
        gap: 0.5rem;
        padding: 12px 24px;
        border-radius: 8px;
        font-weight: 600;
        text-decoration: none;
        transition: var(--transition);
        cursor: pointer;
        text-align: center
    }

        .service-card .custom-btn.primary-btn {
            width: 100%;
            font-size: 1rem;
            padding: 11px 0;
            border-radius: 6px;
            background: #2c5282;
            color: #fff;
            font-weight: 700;
            box-shadow: none;
            margin-top: 6px;
            transition: background 0.2s, color 0.2s;
            letter-spacing: 0.2px;
            border: none;
        }

            .service-card .custom-btn.primary-btn:hover {
                background: #1a365d;
                color: #fff;
            }

    .service-card .service-icon {
        font-size: 2.1rem;
        color: #2c5282;
        background: none;
        border-radius: 0;
        width: auto;
        height: auto;
        margin-bottom: 12px;
        box-shadow: none;
        display: flex;
        align-items: center;
        justify-content: center;
        text-align: center
    }

    .service-card h3 {
        font-size: 1.18rem;
        font-weight: 800;
        color: #1a365d;
        letter-spacing: 0.2px;
        margin: 10px 0 0 20px;
    }

    .service-card p {
        color: #4a5568;
        font-size: 1rem;
        margin-bottom: 14px;
        min-height: 80px;
        font-weight: 400;
    }

.service-features {
    list-style: none;
    padding: 0;
    margin: 0 0 14px 0;
    text-align: left;
}

    .service-features li {
        display: flex;
        align-items: center;
        font-size: 0.98rem;
        margin-bottom: 7px;
        color: #2c5282;
        font-weight: 400;
        padding-left: 0;
        background: none;
        border: none;
    }

        .service-features li::before {
            display: none;
        }

        .service-features li i {
            color: #2b6cb0;
            margin-right: 7px;
            font-size: 1rem;
            z-index: 1;
            background: none;
        }



.service-price {
    font-size: 1rem;
    font-weight: 700;
    color: #2c5282;
    margin-bottom: 14px;
    letter-spacing: 0.2px;
}

.services-header {
    margin: 50px auto;
}

    .services-header h2, .section-title {
        color: #2c5282;
        font-weight: 900;
        letter-spacing: 0.5px;
    }

    .services-header p, .section-desc {
        color: #2b6cb0;
        font-size: 1.08rem;
        margin-bottom: 0.5rem;
    }




.packages-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 32px;
    justify-content: center;
    align-items: stretch;
    margin-top: 32px;
}

.package-card {
    flex: 1 1 320px;
    max-width: 370px;
    min-width: 260px;
    background: #fff;
    border-radius: 10px;
    box-shadow: none;
    border: 1.5px solid #e2e8f0;
    margin: 0;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    transition: background 0.2s, border-color 0.2s;
    text-align: left;
    min-height: 420px;
    background: var(--blue-700);
}


    .package-card .custom-btn {
        display: block;
        align-items: center;
        gap: 0.5rem;
        padding: 12px 24px;
        border-radius: 8px;
        font-weight: 600;
        text-decoration: none;
        transition: var(--transition);
        cursor: pointer;
        text-align: center
    }

        .package-card .custom-btn.primary-btn {
            width: 100%;
            font-size: 1rem;
            padding: 11px 0;
            border-radius: 6px;
            background: #2c5282;
            color: #fff;
            font-weight: 700;
            box-shadow: none;
            margin-top: 6px;
            transition: background 0.2s, color 0.2s;
            letter-spacing: 0.2px;
            border: none;
        }

            .package-card .custom-btn.primary-btn:hover {
                background: #1a365d;
                color: #fff;
            }

    .package-card .service-icon {
        font-size: 2.1rem;
        color: #2c5282;
        background: none;
        border-radius: 0;
        width: auto;
        height: auto;
        margin-bottom: 12px;
        box-shadow: none;
        display: flex;
        align-items: center;
        justify-content: center;
        text-align: center
    }

    .package-card h3 {
        font-size: 1.18rem;
        font-weight: 800;
        color: #1a365d;
        letter-spacing: 0.2px;
        margin: 10px 0 0 20px;
    }

    .package-card p {
        color: #4a5568;
        font-size: 1rem;
        margin-bottom: 14px;
        min-height: 80px;
        font-weight: 400;
    }

    .package-card.popular {
        position: relative;
        overflow: visible;
    }

    .package-card .package-label {
        position: absolute;
        top: 0;
        right: 0;
        background:var(--blue-900);
        color: #fff; /* 白色文字 */
        padding: 4px 18px;
        border-radius: 0 8px 0 10px;
        font-weight: bold;
        font-size: 16px;
        z-index: 2;
        letter-spacing: 0.5px;
        display: inline-flex;
        align-items: center;
        gap: 6px;
        box-shadow: 0 2px 8px rgba(255,165,0,0.15);
    }

        .package-card .package-label i {
            font-size: 1.1em;
            color: #fff; /* 星星图标为白色 */
            margin-right: 6px;
        }

    .package-card .package-header {
        display: flex;
        align-items: center;
        margin-bottom: 20px;
        position: relative;
        padding-right: 40px; /* 为单选按钮留出空间 */
        padding: 32px 24px 28px 24px;
        width: 100%;
    }

        .package-card .package-header .package-name {
            font-size: 1.25rem;
            font-weight: 600;
            color: var(--white);
            margin-bottom: 4px;
            display: flex;
            align-items: center;
        }


        .package-card .package-header .package-price {
            font-size: 1.1rem;
            font-weight: 700;
            color: var(--white);
            margin-left: auto;
        }

            .package-card.package-header .package-price span {
                font-weight: 600;
                color: var(--blue-600);
            }




        .package-card .package-header h2, .section-title {
            color: #2c5282;
            font-weight: 900;
            letter-spacing: 0.5px;
        }

        .package-card .package-header p, .section-desc {
            color: #2b6cb0;
            font-size: 1.08rem;
            margin-bottom: 0.5rem;
        }

    .package-card .package-content {
        position: relative;
        padding: 20px;
        background: var(--white);
        width: 100%;
    }

        .package-card .package-content::before {
            content: '';
            position: absolute;
            top: 0;
            left: -30px;
            right: -30px;
            height: 1px;
            background: linear-gradient(to right, transparent, var(--gray-200), transparent);
        }

    .package-card .package-features {
        list-style: none;
        padding: 0;
        margin: 0 0 14px 0;
        text-align: left;
    }

        .package-card .package-features li {
            display: flex;
            align-items: center;
            font-size: 0.98rem;
            margin-bottom: 7px;
            color: #2c5282;
            font-weight: 400;
            padding-left: 0;
            background: none;
            border: none;
        }

            .package-card .package-features li::before {
                display: none;
            }

            .package-card .package-features li i {
                color: #2b6cb0;
                margin-right: 7px;
                font-size: 1rem;
                z-index: 1;
                background: none;
            }


/**/




@media (max-width: 768px) {
    .services-grid {
        flex-direction: column;
        align-items: center;
        gap: 18px;
    }

    .service-card {
        max-width: 100%;
        min-height: 0;
        padding: 20px 8px 14px 8px;
    }

    .packages-grid {
        flex-direction: column;
        flex-wrap: nowrap;
        gap: 18px;
    }

    .package-card {
        flex:unset;
        max-width: 100%;
        min-height: 0;
    }
}

.process-step {
    transition: all 0.3s ease;
}

    .process-step:hover {
        transform: scale(1.05);
    }

.faq-item {
    border-radius: 8px;
    overflow: hidden;
    margin-bottom: 1rem;
    background: var(--light-background);
}

.faq-question {
    cursor: pointer;
    padding: 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
    padding: 0 1.5rem;
}

    .faq-answer.active {
        max-height: 500px;
        padding: 0 1.5rem 1.5rem;
    }

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

    .faq-question i.rotate {
        transform: rotate(180deg);
    }

.story-card {
    text-align: center;
    padding: 2rem;
}

.team-card {
    text-align: center;
    padding: 2rem;
}

.team-image {
    width: 120px;
    height: 120px;
    margin: 0 auto 1.5rem;
    background: var(--blue-100);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

    .team-image i {
        font-size: 3rem;
        color: var(--blue-800);
    }

.team-title {
    color: var(--blue-600);
    font-weight: 600;
    margin: 0.5rem 0;
}

.team-description {
    color: var(--gray-700);
    margin-bottom: 1.5rem;
}

.team-social {
    display: flex;
    justify-content: center;
    gap: 1rem;
}

.social-link {
    color: var(--blue-600);
    font-size: 1.2rem;
    transition: color 0.3s ease;
}

    .social-link:hover {
        color: var(--blue-800);
    }

.impact-card {
    text-align: center;
    padding: 2rem;
}

.impact-icon {
    font-size: 3rem;
    color: var(--blue-800);
    margin-bottom: 1rem;
}

.impact-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--blue-800);
    margin-bottom: 0.5rem;
}

.feature-card {
    text-align: center;
    padding: 2rem;
}

.card-icon {
    font-size: 2.5rem;
    color: var(--blue-800);
    margin-bottom: 1rem;
}
/* Form Styles */
form {
    width: 100%;
}

label {
    display: block;
    margin-bottom: 8px;
    color: var(--gray-700);
}

input[type="text"],
input[type="email"],
input[type="tel"],
select,
textarea {
    width: 100%;
    padding: 10px;
    border: 1px solid var(--gray-200);
    border-radius: 4px;
    margin-bottom: 8px;
}

textarea {
    resize: vertical;
}

.grid-2 {
    grid-template-columns: repeat(2, 1fr);
}

/* 套餐选择样式 */
.package-options {
    display: flex;
    flex-direction: row;
    gap: 20px;
    margin: 20px 0;
}

.package-option {
    position: relative;
    flex: 1;
}

    .package-option input[type="radio"] {
        position: absolute;
        opacity: 0;
        width: 0;
        height: 0;
    }

.package-label {
    display: flex;
    align-items: center;
    padding: 16px 20px;
    border: 1px solid var(--gray-200);
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.2s ease;
    margin: 0;
    background: var(--white);
    opacity: 0.7;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.package-radio {
    width: 20px;
    height: 20px;
    border: 2px solid var(--gray-300);
    border-radius: 50%;
    margin-right: 16px;
    position: relative;
    flex-shrink: 0;
    transition: all 0.2s ease;
}

/* 选中状态 */
.package-option input[type="radio"]:checked + .package-label {
    border-color: var(--blue-600);
    background: var(--blue-50);
    opacity: 1;
}

    .package-option input[type="radio"]:checked + .package-label .package-radio {
        border-color: var(--blue-600);
        background: var(--blue-600);
    }

        .package-option input[type="radio"]:checked + .package-label .package-radio::after {
            content: '';
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            width: 8px;
            height: 8px;
            background: var(--white);
            border-radius: 50%;
        }
/* 未选中状态 */
.package-option input[type="radio"] + .package-label {
    border-color: var(--gray-200);
    opacity: 1;
}

    .package-option input[type="radio"] + .package-label .package-radio {
        border-color: var(--gray-200);
        background: var(--gray-200);
    }

        .package-option input[type="radio"] + .package-label .package-radio::after {
            content: '';
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            width: 8px;
            height: 8px;
            background: var(--white);
            border-radius: 50%;
        }

.package-info {
    flex: 1;
    display: flex;
    align-items: center;
    gap: 16px;
}

.package-name {
    font-weight: 500;
    color: var(--gray-600);
    font-size: 1rem;
}

.package-price {
    color: var(--gray-500);
    font-weight: 500;
}

.popular-tag {
    background: var(--blue-50);
    color: var(--blue-600);
    padding: 2px 10px;
    border-radius: 4px;
    font-size: 0.8rem;
    font-weight: 500;
}

/* 悬停效果 */
.package-label:hover {
    border-color: var(--blue-400);
    background: var(--blue-50);
    opacity: 1;
}

/* 修改其他相关样式 */
.card {
    background-color: var(--white);
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
    padding: 24px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

/*    .card:hover {
        transform: translateY(-2px);
        box-shadow: 0 4px 6px rgba(0, 0, 0, 0.08);
    }
*/
/* 响应式布局调整 */
@media (max-width: 768px) {
    .grid-2 {
        grid-template-columns: 1fr;
    }

    .package-options {
        flex-direction: column;
    }
}

/* 条款同意部分样式 */
.terms-container {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 1.5rem;
}

    .terms-container input[type="checkbox"] {
        margin: 0;
        width: 16px;
        height: 16px;
    }

    .terms-container label {
        margin: 0;
        font-size: 0.95rem;
        color: var(--gray-700);
    }

/* 卡片风格单选组件样式 */
.layui-form-radio > .lay-skin-checkcard {
    display: flex;
    padding: 12px;
    border-radius: 10px;
    border: 1px solid #e5e5e5;
    color: #000;
    background-color: #fff;
}

    .layui-form-radio > .lay-skin-checkcard > * {
        vertical-align: top;
    }

.layui-form-radio:hover > .lay-skin-checkcard {
    border-color: var(--blue-700);
}

.layui-form-radio[lay-skin=none] {
    width: 100%;
}

.layui-form-radioed[lay-skin="none"] > .lay-skin-checkcard {
    color: #000;
    border-color: var(--blue-700);
}

.layui-radio-disabled > .lay-skin-checkcard {
    box-shadow: none;
    border-color: #e5e5e5 !important;
    background-color: #eee !important;
}


.lay-skin-checkcard-detail {
    overflow: hidden;
    width: 100%;
    padding-left: 36px;
    display: flex;
    gap: 20px;
}


.lay-skin-checkcard-header {
    flex: 0 0 100px;
    font-weight: 500;
    font-size: 16px;
    margin-bottom: 4px;
    display: grid;
    align-items: center;
}

@media(max-width: 768px) {
    .lay-skin-checkcard-detail {
        gap: 0;
    }
    .lay-skin-checkcard-header {
        flex: 0 0 80px;
    }
    }
.lay-skin-checkcard-description {
    font-size: 32px;
    color: #5f5f5f;
    display: grid;
    align-items: center;
    font-size: 26px;
}

    .lay-skin-checkcard-description tag {
        font-size: 32px;
        color: #5f5f5f;
        flex: 0 0 100px;
        display: grid;
        align-items: center;
    }

.layui-disabled.lay-skin-checkcard-description {
    color: #c2c2c2 !important;
}

.layui-form-radio > .lay-check-dot-2:before {
    position: absolute;
    font-family: "layui-icon";
    content: "\e63f";
    color: #c2c2c2;
    top: 50%;
    transform: translateY(-50%);
    left: 10px;
    font-size: 32px;
    z-index: 12;
}

.layui-form-radioed > .lay-check-dot-2:before {
    position: absolute;
    font-family: "layui-icon";
    content: "\e643";
    color: var(--blue-700);
    top: 50%;
    transform: translateY(-50%);
    right: 3px;
    font-size: 32px;
    z-index: 12;
}

.layui-radio-disabled > .lay-check-dot-2:before {
    color: #eee !important;
}

.lay-ellipsis-multi-line {
    overflow: hidden;
    word-break: break-all;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
}

.legal-section {
    padding: 60px 0;
    background-color: #f8f9fa;
    min-height: calc(100vh - 300px);
}

.legal-content {
    max-width: 1200px;
    margin: 0 auto;
    background: #fff;
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.1);
}

    .legal-content h1 {
        color: #333;
        font-size: 2.5em;
        margin-bottom: 30px;
        text-align: center;
        font-weight: 600;
    }

.legal-text {
    color: #444;
    line-height: 1.8;
}

    .legal-text h2 {
        color: #2c3e50;
        font-size: 1.5em;
        margin: 30px 0 15px;
        padding-bottom: 10px;
        border-bottom: 2px solid #eee;
    }

    .legal-text p {
        margin-bottom: 15px;
        font-size: 1.1em;
    }

    .legal-text ul {
        margin: 15px 0;
        padding-left: 20px;
    }

        .legal-text ul li {
            margin-bottom: 10px;
            position: relative;
            padding-left: 15px;
        }

            .legal-text ul li:before {
                content: "•";
                color: #3498db;
                font-weight: bold;
                position: absolute;
                left: 0;
            }

.terms-container a {
    color: var(--blue-700);
    text-decoration: none;
    transition: all 0.3s ease;
}

    .terms-container a:hover {
        color: var(--blue-200);
        text-decoration: underline;
    }

.footer-support {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

    .footer-support a {
        color: var(--light-text);
        text-decoration: none;
        transition: var(--transition);
        font-size: 0.9rem;
    }

        .footer-support a:hover {
            color: var(--primary-color);
            transform: translateX(4px);
        }

@media (max-width: 768px) {
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }

    .footer-support {
        align-items: center;
    }
}

.user-impact-cards {
    display: flex;
    justify-content: center;
    gap: 32px;
    margin-bottom: 24px;
    flex-wrap: wrap;
}

.impact-card {
    background: #fff;
    border-radius: 16px;
    padding: 32px 24px;
    min-width: 260px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.impact-icon {
    font-size: 40px;
    margin-bottom: 12px;
}

.impact-number {
    font-size: 32px;
    font-weight: bold;
    color: #223;
    margin-bottom: 8px;
}

.impact-label {
    font-size: 18px;
    color: #666;
}

.next-steps {
    font-size: 2.5em
}

    .next-steps .text-muted {
        font-size: 0.8em
    }

@media (max-width: 768px) {
    .user-impact-cards {
        flex-direction: column;
        gap: 16px;
    }

    .impact-card {
        min-width: unset;
        padding: 20px 10px;
    }
}

.order-details {
    background: #fff;
    border-radius: 1.5rem;
    padding: 3rem 2rem;
    margin-bottom: 2rem;
}

    .order-details h4 {
        font-size: 2.2rem;
        letter-spacing: 1px;
        font-weight: 700;
        margin-bottom: 2.5rem;
    }

.detail-item {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    font-size: 1.25rem;
    border-bottom: 1px solid #f0f0f0;
    padding: 1rem 0;
}

.detail-label {
    min-width: 180px;
    font-weight: 600;
    color: #333;
    font-size: 1.1rem;
}

.detail-value {
    background: #f5f8ff;
    font-weight: 700;
    padding: 0.5rem 1.2rem;
    border-radius: 0.5rem;
    margin-left: 1rem;
    font-size: 1.15rem;
}

.detail-item:last-child {
    border-bottom: none;
}
.fa-red {
    color: var(--red-700) !important;
}