﻿/* --- Main Footer Base --- */
.site-footer {
    background: #020c1b;
    color: #ffffff;
    padding: 80px 0 40px;
    font-family: 'Inter', sans-serif;
}

.footer-container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

/* Main Grid: Stacks on mobile, 2 cols on tablet, 4 on desktop */
.footer-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
}

@media (min-width: 768px) {
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .footer-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

/* --- Typography & Links --- */
.footer-column h4 {
    color: #b39359;
    font-size: 1.1rem;
    margin-bottom: 25px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-weight: 700;
}

.footer-desc {
    color: rgba(255,255,255,0.7);
    font-size: 0.9rem;
    line-height: 1.6;
    margin-bottom: 20px;
}

.footer-links a {
    display: block;
    color: rgba(255,255,255,0.65);
    text-decoration: none;
    font-size: 0.88rem;
    margin-bottom: 12px;
    transition: 0.3s;
    line-height: 1.4;
}

    .footer-links a:hover {
        color: #b39359;
        transform: translateX(5px);
    }

.service-category {
    color: #b39359;
    font-size: 0.75rem;
    display: block;
    margin-bottom: 15px;
    letter-spacing: 1px;
    opacity: 0.9;
}

/* Internal Service Grid Fix */
.footer-services-grid {
    display: grid;
    grid-template-columns: 1fr; /* Stacks links on small mobile */
    gap: 20px;
}

@media (min-width: 400px) {
    .footer-services-grid {
        grid-template-columns: 1fr 1fr;
    }
}

/* --- Contact & Buttons --- */
.contact-info p {
    margin-bottom: 18px;
    display: flex;
    align-items: flex-start;
    gap: 12px;
    color: rgba(255,255,255,0.8);
    font-size: 0.9rem;
    word-break: break-all; /* Fixes email/phone overflow on narrow screens */
}

.contact-info i {
    color: #b39359;
    margin-top: 4px;
}

.contact-info a {
    color: inherit;
    text-decoration: none;
}

.inquire-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-top: 20px;
    padding: 12px 20px;
    background: transparent;
    color: #b39359;
    border: 1px solid #b39359;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 700;
    font-size: 0.85rem;
    transition: 0.3s;
    text-transform: uppercase;
}

    .inquire-btn:hover {
        background: #b39359;
        color: #020c1b;
    }

/* Social Icons */
.social-icons {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

    .social-icons a {
        width: 35px;
        height: 35px;
        background: rgba(255,255,255,0.05);
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: 50%;
        color: white;
        text-decoration: none;
        transition: 0.3s;
    }

        .social-icons a:hover {
            background: #b39359;
            color: #020c1b;
        }
/* --- Footer Bottom (Legal) --- */
.footer-bottom {
    margin-top: 60px;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap; /* Wraps on mobile */
}

.copyright {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.85rem;
}

.legal-links {
    display: flex;
    align-items: center;
    gap: 15px;
}

    .legal-links a {
        color: rgba(255, 255, 255, 0.5);
        text-decoration: none;
        font-size: 0.85rem;
        transition: 0.3s ease;
    }

        .legal-links a:hover {
            color: #b39359;
        }

    .legal-links .separator {
        color: rgba(255, 255, 255, 0.15);
        font-size: 0.8rem;
        user-select: none;
    }

/* Tablet/Mobile Adjustments for Footer Bottom */
@media (max-width: 768px) {
    .footer-bottom-content {
        flex-direction: column;
        text-align: center;
        justify-content: center;
    }

    .legal-links {
        justify-content: center;
    }
}
/* --- Cookie Consent Banner --- */
.cookie-notice {
    position: fixed;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: 90%;
    max-width: 600px;
    background: #020c1b;
    border: 1px solid #b39359;
    padding: 20px;
    z-index: 9999;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
}

.cookie-content {
    display: flex;
    align-items: center;
    gap: 20px;
}

    .cookie-content i {
        color: #b39359;
        font-size: 1.5rem;
    }

    .cookie-content p {
        color: rgba(255,255,255,0.8);
        font-size: 0.85rem;
        margin: 0;
        line-height: 1.5;
    }

    .cookie-content a {
        color: #b39359;
        text-decoration: underline;
    }

.cookie-btn {
    background: #b39359;
    color: #020c1b;
    border: none;
    padding: 8px 15px;
    border-radius: 4px;
    font-weight: 700;
    font-size: 0.8rem;
    cursor: pointer;
    white-space: nowrap;
    transition: 0.3s;
}

    .cookie-btn:hover {
        background: #ffffff;
    }

@media (max-width: 600px) {
    .cookie-content {
        flex-direction: column;
        text-align: center;
    }
}
.contact-info {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-bottom: 20px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    line-height: 1.5;
}

    /* This prevents words from breaking mid-way */
    .contact-item strong, .contact-item span {
        display: inline-block;
        word-break: keep-all;
    }

.inquire-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 12px;
    border: 1px solid #b39359;
    color: #b39359;
    text-decoration: none;
    font-weight: bold;
    transition: 0.3s;
}

    .inquire-btn:hover {
        background: #b39359;
        color: #fff;
    }