/* style/industry-insights-asia-trends.css */

.page-industry-insights-asia-trends {
    font-family: 'Arial', sans-serif;
    color: #f5e6ce; /* Light text for dark background */
    background-color: #0A1931;
    line-height: 1.6;
}

.page-industry-insights-asia-trends__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.page-industry-insights-asia-trends__hero-section {
    background: linear-gradient(135deg, #0A1931 0%, #1A3052 100%);
    padding: 100px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-industry-insights-asia-trends__hero-title {
    font-size: 3.5em;
    color: #FFD700;
    margin-bottom: 20px;
    line-height: 1.2;
    font-weight: bold;
}

.page-industry-insights-asia-trends__hero-description {
    font-size: 1.2em;
    color: #d0d8e2;
    max-width: 800px;
    margin: 0 auto 40px auto;
}

.page-industry-insights-asia-trends__highlight {
    color: #FFD700;
    font-weight: bold;
}

.page-industry-insights-asia-trends__hero-cta-group {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.page-industry-insights-asia-trends__btn {
    display: inline-block;
    padding: 14px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.3s ease, transform 0.2s ease;
    white-space: nowrap;
}

.page-industry-insights-asia-trends__btn--primary {
    background-color: #FFD700;
    color: #0A1931;
    border: 2px solid #FFD700;
}

.page-industry-insights-asia-trends__btn--primary:hover {
    background-color: #e6c200;
    transform: translateY(-2px);
}

.page-industry-insights-asia-trends__btn--secondary {
    background-color: transparent;
    color: #FFD700;
    border: 2px solid #FFD700;
}

.page-industry-insights-asia-trends__btn--secondary:hover {
    background-color: #FFD700;
    color: #0A1931;
    transform: translateY(-2px);
}

.page-industry-insights-asia-trends__btn--small {
    padding: 10px 20px;
    font-size: 0.9em;
}

.page-industry-insights-asia-trends__btn--large {
    padding: 16px 35px;
    font-size: 1.1em;
}

.page-industry-insights-asia-trends__section {
    padding: 80px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.page-industry-insights-asia-trends__section:last-of-type {
    border-bottom: none;
}

.page-industry-insights-asia-trends__section-title {
    font-size: 2.8em;
    color: #FFD700;
    text-align: center;
    margin-bottom: 60px;
    font-weight: bold;
}

.page-industry-insights-asia-trends__subtitle {
    font-size: 1.8em;
    color: #FFD700;
    margin-top: 40px;
    margin-bottom: 20px;
    font-weight: bold;
}

.page-industry-insights-asia-trends__content-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.page-industry-insights-asia-trends__content-grid--reverse {
    grid-template-areas: "image text"; /* For reverse layout on desktop */
}

.page-industry-insights-asia-trends__content-grid--reverse .page-industry-insights-asia-trends__text-content {
    grid-area: text;
}

.page-industry-insights-asia-trends__content-grid--reverse .page-industry-insights-asia-trends__image-wrapper {
    grid-area: image;
}

.page-industry-insights-asia-trends__text-content p {
    font-size: 1.1em;
    margin-bottom: 20px;
    color: #d0d8e2;
}

.page-industry-insights-asia-trends__list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.page-industry-insights-asia-trends__list li {
    font-size: 1.1em;
    margin-bottom: 15px;
    position: relative;
    padding-left: 30px;
    color: #d0d8e2;
}

.page-industry-insights-asia-trends__list li strong {
    color: #FFD700;
}

.page-industry-insights-asia-trends__list li::before {
    content: '✅';
    position: absolute;
    left: 0;
    color: #FFD700;
}

.page-industry-insights-asia-trends__image-wrapper {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.page-industry-insights-asia-trends__image {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

.page-industry-insights-asia-trends__trend-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.page-industry-insights-asia-trends__card {
    background-color: #1A2B47;
    border-radius: 12px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.page-industry-insights-asia-trends__card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
}

.page-industry-insights-asia-trends__card-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 25px;
}

.page-industry-insights-asia-trends__card-title {
    font-size: 1.6em;
    color: #FFD700;
    margin-bottom: 15px;
    font-weight: bold;
}

.page-industry-insights-asia-trends__card-description {
    font-size: 1em;
    color: #d0d8e2;
    margin-bottom: 25px;
    flex-grow: 1;
}

.page-industry-insights-asia-trends__cta-final {
    background-color: #0A1931;
    text-align: center;
    padding: 100px 0;
}

.page-industry-insights-asia-trends__cta-content {
    max-width: 800px;
    margin: 0 auto;
}

.page-industry-insights-asia-trends__cta-title {
    font-size: 3em;
    color: #FFD700;
    margin-bottom: 20px;
    font-weight: bold;
}

.page-industry-insights-asia-trends__cta-description {
    font-size: 1.2em;
    color: #d0d8e2;
    margin-bottom: 40px;
}

/* Responsive Design */
@media (max-width: 992px) {
    .page-industry-insights-asia-trends__hero-title {
        font-size: 2.8em;
    }
    .page-industry-insights-asia-trends__section-title {
        font-size: 2.2em;
    }
    .page-industry-insights-asia-trends__content-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .page-industry-insights-asia-trends__content-grid--reverse {
        grid-template-areas: unset;
    }
    .page-industry-insights-asia-trends__content-grid--reverse .page-industry-insights-asia-trends__text-content,
    .page-industry-insights-asia-trends__content-grid--reverse .page-industry-insights-asia-trends__image-wrapper {
        grid-area: unset;
    }
    .page-industry-insights-asia-trends__card {
        padding: 25px;
    }
    .page-industry-insights-asia-trends__cta-title {
        font-size: 2.5em;
    }
}

@media (max-width: 768px) {
    .page-industry-insights-asia-trends__hero-title {
        font-size: 2.2em;
    }
    .page-industry-insights-asia-trends__hero-description {
        font-size: 1em;
    }
    .page-industry-insights-asia-trends__hero-cta-group {
        flex-direction: column;
        gap: 15px;
    }
    .page-industry-insights-asia-trends__btn {
        width: 100%;
        max-width: 300px;
        margin: 0 auto;
    }
    .page-industry-insights-asia-trends__section {
        padding: 60px 0;
    }
    .page-industry-insights-asia-trends__section-title {
        font-size: 1.8em;
        margin-bottom: 40px;
    }
    .page-industry-insights-asia-trends__subtitle {
        font-size: 1.5em;
    }
    .page-industry-insights-asia-trends__text-content p,
    .page-industry-insights-asia-trends__list li {
        font-size: 0.95em;
    }
    .page-industry-insights-asia-trends__card-title {
        font-size: 1.4em;
    }
    .page-industry-insights-asia-trends__card-description {
        font-size: 0.9em;
    }
    .page-industry-insights-asia-trends__cta-title {
        font-size: 2em;
    }
    .page-industry-insights-asia-trends__cta-description {
        font-size: 1em;
    }
}

@media (max-width: 480px) {
    .page-industry-insights-asia-trends__hero-section {
        padding: 80px 0 60px;
    }
    .page-industry-insights-asia-trends__hero-title {
        font-size: 1.8em;
    }
    .page-industry-insights-asia-trends__section-title {
        font-size: 1.6em;
    }
    .page-industry-insights-asia-trends__card {
        padding: 20px;
    }
}