/* Market Readiness & Incorporation Page Styles */

/* Hero Section */
.hero-section {
    /* background: linear-gradient(135deg, #1f9968 0%, #2d5a3d 100%); */
    text-align: center;
    position: relative;
    overflow: hidden;
    min-height: 400px;
    display: flex;
    align-items: center;
    background: url('/assets/pic/banner-2.jpg') center/cover no-repeat;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.3);
    opacity: 1;
}

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

.breadcrumb {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.breadcrumb a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.3s ease;
}

.breadcrumb a:hover {
    color: #ffffff;
}

.breadcrumb span {
    color: rgba(255, 255, 255, 0.6);
}

.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;
}

/* Overview Section */
.overview-section {
    padding: 100px 0;
}

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

.text-content {
    flex: 1;
}

.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 h2 {
    font-size: 40px;
}

/* Key Benefits */
.key-benefits {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
    margin-top: 40px;
}

.benefit-item {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    padding: 25px;
    background: #f8f9fa;
    border-radius: 12px;
    border-left: 4px solid var(--primary-color);
    transition: all 0.3s ease;
    flex-direction: column;
}

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

.benefit-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary-color) 0%, #16a34a 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    flex-shrink: 0;
}

.benefit-icon .layui-icon{
    font-size: 22px;
}

.benefit-item h4 {
    font-size: 18px;
    font-weight: 600;
    color: var(--primary-color);
}

.benefit-item p {
    font-size: 16px;
    color: #666;
    line-height: 1.6;
    margin: 0;
}

/* Services Section */
.services-section {
    padding: 100px 0;
    background: #f8f9fa;
}

.services-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
}

.service-card {
    background: #ffffff;
    border-radius: 16px;
    padding: 40px;
    box-shadow: 0 8px 32px rgba(31, 153, 104, 0.08);
    transition: all 0.3s ease;
    border: 1px solid rgba(31, 153, 104, 0.1);
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 16px 48px rgba(31, 153, 104, 0.15);
}

.service-header {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 30px;
}

.service-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-color) 0%, #16a34a 100%);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-size: 28px;
    flex-shrink: 0;
}

.service-header div:last-child {
    flex: 1;
}

.service-header h3 {
    font-size: 24px;
    font-weight: 600;
    color: var(--primary-color);
}

.service-header>p {
    font-size: 16px;
    color: #666;
    margin: 0;
    line-height: 1.5;
}

.service-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 40px;
}

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

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

.service-details li {
    position: relative;
    padding-left: 20px;
    margin-bottom: 12px;
    font-size: 15px;
    color: #555;
    line-height: 1.6;
}

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

.service-details li strong {
    color: var(--primary-color);
    font-weight: 600;
}

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

.benefits-list {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.benefit-tag {
    background: rgba(31, 153, 104, 0.1);
    color: var(--primary-color);
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 500;
    text-align: center;
    border: 1px solid rgba(31, 153, 104, 0.2);
    transition: all 0.3s ease;
}

.benefit-tag:hover {
    background: var(--primary-color);
    color: #ffffff;
}

/* Process Section */
.process-section {
    padding: 100px 0;
}

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

.process-timeline::before {
    content: '';
    position: absolute;
    left: 30px;
    top: 0;
    bottom: 0;
    width: 3px;
    background: linear-gradient(to bottom, var(--primary-color), rgba(31, 153, 104, 0.3));
}

.timeline-item {
    position: relative;
    padding-left: 100px;
    margin-bottom: 30px;
}

.timeline-item:last-child {
    margin-bottom: 0;
}

.timeline-number {
    position: absolute;
    left: 0;
    top: 0;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-color) 0%, #16a34a 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    font-weight: 700;
    color: #ffffff;
    box-shadow: 0 4px 20px rgba(31, 153, 104, 0.3);
}

.timeline-content {
    background: #ffffff;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 8px 32px rgba(31, 153, 104, 0.08);
    border: 1px solid rgba(31, 153, 104, 0.1);
}

.timeline-content h4 {
    font-size: 20px;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.timeline-content>p {
    font-size: 16px;
    color: #666;
    line-height: 1.6;
    margin-bottom: 20px;
}

.timeline-content ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.timeline-content li {
    position: relative;
    padding-left: 20px;
    margin-bottom: 8px;
    font-size: 14px;
    color: #555;
    line-height: 1.5;
}

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



/* 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 32px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    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: 2px 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: 16px;
    }

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

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

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

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

    .service-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .benefits-list {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .benefit-tag {
        flex: 1;
        min-width: 120px;
        display: inline-flex;
        align-items: center;
    }

    .process-timeline::before {
        left: 20px;
    }

    .timeline-item {
        padding-left: 80px;
    }

    .timeline-number {
        width: 40px;
        height: 40px;
        font-size: 16px;
    }

    .stats-card {
        grid-template-columns: 1fr;
        gap: 20px;
        padding: 30px;
    }

    .stat-number {
        font-size: 28px;
    }

    .hero-section {
        min-height: 200px;
    }

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

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

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

    .title-header h2 {
        text-align: center;
        font-size: 28px;
        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;
    }

    .overview-section,
    .services-section,
    .process-section,
    .why-choose-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: 20px;
    }

    .cta-button {
        font-size: 14px;
    }

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

    .cta-buttons {
        gap: 15px;
    }

    .service-card {
        padding: 25px;
    }

    .service-header {
        flex-direction: column;
        text-align: center;
        gap: 10px;
    }

    .service-icon {
        align-self: center;
    }

    .service-icon .layui-icon{
        font-size: 18px;
    }

    .timeline-item {
        padding-left: 60px;
        margin-bottom: 40px;
    }

    .timeline-content {
        padding: 20px;
    }

    .breadcrumb {
        flex-wrap: wrap;
        font-size: 12px;
        display: none;
    }

    .service-header h3{
        font-size: 20px;
    }
    .service-header>p{
        font-size: 15px;
    }
}

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

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