/*********************************************************
FILE: call-banner.css
UNIVERSAL RESPONSIVE SYSTEM (NO BREAK LAYOUT)
*********************************************************/

/* =========================
   WRAPPER
========================= */

.call-banner-wrap {
    padding: 22px 0;
    display: flex;
    justify-content: center;
}

/* =========================
   CARD (BASE DESKTOP)
========================= */

.call-banner-card {
    max-width: 1100px;
    width: 100%;

    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 20px;

    padding: 18px 22px;

    border-radius: 12px;

    background: transparent;

    transition: all 0.25s ease;
}

.call-banner-card:hover {
    transform: translateY(-2px);
    background: #ffffff;
    box-shadow: 0 14px 30px rgba(0, 0, 0, 0.08);
}

/* =========================
   LOGO
========================= */

.call-banner-logo {
    flex: 0 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
}

.call-banner-logo img {
    width: 100%;
    max-width: 190px;
    height: auto;
    object-fit: contain;
    display: block;
}

/* =========================
   CONTENT
========================= */

.call-banner-content {
    flex: 1;
    min-width: 0;
}

.call-banner-content h3 {
    margin: 0;

    font-size: 18px;
    font-weight: 800;

    color: #0f172a;

    line-height: 1.2;
    letter-spacing: -0.2px;
}

.call-banner-content p {
    margin: 6px 0 0;

    font-size: 13.8px;
    line-height: 1.5;

    color: #64748b;

    max-width: 720px;
}

/* =========================
   TRUST LINE
========================= */

.call-banner-tag {
    display: flex;
    flex-wrap: wrap;
    align-items: center;

    gap: 10px;

    margin-top: 4px;

    font-size: 12.5px;
    font-weight: 700;

    color: #0d7c99;
}

.call-banner-rating {
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.call-banner-stars {
    font-size: 13px;
    font-weight: 900;
    letter-spacing: 1px;

    color: #f5c542;

    background: linear-gradient(90deg, #f5c542, #ffd86b, #f5c542);
    background-size: 200% 100%;

    background-clip: text;
    -webkit-background-clip: text;

    color: transparent;
    -webkit-text-fill-color: transparent;

    animation: starShine 2.8s ease-in-out infinite;
}

.call-banner-score {
    font-size: 12px;
    font-weight: 600;
    color: #64748b;
}

/* =========================
   BUTTON
========================= */

.call-banner-btn {
    flex: 0 0 auto;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    padding: 12px 18px;

    border-radius: 10px;

    background: #0d7c99;
    color: #ffffff;

    font-size: 15px;
    font-weight: 800;

    text-decoration: none;

    white-space: nowrap;

    transition: all 0.2s ease;
}

.call-banner-btn:hover {
    background: #0a5f75;
    transform: translateY(-2px);
}

/* =========================
   ANIMATION
========================= */

@keyframes starShine {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

/* =========================================================
   TABLET + SMALL DESKTOP (IMPORTANT CONTROLLED BREAK)
   768px → 1024px
========================================================= */

@media (max-width: 1024px) {

    .call-banner-card {
        flex-direction: column;
        align-items: center;
        justify-content: center;

        text-align: center;

        gap: 14px;
    }

    .call-banner-content {
        width: 100%;
        text-align: center;
    }

    .call-banner-tag {
        justify-content: center;
    }

    .call-banner-content p {
        margin-left: auto;
        margin-right: auto;
    }

    .call-banner-btn {
        width: 100%;
        max-width: 300px;
    }
}

/* =========================
   MOBILE (ALL PHONES)
   320px → 767px
========================= */

@media (max-width: 767px) {

    .call-banner-wrap {
        padding: 16px 12px;
    }

    .call-banner-card {
        padding: 16px;
        gap: 12px;
    }

    .call-banner-logo img {
        max-width: 120px;
    }

    .call-banner-content h3 {
        font-size: 18px;
    }

    .call-banner-content p {
        font-size: 13px;
    }

    .call-banner-btn {
        width: 100%;
        max-width: 100%;

        font-size: 16px;
        padding: 14px 18px;
    }
}

/* =========================
   VERY SMALL PHONES (CRITICAL SAFETY ZONE)
   320px → 400px
========================= */

@media (max-width: 400px) {

    .call-banner-logo img {
        max-width: 100px;
    }

    .call-banner-content h3 {
        font-size: 17px;
    }

    .call-banner-content p {
        font-size: 12px;
        line-height: 1.4;
    }

    .call-banner-btn {
        font-size: 15px;
        padding: 12px 16px;
    }
}