/* ================================
   SAFETY INTRO SECTION
================================ */

.safety-intro {
    position: relative;
    overflow: hidden;
    padding: 100px 0 120px;
    background:
        radial-gradient(
            circle at 85% 20%,
            rgba(16, 145, 112, 0.08),
            transparent 30%
        ),
        #ffffff;
}

.safety-container {
    width: min(1200px, 92%);
    margin: auto;

    display: grid;
    grid-template-columns: 1fr 0.95fr;
    align-items: center;
    gap: 70px;
}


/* ================================
   LEFT CONTENT
================================ */

.safety-content {
    position: relative;
    z-index: 5;
}

.section-label {
    display: inline-flex;
    align-items: center;
    gap: 10px;

    padding: 9px 17px;

    background: #e9f8f3;
    color: #087b60;

    border-radius: 50px;

    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.4px;

    margin-bottom: 20px;
}

.label-dot {
    width: 8px;
    height: 8px;

    border-radius: 50%;
    background: #0b8a6b;

    box-shadow: 0 0 0 5px rgba(11, 138, 107, 0.12);
}


.safety-content h1 {
    max-width: 650px;

    margin: 0 0 25px;

    font-family: "Poppins", sans-serif;

    font-size: clamp(38px, 4vw, 58px);
    line-height: 1.08;

    font-weight: 800;

    color: #17201d;

    letter-spacing: -1.8px;
}

.safety-content h1 span {
    color: #0c8769;
}


.intro-text {
    max-width: 650px;

    margin: 0 0 17px;

    font-family: "Poppins", sans-serif;

    font-size: 15.5px;
    line-height: 1.9;

    color: #5d6864;
}


/* ================================
   BUTTONS
================================ */

.intro-buttons {
    display: flex;
    align-items: center;
    gap: 14px;

    margin-top: 30px;
}

.primary-btn,
.secondary-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    gap: 9px;

    padding: 14px 23px;

    border-radius: 9px;

    text-decoration: none;

    font-family: "Poppins", sans-serif;
    font-size: 14px;
    font-weight: 700;

    transition: 0.3s ease;
}

.primary-btn {
    background: #0b8769;
    color: #ffffff;

    box-shadow: 0 10px 25px rgba(11, 135, 105, 0.22);
}

.primary-btn:hover {
    transform: translateY(-3px);
    background: #076b54;
}

.secondary-btn {
    border: 1px solid #dce5e1;
    color: #08745b;
    background: #ffffff;
}

.secondary-btn:hover {
    transform: translateY(-3px);
    border-color: #0b8769;
}


/* ================================
   FEATURE CARDS
================================ */

.feature-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);

    gap: 18px;

    margin-top: 42px;
}

.feature-card {
    display: flex;
    align-items: flex-start;
    gap: 15px;

    padding: 21px;

    border: 1px solid #edf0ef;
    border-radius: 18px;

    background: rgba(255, 255, 255, 0.9);

    box-shadow: 0 12px 35px rgba(30, 50, 45, 0.06);

    transition: 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);

    box-shadow: 0 18px 40px rgba(30, 50, 45, 0.10);
}

.feature-icon {
    flex-shrink: 0;

    width: 53px;
    height: 53px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 15px;

    background: #0d8568;
    color: #ffffff;

    font-size: 20px;
}

.feature-card h3 {
    margin: 2px 0 6px;

    font-family: "Poppins", sans-serif;

    font-size: 16px;
    line-height: 1.3;

    color: #222a27;
}

.feature-card p {
    margin: 0;

    font-family: "Poppins", sans-serif;

    font-size: 12.5px;
    line-height: 1.6;

    color: #727c78;
}


/* ================================
   RIGHT VISUAL
================================ */

.safety-visual {
    position: relative;

    min-height: 620px;

    display: flex;
    align-items: center;
    justify-content: center;
}


/* BACKGROUND SHAPES */

.visual-circle {
    position: absolute;

    border-radius: 50%;

    pointer-events: none;
}

.circle-one {
    width: 430px;
    height: 430px;

    right: -30px;
    top: 40px;

    background: rgba(11, 135, 105, 0.06);
}

.circle-two {
    width: 290px;
    height: 290px;

    left: 20px;
    bottom: 30px;

    border: 1px solid rgba(11, 135, 105, 0.12);
}


/* ================================
   IMAGE
================================ */

.image-wrapper {
    position: relative;

    width: min(480px, 90%);
    height: 570px;

    z-index: 2;

    overflow: hidden;

    border-radius: 80px 80px 80px 25px;

    box-shadow:
        0 30px 70px rgba(27, 55, 47, 0.17);
}

.image-wrapper::after {
    content: "";

    position: absolute;

    inset: 0;

    background:
        linear-gradient(
            180deg,
            rgba(0, 0, 0, 0.02),
            rgba(0, 0, 0, 0.12)
        );

    pointer-events: none;
}

.image-wrapper img {
    width: 100%;
    height: 100%;

    display: block;

    object-fit: cover;

    transition: transform 0.7s ease;
}

.image-wrapper:hover img {
    transform: scale(1.05);
}


/* ================================
   LOCATION BADGE
================================ */

