/* =========================================================
   CASANOVA CAR RENTAL — ABOUT US PAGE: WHY CHOOSE US
   Centered heading + 4-column feature cards
========================================================= */

.wcc-section {
    background-color: var(--color-rich-black);
    padding: 50px 0;
}

/* -----------------------------------------
   Centered Section Header
----------------------------------------- */
.wcc-section-header {
    max-width: 700px;
    margin: 0 auto 60px;
    padding: 0 24px;
    text-align: center;
}

.wcc-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;
}

.wcc-eyebrow .eyebrow-line {
    display: inline-block;
    width: 40px;
    height: 2px;
    background-color: var(--color-amber);
}

.wcc-heading {
    font-family: var(--font-main);
    font-weight: 700;
    font-size: clamp(28px, 3.4vw, 40px);
    color: var(--color-white);
    text-transform: capitalize;
    line-height: 1.25;
}

/* -----------------------------------------
   4-Column Grid
----------------------------------------- */
.wcc-grid {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 32px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 28px;
}

.wcc-card {
    position: relative;
    background-color: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    padding: 40px 28px;
    text-align: center;
    opacity: 0;
    transform: translateY(20px);
    animation: wccFadeUp 0.6s ease forwards;
    animation-delay: calc(var(--wcc-index, 0) * 0.12s);
    transition: border-color 0.3s ease, transform 0.3s ease, background-color 0.3s ease;
}

.wcc-card:hover {
    border-color: var(--color-amber);
    background-color: rgba(255, 255, 255, 0.05);
    transform: translateY(-6px);
}

@keyframes wccFadeUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* -----------------------------------------
   Icon
----------------------------------------- */
.wcc-icon {
    width: 68px;
    height: 68px;
    margin: 0 auto 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(255, 191, 1, 0.1);
    border-radius: 50%;
    transition: background-color 0.3s ease;
}

.wcc-card:hover .wcc-icon {
    background-color: rgba(255, 191, 1, 0.18);
}

.wcc-icon img {
    width: 40px;
    height: 40px;
    object-fit: contain;
}

/* -----------------------------------------
   Text
----------------------------------------- */
.wcc-card-title {
    font-family: var(--font-main);
    font-weight: 700;
    font-size: 19px;
    color: var(--color-white);
    text-transform: capitalize;
    margin-bottom: 12px;
}

.wcc-card-text {
    font-family: var(--font-main);
    font-weight: 400;
    font-size: 14.5px;
    line-height: 1.75;
    color: rgba(255, 255, 255, 0.65);
}

/* -----------------------------------------
   Responsive
----------------------------------------- */
@media (max-width: 992px) {
    .wcc-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .wcc-section {
        padding: 70px 0;
    }

    .wcc-section-header {
        margin-bottom: 40px;
    }

    .wcc-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .wcc-card {
        padding: 32px 24px;
    }
}