/* =========================================
   ABOUT SECTION
========================================= */

.about-section {
    position: relative;
    padding: 100px 0 28px;
    overflow: hidden;
    background: #e9f4f3;
}

.about-container {
    max-width: 1132px;
}

/* Heading */

.about-heading {
    max-width: 990px;
}

.section-label {
    display: flex;
    align-items: center;
    gap: 9px;
    margin-bottom: 17px;
    color: #b17a0d;
    font-family: "DM Sans", sans-serif;
    font-size: 11px;
    font-weight: 700;
    line-height: 1;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.section-label span {
    width: 22px;
    height: 1px;
    flex: 0 0 auto;
    background: #c89025;
}

.about-heading h2 {
    max-width: 1010px;
    margin: 0 0 19px;
    color: #003e50;
    font-family: "Cormorant Garamond", Georgia, serif;
    font-size: 39px;
    font-weight: 700;
    line-height: 1.03;
    letter-spacing: -0.8px;
}

.about-heading > p {
    max-width: 660px;
    margin: 0;
    color: #355a60;
    font-family: "DM Sans", sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.75;
}

/* Main row */

.about-main-row {
    --bs-gutter-x: 58px;
    margin-top: 57px;
}

.about-content {
    max-width: 590px;
    padding-bottom: 24px;
}

.about-content h3 {
    margin: 0 0 11px;
    color: #003e50;
    font-family: "Cormorant Garamond", Georgia, serif;
    font-size: 24px;
    font-weight: 700;
    line-height: 1.2;
}

.about-content p {
    margin: 0 0 18px;
    color: #355a60;
    font-family: "DM Sans", sans-serif;
    font-size: 15px;
    font-weight: 400;
    line-height: 1.7;
}

/* Statistics */

.about-stats {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 34px;
    margin-top: 34px;
}

.about-stat strong {
    display: block;
    margin-bottom: 5px;
    color: #003e50;
    /* font-family: "Cormorant Garamond", Georgia, serif; */
    font-size: 36px;
    font-weight: 700;
    line-height: 1;
}

.about-stat span {
    display: block;
    color: #3a6267;
    font-family: "DM Sans", sans-serif;
    font-size: 12px;
    font-weight: 400;
    line-height: 1.65;
}

/* Right visual */

.about-visual {
    position: relative;
    width: 100%;
    max-width: 485px;
    height: 480px;
    margin-left: auto;
    overflow: hidden;
    border-radius: 14px;
    background: rgba(237, 247, 246, 0.72);
    box-shadow:
        0 10px 26px rgba(15, 71, 75, 0.04),
        inset 0 0 0 1px rgba(255, 255, 255, 0.22);
}

.visual-dot {
    position: absolute;
    z-index: 2;
    display: block;
    border-radius: 50%;
}

.visual-dot-top {
    top: 165px;
    left: 50%;
    width: 23px;
    height: 23px;
    background: #d9a53e;
    transform: translateX(-50%);
}

.visual-dot-left,
.visual-dot-right {
    bottom: 151px;
    width: 23px;
    height: 23px;
    background: #086eb9;
}

.visual-dot-left {
    left: 132px;
}

.visual-dot-right {
    right: 132px;
}

.visual-curve {
    position: absolute;
    left: 50%;
    bottom: 154px;
    width: 225px;
    height: 118px;
    color: #00b7b2;
    transform: translateX(-50%);
}

/* Bottom Cards */

.about-card-row {
    margin-top: 37px;
}

.about-card {
    height: 100%;
    min-height: 182px;
    padding: 26px 27px 25px;
    border: 1px solid #ffffff;
    border-radius: 13px;
    background: rgba(255, 255, 255, 0.92);
    transition:
        transform 0.3s ease,
        border-color 0.3s ease,
        box-shadow 0.3s ease;
}

.about-card h3 {
    margin: 0 0 10px;
    color: #003e50;
    font-family: "Cormorant Garamond", Georgia, serif;
    font-size: 19px;
    font-weight: 700;
    line-height: 1.2;
}

.about-card p {
    margin: 0;
    color: #355a60;
    font-family: "DM Sans", sans-serif;
    font-size: 14px;
    font-weight: 400;
    line-height: 1.65;
}

.about-card:hover {
    border-color: rgba(0, 157, 155, 0.32);
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(20, 83, 87, 0.08);
}

/* =========================================
   RESPONSIVE
========================================= */

@media (max-width: 1199.98px) {
    .about-container {
        max-width: 960px;
    }

    .about-heading h2 {
        font-size: 37px;
    }

    .about-main-row {
        --bs-gutter-x: 42px;
    }

    .about-visual {
        height: 450px;
    }

    .visual-dot-left {
        left: 115px;
    }

    .visual-dot-right {
        right: 115px;
    }
}

@media (max-width: 991.98px) {
    .about-section {
        padding: 65px 0 40px;
    }

    .about-container {
        max-width: 720px;
    }

    .about-heading {
        max-width: 680px;
    }

    .about-heading h2 {
        font-size: 39px;
    }

    .about-main-row {
        --bs-gutter-y: 38px;
        margin-top: 45px;
    }

    .about-content {
        max-width: 100%;
        padding-bottom: 0;
    }

    .about-visual {
        max-width: 560px;
        height: 440px;
        margin: 0 auto;
    }

    .visual-dot-left {
        left: calc(50% - 112px);
    }

    .visual-dot-right {
        right: calc(50% - 112px);
    }

    .about-card-row {
        margin-top: 32px;
    }

    .about-card {
        min-height: 170px;
    }
}

@media (max-width: 767.98px) {
    .about-section {
        padding-top: 55px;
    }

    .about-heading h2 {
        font-size: 35px;
    }

    .about-heading > p {
        font-size: 15px;
    }

    .about-stats {
        gap: 20px;
    }

    .about-stat strong {
        font-size: 32px;
    }

    .about-card {
        min-height: auto;
    }
}

@media (max-width: 575.98px) {
    .about-section {
        padding: 46px 0 30px;
    }

    .about-container {
        width: 100%;
        padding-left: 18px;
        padding-right: 18px;
    }

    .section-label {
        margin-bottom: 14px;
        font-size: 10px;
        letter-spacing: 1.6px;
    }

    .about-heading h2 {
        margin-bottom: 16px;
        font-size: 33px;
        line-height: 1.03;
    }

    .about-heading > p {
        font-size: 14px;
        line-height: 1.7;
    }

    .about-main-row {
        margin-top: 39px;
    }

    .about-content h3 {
        font-size: 23px;
    }

    .about-content p {
        font-size: 14px;
        line-height: 1.72;
    }

    .about-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px 18px;
        margin-top: 28px;
    }

    .about-stat:last-child {
        grid-column: 1 / -1;
    }

    .about-stat strong {
        font-size: 32px;
    }

    .about-visual {
        height: 355px;
        border-radius: 12px;
    }

    .visual-dot-top {
        top: 105px;
    }

    .visual-dot-left,
    .visual-dot-right {
        bottom: 95px;
    }

    .visual-dot-left {
        left: calc(50% - 95px);
    }

    .visual-dot-right {
        right: calc(50% - 95px);
    }

    .visual-curve {
        bottom: 98px;
        width: 193px;
        height: 103px;
    }

    .about-card-row {
        --bs-gutter-y: 15px;
        margin-top: 25px;
    }

    .about-card {
        padding: 23px 22px;
    }
}

