/* ===== HYGIENE & SAFETY PROTOCOLS SECTION ===== */
.safety-section {
    width: 100%;
    padding: 6rem 2rem;
    background: transparent;
    min-height: auto;
    overflow: visible;
}

/* BLOCK 1 — Section Header */
.safety-header {
    text-align: center;
    margin-bottom: 4rem;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.safety-intro {
    position: relative;
}

.safety-main-title {
    font-size: clamp(2.5rem, 4vw, 3.5rem);
    font-weight: 700;
    color: var(--eco-green);
    margin: 0 0 1.5rem 0;
    letter-spacing: -0.5px;
    line-height: 1.2;
    text-align: center;
    position: relative;
}

.safety-main-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: linear-gradient(90deg, var(--eco-green) 0%, var(--eco-accent) 100%);
    border-radius: 2px;
}

.safety-subtitle {
    font-size: 1.3rem;
    color: var(--text-light);
    font-weight: 400;
    line-height: 1.6;
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

/* BLOCK 2 — Safety Content Grid */
.safety-content {
    max-width: 1200px;
    margin: 0 auto 3rem auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    padding: 0 2rem;
}

.safety-block {
    background: white;
    padding: 2.5rem 2rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    border-left: 4px solid var(--eco-green);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.safety-block::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--eco-green), var(--eco-accent));
}

.safety-block:nth-child(2) {
    border-left-color: var(--eco-blue);
}

.safety-block:nth-child(2)::before {
    background: linear-gradient(90deg, var(--eco-blue), var(--eco-dark-green));
}

.safety-block:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
}

.safety-block-title {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--eco-green);
    margin: 0 0 1.5rem 0;
    line-height: 1.3;
}

.safety-block:nth-child(2) .safety-block-title {
    color: var(--eco-blue);
}

.safety-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.safety-list li {
    margin-bottom: 1.5rem;
    padding-left: 1.5rem;
    position: relative;
}

.safety-list li:last-child {
    margin-bottom: 0;
}

.safety-list li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--eco-green);
    font-size: 1.5rem;
    font-weight: bold;
    line-height: 1;
}

.safety-block:nth-child(2) .safety-list li::before {
    color: var(--eco-blue);
}

.safety-list li strong {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--text-dark);
    display: block;
    margin-bottom: 0.3rem;
}

.safety-list li p {
    font-size: 0.95rem;
    line-height: 1.6;
    color: var(--text-light);
    margin: 0;
}

/* Closing Highlight */
.safety-highlight {
    background: linear-gradient(135deg, rgba(5, 111, 55, 0.1) 0%, rgba(75, 161, 248, 0.1) 100%);
    padding: 1.5rem 2rem;
    border-radius: 15px;
    border-left: 4px solid var(--eco-accent);
    text-align: center;
    max-width: 1200px;
    margin: 0 auto;
}

.safety-highlight p {
    font-size: 1.15rem;
    line-height: 1.6;
    color: var(--text-dark);
    margin: 0;
    font-weight: 600;
    font-style: italic;
}

/* ===== TABLET RESPONSIVE (768px - 1023px) ===== */
@media (min-width: 768px) and (max-width: 1023px) {
    .safety-section {
        padding: 4rem 1.5rem;
    }

    .safety-content {
        gap: 2rem;
        padding: 0 1rem;
    }
}

/* ===== MOBILE RESPONSIVE (max-width: 767px) ===== */
@media (max-width: 767px) {
    .safety-section {
        padding: 3rem 1rem;
    }

    .safety-header {
        margin-bottom: 3rem;
    }

    .safety-main-title {
        font-size: clamp(1.8rem, 5vw, 2.5rem);
    }

    .safety-subtitle {
        font-size: 1.05rem;
        text-align: justify;
    }

    /* Single column layout on mobile */
    .safety-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 0 0.5rem;
        margin-bottom: 2rem;
    }

    .safety-block {
        padding: 2rem 1.5rem;
    }

    .safety-block-title {
        font-size: 1.15rem;
    }

    .safety-list li {
        margin-bottom: 1.2rem;
        padding-left: 1.2rem;
    }

    .safety-list li strong {
        font-size: 1rem;
    }

    .safety-list li p {
        font-size: 0.9rem;
    }

    .safety-highlight {
        padding: 1.2rem 1.5rem;
    }

    .safety-highlight p {
        font-size: 1rem;
    }
}

/* ===== EXTRA SMALL MOBILE (max-width: 480px) ===== */
@media (max-width: 480px) {
    .safety-section {
        padding: 2.5rem 0.75rem;
    }

    .safety-main-title::after {
        width: 80px;
    }

    .safety-content {
        padding: 0 0.25rem;
    }

    .safety-block {
        padding: 1.5rem 1.25rem;
    }
}
