/* ==========================================================================
   ENTERPRISE LUXURY FOOTER STYLING (#000B33 DEEP NAVY THEME)
   ========================================================================== */

/* Main Footer Container */
.footer-agency-saas {
    background-color: #000B33 !important; /* Deep Navy Theme */
    border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.bg-navy-card {
    background-color: #00124D !important;
}

.text-orange {
    color: #F27915 !important;
}

.border-slate-700 {
    border-color: rgba(255, 255, 255, 0.12) !important;
}

/* Background Glowing Orbs */
.footer-glow-accent-1 {
    position: absolute;
    top: -50px;
    left: 10%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(242, 121, 21, 0.15) 0%, transparent 70%);
    filter: blur(100px);
    pointer-events: none;
}

.footer-glow-accent-2 {
    position: absolute;
    bottom: 0;
    right: 10%;
    width: 450px;
    height: 450px;
    background: radial-gradient(circle, rgba(56, 189, 248, 0.1) 0%, transparent 70%);
    filter: blur(110px);
    pointer-events: none;
}

/* Social Media Buttons */
.footer-social-btn {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: #CBD5E1;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.footer-social-btn:hover {
    background: linear-gradient(135deg, #F27915 0%, #FF9436 100%);
    color: #FFFFFF !important;
    border-color: transparent;
    transform: translateY(-3px);
    box-shadow: 0 8px 18px rgba(242, 121, 21, 0.4);
}

/* Column Titles & Links */
.footer-column-title {
    font-size: 0.85rem;
    letter-spacing: 1px;
    color: #F8FAFC;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: #CBD5E1;
    text-decoration: none;
    font-size: 0.88rem;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
}

.footer-links a:hover {
    color: #F27915;
    transform: translateX(4px);
}

.fs-xs {
    font-size: 0.65rem;
}

/* Newsletter Input & Submit Button */
.max-w-400 {
    max-width: 400px;
}

.footer-newsletter-input {
    background: rgba(255, 255, 255, 0.06) !important;
    border: 1px solid rgba(255, 255, 255, 0.15) !important;
    color: #FFFFFF !important;
    padding: 11px 16px !important;
    border-radius: 50px 0 0 50px !important;
    font-size: 0.88rem;
}

.footer-newsletter-input::placeholder {
    color: rgba(255, 255, 255, 0.4) !important;
}

.footer-newsletter-input:focus {
    border-color: #F27915 !important;
    box-shadow: none !important;
}

.footer-newsletter-form .btn-agency-glow {
    border-radius: 0 50px 50px 0 !important;
    padding: 11px 22px !important;
    background: linear-gradient(135deg, #F27915 0%, #E06300 100%);
    border: none;
    color: #FFFFFF !important;
}

/* Direct Contact Micro Badge */
.footer-contact-badge {
    backdrop-filter: blur(10px);
    transition: border-color 0.3s ease;
}

.footer-contact-badge:hover {
    border-color: rgba(242, 121, 21, 0.4) !important;
}

/* Back To Top Floating Action Button */
.btn-back-to-top {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: rgba(242, 121, 21, 0.15);
    border: 1px solid rgba(242, 121, 21, 0.4);
    color: #F27915;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-back-to-top:hover {
    background: #F27915;
    color: #FFFFFF;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(242, 121, 21, 0.4);
}

.tracking-wider {
    letter-spacing: 1px;
}

/* ==========================================================================
   FLOATING ACTION BUTTONS (WHATSAPP & CALL)
   ========================================================================== */

.floating-action-buttons {
    position: fixed;
    bottom: 25px;
    right: 25px;
    z-index: 9999;
}

.btn-floating {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #FFFFFF !important;
    font-size: 1.4rem;
    text-decoration: none;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
}

.btn-call {
    background: linear-gradient(135deg, #F27915 0%, #E06300 100%) !important;
    box-shadow: 0 6px 20px rgba(242, 121, 21, 0.4);
}

.btn-call:hover {
    transform: scale(1.1) translateY(-3px);
    box-shadow: 0 10px 25px rgba(242, 121, 21, 0.6);
    color: #FFFFFF !important;
}

.btn-whatsapp {
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%) !important;
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
}

.btn-whatsapp:hover {
    transform: scale(1.1) translateY(-3px);
    box-shadow: 0 10px 25px rgba(37, 211, 102, 0.6);
    color: #FFFFFF !important;
}

.btn-whatsapp::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: rgba(37, 211, 102, 0.5);
    z-index: -1;
    animation: whatsapp-pulse 2s infinite;
}

@keyframes whatsapp-pulse {
    0% { transform: scale(1); opacity: 0.8; }
    100% { transform: scale(1.6); opacity: 0; }
}

/* ==========================================================================
   MOBILE RESPONSIVE FIXES (< 767.98px)
   ========================================================================== */
@media (max-width: 767.98px) {
    .footer-agency-saas {
        padding-top: 40px !important;
    }

    .footer-brand-wrapper {
        padding-right: 0 !important;
        margin-bottom: 20px;
    }

    .footer-brand-wrapper p {
        font-size: 0.85rem !important;
        max-width: 480px;
        margin-left: auto;
        margin-right: auto;
    }

    /* Links Columns 2-Column Side-By-Side Grid */
    .footer-agency-saas .col-6 {
        text-align: left !important;
        padding-left: 15px;
        padding-right: 15px;
    }

    .footer-column-title {
        font-size: 0.82rem !important;
        margin-bottom: 12px !important;
    }

    .footer-links a {
        font-size: 0.82rem !important;
    }

    /* Newsletter & Contact Badge Centering */
    .footer-newsletter-form {
        max-width: 100%;
    }

    .footer-contact-badge {
        width: 100%;
        max-width: 320px;
        justify-content: center;
        margin-top: 10px;
    }

    /* Copyright Bar Fixes */
    .footer-agency-saas .row.pt-4 {
        padding-top: 15px !important;
        text-align: center !important;
    }

    .floating-action-buttons {
        bottom: 20px;
        right: 18px;
    }

    .btn-floating {
        width: 46px;
        height: 46px;
        font-size: 1.2rem;
    }
}