/* =========================================
   VALUES SECTION
========================================= */

.values-section {
    padding: 46px 0 82px;
    background: #e9f4f3;
}

.values-container {
    max-width: 1132px;
}

/* Heading */

.values-heading {
    margin-bottom: 35px;
}

.values-label {
    display: flex;
    align-items: center;
    gap: 9px;
    margin-bottom: 17px;
    color: #b17a0d;
    font-family: "DM Sans", sans-serif;
    font-size: 11px;
    font-weight: 700;
    line-height: 1;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.values-label span {
    width: 22px;
    height: 1px;
    flex: 0 0 auto;
    background: #c89025;
}

.values-heading h2 {
    margin: 0;
    color: #003e50;
    font-family: "Cormorant Garamond", Georgia, serif;
    font-size: 27px;
    font-weight: 700;
    line-height: 1.2;
}

/* Grid */

.values-grid {
    --bs-gutter-x: 20px;
    --bs-gutter-y: 20px;
}

/* Card */

.value-card {
    height: 100%;
    min-height: 116px;
    padding: 22px 24px;
    border: 1px solid #d7e0df;
    border-radius: 9px;
    background: rgba(255, 255, 255, 0.94);
    transition:
        transform 0.28s ease,
        border-color 0.28s ease,
        box-shadow 0.28s ease;
}

.value-card h3 {
    margin: 0 0 6px;
    color: #003e50;
    font-family: "Cormorant Garamond", Georgia, serif;
    font-size: 17px;
    font-weight: 700;
    line-height: 1.25;
}

.value-card p {
    max-width: 315px;
    margin: 0;
    color: #355a60;
    font-family: "DM Sans", sans-serif;
    font-size: 14px;
    font-weight: 400;
    line-height: 1.55;
}

/* Hover */

.value-card:hover {
    transform: translateY(-4px);
    border-color: rgba(0, 156, 155, 0.32);
    box-shadow: 0 12px 26px rgba(20, 83, 87, 0.07);
}

/* =========================================
   RESPONSIVE
========================================= */

@media (max-width: 1199.98px) {
    .values-container {
        max-width: 960px;
    }

    .value-card {
        padding: 21px 22px;
    }
}

@media (max-width: 991.98px) {
    .values-section {
        padding: 38px 0 68px;
    }

    .values-container {
        max-width: 720px;
    }

    .values-heading {
        margin-bottom: 30px;
    }

    .value-card {
        min-height: 125px;
    }

    .value-card p {
        max-width: 100%;
    }
}

@media (max-width: 767.98px) {
    .values-grid {
        --bs-gutter-x: 16px;
        --bs-gutter-y: 16px;
    }

    .values-heading h2 {
        font-size: 26px;
    }

    .value-card {
        min-height: 115px;
    }
}

@media (max-width: 575.98px) {
    .values-section {
        padding: 32px 0 52px;
    }

    .values-container {
        width: 100%;
        padding-left: 18px;
        padding-right: 18px;
    }

    .values-heading {
        margin-bottom: 24px;
    }

    .values-label {
        margin-bottom: 13px;
        font-size: 10px;
        letter-spacing: 1.6px;
    }

    .values-heading h2 {
        font-size: 25px;
    }

    .values-grid {
        --bs-gutter-y: 13px;
    }

    .value-card {
        min-height: auto;
        padding: 21px 20px;
        border-radius: 9px;
    }

    .value-card h3 {
        font-size: 18px;
    }

    .value-card p {
        font-size: 13.5px;
        line-height: 1.6;
    }
}