/* ============================================================
   Site-wide contact strip (above the footer on every page)
   ------------------------------------------------------------
   Markup: resources/views/frontend/inc/footer.blade.php (.pf-cta)
   ============================================================ */

.pf-cta {
    position: relative;
    overflow: hidden;
    color: #fff;
    background:
        radial-gradient(600px 200px at 0% 50%, rgba(34, 211, 238, .18), transparent 70%),
        radial-gradient(500px 200px at 100% 50%, rgba(249, 115, 22, .16), transparent 70%),
        linear-gradient(100deg, #061634 0%, #0a2a6b 55%, #1d4ed8 100%);
}
.pf-cta::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255, 255, 255, .05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, .05) 1px, transparent 1px);
    background-size: 36px 36px;
    pointer-events: none;
}
.pf-cta__inner {
    position: relative;
    display: grid;
    grid-template-columns: 1fr auto;
    align-items: center;
    gap: 20px 32px;
    padding: 30px 0;
}

.pf-cta__text { display: flex; align-items: center; gap: 16px; min-width: 0; }
.pf-cta__icon {
    position: relative;
    flex-shrink: 0;
    width: 58px; height: 58px;
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    background: linear-gradient(135deg, rgba(255, 255, 255, .2), rgba(255, 255, 255, .06));
    border: 1px solid rgba(255, 255, 255, .22);
}
.pf-cta__icon::after {
    /* "online" dot */
    content: "";
    position: absolute;
    top: -3px; right: -3px;
    width: 14px; height: 14px;
    border-radius: 50%;
    background: #22c55e;
    border: 3px solid #0a2a6b;
    box-shadow: 0 0 0 0 rgba(34, 197, 94, .6);
    animation: pfCtaPulse 2.4s infinite;
}
@keyframes pfCtaPulse {
    0% { box-shadow: 0 0 0 0 rgba(34, 197, 94, .55); }
    70% { box-shadow: 0 0 0 10px rgba(34, 197, 94, 0); }
    100% { box-shadow: 0 0 0 0 rgba(34, 197, 94, 0); }
}
.pf-cta__heading { margin: 0; font-size: 1.3rem; font-weight: 900; letter-spacing: -.01em; line-height: 1.2; color: #fff; }
.pf-cta__sub { margin: 6px 0 0; display: flex; flex-wrap: wrap; gap: 6px; padding: 0; list-style: none; }
.pf-cta__sub li {
    padding: 3px 10px;
    border-radius: 999px;
    background: rgba(255, 255, 255, .08);
    border: 1px solid rgba(255, 255, 255, .14);
    font-size: 12.5px;
    font-weight: 600;
    color: rgba(226, 236, 255, .88);
}

.pf-cta__actions { display: flex; align-items: center; flex-wrap: wrap; gap: 10px; justify-content: flex-end; }
.pf-cta__phones { display: flex; flex-direction: column; gap: 2px; margin-right: 6px; }
.pf-cta__phones small { font-size: 11.5px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; color: rgba(226, 236, 255, .6); }
.pf-cta__phones span { display: flex; flex-wrap: wrap; gap: 2px 10px; }
.pf-cta__phones a { font-size: 17px; font-weight: 900; color: #fff; text-decoration: none; white-space: nowrap; }
.pf-cta__phones a:hover { color: #7dd3fc; }

.pf-cta__btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    height: 48px;
    padding: 0 20px;
    border-radius: 999px;
    font-size: 14.5px;
    font-weight: 800;
    text-decoration: none;
    white-space: nowrap;
    transition: transform .15s, box-shadow .15s, background .15s;
}
.pf-cta__btn:hover { transform: translateY(-2px); }
.pf-cta__btn--wa { background: rgba(255, 255, 255, .1); border: 1.5px solid rgba(255, 255, 255, .28); color: #fff !important; }
.pf-cta__btn--wa i { color: #4ade80; font-size: 17px; }
.pf-cta__btn--wa:hover { background: rgba(255, 255, 255, .18); }
.pf-cta__btn--quote { background: linear-gradient(135deg, #fb923c, #f97316); color: #fff !important; box-shadow: 0 10px 24px rgba(249, 115, 22, .4); }
.pf-cta__btn--quote:hover { box-shadow: 0 14px 30px rgba(249, 115, 22, .5); color: #fff !important; }

@media (max-width: 991.98px) {
    .pf-cta__inner { grid-template-columns: 1fr; }
    .pf-cta__actions { justify-content: flex-start; }
}
@media (max-width: 575.98px) {
    .pf-cta__inner { padding: 24px 0; }
    .pf-cta__icon { width: 48px; height: 48px; font-size: 19px; border-radius: 14px; }
    .pf-cta__heading { font-size: 1.12rem; }
    .pf-cta__phones { width: 100%; margin: 0 0 4px; }
    .pf-cta__btn { flex: 1 1 auto; justify-content: center; }
}
@media (prefers-reduced-motion: reduce) {
    .pf-cta__icon::after { animation: none; }
    .pf-cta__btn { transition: none; }
}
