/* ===== FOOTER STYLES ===== */
/* Estilos modernos y atractivos para el footer de Broncos Towing */

.footer {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%) !important;
    color: #ffffff !important;
    padding: 4rem 0 2rem !important;
    position: relative;
    overflow: hidden;
    font-family: 'Inter', Arial, sans-serif !important;
}

.footer * {
    box-sizing: border-box;
}

/* Reset de listas y enlaces solo en el footer */
.footer ul {
    list-style: none !important;
    padding: 0 !important;
    margin: 0 !important;
}

.footer a {
    color: #7ed6df !important;
    text-decoration: none !important;
    transition: color 0.3s, padding-left 0.3s;
    font-weight: 500;
}

.footer a:hover {
    color: #f6e58d !important;
    text-decoration: underline !important;
    padding-left: 10px;
}

.footer-row {
    display: grid !important;
    grid-template-columns: 2fr 1fr 1fr 1fr !important;
    gap: 3rem !important;
    margin-bottom: 3rem !important;
    width: 100%;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.footer-col {
    min-width: 0;
}

.footer-branding h4 {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
}

.footer-branding h4::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 50px;
    height: 3px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 2px;
}

.footer-branding p {
    color: #b8c5d6 !important;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    font-size: 1rem;
}

.footer-address,
.footer-phone,
.footer-email {
    display: flex;
    align-items: center;
    margin-bottom: 0.8rem;
    color: #b8c5d6 !important;
    font-size: 0.95rem;
}

.footer-address i,
.footer-phone i,
.footer-email i {
    width: 20px;
    margin-right: 10px;
    color: #667eea !important;
    font-size: 1rem;
}

.footer-phone a,
.footer-email a {
    color: #7ed6df !important;
    text-decoration: none !important;
}

.footer-phone a:hover,
.footer-email a:hover {
    color: #f6e58d !important;
    text-decoration: underline !important;
}

.footer-links,
.footer-blog,
.footer-social {
    text-align: left !important;
}

.footer-links h5,
.footer-blog h5,
.footer-social h5 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: #ffffff !important;
    position: relative;
    padding-bottom: 0.5rem;
}

.footer-links h5::after,
.footer-blog h5::after,
.footer-social h5::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 2px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 1px;
}

.footer-links li,
.footer-blog li {
    margin-bottom: 0.8rem;
}

.footer-links a,
.footer-blog a {
    color: #7ed6df !important;
    text-decoration: none !important;
    font-size: 0.97rem;
    position: relative;
    padding-left: 0;
}

.footer-links a::before,
.footer-blog a::before {
    content: '→';
    position: absolute;
    left: -15px;
    opacity: 0;
    transition: all 0.3s;
    color: #667eea;
}

.footer-links a:hover,
.footer-blog a:hover {
    color: #f6e58d !important;
    padding-left: 15px;
}

.footer-links a:hover::before,
.footer-blog a:hover::before {
    opacity: 1;
}

.footer-social-icons {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.footer-social-icons a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white !important;
    text-decoration: none !important;
    border-radius: 50%;
    transition: all 0.3s;
    position: relative;
    overflow: hidden;
    font-size: 1.3rem;
}

.footer-social-icons a:hover {
    transform: translateY(-3px) scale(1.1);
    box-shadow: 0 10px 25px rgba(102, 126, 234, 0.4);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 2rem;
    text-align: center;
    position: relative;
}

.footer-bottom p {
    color: #8a9bb8 !important;
    font-size: 0.95rem;
    margin: 0;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .footer-row {
        grid-template-columns: 1fr 1fr !important;
        gap: 2rem !important;
    }
    .footer-branding {
        grid-column: 1 / -1;
        text-align: center !important;
    }
    .footer-branding h4::after {
        left: 50%;
        transform: translateX(-50%);
    }
}

