/* =========================================================
   DAILY CAR RENTAL PAGE — BENEFITS OF DAILY CAR RENTAL (CHECKLIST)
========================================================= */

.drb-section {
    position: relative;
    background-color: #151515;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    padding: 70px 0;
    overflow: hidden;
}

.drb-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        180deg,
        rgba(17, 17, 17, 0.75) 0%,
        rgba(17, 17, 17, 0.9) 100%
    );
    z-index: 1;
}

.drb-content {
    position: relative;
    z-index: 2;
}

.drb-header {
    max-width: 650px;
    margin: 0 auto 50px;
    padding: 0 24px;
    text-align: center;
}

.drb-eyebrow {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    font-family: var(--font-main);
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--color-amber);
    margin-bottom: 18px;
}

.drb-eyebrow .eyebrow-line {
    display: inline-block;
    width: 40px;
    height: 2px;
    background-color: var(--color-amber);
}

.drb-heading {
    font-family: var(--font-main);
    font-weight: 700;
    font-size: clamp(28px, 3.4vw, 40px);
    color: var(--color-white);
    text-transform: capitalize;
    margin-bottom: 14px;
}

.drb-subtext {
    font-family: var(--font-main);
    font-size: 16px;
    color: rgba(255, 255, 255, 0.6);
}

.drb-list {
    max-width: 980px;
    margin: 0 auto;
    padding: 0 32px;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 22px 40px;
}

.drb-list-item {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    opacity: 0;
    transform: translateY(14px);
    animation: drbFadeUp 0.5s ease forwards;
    animation-delay: calc(var(--drb-index, 0) * 0.08s);
}

@keyframes drbFadeUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.drb-check-icon {
    flex-shrink: 0;
    width: 26px;
    height: 26px;
    border-radius: 50%;
    background-color: var(--color-amber);
    color: var(--color-rich-black);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 2px;
}

.drb-check-icon svg {
    width: 14px;
    height: 14px;
}

.drb-list-item p {
    font-family: var(--font-main);
    font-size: 15.5px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.8);
    margin: 0;
}

@media (max-width: 768px) {
        .drb-section {
        background-attachment: scroll;
    }
    .drb-list {
        grid-template-columns: 1fr;
        gap: 18px;
    }
}

@media (max-width: 576px) {
    .drb-section {
        padding: 60px 0;
    }

    .drb-header {
        margin-bottom: 36px;
    }
}