/* WHAT WE DO SECTION */
.what-section {
    width: 100%;
    background: #ffffff;
}

/* BLUE STRIP */
.what-top {
    width: 100%;
    min-height: 340px;
    background: linear-gradient(160deg, #12285f 0%, #0c1c44 46%, #081228 100%);
    padding: 55px 45px;
    border-top: 1px solid rgba(255, 255, 255, 0.09);
    position: relative;
    z-index: 3;
    overflow: visible;
}

.what-container {
    max-width: 1400px;
    height: 100%;
    margin: 0 auto;
    position: relative;
}

/* LEFT TEXT */
.what-left {
    width: 44%;
    max-width: 610px;
    color: #ffffff;
}

.what-label {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    margin-bottom: 28px;
    padding: 9px 24px;

    background: #b4070b;
    color: #ffffff;

    border-radius: 0;
    font-size: 13px;
    font-weight: 700;
}

.what-left h2 {
    color: #ffffff;
    font-size: 31px;
    line-height: 1.28;
    font-weight: 500;
    letter-spacing: -0.2px;
}

/* RED DROPDOWN BOX */
.what-dropdown-box {
    position: absolute;
    top: 72px;
    right: 0;
    z-index: 10;

    width: 51%;
    max-width: 760px;
    min-width: 560px;

    background: #b4070b;
    color: #ffffff;

    box-shadow: 0 24px 55px rgba(0, 0, 0, 0.28);
}

/* DROPDOWN ITEMS */
.what-dropdown-item {
    border-bottom: 1px solid rgba(255, 255, 255, 0.22);
}

.what-dropdown-item:last-child {
    border-bottom: none;
}

/* DROPDOWN HEADER */
.what-dropdown-header {
    width: 100%;
    min-height: 105px;
    padding: 0 42px;

    background: transparent;
    border: none;
    color: #ffffff;

    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;

    cursor: pointer;
    text-align: left;
    font-family: inherit;
}

.what-dropdown-header span {
    color: #ffffff;
    font-size: 25px;
    line-height: 1.15;
    font-weight: 400;
}

.what-dropdown-header i {
    color: #ffffff;
    font-size: 20px;
    transition: transform 0.3s ease;
}

.what-dropdown-item.active .what-dropdown-header i {
    transform: rotate(180deg);
}

/* SLIDING CONTENT */
.what-dropdown-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.45s ease;
}

/* Open the statement when its item is active (works with the class-toggle JS) */
.what-dropdown-item.active .what-dropdown-content {
    max-height: 400px;
}

.what-dropdown-inner {
    padding: 0 38px 34px;
}

.what-dropdown-inner p {
    max-width: 640px;

    color: #ffffff;
    font-size: 18px;
    line-height: 1.45;
    font-weight: 400;
}

/* IMAGE BELOW */
.what-image-wrap {
    width: 100%;
    height: 610px;

    position: relative;
    z-index: 1;

    overflow: hidden;
    background: #0c1c44;
}

.what-image-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* CTA STRIP OVER IMAGE */
.what-image-cta {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 3;

    min-height: 150px;
    padding: 0 90px;

    background: rgba(0, 0, 0, 0.42);
    backdrop-filter: blur(2px);

    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
}

.what-image-cta h3 {
    color: #ffffff;
    font-size: 24px;
    line-height: 1.2;
    font-weight: 400;
}

/* CTA BUTTON AREA */
.what-image-actions {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
}

/* CTA BUTTONS */
.what-image-btn {
    min-width: 145px;
    height: 50px;
    padding: 0 24px;

    text-decoration: none;
    border-radius: 60px;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    font-size: 14px;
    font-weight: 700;

    transition: 0.25s ease;
}

.what-image-btn-primary {
    background: #b4070b;
    color: #ffffff;
    border: 2px solid #b4070b;
}

.what-image-btn-primary:hover {
    background: #d61f26;
    border-color: #d61f26;
    transform: translateY(-2px);
}

.what-image-btn-secondary {
    background: rgba(255, 255, 255, 0.12);
    color: #ffffff;
    border: 2px solid rgba(255, 255, 255, 0.75);
}

.what-image-btn-secondary:hover {
    background: #ffffff;
    color: #0c1c44;
    border-color: #ffffff;
    transform: translateY(-2px);
}

/* MOBILE CTA STRIP */
@media (max-width: 700px) {
    .what-image-cta {
        min-height: 170px;
        padding: 28px 22px;

        flex-direction: column;
        align-items: flex-start;
        justify-content: center;
    }

    .what-image-cta h3 {
        font-size: 24px;
    }

    .what-image-actions {
        gap: 10px;
    }

    .what-image-btn {
        min-width: 130px;
        height: 48px;
        font-size: 14px;
        padding: 0 22px;
    }
}

/* MEDIUM DESKTOP / ZOOM SAFETY */
@media (max-width: 1200px) {
    .what-top {
        min-height: auto;
        padding: 70px 35px 110px;
    }

    .what-container {
        display: block;
    }

    .what-left {
        width: 100%;
        max-width: 760px;
        margin-bottom: 45px;
    }

    .what-dropdown-box {
        position: relative;
        top: auto;
        right: auto;

        width: 100%;
        max-width: none;
        min-width: 0;

        transform: translateY(45px);
    }

    .what-image-wrap {
        margin-top: -45px;
    }
}

/* TABLET */
@media (max-width: 1000px) {
    .what-top {
        padding: 65px 28px 95px;
    }

    .what-left h2 {
        font-size: 29px;
    }

    .what-image-wrap {
        height: 500px;
    }
}

/* MOBILE */
@media (max-width: 650px) {
    .what-top {
        padding: 55px 18px 85px;
    }

    .what-left h2 {
        font-size: 24px;
        line-height: 1.32;
    }

    .what-dropdown-box {
        transform: translateY(35px);
    }

    .what-dropdown-header {
        min-height: 76px;
        padding: 0 24px;
    }

    .what-dropdown-header span {
        font-size: 21px;
    }

    .what-dropdown-inner {
        padding: 0 24px 30px;
    }

    .what-dropdown-inner p {
        font-size: 16px;
    }

    .what-image-wrap {
        height: 380px;
        margin-top: -35px;
    }
}
/* Remove the focus box that appears on click (the reference has none).
   Keep a subtle outline for keyboard users only (:focus-visible). */
.what-dropdown-header:focus { outline: none; }
.what-dropdown-header:focus-visible {
    outline: 2px solid rgba(255, 255, 255, 0.55);
    outline-offset: -3px;
}