/* ========================================= */
/* FOOTER STYLES */
/* ========================================= */

.footer-section {
    background-color: #0B1120;
    /* Dark blue background matching the image style */
    color: #ffffff;
    padding: 80px 0 20px 0;
    font-family: 'Inter', sans-serif;
    position: relative;
    overflow: hidden;
}

/* Container */
.footer-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr 1fr;
    gap: 40px;
}

/* Column Styles */
.footer-col {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

/* --- Brand Column --- */
.footer-brand h2 {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-logo-img {
    height: 30px;
    width: auto;
}

/* Reviews */
.footer-reviews {
    margin-bottom: 20px;
}

.google-logo {
    font-weight: 700;
    font-size: 1.1rem;
    color: #fff;
    margin-bottom: 5px;
}

.google-logo span {
    color: #4285F4;
}

.review-stars {
    color: #FBBC05;
    /* Google stars yellow */
    letter-spacing: 2px;
}

.review-text {
    font-size: 0.9rem;
    color: #a0aec0;
    margin-left: 5px;
}

/* Address & Contact */
.footer-contact-info {
    font-size: 0.95rem;
    line-height: 1.6;
    color: #cbd5e0;
}

.footer-contact-info p {
    margin: 0;
}

.footer-contact-info a {
    color: #cbd5e0;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-contact-info a:hover {
    color: #fff;
}

/* Socials */
.footer-socials {
    display: flex;
    gap: 15px;
    margin-top: 10px;
}

.social-icon {
    font-size: 1.5rem;
    color: #3b82f6;
    /* Blue icon color */
    transition: transform 0.3s, color 0.3s;
}

.social-icon:hover {
    color: #fff;
    transform: translateY(-3px);
}

/* --- Links Columns --- */
.footer-title {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: #fff;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: #a0aec0;
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.3s, padding-left 0.3s;
}

.footer-links a:hover {
    color: #60a5fa;
    /* Lighter blue on hover */
    padding-left: 5px;
}

/* --- Bottom Bar --- */
.footer-bottom {
    margin-top: 80px;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
    font-size: 0.85rem;
    color: #718096;
}

.footer-bottom-links {
    display: inline-flex;
    gap: 20px;
    flex-wrap: wrap;
    justify-content: center;
}

.footer-bottom-links a {
    color: #718096;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-bottom-links a:hover {
    color: #fff;
}

/* Cookie Button */
.cookie-btn {
    position: fixed;
    bottom: 30px;
    left: 30px;
    width: 50px;
    height: 50px;
    background-color: #2563EB;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.4);
    cursor: pointer;
    z-index: 1000;
    transition: transform 0.3s;
}

.cookie-btn:hover {
    transform: scale(1.1);
}

.cookie-icon {
    color: #fff;
    font-size: 1.2rem;
}

/* Responsive */
@media (max-width: 1024px) {
    .footer-container {
        grid-template-columns: 1fr 1fr;
    }

    .footer-brand {
        grid-column: span 2;
    }
}

@media (max-width: 768px) {
    .footer-container {
        grid-template-columns: 1fr;
    }

    .footer-brand {
        grid-column: span 1;
        text-align: center;
    }

    .footer-brand h2 {
        justify-content: center;
    }

    .footer-socials {
        justify-content: center;
    }

    .footer-col {
        text-align: center;
    }

    .cookie-btn {
        bottom: 20px;
        left: 20px;
    }
}