@media (max-width: 768px) {
    .footer {
        padding: 3rem 0 1.5rem !important;
    }
    .footer-row {
        grid-template-columns: 1fr !important;
        gap: 2rem !important;
        text-align: center !important;
    }
    .footer-branding,
    .footer-links,
    .footer-blog,
    .footer-social {
        text-align: center !important;
    }
    .footer-links h5::after,
    .footer-blog h5::after,
    .footer-social h5::after {
        left: 50%;
        transform: translateX(-50%);
    }
    .footer-social-icons {
        justify-content: center;
    }
    .footer-address,
    .footer-phone,
    .footer-email {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .footer {
        padding: 2rem 0 1rem !important;
    }
    .footer-branding h4 {
        font-size: 1.5rem;
    }
    .footer-links h5,
    .footer-blog h5,
    .footer-social h5 {
        font-size: 1.1rem;
    }
    .footer-social-icons {
        gap: 0.8rem;
    }
    .footer-social-icons a {
        width: 40px;
        height: 40px;
        font-size: 1.1rem;
    }
}

/* Efectos de hover adicionales */
.footer-links a:hover,
.footer-blog a:hover {
    text-shadow: 0 0 8px rgba(102, 126, 234, 0.3);
}

.footer-social-icons a:hover i {
    animation: bounce 0.6s ease;
}

@keyframes bounce {
    0%, 20%, 60%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-5px);
    }
    80% {
        transform: translateY(-3px);
    }
}

/* Scroll suave para enlaces internos */
.footer a[href^="#"] {
    scroll-behavior: smooth;
}

/* Mejoras de accesibilidad */
.footer a:focus {
    outline: 2px solid #667eea;
    outline-offset: 2px;
    border-radius: 4px;
}

.footer-social-icons a:focus {
    outline: 2px solid #667eea;
    outline-offset: 2px;
    border-radius: 50%;
}

/* ===== CONTACT FLOAT BUTTONS ===== */
/* Botones flotantes de contacto en la esquina inferior derecha */
.contact-float {
    position: fixed;
    bottom: 80px;
    right: 20px;
    z-index: 1000;
    display: flex;
    flex-direction: column;
    gap: 15px;
    animation: fadeInUp 0.8s ease-out;
}

.float-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    text-decoration: none;
    color: white;
    font-size: 1.2rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 3px 12px rgba(0, 0, 0, 0.2);
    position: relative;
    overflow: hidden;
}

.float-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: inherit;
    border-radius: 50%;
    z-index: -1;
    transition: transform 0.3s ease;
}

.float-btn:hover::before {
    transform: scale(1.1);
}

.phone-btn {
    background: linear-gradient(135deg, #25d366 0%, #128c7e 100%);
    animation: pulse 2s infinite;
}

.phone-btn:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4);
}

.phone-btn i {
    animation: bounce 1s infinite;
}

.contact-btn {
    background: linear-gradient(135deg, #3498db 0%, #2980b9 100%);
    animation: pulseBlue 2s infinite;
}

.contact-btn:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 6px 20px rgba(52, 152, 219, 0.4);
}

.contact-btn i {
    animation: envelopeFloat 2s infinite;
}

/* Animaciones para los botones flotantes */
@keyframes pulse {
    0% {
        box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
    }
    50% {
        box-shadow: 0 4px 25px rgba(37, 211, 102, 0.6);
    }
    100% {
        box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
    }
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-3px);
    }
    60% {
        transform: translateY(-2px);
    }
}

@keyframes pulseRed {
    0% {
        box-shadow: 0 4px 15px rgba(231, 76, 60, 0.3);
    }
    50% {
        box-shadow: 0 4px 25px rgba(231, 76, 60, 0.6);
    }
    100% {
        box-shadow: 0 4px 15px rgba(231, 76, 60, 0.3);
    }
}

@keyframes shieldPulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.1);
    }
}

@keyframes pulseBlue {
    0% {
        box-shadow: 0 3px 12px rgba(52, 152, 219, 0.3);
    }
    50% {
        box-shadow: 0 3px 20px rgba(52, 152, 219, 0.6);
    }
    100% {
        box-shadow: 0 3px 12px rgba(52, 152, 219, 0.3);
    }
}

@keyframes envelopeFloat {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
    }
    25% {
        transform: translateY(-2px) rotate(-2deg);
    }
    75% {
        transform: translateY(2px) rotate(2deg);
    }
}

/* Responsive para botones flotantes */
@media (max-width: 768px) {
    .contact-float {
        bottom: 80px;
        right: 15px;
        gap: 10px;
    }
    
    .float-btn {
        width: 45px;
        height: 45px;
        font-size: 1.1rem;
    }
}

