/* Information Services Page Styles */

/* Hero Section */
.information-hero-wrapper {
    position: relative;
    width: 100%;
    height: 530px; /* Matching height from Frame 7 */
    overflow: hidden;
}

/* Banner Image */
.information-banner-container {
    width: 100%;
    height: 100%;
    position: relative;
    z-index: 0;
}

.information-banner-img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    object-position: center;
}

/* Overlay & Content — centered like dx-hero / other service pages */
.information-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7); /* #000000b2 from Figma (approx 70%) */
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 60px 6%;
}

.information-hero-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: 1440px;
    margin: 0 auto;
    text-align: center;
    width: 100%;
    color: #ffffff;
    gap: 28px; /* row-gap from Figma */
}

.information-title {
    font-family: 'Inter', sans-serif;
    font-size: 46px;
    font-weight: 600;
    color: #ffffff;
    line-height: 58px;
    letter-spacing: 0;
    text-align: center;
}

.information-desc {
    font-family: 'Inter', sans-serif;
    font-size: 18px;
    color: rgba(255, 255, 255, 0.9); /* #ffffffe5 */
    line-height: 24px;
    letter-spacing: -0.31px;
    text-align: center;
    max-width: 843px; /* From Figma */
}

.information-buttons {
    display: flex;
    justify-content: center;
    width: 100%;
}

.information-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    border: 1px solid #ffffff;
    border-radius: 6px;
    padding: 0 31px;
    height: 48px;
    background-color: transparent;
    color: #ffffff;
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.3s ease;
    line-height: 20px;
    letter-spacing: -0.15px;
}

.information-btn:hover {
    background: rgba(255, 255, 255, 0.12);
    border-color: #fff;
    color: #fff;
    transform: translateY(-1px);
}

.information-btn-icon {
    width: 16px;
    height: 16px;
    transition: filter 0.3s ease;
}

.information-btn:hover .information-btn-icon {
    filter: none;
}

/* Intelligent Information Ecosystems Section */
.intelligent-ecosystems-section {
    background-color: #ffffff;
    padding: 80px 0;
}

.ecosystems-header {
    text-align: center;
    margin-bottom: 64px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
}

.ecosystems-overline {
    font-size: 15px;
    font-weight: 400;
    color: #4a5565;
    text-transform: uppercase;
    letter-spacing: 0.6px;
    margin: 0;
}

.ecosystems-title {
    font-size: 50px;
    font-weight: 500;
    color: #0a0a0a;
    line-height: 1;
    letter-spacing: 0.38px;
    margin: 0;
}

.ecosystems-desc {
    font-size: 20px;
    color: #4a5565;
    line-height: 1.6;
    letter-spacing: -0.48px;
    max-width: 1000px;
    text-align: center;
    margin: 0;
}

.ecosystems-features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 17px; /* Matches margin-top in Figma */
    max-width: 1100px; /* Constrain width to match layout */
    margin: 0 auto 64px;
}

.feature-card {
    display: flex;
    align-items: center;
    background-color: #f9fafb;
    border: 1px solid #f3f4f6;
    border-radius: 11px;
    padding: 17px 24px;
    gap: 16px;
}

.feature-icon {
    width: 26px;
    height: 26px;
    flex-shrink: 0;
    background-color: #e85c29;
    border-radius: 50%;
    padding: 5px; /* Adjust padding to center check mark if icon includes bg */
    box-sizing: content-box; /* Or adjust sizing based on SVG */
}

/* If the SVG already includes the orange circle, remove background-color above */
.feature-icon {
    background-color: transparent; 
    padding: 0;
    width: 26px;
    height: 26px;
}

.feature-text {
    font-size: 17px;
    color: #1e2939;
    font-weight: 400;
    letter-spacing: -0.34px;
}

.ecosystems-cta {
    text-align: center;
}

.ecosystems-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-color: #e85c29;
    color: #ffffff;
    padding: 13px 36px;
    border-radius: 9px;
    font-size: 17px;
    font-weight: 500;
    text-decoration: none;
    transition: background-color 0.3s ease;
    letter-spacing: -0.34px;
}

.ecosystems-btn:hover {
    background-color: #d64d1f;
}

/* Responsive */
@media (max-width: 1024px) {
    .information-hero-overlay {
        padding: 60px 40px 100px;
        justify-content: center;
    }
    
    .ecosystems-features-grid {
        grid-template-columns: 1fr;
        max-width: 600px;
    }
}

@media (max-width: 768px) {
    .information-hero-wrapper {
        height: auto;
        min-height: 450px;
    }
    
    .information-hero-overlay {
        padding: 60px 20px 90px;
    }

    .information-title {
        font-size: 32px;
        line-height: 1.3;
    }

    .information-desc {
        font-size: 16px;
        max-width: 100%;
    }
    
    .information-btn {
        width: 100%;
        max-width: 300px;
    }

    .ecosystems-title {
        font-size: 32px;
    }

    .ecosystems-desc {
        font-size: 16px;
    }
}