/* Growth & Strategic 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/bg-4.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);
}

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

/* Section Styles */
.main-service-section,
.strategic-services,
.process-section {
    padding: 70px 0;
    position: relative;
}

.main-service-section {
    background: #ffffff;
}

.strategic-services {
    background: #f8f9fa;
}

.process-section {
    background: #ffffff;
}


/* Title Header */

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

/* Service Spotlight */
.service-spotlight {
    max-width: 600px;
    margin: 0 auto;
    padding: 40px 0;
}

.spotlight-card {
    background: #ffffff;
    border-radius: 20px;
    padding: 50px;
    box-shadow: var(--shadow);
    border: 1px solid rgba(31, 153, 104, 0.1);
    text-align: center;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.spotlight-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 25px rgba(31, 153, 104, 0.15);
    border-color: rgba(31, 153, 104, 0.3);
}

.spotlight-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #1f9968, #4CAF50);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 30px;
    box-shadow: var(--shadow);
    position: relative;
    z-index: 2;
}

.spotlight-icon svg {
    color: #ffffff;
}

.spotlight-content h4 {
    font-size: 22px;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 16px;
    line-height: 1.3;
    position: relative;
    z-index: 2;
}

.spotlight-content p {
    font-size: 16px;
    color: #666;
    line-height: 1.6;
    margin: 0;
    position: relative;
    z-index: 2;
}

/* Strategic Grid */
.strategic-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.strategic-card {
    background: #ffffff;
    border-radius: 16px;
    padding: 30px;
    box-shadow: var(--shadow);
    border: 1px solid rgba(31, 153, 104, 0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.strategic-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #1f9968, #4CAF50, #1f9968);
    background-size: 200% 100%;
    animation: gradientShift 3s ease-in-out infinite;
}

@keyframes gradientShift {

    0%,
    100% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }
}

.strategic-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(31, 153, 104, 0.15);
}

.card-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #1f9968, #4CAF50);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    box-shadow: var(--shadow);
    flex-shrink: 0;
}

.card-icon svg {
    color: #ffffff;
}

.card-content {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.card-content h4 {
    font-size: 20px;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 12px;
    line-height: 1.3;
}

.card-content p {
    font-size: 15px;
    color: #666;
    line-height: 1.6;
    margin-bottom: 20px;
    flex: 1;
}

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

.card-content>ul li {
    font-size: 14px;
    color: #555;
    padding: 6px 0;
    position: relative;
    padding-left: 20px;
}

.card-content>ul li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: bold;
}

/* Process Flow */
.process-flow {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
    margin-top: 40px;
    margin-left: auto;
    margin-right: auto;
}

.process-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    flex: 1;
    min-width: 200px;
    position: relative;
}

.step-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #1f9968, #4CAF50);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    box-shadow: var(--shadow);
}

.step-icon svg {
    color: #ffffff;
}

.step-content h4 {
    font-size: 18px;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 8px;
    line-height: 1.3;
}

.step-content p {
    font-size: 14px;
    color: #666;
    line-height: 1.5;
    margin: 0;
}

.process-arrow {
    color: var(--primary-color);
    opacity: 0.6;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* 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 {
    position: relative;
    z-index: 9;
}

.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.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: 1024px) {
    .strategic-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 24px;
    }

    .process-flow {
        gap: 15px;
    }

    .process-step {
        min-width: 180px;
    }

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

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

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

@media (max-width: 768px) {

    .main-service-section,
    .strategic-services,
    .process-section {
        padding: 40px 0;
    }

    .strategic-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .process-flow {
        flex-direction: column;
        gap: 30px;
    }

    .process-arrow {
        transform: rotate(90deg);
    }

    .spotlight-card {
        padding: 30px;
    }

    .strategic-card {
        padding: 24px;
    }

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

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

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

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

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

    .container {
        padding: 0 15px;
    }
}

@media (max-width: 480px) {
    .spotlight-card {
        padding: 24px;
    }

    .strategic-card {
        padding: 20px;
    }

    .spotlight-icon {
        width: 60px;
        height: 60px;
    }

    .card-icon {
        width: 50px;
        height: 50px;
    }

    .step-icon {
        width: 50px;
        height: 50px;
    }
}

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

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

.wow {
    visibility: hidden;
}

.wow.animated {
    visibility: visible;
}

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

    .spotlight-content h4 {
        font-size: 20px;
    }

    .spotlight-content p {
        font-size: 15px;
    }

    .card-content h4 {
        font-size: 18px;
    }

    .card-content p {
        font-size: 14px;
    }

    .step-content h4 {
        font-size: 16px;
    }

    .step-content p {
        font-size: 13px;
    }

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