/* company_profile.css */

.profile-main {
    /* removed padding-top to eliminate gap below navigation */
}

/* Hero Section */
.profile-hero {
    position: relative;
    width: 100%;
    height: 716px;
    display: flex;
    align-items: flex-end;
    padding-left: var(--margin-page, 5vw);
    padding-right: var(--margin-page, 5vw);
    padding-bottom: 4rem;
    background-color: transparent;
    /* Removed blue overlay */
    overflow: hidden;
    margin-bottom: 5px;
    /* Whitespace separator between banners */
}

.profile-hero-bg {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top right;
    opacity: 1;
}

.profile-hero-content {
    position: relative;
    z-index: 10;
    max-width: 56rem;
    /* max-w-4xl */
}

.profile-hero-kicker {
    font-family: 'JetBrains Mono', monospace;
    font-size: 13px;
    font-weight: 500;
    text-transform: uppercase;
    color: var(--secondary);
    letter-spacing: 0.1em;
    margin-bottom: 1rem;
}

.profile-hero-title {
    font-family: 'Inter', sans-serif;
    font-size: clamp(32px, 5vw, 56px);
    font-weight: 800;
    line-height: 1.2;
    color: var(--on-primary);
    margin-bottom: 2rem;
    letter-spacing: -0.02em;
}

.profile-hero-desc {
    font-family: 'Inter', sans-serif;
    font-size: clamp(16px, 2vw, 24px);
    font-weight: 400;
    line-height: 1.5;
    color: var(--on-primary);
    max-width: 75%;
    /* 3/4 page width */
}

/* --- New Profile Banner Layout --- */

.profile-banner {
    position: relative;
    width: 100%;
    margin-bottom: 5px;
    /* Whitespace separator between banners */
    background-size: cover;
    background-position: top right;
    background-repeat: no-repeat;
    display: flex;
    align-items: stretch;
    min-height: 450px;
}

/* Background Assignments */
.profile-banner-mission {
    background-image: url('../assets/images/about_us/mission_background.jpg');
}

.profile-banner-vision {
    background-image: url('../assets/images/about_us/vision_background.jpg');
}

.profile-banner-values {
    background-image: url('../assets/images/about_us/values_background.jpg');
}

.profile-banner-positioning {
    background-image: url('../assets/images/about_us/positionning_market_focus_background.jpg');
}

/* Banner Grid */
.banner-grid {
    width: 100%;
    max-width: 1536px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

@media (max-width: 1024px) {
    .banner-grid {
        grid-template-columns: 1fr;
    }

    .banner-empty {
        display: none;
    }
}

/* Banner Content Formatting */
.banner-content {
    padding: 4rem var(--margin-page, 5vw);
    display: flex;
    flex-direction: column;
    justify-content: center;
    /* Vertically center content */
}

.banner-content-left {
    align-items: flex-start;
    text-align: left;
}

.banner-content-right {
    align-items: flex-start;
    /* Actually left-aligned text within the right column based on mockup */
    text-align: left;
}

.banner-content-center {
    align-items: center;
    text-align: center;
}

.banner-content-center .banner-icon {
    margin-bottom: 1.5rem;
}

/* Icons, Title, Description */
.banner-side-by-side {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.banner-side-by-side .banner-icon {
    flex-shrink: 0;
}

.banner-icon {
    width: auto;
    height: clamp(80px, 12vw, 160px);
    object-fit: contain;
    filter: brightness(0) invert(1);
    /* Ensure icons are white */
}

.banner-title {
    font-family: 'Inter', sans-serif;
    font-size: clamp(28px, 4vw, 48px);
    font-weight: 800;
    color: #ffffff;
    margin: 0 0 0.5rem 0;
}

.banner-desc {
    font-family: 'Inter', sans-serif;
    font-size: clamp(16px, 1.8vw, 22px);
    font-weight: 400;
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.9);
    margin: 0;
}

.banner-list {
    list-style-type: none;
    /* No bullets, or we can use standard bullets. Mockup has dots. */
    padding-left: 0;
    margin: 0;
}

.banner-list li {
    font-family: 'Inter', sans-serif;
    font-size: clamp(16px, 1.8vw, 22px);
    font-weight: 400;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 0.5rem;
    position: relative;
    padding-left: 1.5rem;
}

.banner-list li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: #ffffff;
}

/* Responsive adjustments */
@media (max-width: 1024px) {
    .profile-hero {
        padding-bottom: 2rem;
    }

    .profile-hero-desc {
        max-width: 100%;
    }

    .banner-content {
        padding: 3rem var(--margin-page, 5vw);
        align-items: center !important;
        /* Center everything on mobile/tablet */
        text-align: center !important;
    }

    .banner-side-by-side {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 1.5rem;
    }
}
