/* =========================================================
   CASANOVA CAR RENTAL — CORPORATE CAR RENTAL PAGE
========================================================= */

/* Shared eyebrow (used across all sections on this page) */
.cr-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;
}

.cr-eyebrow .eyebrow-line {
    display: inline-block;
    width: 40px;
    height: 2px;
    background-color: var(--color-amber);
}

/* -----------------------------------------
   Section 1: Intro
----------------------------------------- */
.cr-intro-section {
    background-color: var(--color-rich-black);
    padding: 50px 24px 90px;
}

.cr-intro-actions {
    margin-top: 34px;
}

.cr-intro-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 15px 34px;
    border-radius: 50px;
    background-color: var(--color-amber);
    color: var(--color-rich-black);
    font-family: var(--font-main);
    font-weight: 500;
    font-size: 14.5px;
    text-transform: capitalize;
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.cr-intro-btn:hover {
    opacity: 0.88;
    transform: translateY(-2px);
}
.cr-intro-container {
    max-width: 780px;
    margin: 0 auto;
    text-align: center;
}

.cr-intro-heading {
    font-family: var(--font-main);
    font-weight: 700;
    font-size: clamp(28px, 4vw, 44px);
    color: var(--color-white);
    text-transform: capitalize;
    line-height: 1.25;
    margin-bottom: 20px;
}

.cr-intro-text {
    font-family: var(--font-main);
    font-size: 17px;
    line-height: 1.85;
    color: rgba(255, 255, 255, 0.7);
}

/* -----------------------------------------
   Section 2: Why Casanova For Business
----------------------------------------- */
.cr-why-section {
    background-color: #151515;
    padding: 70px 0;
}

.cr-why-header {
    max-width: 700px;
    margin: 0 auto 56px;
    padding: 0 24px;
    text-align: center;
}

.cr-why-heading {
    font-family: var(--font-main);
    font-weight: 700;
    font-size: clamp(28px, 3.4vw, 40px);
    color: var(--color-white);
    text-transform: capitalize;
}

.cr-why-grid {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 32px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.cr-why-card {
    background-color: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    padding: 36px 28px;
    text-align: center;
    opacity: 0;
    transform: translateY(20px);
    animation: crFadeUp 0.6s ease forwards;
    animation-delay: calc(var(--cr-index, 0) * 0.1s);
    transition: border-color 0.3s ease, background-color 0.3s ease, transform 0.3s ease;
}

.cr-why-card:hover {
    border-color: var(--color-amber);
    background-color: rgba(255, 255, 255, 0.05);
    transform: translateY(-6px);
}

@keyframes crFadeUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.cr-why-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 22px;
    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;
}

.cr-why-card:hover .cr-why-icon {
    background-color: rgba(255, 191, 1, 0.18);
}

.cr-why-icon img {
    width: 40px;
    height: 40px;
    object-fit: contain;
}

.cr-why-card-title {
    font-family: var(--font-main);
    font-weight: 700;
    font-size: 18px;
    color: var(--color-white);
    text-transform: capitalize;
    margin-bottom: 10px;
}

.cr-why-card-text {
    font-family: var(--font-main);
    font-weight: 400;
    font-size: 14px;
    line-height: 1.75;
    color: rgba(255, 255, 255, 0.6);
}

/* -----------------------------------------
   Section 3: Business Content (bg image + overlay)
----------------------------------------- */
.cr-content-section {
    position: relative;
    background-color: var(--color-rich-black);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    padding: 110px 24px;
    overflow: hidden;
}

.cr-content-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        180deg,
        rgba(17, 17, 17, 0.7) 0%,
        rgba(17, 17, 17, 0.88) 100%
    );
    z-index: 1;
}

.cr-content-container {
    position: relative;
    z-index: 2;
    max-width: 720px;
    margin: 0 auto;
    text-align: center;
}

.cr-content-heading {
    font-family: var(--font-main);
    font-weight: 700;
    font-size: clamp(26px, 3.6vw, 38px);
    color: var(--color-white);
    text-transform: capitalize;
    line-height: 1.3;
    margin-bottom: 20px;
}

.cr-content-text {
    font-family: var(--font-main);
    font-size: 16px;
    line-height: 1.85;
    color: rgba(255, 255, 255, 0.8);
}

/* -----------------------------------------
   Responsive
----------------------------------------- */
@media (max-width: 992px) {
    .cr-why-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .cr-content-section {
        background-attachment: scroll;
        padding: 80px 20px;
    }
}

@media (max-width: 576px) {
    .cr-intro-section {
        padding: 70px 20px 60px;
    }

    .cr-why-section {
        padding: 60px 0;
    }

    .cr-why-header {
        margin-bottom: 40px;
    }

    .cr-why-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        padding: 0 20px;
    }

    .cr-why-card {
        padding: 30px 24px;
    }
}