/* Entry Excellence Page Styles */

/* Hero Section */
.hero-section {
    background: linear-gradient(135deg, #1f9968 0%, #2d5a3d 100%);
    /* padding: 120px 0 80px; */
    text-align: center;
    position: relative;
    overflow: hidden;
    min-height: 400px;
    display: flex;
    align-items: center;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('/assets/images/earth.gif') center/cover no-repeat;
    opacity: 0.1;
    animation: float 6s ease-in-out infinite;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-20px);
    }
}

.hero-content {
    position: relative;
    z-index: 2;
    width: 100%;
}

.hero-content h1 {
    font-size: 48px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 20px;
    animation: fadeInUp 1s ease-out;
}

.hero-content p {
    font-size: 20px;
    color: rgba(255, 255, 255, 0.9);
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.6;
    animation: fadeInUp 1s ease-out 0.3s both;
}

/* Main Page Styles */
.main-page {
    background: #ffffff;
}

/* Content Wrapper */
.content-wrapper {
    display: flex;
    align-items: center;
    gap: 80px;
}

.text-content {
    flex: 1;
    max-width: 60%;
}

.image-content {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.image-wrapper {
    position: relative;
    max-width: 100%;
}

.feature-image {
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

/* Title Header */
.title-header {
    margin-bottom: 40px;
}

.title-header h2 {
    font-size: 40px;
    font-weight: 600;
    margin-bottom: 20px;
}

.title-header p {
    font-size: 20px;
    color: #666;
    line-height: 1.6;
}

.title-decoration {
    display: flex;
    align-items: center;
    gap: 15px;
    margin: 20px 0;
}

.decoration-line {
    height: 2px;
    background: linear-gradient(90deg, transparent, #1f9968, transparent);
    flex: 1;
}

.decoration-dot {
    width: 8px;
    height: 8px;
    background: #1f9968;
    border-radius: 50%;
}

/* Service List */
.service-list {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.service-item {
    padding: 30px;
    background: #f8f9fa;
    border-radius: 12px;
    border-left: 4px solid #1f9968;
    transition: all 0.3s ease;
    box-shadow: 0 0 6px rgba(31, 153, 104, 0.05);
}

.service-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(31, 153, 104, 0.1);
}

.service-item h4 {
    font-size: 18px;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.service-item p {
    font-size: 16px;
    color: var(--text-color);
    line-height: 1.6;
    margin: 0 0 15px 0;
    display: none;
}

.service-details {
    margin-top: 15px;
    padding-top: 15px;
    border-top: 1px solid rgba(31, 153, 104, 0.2);
}

.service-details ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.service-details li {
    position: relative;
    padding-left: 20px;
    margin-bottom: 8px;
    font-size: 14px;
    color: 3333;
    line-height: 1.5;
    transition: all 0.3s ease-in-out;
}

.service-details li:before {
    content: '';
    position: absolute;
    left: 0;
    top: 8px;
    width: 6px;
    height: 6px;
    background: var(--primary-color);
    border-radius: 50%;
}

.service-details li:last-child {
    margin-bottom: 0;
}

/* Module Sections */
.module-section {
    padding: 100px 0;
}

.module-section:nth-child(even) {
    background: #f8f9fa;
}

.module-section:nth-child(even) .content-wrapper {
    flex-direction: row-reverse;
}

/* Module specific styling */


.module-1 .service-item {
    border-left: none;
    border-radius: 12px;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    border: 1px solid #e9ecef;
    position: relative;
    overflow: hidden;
    border-left: 4px solid var(--primary-color);
}



.module-1 .service-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(31, 153, 104, 0.05);
}

.module-1 .service-item h4 {
    color: var(--primary-color);
    font-size: 20px;
    margin-bottom: 15px;
}

.module-1 .service-details {
    border-top: 1px solid rgba(31, 153, 104, 0.1);
    margin-top: 20px;
    padding-top: 20px;
}

.module-1 .service-details li {
    color: #555;
    font-size: 15px;
    margin-bottom: 10px;
}

.module-1 .service-details li:before {
    background: var(--primary-color);
    width: 8px;
    height: 8px;
    top: 6px;
}

/* Module 2: Due Diligence - Timeline Style */
.module-2 .service-list {
    position: relative;
    padding-left: 30px;
}

.module-2 .service-list::before {
    content: '';
    position: absolute;
    left: 5px;
    top: 26px;
    bottom: 0;
    width: 2px;
    height: 90%;
    background: var(--primary-color);
}

.module-2 .service-item {
    border-left: none;
    background: #ffffff;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(45, 90, 61, 0.1);
    position: relative;
}

.module-2 .service-item::before {
    content: '';
    position: absolute;
    left: -37px;
    top: 25px;
    width: 16px;
    height: 16px;
    background: var(--primary-color);
    border-radius: 50%;
    border: 4px solid #ffffff;
    box-shadow: 0 0 0 3px var(--primary-color);
}

.module-2 .service-item:hover {
    box-shadow: 0 8px 30px rgba(45, 90, 61, 0.2);
}

.module-2 .service-item h4 {
    color: var(--primary-color);
    font-size: 19px;
    margin-bottom: 12px;
}

.module-2 .service-details {
    border-top: 1px solid rgba(45, 90, 61, 0.1);
    margin-top: 18px;
    padding-top: 18px;
}

.module-2 .service-details li {
    color: #444;
    font-size: 14px;
    margin-bottom: 9px;
}

.module-2 .service-details li:before {
    background: var(--primary-color);
    width: 5px;
    height: 5px;
    top: 7px;
}

/* Module 3: Strategic Planning - Accordion Style */
.module-3 .service-list {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.module-3 .service-item {
    border-left: none;
    background: #ffffff;
    border-radius: 0;
    border-bottom: 1px solid #e9ecef;
    box-shadow: none;
    transition: all 0.4s ease;
    cursor: pointer;
    position: relative;
}

.module-3 .service-item:first-child {
    border-radius: 12px 12px 0 0;
}

.module-3 .service-item:last-child {
    border-radius: 0 0 12px 12px;
    border-bottom: none;
}

.module-3 .service-item:hover {
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    transform: none;
    box-shadow: 0 4px 15px rgba(39, 174, 96, 0.1);
}

.module-3 .service-item::after {
    content: '+';
    position: absolute;
    right: 25px;
    top: 25px;
    font-size: 24px;
    color: var(--primary-color);
    font-weight: 300;
    transition: all 0.3s ease;
}

.module-3 .service-item.active::after {
    transform: rotate(45deg);
    color: var(--primary-color);
}

.module-3 .service-item h4 {
    color: var(--primary-color);
    font-size: 18px;
    padding-right: 50px;
    transition: color 0.3s ease;
    margin-bottom: 0;
}

.module-3 .service-item.active h4 {
    color: var(--primary-color);
}

.module-3 .service-details {
    border-top: 1px solid transparent;
    max-height: 0;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    opacity: 0;
    transform: translateY(-10px);
    margin-top: 0;
    padding-top: 0;
}

.module-3 .service-item.active .service-details {
    max-height: 200px;
    opacity: 1;
    transform: translateY(0);
    border-top-color: rgba(39, 174, 96, 0.1);
    margin-top: 15px;
    padding-top: 15px;
}

.module-3 .service-details li {
    color: #333;
    font-size: 14px;
    margin-bottom: 8px;
    opacity: 0;
    transform: translateY(10px);
    transition: all 0.3s ease;
}

.module-3 .service-item.active .service-details li {
    opacity: 1;
    transform: translateY(0);
}

.module-3 .service-details li:nth-child(1) {
    transition-delay: 0.1s;
}

.module-3 .service-item.active .service-details li:nth-child(1) {
    transition-delay: 0.1s;
}

.module-3 .service-details li:nth-child(2) {
    transition-delay: 0.2s;
}

.module-3 .service-item.active .service-details li:nth-child(2) {
    transition-delay: 0.2s;
}

.module-3 .service-details li:nth-child(3) {
    transition-delay: 0.3s;
}

.module-3 .service-item.active .service-details li:nth-child(3) {
    transition-delay: 0.3s;
}

.module-3 .service-details li:before {
    background: var(--primary-color);
    width: 6px;
    height: 6px;
    top: 6px;
}

/* 添加点击反馈效果 */
.module-3 .service-item:active {
    transform: scale(0.98);
}


/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, #1f9968 0%, #408157 100%);
    padding: 90px 0;
    text-align: center;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('/assets/pic/video-3.gif');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0.15;

}

.cta-content h3 {
    font-size: 36px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 20px;
}

.cta-content p {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-button {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 30px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.cta-button .layui-icon {
    font-size: 12px;
}

.cta-button.primary {
    background: #ffffff;
    color: var(--primary-color);
}

.cta-button.primary:hover {
    background: #f8f9fa;
    transform: translateY(-2px);
}

.cta-button.secondary {
    background: transparent;
    color: #ffffff;
    border: 1px solid #ffffff;
}

.cta-button.secondary:hover {
    background: #ffffff;
    color: #1f9968;
    transform: translateY(-2px);
}

/* Responsive Design */
@media (max-width: 768px) {
    .content-wrapper {
        flex-direction: column;
        gap: 40px;
    }

    .text-content {
        max-width: 100%;
    }

    .title-header h2 {
        font-size: 32px;
    }

    .title-header p {
        font-size: 18px;
    }

    .hero-content h1 {
        font-size: 36px;
    }

    .hero-content p {
        font-size: 18px;
    }

    .cta-content h3 {
        font-size: 28px;
    }

    .cta-buttons {
        align-items: center;
    }

    .module-section:nth-child(even) .content-wrapper {
        flex-direction: column;
    }

    /* Module 1 responsive */
    .module-1 .service-list {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    /* Module 2 responsive */
    .module-2 .service-list {
        padding-left: 20px;
    }

    .module-2 .service-list::before {
        left: -1px;
    }

    .module-2 .service-item::before {
        left: -27px;
        width: 12px;
        height: 12px;
        border-width: 3px;
    }

    /* Module 3 responsive */
    .module-3 .service-item::after {
        right: 20px;
        top: 16px;
        font-size: 20px;
    }

    .module-3 .service-item h4 {
        padding-right: 30px;
        font-size: 16px;
    }
}

@media (max-width: 480px) {

    .module-1 .service-item,
    .module-2 .service-item,
    .module-3 .service-item {
        padding: 20px;
    }

    .module-2 .service-list {
        padding-left: 15px;
    }

    .module-2 .service-item::before {
        left: -22px;
        width: 10px;
        height: 10px;
        border-width: 2px;
    }
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}



@media screen and (max-width: 768px) {
    .hero-section {
        min-height: 200px;
    }

    .hero-content h1 {
        font-size: 23px;
        margin-bottom: 5px;
    }

    .hero-content p {
        font-size: 15px;
        margin-bottom: 10px;
    }

    .hero-section::before{
        animation: none;
    }

    .title-header h2{
        text-align: center;
        font-size: 30px;
        line-height: 35px;
    }
    .title-decoration{
        justify-content: center;
    }
    .decoration-line{
        width: 40px;
        flex: none;
    }
    .decoration-dot{
        width: 10px;
        height: 10px;
    }
    .title-header{
        margin-bottom: 20px;
    }
    .title-header p{
        font-size: 15px;
        text-align: center;
    }

    .module-section{
        padding: 40px 0;
    }

    .cta-section{
        padding: 50px 0;
     }
     .cta-content h3{
        font-size: 22px;
        margin-bottom: 10px;
     }
     .cta-content p{
        font-size: 14px;
        margin-bottom: 15px;
     }
     .cta-button{
        padding: 5px 20px;
        font-size: 14px;
     }
     .cta-button .layui-icon{
        font-size: 9px;
     }
     .cta-buttons{
        gap: 15px;
     }

}