.location-badge {
    position: absolute;

    top: 35px;
    right: -20px;

    z-index: 5;

    display: flex;
    align-items: center;
    gap: 11px;

    padding: 14px 23px;

    background: #0c886a;
    color: #ffffff;

    border-radius: 50px;

    font-family: "Poppins", sans-serif;

    font-size: 13px;
    font-weight: 700;

    box-shadow: 0 14px 35px rgba(12, 136, 106, 0.25);
}

.badge-icon {
    display: flex;
    align-items: center;
    justify-content: center;

    width: 29px;
    height: 29px;

    border-radius: 50%;

    background: rgba(255, 255, 255, 0.16);
}


/* ================================
   FLOATING STAT
================================ */

.floating-stat {
    position: absolute;

    left: -15px;
    bottom: 85px;

    z-index: 6;

    display: flex;
    align-items: center;
    gap: 16px;

    padding: 20px 28px;

    min-width: 270px;

    background: rgba(255, 255, 255, 0.96);

    border: 1px solid rgba(230, 235, 232, 0.8);

    border-radius: 22px;

    box-shadow: 0 20px 50px rgba(35, 55, 49, 0.15);

    backdrop-filter: blur(10px);
}

.stat-icon {
    width: 55px;
    height: 55px;

    flex-shrink: 0;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background: #e5f5ef;

    color: #0a8466;

    font-size: 22px;
}

.stat-content {
    display: flex;
    flex-direction: column;
}

.stat-content strong {
    font-family: "Poppins", sans-serif;

    font-size: 30px;
    line-height: 1;

    color: #087e61;
}

.stat-content span {
    margin-top: 5px;

    font-family: "Poppins", sans-serif;

    font-size: 11px;

    color: #737b78;
}


/* ================================
   TRUST CARD
================================ */

.trust-card {
    position: absolute;

    right: -5px;
    bottom: 25px;

    z-index: 5;

    display: flex;
    align-items: center;
    gap: 12px;

    padding: 14px 18px;

    background: #ffffff;

    border-radius: 15px;

    box-shadow: 0 15px 35px rgba(30, 50, 45, 0.12);
}

.trust-check {
    width: 35px;
    height: 35px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background: #e6f6f0;

    color: #0b8668;

    font-size: 13px;
}

.trust-card div:last-child {
    display: flex;
    flex-direction: column;
}

.trust-card strong {
    font-size: 12px;
    color: #27312d;
}

.trust-card span {
    margin-top: 3px;

    font-size: 10px;
    color: #7b8581;
}


/* ================================
   TABLET
================================ */

@media (max-width: 1000px) {

    .safety-container {
        grid-template-columns: 1fr;

        gap: 70px;
    }

    .safety-content {
        text-align: center;
    }

    .section-label {
        margin-left: auto;
        margin-right: auto;
    }

    .safety-content h1,
    .intro-text {
        margin-left: auto;
        margin-right: auto;
    }

    .intro-buttons {
        justify-content: center;
    }

    .feature-grid {
        max-width: 700px;
        margin-left: auto;
        margin-right: auto;
    }

    .safety-visual {
        min-height: 650px;
    }

}


/* ================================
   MOBILE
================================ */

@media (max-width: 600px) {

    .safety-intro {
        padding: 65px 0 90px;
    }

    .safety-container {
        width: 90%;
        gap: 45px;
    }

    .safety-content h1 {
        font-size: 34px;
        letter-spacing: -1px;
    }

    .intro-text {
        font-size: 14px;
        line-height: 1.8;
    }

    .intro-buttons {
        flex-direction: column;

        width: 100%;
    }

    .primary-btn,
    .secondary-btn {
        width: 100%;
    }

    .feature-grid {
        grid-template-columns: 1fr;

        margin-top: 30px;
    }

    .safety-visual {
        min-height: 560px;
    }

    .image-wrapper {
        width: 92%;
        height: 480px;

        border-radius: 55px 55px 55px 20px;
    }

    .location-badge {
        top: 20px;
        right: -5px;

        padding: 11px 15px;

        font-size: 10px;
    }

    .floating-stat {
        left: -5px;
        bottom: 70px;

        min-width: auto;

        padding: 14px 18px;
    }

    .stat-icon {
        width: 45px;
        height: 45px;

        font-size: 18px;
    }

    .stat-content strong {
        font-size: 24px;
    }

    .stat-content span {
        font-size: 9px;
    }

    .trust-card {
        right: 0;
        bottom: 20px;

        padding: 11px 14px;
    }

    .circle-one {
        width: 300px;
        height: 300px;
    }

    .circle-two {
        width: 200px;
        height: 200px;
    }

}


/* ================================
   SMALL MOBILE
================================ */

@media (max-width: 380px) {

    .safety-content h1 {
        font-size: 30px;
    }

    .image-wrapper {
        height: 420px;
    }

    .floating-stat {
        transform: scale(0.9);
        transform-origin: left bottom;
    }

}

/* HEADING */
.safety-content h1{
    font-family: "Cormorant Garamond", serif;
    font-size: clamp(48px, 6vw, 92px);
    line-height: 1;
    font-weight: 600;
    color: #1f1f1f;
    letter-spacing: -1px;
}

/* RED WORDS LIKE IMAGE */
.safety-content h1 span{
    color: #c71f1f;
}

/* PARAGRAPH */
.intro-text{
    color: #000000;
    font-size: 17px;
    line-height: 1.9;
}