/* ===== FOOTER STYLES ===== */
.footer {
    background: #000000;
    color: var(--text-white);
    margin-top: 0;
}

/* Footer Main Section */
.footer-main {
    padding: 60px 20px 40px;
    border-bottom: 1px solid rgba(255, 212, 3, 0.1);
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
    gap: 50px;
}

/* Company Info Section */
.footer-section h3 {
    color: #FFD403;
    margin-bottom: 20px;
    font-size: 32px;
    font-weight: 700;
    letter-spacing: -0.5px;
}

.footer-section h3 span {
    color: #079EE5;
}

.footer-about p {
    line-height: 1.8;
    margin-bottom: 25px;
    color: rgba(255, 255, 255, 0.7);
    font-size: 15px;
}

/* Social Icons */
.footer-social {
    display: flex;
    gap: 12px;
    margin-top: 20px;
}

.footer-social a {
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.1);
    color: var(--text-white);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s ease;
    text-decoration: none;
    font-size: 18px;
}

.footer-social a:hover {
    background: #079EE5;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(7, 158, 229, 0.4);
}

.footer-social a[aria-label="WhatsApp"] {
    background: #25d366;
}

.footer-social a[aria-label="WhatsApp"]:hover {
    background: #128C7E;
    box-shadow: 0 5px 15px rgba(37, 211, 102, 0.4);
}

/* Section Headers */
.footer-section h4 {
    color: #FFD403;
    margin-bottom: 25px;
    font-size: 18px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Links Styling */
.footer-section ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-section ul li {
    margin-bottom: 14px;
}

.footer-section ul li a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
    font-size: 15px;
    position: relative;
}

.footer-section ul li a::before {
    content: '';
    position: absolute;
    left: 0;
    bottom: -2px;
    width: 0;
    height: 2px;
    background: #079EE5;
    transition: width 0.3s ease;
}

.footer-section ul li a:hover {
    color: #079EE5;
    padding-left: 8px;
}

.footer-section ul li a:hover::before {
    width: 100%;
}

/* Contact Info Styling */
.footer-contact .contact-info {
    padding: 0;
    margin: 0;
}

.footer-contact .contact-info li {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
    align-items: flex-start;
}

.footer-contact .contact-info i {
    color: #079EE5;
    font-size: 20px;
    margin-top: 3px;
    min-width: 22px;
}

.footer-contact .contact-info span,
.footer-contact .contact-info a {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
    font-size: 15px;
}

.footer-contact .contact-info a {
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-contact .contact-info a:hover {
    color: #079EE5;
}

/* Newsletter Section */
.footer-newsletter {
    background: rgba(7, 158, 229, 0.05);
    padding: 40px 20px;
    border-bottom: 1px solid rgba(255, 212, 3, 0.1);
}

.newsletter-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 40px;
}

.newsletter-content h4 {
    color: #FFD403;
    font-size: 26px;
    margin-bottom: 8px;
    font-weight: 700;
}

.newsletter-content p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 15px;
    line-height: 1.6;
}

.newsletter-form {
    display: flex;
    gap: 10px;
    max-width: 500px;
    width: 100%;
}

.newsletter-form input {
    flex: 1;
    padding: 16px 20px;
    border: 2px solid rgba(255, 255, 255, 0.1);
    background: rgba(255, 255, 255, 0.05);
    color: var(--text-white);
    border-radius: 8px;
    font-size: 15px;
    transition: all 0.3s ease;
}

.newsletter-form input:focus {
    outline: none;
    border-color: #079EE5;
    background: rgba(255, 255, 255, 0.1);
}

.newsletter-form input::placeholder {
    color: rgba(255, 255, 255, 0.4);
}

.newsletter-form button {
    padding: 16px 32px;
    background: #079EE5;
    color: var(--text-white);
    border: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 15px;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
    display: flex;
    align-items: center;
    gap: 8px;
}

.newsletter-form button:hover {
    background: #0582bd;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(7, 158, 229, 0.4);
}

.newsletter-form button i {
    font-size: 16px;
}

/* Footer CTA Banner */
.footer-cta {
    background: linear-gradient(135deg, #079EE5 0%, #0582bd 100%);
    padding: 35px 20px;
    border-bottom: 1px solid rgba(255, 212, 3, 0.1);
}

.footer-cta-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 30px;
}

.footer-cta-content {
    display: flex;
    align-items: center;
    gap: 25px;
    color: #fff;
}

