/* ============================================
   FOOTER SECTION
   ============================================ */
.footer-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 60px 20px 0;
    position: relative;
}

.footer-section .footer-container {
    max-width: 1320px;
    margin: 0 auto;
}

/* ============================================
   FOOTER TOP
   ============================================ */
.footer-section .footer-top {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 40px;
    padding-bottom: 50px;
    border-bottom: 2px solid #dee2e6;
}

/* Footer About Column */
.footer-section .footer-about {
    padding-right: 20px;
}

.footer-section .footer-logo {
    margin-bottom: 20px;
}

.footer-section .footer-logo img {
    height: 79px;
    width: auto;
}

.footer-section .footer-about-text {
    font-size: 20px;
    color: #666;
    line-height: 1.7;
    margin-bottom: 25px;
}

/* Social Links */
.footer-section .footer-social {
    display: flex;
    gap: 12px;
}

.footer-section .social-link {
    width: 40px;
    height: 40px;
    background: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #666;
    font-size: 16px;
    transition: all 0.3s ease;
    border: 2px solid #e9ecef;
}

.footer-section .social-link:hover {
    background: linear-gradient(135deg, #ff4081 0%, #E91E63 100%);
    color: #ffffff;
    border-color: #E91E63;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(233, 30, 99, 0.3);
}

/* Footer Columns */
.footer-section .footer-col {
    /* No specific styles needed, grid handles layout */
}

.footer-section .footer-heading {
    font-size: 25px;
    font-weight: 700;
    color: #2d2d2d;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 12px;
}

.footer-section .footer-heading::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 40px;
    height: 3px;
    background: linear-gradient(90deg, #E91E63 0%, #ff4081 100%);
    border-radius: 10px;
}

/* Footer Links */
.footer-section .footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-section .footer-links li {
    margin-bottom: 12px;
}

.footer-section .footer-links a {
    font-size: 20px;
    color: #666;
    text-decoration: none;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
}

.footer-section .footer-links a i {
    font-size: 10px;
    color: #E91E63;
    transition: transform 0.3s ease;
}

.footer-section .footer-links a:hover {
    color: #E91E63;
    padding-left: 5px;
}

.footer-section .footer-links a:hover i {
    transform: translateX(3px);
}

/* Footer Contact */
.footer-section .footer-contact {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-section .footer-contact li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 15px;
    font-size: 20px;
    color: #666;
}

.footer-section .footer-contact i {
    color: #E91E63;
    font-size: 16px;
    margin-top: 2px;
    flex-shrink: 0;
}

.footer-section .footer-contact a {
    color: #666;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section .footer-contact a:hover {
    color: #E91E63;
}

/* ============================================
   FOOTER BOTTOM
   ============================================ */
.footer-section .footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 25px 0;
}

.footer-section .footer-copyright {
    font-size: 21px;
    color: #666;
    margin: 0;
}

.footer-section .footer-bottom-links {
    display: flex;
    align-items: center;
    gap: 15px;
}

.footer-section .footer-bottom-links a {
    font-size: 13px;
    color: #666;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section .footer-bottom-links a:hover {
    color: #E91E63;
}

.footer-section .footer-bottom-links span {
    color: #dee2e6;
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
    .footer-section .footer-top {
        grid-template-columns: 2fr 1fr 1fr;
        gap: 30px;
    }
    
    .footer-section .footer-about {
        grid-column: 1 / -1;
    }
}

@media (max-width: 768px) {
    .footer-section {
        padding: 50px 20px 0;
    }
    
    .footer-section .footer-top {
        grid-template-columns: 1fr;
        gap: 35px;
        padding-bottom: 40px;
    }
    
    .footer-section .footer-about {
        grid-column: 1;
    }
    
    .footer-section .footer-bottom {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
    
    .footer-section .footer-bottom-links {
        flex-wrap: wrap;
        justify-content: center;
    }
}

@media (max-width: 576px) {
    .footer-section {
        padding: 40px 15px 0;
    }
    
    .footer-section .footer-heading {
        font-size: 16px;
    }
    
    .footer-section .footer-social {
        justify-content: center;
    }
    
    .footer-section .social-link {
        width: 38px;
        height: 38px;
        font-size: 15px;
    }
}
/* ================================ */
/* ============================================
   FIXED FLOATING BUTTONS (Mobile & Tablet Only)
   ============================================ */
.floating-buttons {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    display: none;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    z-index: 9999;
    box-shadow: 0 -5px 20px rgba(0, 0, 0, 0.15);
}

.floating-buttons .floating-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 18px 20px;
    font-size: 25px;
    font-weight: 700;
    text-decoration: none;
    color: #ffffff;
    transition: all 0.3s ease;
    border: none;
}

.floating-buttons .floating-btn i {
    font-size: 24px;
}

.floating-buttons .floating-btn span {
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.floating-buttons .floating-call {
    background: linear-gradient(135deg, #ff4081 0%, #E91E63 100%);
}

.floating-buttons .floating-call:active {
    background: linear-gradient(135deg, #E91E63 0%, #c2185b 100%);
}

.floating-buttons .floating-whatsapp {
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
}

.floating-buttons .floating-whatsapp:active {
    background: linear-gradient(135deg, #128C7E 0%, #075E54 100%);
}

/* Show only on Tablet and Mobile */
@media (max-width: 1024px) {
    .floating-buttons {
        display: grid;
    }
}

/* Mobile Adjustments */
@media (max-width: 576px) {
    .floating-buttons .floating-btn {
        padding: 16px 15px;
        font-size: 15px;
    }
    
    .floating-buttons .floating-btn i {
        font-size: 18px;
    }
}