/* ==================================================
   SAFETY PAGE — PRAGIA ONLINE
================================================== */


/* ===============================
   HERO
================================ */

.safety-hero {
    background-image: url("/website/images/pragia-hero.jpg");
}

.safety-hero::before {
    content: "";
    position: absolute;
    inset: 0;

    background: linear-gradient(
        135deg,
        rgba(12, 14, 33, 0.92) 0%,
        rgba(18, 16, 46, 0.88) 40%,
        rgba(24, 22, 66, 0.75) 65%,
        rgba(24, 22, 66, 0.55) 100%
    );
    z-index: 1;
}

.safety-hero .hero-inner {
    position: relative;
    z-index: 2;
}


/* ===============================
   SAFETY FEATURES
================================ */

.safety-features {
    padding: 90px 0;
    background: #f9f9ff;
}

.section-title {
    text-align: center;
    margin-bottom: 50px;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 28px;
}

.feature-card {
    background: #ffffff;
    padding: 34px;
    border-radius: 20px;
    text-align: center;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.feature-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 18px 40px rgba(0,0,0,0.08);
}

.feature-card i {
    font-size: 32px;
    color: #6239F7;
    margin-bottom: 14px;
}

.feature-card h4 {
    margin-bottom: 8px;
    font-size: 18px;
}

.feature-card p {
    font-size: 14.5px;
    color: #555;
}


/* ===============================
   SAFETY PROMISE
================================ */

.safety-promise {
    padding: 110px 0;
    background: radial-gradient(
        circle at top,
        #1a1433,
        #0b0f1e 70%
    );
    color: #ffffff;
}

.promise-inner {
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

.promise-inner h2 {
    font-size: 42px;
    margin-bottom: 12px;
}

.promise-inner h2 span {
    color: #6239F7;
}

.promise-inner p {
    max-width: 620px;
    margin: 0 auto 36px;
    opacity: 0.9;
}

.promise-actions {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}


/* ===============================
   RESPONSIVE
================================ */

@media (max-width: 900px) {

    .safety-features,
    .safety-promise {
        text-align: left;
    }

    .promise-actions {
        justify-content: flex-start;
    }
}

@media (max-width: 480px) {

    .promise-inner h2 {
        font-size: 32px;
    }

    .feature-card {
    background: #ffffff;
    padding: 34px;
    border-radius: 20px;

    text-align: left;              /* ✅ pushes content left */
}

.feature-card i {
    display: inline-flex;          /* ✅ allows alignment control */
    align-items: center;
    justify-content: center;

    font-size: 32px;
    color: #6239F7;
    margin-bottom: 14px;           /* spacing under icon */
}

}