.footer-cta-content i {
    font-size: 50px;
    opacity: 0.95;
    color: #FFD403;
}

.footer-cta-content h4 {
    font-size: 24px;
    margin: 0 0 6px 0;
    font-weight: 700;
    color: #fff;
}

.footer-cta-content p {
    margin: 0;
    opacity: 0.9;
    font-size: 15px;
}

.footer-cta-buttons {
    display: flex;
    gap: 15px;
}

.footer-cta-btn {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 14px 28px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 15px;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.footer-cta-btn i {
    font-size: 18px;
}

.footer-cta-btn--call {
    background: #fff;
    color: #079EE5;
}

.footer-cta-btn--call:hover {
    background: #FFD403;
    color: #000;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.footer-cta-btn--whatsapp {
    background: #25d366;
    color: #fff;
}

.footer-cta-btn--whatsapp:hover {
    background: #128C7E;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(37, 211, 102, 0.4);
}

/* Footer Bottom */
.footer-bottom {
    padding: 30px 20px;
    background: rgba(0, 0, 0, 0.5);
}

.footer-bottom-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-bottom-left {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.footer-bottom-left p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 14px;
    margin: 0;
}

.footer-bottom-subtitle {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.5);
    margin: 0;
}

.footer-bottom-subtitle i {
    color: #e74c3c;
    animation: heartbeat 1.5s infinite;
    margin: 0 3px;
}

@keyframes heartbeat {
    0%, 100% { transform: scale(1); }
    25% { transform: scale(1.15); }
    50% { transform: scale(1); }
}

.footer-legal {
    display: flex;
    gap: 25px;
    list-style: none;
    flex-wrap: wrap;
    padding: 0;
    margin: 0;
}

.footer-legal li a {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}

.footer-legal li a:hover {
    color: #FFD403;
}

/* Responsive Footer */
@media screen and (max-width: 1024px) {
    .footer-container {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px;
    }
    
    .footer-about {
        grid-column: 1 / -1;
    }
}

@media screen and (max-width: 768px) {
    .footer-container {
        grid-template-columns: 1fr;
        gap: 35px;
    }
    
    .newsletter-container {
        flex-direction: column;
        text-align: center;
    }
    
    .newsletter-form {
        max-width: 100%;
    }
    
    .footer-cta-container {
        flex-direction: column;
        text-align: center;
    }
    
    .footer-cta-content {
        flex-direction: column;
        text-align: center;
    }
    
    .footer-cta-buttons {
        width: 100%;
        flex-direction: column;
    }
    
    .footer-cta-btn {
        width: 100%;
        justify-content: center;
    }
    
    .footer-bottom-container {
        flex-direction: column;
        text-align: center;
    }
    
    .footer-legal {
        justify-content: center;
    }
}

@media screen and (max-width: 480px) {
    .footer-main {
        padding: 40px 15px 30px;
    }
    
    .footer-section h3 {
        font-size: 26px;
    }
    
    .footer-cta {
        padding: 25px 15px;
    }
    
    .footer-cta-content h4 {
        font-size: 20px;
    }
    
    .footer-cta-content i {
        font-size: 40px;
    }
    
    .newsletter-form {
        flex-direction: column;
    }
    
    .newsletter-form button {
        width: 100%;
        justify-content: center;
    }
    
    .footer-legal {
        flex-direction: column;
        gap: 12px;
        align-items: center;
    }
    
    .footer-social {
        justify-content: center;
    }
}

/* Additional Enhancements */
.footer-section {
    animation: fadeInUp 0.6s ease-out;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Hover effects for better UX */
.footer-section ul li {
    transition: transform 0.2s ease;
}

.footer-section ul li:hover {
    transform: translateX(5px);
}

/* Better spacing for contact icons */
.footer-contact .contact-info li i {
    width: 22px;
    text-align: center;
}

/* Improved focus states for accessibility */
.newsletter-form input:focus,
.newsletter-form button:focus {
    outline: 2px solid #079EE5;
    outline-offset: 2px;
}

/* Smooth transitions for all interactive elements */
.footer a,
.footer button,
.footer input {
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Better visual hierarchy */
.footer-section h4 {
    position: relative;
    padding-bottom: 12px;
}

.footer-section h4::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 40px;
    height: 3px;
    background: linear-gradient(90deg, #FFD403 0%, #079EE5 100%);
    border-radius: 2px;
}
