/* Mobile Fixed Bottom CTA Bar */
.mobile-cta-bar {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 9999;
    display: flex;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.15);
}

.mobile-cta-btn {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.9rem 1rem;
    font-size: 0.95rem;
    font-weight: 600;
    text-decoration: none;
    transition: filter 0.2s ease;
}

.mobile-cta-btn:active {
    filter: brightness(0.9);
}

.mobile-cta-call {
    background-color: #16a34a;
    color: #ffffff;
    border-right: 1px solid rgba(255, 255, 255, 0.2);
}

.mobile-cta-quote {
    background-color: #15803d;
    color: #ffffff;
}

.mobile-cta-btn i {
    font-size: 1rem;
}

/* Only show on mobile */
@media (min-width: 768px) {
    .mobile-cta-bar {
        display: none !important;
    }
}

/* Add bottom padding to page content so CTA bar doesn't overlap */
@media (max-width: 767px) {
    .mobile-cta-bar {
        display: flex;
    }

    body {
        padding-bottom: 60px;
    }
}

/* Safe area for iPhones with home bar */
@supports (padding-bottom: env(safe-area-inset-bottom)) {
    @media (max-width: 767px) {
        .mobile-cta-bar {
            padding-bottom: env(safe-area-inset-bottom);
        }

        body {
            padding-bottom: calc(60px + env(safe-area-inset-bottom));
        }
    }
}
