/* =========================================================
   HISTORY SECTION
   ========================================================= */

.history-section {
    width: 100%;
    padding: 85px 0 100px;
    background: #ffffff;
}


/* =========================================================
   HISTORY SECTION TITLE
   ========================================================= */

.history-title {
    text-align: center;
    margin-bottom: 68px;
}

.history-title h2 {
    margin: 0;
    color: #19375a;
    font-size: 36px;
    font-weight: 700;
    line-height: 1.2;
}


/* TITLE LINE */

.history-title .title-line {
    position: relative;
    width: 175px;
    height: 2px;
    margin: 20px auto 22px;
    background: #dfe3e8;
}

.history-title .title-line span {
    position: absolute;
    top: 0;
    left: 50%;
    width: 65px;
    height: 3px;
    background: #cf3b52;
    transform: translateX(-50%);
}

.history-title p {
    max-width: 700px;
    margin: 0 auto;
    color: #617083;
    font-size: 16px;
    line-height: 1.7;
}


/* =========================================================
   HISTORY GRID
   ========================================================= */

.history-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.08fr) minmax(0, 0.92fr);
    align-items: center;
    gap: 52px;
}


/* =========================================================
   HISTORY IMAGE
   ========================================================= */

.history-image {
    position: relative;
    width: 100%;
    min-height: 535px;
}

.history-image img {
    display: block;
    width: 100%;
    height: 535px;
    object-fit: cover;
    border-radius: 9px;
    box-shadow: 0 18px 45px rgba(25, 55, 90, 0.10);
}


/* =========================================================
   HISTORY YEARS BADGE
   ========================================================= */

.history-years-badge {
    position: absolute;
    right: 32px;
    bottom: -20px;

    width: 194px;
    min-height: 114px;

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;

    padding: 16px 20px;

    background: #cf3b52;
    color: #ffffff;

    border-radius: 12px;

    box-shadow: 0 20px 35px rgba(207, 59, 82, 0.25);

    z-index: 2;
}

.history-years-badge strong {
    display: block;
    margin: 0 0 2px;

    font-size: 43px;
    font-weight: 800;
    line-height: 1;
}

.history-years-badge span {
    display: block;

    font-size: 14px;
    font-weight: 600;
    line-height: 1.4;

    text-align: center;
}


/* =========================================================
   HISTORY CONTENT
   ========================================================= */

.history-content {
    padding-right: 5px;
}

.history-kicker {
    display: inline-block;

    margin-bottom: 20px;

    color: #cf3b52;

    font-size: 15px;
    font-weight: 800;
    letter-spacing: 2px;
    line-height: 1.2;
}

.history-content h2 {
    max-width: 550px;

    margin: 0 0 25px;

    color: #19375a;

    font-size: 38px;
    font-weight: 700;
    line-height: 1.3;
}

.history-content p {
    margin: 0 0 22px;

    color: #617083;

    font-size: 16px;
    line-height: 1.85;
}

.history-content p:last-child {
    margin-bottom: 0;
}


/* =========================================================
   HISTORY RESPONSIVE
   ========================================================= */

@media (max-width: 991px) {

    .history-section {
        padding: 70px 0 85px;
    }

    .history-title {
        margin-bottom: 55px;
    }

    .history-grid {
        grid-template-columns: 1fr;
        gap: 60px;
    }

    .history-image {
        min-height: auto;
    }

    .history-image img {
        height: 480px;
    }

    .history-content {
        padding-right: 0;
    }

    .history-content h2 {
        font-size: 34px;
    }

}


@media (max-width: 767px) {

    .history-section {
        padding: 60px 0 75px;
    }

    .history-title {
        margin-bottom: 45px;
    }

    .history-title h2 {
        font-size: 30px;
    }

    .history-title p {
        font-size: 15px;
        padding: 0 10px;
    }

    .history-grid {
        gap: 55px;
    }

    .history-image img {
        height: 360px;
        border-radius: 8px;
    }

    .history-years-badge {
        right: 18px;
        bottom: -18px;

        width: 165px;
        min-height: 100px;
    }

    .history-years-badge strong {
        font-size: 36px;
    }

    .history-years-badge span {
        font-size: 12px;
    }

    .history-kicker {
        font-size: 13px;
        letter-spacing: 1.7px;
    }

    .history-content h2 {
        font-size: 30px;
        line-height: 1.3;
    }

    .history-content p {
        font-size: 15px;
        line-height: 1.8;
    }

}


@media (max-width: 480px) {

    .history-image img {
        height: 300px;
    }

    .history-years-badge {
        right: 12px;
        bottom: -16px;

        width: 145px;
        min-height: 90px;
        padding: 12px;
    }

    .history-years-badge strong {
        font-size: 32px;
    }

    .history-years-badge span {
        font-size: 11px;
    }

}

/* =========================================================
   AAWE MILESTONES - REFINED DESIGN
   ========================================================= */

.aawe-history-values {
    width: 100%;
    padding: 70px 0 80px;
    background: #ffffff;
}


/* =========================================================
   MILESTONES GRID
   ========================================================= */

