/* ========================= */
/* FOOTER */
/* ========================= */

.footer {
    background: #63c0e6;
    padding: 70px 20px 40px;
    color: #ffffff;
}

.footer-container {
    max-width: 1200px;
    margin: auto;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 40px;
}

/* Titles */
.footer-title {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 20px;
}

/* Description */
.footer-description {
    font-size: 14px;
    color: rgba(255,255,255,0.7);
    line-height: 1.6;
    margin-bottom: 20px;
}

/* Links */
.footer-links,
.footer-locations {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li,
.footer-locations li {
    margin-bottom: 12px;
    font-size: 14px;
}

.footer-links a {
    color: rgba(255,255,255,0.7);
    text-decoration: none;
    transition: 0.3s;
}

.footer-links a:hover {
    color: #ffffff;
    padding-left: 5px;
}

.footer-links i {
    margin-right: 8px;
    color: #0d6efd;
}

/* Social Icons */
.social-icons {
    display: flex;
    gap: 12px;
    margin-top: 10px;
}

.social-btn {
    width: 35px;
    height: 35px;
    background: #1f2937;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: #ffffff;
    text-decoration: none;
    transition: 0.3s;
}

.social-btn:hover {
    background: #0d6efd;
}

/* Contact */
.contact-item {
    display: flex;
    gap: 10px;
    align-items: flex-start;
    margin-bottom: 15px;
    font-size: 14px;
    color: rgba(255,255,255,0.7);
}

.contact-item i {
    color: #0d6efd;
    margin-top: 4px;
}

.contact-item a {
    color: rgba(255,255,255,0.7);
    text-decoration: none;
}

.contact-item a:hover {
    color: #ffffff;
}

/* ========================= */
/* RESPONSIVE */
/* ========================= */

@media (max-width: 992px) {
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .footer-grid {
        grid-template-columns: 1fr;
    }
}


/* Floating Buttons Container */
.floating-buttons {
    position: fixed;
    bottom: 20px;
    right: 20px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    z-index: 9999;
}

/* Common Button Style */
.float-btn {
    position: fixed;
    bottom: 20px;
    width: 55px;
    height: 55px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-size: 22px;
    text-decoration: none;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
    transition: all 0.3s ease;
    z-index: 9999;
}

/* WhatsApp Button - Left Side */
.left-btn {
    left: 20px;
    background-color: #25D366;
}

/* Call Button - Right Side */
.right-btn {
    right: 20px;
    background-color: #25D366;
}

/* Hover Effect */
.float-btn:hover {
    transform: scale(1.1);
}

/* ===============================
   FOOTER BOTTOM
================================= */

.footer-bottom {
    display: flex;
    justify-content: space-between;
    
    background: #4f0392; /* Dark background */
    padding: 18px 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
    margin-left: 100px;
    margin-right: 120px;
    font-size: 14px;
    color: #ccc;
    letter-spacing: 0.5px;
}

.footer-bottom a {
    color: #ffffff;
    text-decoration: none;
    font-weight: 500;
    transition: 0.3s ease;
}

.footer-bottom a:hover {
    color: #ff6600; /* Change to your theme color */
}

.footer-bottom span {
    font-weight: 600;
}

/* ===============================
   MOBILE RESPONSIVE
================================= */

@media (max-width: 768px) {
    
    .footer-bottom {
        padding: 15px;
    }

    .footer-bottom p {
        font-size: 13px;
    }
}