@media (max-width: 480px) {
    .contact-float {
        bottom: 80px;
        right: 10px;
        gap: 8px;
    }
    
    .float-btn {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
}

/* Efecto de carga suave */
.footer {
    animation: fadeInUp 0.8s ease-out;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
} 



.grecaptcha-logo, .grecaptcha-badge{
    visibility: hidden;
    z-index: -1;
    display: none;
}

/* ===== EMERGENCY FLOAT BUTTON ===== */
/* Botón flotante de emergencia centrado en la parte inferior */
.emergency-float-container {
    position: fixed;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1001;
    animation: slideUpIn 0.8s ease-out;
}

.emergency-float-btn {
    display: flex;
    align-items: center;
    padding: 15px 20px;
    background: linear-gradient(135deg, #e74c3c 0%, #c0392b 100%);
    border-radius: 50px;
    text-decoration: none;
    color: white;
    box-shadow: 0 6px 25px rgba(231, 76, 60, 0.4);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    border: 3px solid rgba(255, 255, 255, 0.2);
    min-width: 280px;
}

.emergency-float-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s;
}

.emergency-float-btn:hover::before {
    left: 100%;
}

.emergency-float-btn:hover {
    background: linear-gradient(135deg, #c0392b 0%, #a93226 100%);
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 10px 35px rgba(231, 76, 60, 0.5);
    border-color: rgba(255, 255, 255, 0.4);
}

.emergency-float-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    margin-right: 15px;
    animation: emergencyPulse 2s infinite;
    border: 2px solid rgba(255, 255, 255, 0.3);
    flex-shrink: 0;
}

.emergency-float-icon i {
    font-size: 1.5rem;
    animation: phoneBounce 1.5s infinite;
}

.emergency-float-text {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
    flex: 1;
}

.emergency-float-label {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 2px;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
    letter-spacing: 0.5px;
    line-height: 1.2;
}

.emergency-float-phone {
    font-size: 1.2rem;
    font-weight: 800;
    font-family: 'Courier New', monospace;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
    letter-spacing: 1px;
    line-height: 1.2;
}

/* Animaciones para el botón flotante de emergencia */
@keyframes slideUpIn {
    from {
        transform: translateX(-50%) translateY(100%);
        opacity: 0;
    }
    to {
        transform: translateX(-50%) translateY(0);
        opacity: 1;
    }
}

@keyframes emergencyPulse {
    0%, 100% {
        box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.4);
        transform: scale(1);
    }
    50% {
        box-shadow: 0 0 0 8px rgba(255, 255, 255, 0);
        transform: scale(1.05);
    }
}

@keyframes phoneBounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0) rotate(0deg);
    }
    10% {
        transform: translateY(-3px) rotate(-5deg);
    }
    30% {
        transform: translateY(-2px) rotate(5deg);
    }
    40% {
        transform: translateY(-1px) rotate(-3deg);
    }
    60% {
        transform: translateY(-1px) rotate(3deg);
    }
}

/* Responsive para el botón flotante de emergencia */
@media (max-width: 768px) {
    .emergency-float-container {
        bottom: 15px;
        left: 50%;
        transform: translateX(-50%);
    }
    
    .emergency-float-btn {
        padding: 12px 16px;
        min-width: 250px;
    }
    
    .emergency-float-icon {
        width: 45px;
        height: 45px;
        margin-right: 12px;
    }
    
    .emergency-float-icon i {
        font-size: 1.3rem;
    }
    
    .emergency-float-label {
        font-size: 0.9rem;
    }
    
    .emergency-float-phone {
        font-size: 1.1rem;
    }
}

@media (max-width: 480px) {
    .emergency-float-container {
        bottom: 10px;
        left: 50%;
        transform: translateX(-50%);
    }
    
    .emergency-float-btn {
        padding: 10px 14px;
        min-width: 260px;
    }
    
    .emergency-float-icon {
        width: 40px;
        height: 40px;
        margin-right: 10px;
    }
    
    .emergency-float-icon i {
        font-size: 1.2rem;
    }
    
    .emergency-float-label {
        font-size: 0.8rem;
    }
    
    .emergency-float-phone {
        font-size: 1rem;
    }
}

/* Ajustar el padding del body para el botón flotante */
body {
    padding-bottom: 0;
}