.aawe-milestones-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;

    position: relative;

    margin-bottom: 75px;
}


/* =========================================================
   MILESTONE CARD
   ========================================================= */

.aawe-milestone-card {
    position: relative;

    display: flex;
    flex-direction: column;

    min-height: 365px;

    padding: 32px 30px 30px;

    background: #ffffff;

    border: 1px solid #edf0f4;
    border-top: 4px solid #cf3b52;

    border-radius: 0 0 16px 16px;

    box-shadow:
        0 8px 25px rgba(25, 55, 90, 0.06);

    overflow: hidden;

    transition:
        transform 0.35s ease,
        box-shadow 0.35s ease,
        border-color 0.35s ease;
}


/* Decorative background number */

.aawe-milestone-card::after {
    content: attr(data-year);

    position: absolute;

    right: -8px;
    bottom: -28px;

    font-size: 100px;
    line-height: 1;

    font-weight: 800;

    color: rgba(207, 59, 82, 0.035);

    pointer-events: none;
}


/* Hover */

.aawe-milestone-card:hover {
    transform: translateY(-7px);

    box-shadow:
        0 18px 38px rgba(25, 55, 90, 0.10);
}


/* =========================================================
   YEAR
   ========================================================= */

.aawe-milestone-year {
    position: relative;
    z-index: 2;

    display: inline-flex;
    align-items: center;

    width: fit-content;

    margin-bottom: 20px;

    color: #cf3b52;

    font-size: 38px;
    line-height: 1;

    font-weight: 800;

    letter-spacing: -1px;
}


/* Small line underneath year */

.aawe-milestone-year::after {
    content: "";

    width: 28px;
    height: 3px;

    margin-left: 12px;

    background: #cf3b52;

    border-radius: 5px;
}


/* =========================================================
   TITLE
   ========================================================= */

.aawe-milestone-card h3 {
    position: relative;
    z-index: 2;

    margin: 0 0 16px;

    color: #19375a;

    font-size: 20px;
    line-height: 1.35;

    font-weight: 700;

    letter-spacing: -0.2px;
}


/* =========================================================
   DESCRIPTION
   ========================================================= */

.aawe-milestone-card p {
    position: relative;
    z-index: 2;

    margin: 0;

    color: #69788c;

    font-size: 15px;
    line-height: 1.75;
}


/* =========================================================
   OPTIONAL MILESTONE LABEL
   ========================================================= */

.aawe-milestone-card .milestone-label {
    position: relative;
    z-index: 2;

    display: inline-block;

    margin-top: auto;
    padding-top: 25px;

    color: #cf3b52;

    font-size: 11px;
    font-weight: 700;

    text-transform: uppercase;
    letter-spacing: 1.2px;
}


/* =========================================================
   MISSION / VISION
   ========================================================= */

.aawe-values-grid {
    display: grid;

    grid-template-columns: repeat(2, 1fr);

    gap: 28px;
}


.aawe-value-card {
    display: flex;
    align-items: flex-start;

    min-height: 200px;

    padding: 36px 34px;

    background: #ffffff;

    border: 1px solid #edf0f4;
    border-left: 4px solid #cf3b52;

    border-radius: 0 15px 15px 0;

    box-shadow:
        0 8px 25px rgba(25, 55, 90, 0.06);

    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease;
}


.aawe-value-card:hover {
    transform: translateY(-5px);

    box-shadow:
        0 15px 32px rgba(25, 55, 90, 0.10);
}


/* =========================================================
   VALUE ICON
   ========================================================= */

.aawe-value-icon {
    flex: 0 0 66px;

    width: 66px;
    height: 66px;

    margin-right: 22px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background: #fbeaec;

    color: #cf3b52;

    font-size: 26px;
}


.aawe-value-content {
    flex: 1;
}


.aawe-value-content h3 {
    margin: 0 0 12px;

    color: #19375a;

    font-size: 22px;
    line-height: 1.3;

    font-weight: 700;
}


.aawe-value-content p {
    margin: 0;

    color: #617083;

    font-size: 15px;
    line-height: 1.7;
}


/* =========================================================
   TABLET
   ========================================================= */

@media (max-width: 991px) {

    .aawe-milestones-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .aawe-values-grid {
        grid-template-columns: 1fr;
    }

}


/* =========================================================
   MOBILE
   ========================================================= */

@media (max-width: 767px) {

    .aawe-history-values {
        padding: 55px 0 65px;
    }

    .aawe-milestones-grid {
        grid-template-columns: 1fr;

        gap: 20px;

        margin-bottom: 55px;
    }

    .aawe-milestone-card {
        min-height: auto;

        padding: 30px 25px;
    }

    .aawe-milestone-year {
        font-size: 32px;
    }

    .aawe-milestone-card h3 {
        font-size: 19px;
    }

    .aawe-values-grid {
        grid-template-columns: 1fr;

        gap: 20px;
    }

    .aawe-value-card {
        min-height: auto;

        padding: 30px 25px;
    }

}


@media (max-width: 480px) {

    .aawe-value-card {
        display: block;
    }

    .aawe-value-icon {
        margin: 0 0 18px;
    }

}