/* =========================================================
   CASANOVA CAR RENTAL — ABOUT US PAGE: HERO / INTRO SECTION
   Dark theme | Center-aligned intro + 4-column trust stats
========================================================= */

.about-hero-section {
    position: relative;
    width: 100%;
    background-color: var(--color-rich-black);
    padding: 50px 0 0;
    overflow: hidden;
}

.about-hero-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

/* -----------------------------------------
   Eyebrow
----------------------------------------- */
.about-hero-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: 20px;
}

.about-hero-eyebrow .eyebrow-line {
    display: inline-block;
    width: 40px;
    height: 2px;
    background-color: var(--color-amber);
}

/* -----------------------------------------
   Heading + Text
----------------------------------------- */
.about-hero-heading {
    font-family: var(--font-main);
    font-weight: 700;
    font-size: clamp(30px, 4vw, 46px);
    line-height: 1.2;
    color: var(--color-white);
    margin-bottom: 20px;
}

.about-hero-text {
    font-family: var(--font-main);
    font-weight: 400;
    font-size: 17px;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.75);
    margin-bottom: 32px;
}

/* -----------------------------------------
   Book Now (WhatsApp) Button
----------------------------------------- */
.about-hero-actions {
    margin-bottom: 70px;
}

.about-hero-actions .btn-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 15px 36px;
    background-color: var(--color-amber);
    color: var(--color-rich-black);
    border-radius: 50px;
    font-size: 15px;
    font-weight: 500;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.about-hero-actions .btn-cta:hover {
    opacity: 0.88;
    transform: translateY(-2px);
}

/* -----------------------------------------
   Trust Stats — 4 Columns
----------------------------------------- */
.about-trust-row {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 32px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.about-trust-col {
    position: relative;
    text-align: center;
    padding: 40px 20px;
    opacity: 0;
    transform: translateY(20px);
    animation: aboutTrustFadeUp 0.6s ease forwards;
    animation-delay: calc(var(--stat-index, 0) * 0.12s);
}

.about-trust-col:not(:last-child)::after {
    content: '';
    position: absolute;
    top: 30px;
    bottom: 30px;
    right: 0;
    width: 1px;
    background: linear-gradient(
        180deg,
        rgba(255, 255, 255, 0) 0%,
        rgba(255, 255, 255, 0.18) 50%,
        rgba(255, 255, 255, 0) 100%
    );
}

.about-trust-number {
    font-family: var(--font-main);
    font-weight: 700;
    font-size: clamp(30px, 3vw, 40px);
    color: var(--color-amber);
    line-height: 1.1;
    margin-bottom: 8px;
}

.about-trust-suffix {
    font-size: 0.7em;
}

.about-trust-label {
    display: block;
    font-family: var(--font-main);
    font-weight: 400;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

@keyframes aboutTrustFadeUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* -----------------------------------------
   Responsive
----------------------------------------- */
@media (max-width: 992px) {
    .about-trust-row {
        grid-template-columns: repeat(2, 1fr);
    }

    .about-trust-col:nth-child(2)::after {
        display: none;
    }

    .about-trust-col:nth-child(odd)::after {
        display: none;
    }
}

@media (max-width: 576px) {
    .about-hero-section {
        padding: 70px 0 0;
    }

    .about-hero-actions {
        margin-bottom: 50px;
    }

    .about-trust-row {
        grid-template-columns: 1fr;
        padding: 0 40px;
    }

    .about-trust-col {
        padding: 28px 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.12);
    }

    .about-trust-col:last-child {
        border-bottom: none;
    }

    .about-trust-col::after {
        display: none;
    }
}