/* =========================
   MAIN FOOTER
========================= */

.main-footer {
    background-color: #0a0a0a;
    /* Deep Black */
    padding: 80px 5% 40px;
    color: #ffffff;
    /* White text for contrast */
    font-family: 'Inter', sans-serif;
}


/* TOP SECTION */

.footer-top {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding-bottom: 60px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    /* Lighter border for dark bg */
    gap: 50px;
}


/* =========================
   BRAND SECTION
========================= */

.logo-group {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
}

.footer-logo {
    height: 32px;
    width: auto;
    filter: brightness(0) invert(1);
    /* Forces logo to white if it's a dark PNG */
}

.brand-name {
    font-weight: 700;
    font-size: 1.1rem;
    color: orange;
    /* Gold to match your luxury theme */
}

.footer-tagline {
    font-size: 0.9rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.7);
    /* Muted white */
    margin-bottom: 25px;
    max-width: 300px;
}


/* =========================
   SOCIAL LINKS
========================= */

.social-links {
    display: flex;
    gap: 18px;
    align-items: center;
}

.social-links a {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.05);
    /* Subtle dark circles */
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #fff;
    font-size: 16px;
    transition: all 0.3s ease;
}


/* Hover effect */

.social-links a:hover {
    background: orange;
    /* Gold hover */
    color: #0a0a0a;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(230, 194, 122, 0.2);
}


/* =========================
   FOOTER NAVIGATION
========================= */

.footer-nav ul {
    list-style: none;
    display: flex;
    gap: 30px;
    margin: 0;
    padding: 0;
    flex-wrap: wrap;
}

.footer-nav a {
    text-decoration: none;
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
    font-weight: 400;
    transition: 0.3s ease;
    position: relative;
}


/* underline hover effect */

.footer-nav a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -4px;
    width: 0%;
    height: 1px;
    background: orange;
    /* Gold underline */
    transition: 0.3s ease;
}

.footer-nav a:hover {
    color: green;
}

.footer-nav a:hover::after {
    width: 100%;
}


/* =========================
   FOOTER BOTTOM
========================= */

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 30px;
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.4);
}

.legal-links {
    display: flex;
    gap: 20px;
}

.legal-links a {
    text-decoration: none;
    color: rgba(255, 255, 255, 0.4);
    transition: 0.3s ease;
}

.legal-links a:hover {
    color: orange;
}

/*footer brand*/

.footer-brand a {
    color: #25D366;
    font-size: 22px;
    text-decoration: none;
    transition: 0.3s ease;
}

.footer-brand a:hover {
    transform: scale(1.1);
}

.footer-brand img {
    width: 35px;
    height: 35px;
    object-fit: contain;
}

.footer-brand span {
    color: #fff;
    font-size: 14px;
}

.footer-brand a {
    color: orange;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
}

.footer-brand a:hover {
    text-decoration: underline;
}



/* =========================
   RESPONSIVE
========================= */


/* =========================
   FOOTER MOBILE FIX
   ========================= */

@media (max-width: 1024px) {
    .footer-top {
        flex-direction: column;
        align-items: flex-start;
        gap: 30px;
        padding-bottom: 40px;
    }
    .footer-nav ul {
        gap: 15px;
    }
}


/* Small phones */

@media (max-width: 600px) {
    .main-footer {
        padding: 60px 5% 30px;
    }
    .logo-group {
        flex-direction: row;
        align-items: center;
    }
    .footer-tagline {
        max-width: 100%;
        font-size: 0.85rem;
    }
    .social-links {
        gap: 12px;
    }
    .social-links a {
        width: 36px;
        height: 36px;
        font-size: 14px;
    }
    .footer-nav ul {
        flex-direction: column;
        gap: 12px;
    }
    .footer-bottom {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
        text-align: left;
    }
    .legal-links {
        flex-direction: column;
        gap: 8px;
    }
}