/*
File: public/assets/css/sections/reasons.css
Description: Styling for the 4-column reasons/features section (Floating Card Design with Border Focus).
*/

/* ========================================================= */
/* 1. SECTION CONTAINER & BLUR BACKGROUND */
/* ========================================================= */

.reasons-section {
    /* Background Image/Blur setup */
    background-image: url("{{ asset('assets/images/backgrounds/disposal_bg.jpg') }}");
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    position: relative;
    padding-top: 5rem;
    padding-bottom: 5rem;
}

/* Background Blur Overlay (::before) */
.reasons-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;

    backdrop-filter: blur(5px);
    background-color: rgba(255, 255, 255, 0.7);
    z-index: 1;
}

/* 🚨 Text Visibility Fix: Z-index se cards aur text ko oopar laayein */
.container,
.reasons-main-heading,
.reasons-sub-heading,
.reason-card {
    z-index: 2;
    position: relative;
}

.reasons-main-heading {
    color: #212529;
    font-size: 1.5rem;
    max-width: 900px;
    margin: 0 auto;
}

/* ========================================================= */
/* 2. CARD STYLING (BORDER FOCUS) */
/* ========================================================= */

.reason-card {
    background-color: white;
    box-shadow: none;
    border-color: #dee2e6 !important; /* Default border color */
    transition: all 0.3s ease;
    padding: 30px !important;
    overflow: visible;
    position: relative;
}

.reason-card:hover {
    box-shadow: none;
    transform: translateY(-4px);
    border-color: #1a965a !important; /* Green border on hover */
}

/* ========================================================= */
/* 3. ICON STYLING (FLOATING TOP-LEFT) */
/* ========================================================= */

.reason-icon-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    background-color: #1a965a; /* 🚨 ICON COLOR: GREEN 🚨 */
    color: white;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    transform: translate(-10px, -10px);
    border-radius: 6px;
    z-index: 10;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.reason-icon {
    color: white;
    font-size: 1.2rem;
    line-height: 1;
}

/* ========================================================= */
/* 4. TEXT STYLING (SERVICE CARD COLORS APPLIED) */
/* ========================================================= */

.reason-card-title {
    color: #1a965a; /* 🚨 TITLE COLOR: GREEN (#1a965a) 🚨 */
    margin-top: 1rem;
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
    font-weight: 700;
}

.reason-card-desc {
    color: #495057; /* 🚨 DESCRIPTION COLOR: DARK GREY (#495057) 🚨 */
    font-size: 0.95rem;
    line-height: 1.6;
    text-align: left;
}

/* Responsive adjustment for small screens */
@media (max-width: 991px) {
    .reasons-main-heading {
        font-size: 1.8rem;
    }
    .reasons-section {
        background-attachment: scroll;
    }
}
