
/* Enhanced Luxurious Footer */
.footer {
    background: linear-gradient(to bottom, #100C08, #0C0C0C);
    color: rgba(255, 255, 255, 0.85);
    padding: 6rem 2rem 2rem;
    position: relative;
    overflow: hidden;
    border-top: 4px solid var(--secondary-color); /* Gold top border */
}

.footer-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    pointer-events: none;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 4rem;
    max-width: 1300px;
    margin: 0 auto;
    margin-bottom: 4rem;
    position: relative;
    z-index: 2;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
    text-decoration: none;
    width: fit-content;
}

.footer-logo img {
    height: 50px;
    width: auto;
    object-fit: contain;
    border: none;
    border-radius: 0;
}

.footer-logo .logo-text {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.footer-brand-name {
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem;
    color: var(--secondary-color);
    font-weight: 700;
    line-height: 1.1;
    letter-spacing: 0.5px;
}

.footer-logo .brand-tagline {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.75rem;
    font-style: italic;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.9);
    letter-spacing: 1px;
}

.footer-desc {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
    margin-bottom: 2rem;
    font-size: 0.95rem;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-light);
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.social-icon:hover {
    background: var(--secondary-color);
    color: var(--primary-color);
    transform: translateY(-3px);
    border-color: var(--secondary-color);
}

.footer-col h4 {
    color: var(--secondary-color);
    margin-bottom: 1.8rem;
    font-size: 1.3rem;
    position: relative;
    display: inline-block;
    padding-bottom: 0.5rem;
}

.footer-col h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background: var(--accent-color); /* Burgundy accent */
}

.footer-links ul li {
    margin-bottom: 1rem;
}

.footer-links ul li a {
    color: rgba(255, 255, 255, 0.8);
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
}

.footer-links ul li a::before {
    content: '\f105'; /* FontAwesome angle-right */
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    margin-right: 8px;
    color: var(--secondary-color);
    opacity: 0;
    transform: translateX(-5px);
    transition: all 0.3s ease;
}

.footer-links ul li a:hover {
    color: var(--secondary-color);
    padding-left: 5px;
}

.footer-links ul li a:hover::before {
    opacity: 1;
    transform: translateX(0);
}

.footer-contact p {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1.2rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.5;
}

.footer-contact i {
    color: var(--secondary-color);
    margin-top: 4px;
}

.footer-contact a {
    color: inherit;
    transition: color 0.3s ease;
}

.footer-contact a:hover {
    color: var(--secondary-color);
}

/* Footer Bottom & Signature */
.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 2rem;
    position: relative;
    z-index: 2;
    margin-top: 2rem;
}

.footer-bottom-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    max-width: 1300px;
    margin: 0 auto;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.5);
    text-align: center;
}

.developer-signature {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    background: rgba(255, 255, 255, 0.03);
    padding: 8px 16px;
    border-radius: 50px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.3s ease;
}

.developer-signature:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(247, 181, 56, 0.3);
    transform: translateY(-2px);
}

.dev-link {
    color: var(--secondary-color);
    font-family: 'Kaushan Script', cursive; /* Signature font */
    font-size: 1.15rem;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
    position: relative;
}

.dev-link::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--secondary-color);
    transition: width 0.3s ease;
}

.dev-link:hover {
    color: #fff;
    text-shadow: 0 0 8px rgba(247, 181, 56, 0.6);
}

.dev-link:hover::after {
    width: 100%;
}

.dev-link i {
    font-size: 1rem;
    color: #25D366; /* WhatsApp Green */
    filter: drop-shadow(0 0 2px rgba(37, 211, 102, 0.3));
}

@media (min-width: 769px) and (max-width: 1024px) {
    .footer {
        padding: 5rem 2rem 2rem;
    }

    .footer-content {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 3rem;
    }

    .footer-col h4 {
        font-size: 1.2rem;
        margin-bottom: 1.4rem;
    }

    .footer-desc {
        font-size: 0.9rem;
        margin-bottom: 1.6rem;
    }

    .footer-links ul li {
        margin-bottom: 0.85rem;
    }
}

@media (max-width: 768px) {
    .footer-bottom-content {
        flex-direction: column;
        text-align: center;
        gap: 1.5rem;
    }

    .developer-signature {
        flex-direction: column;
        gap: 0.2rem;
        padding: 10px 20px;
    }

    .dev-link {
        margin-top: 0.2rem;
    }
}

/* Custom Footer Button Style - User Request */
.footer-col .btn-primary {
    background-color: var(--secondary-color) !important; /* Xanthouse */
    color: var(--primary-color) !important; /* Deep Twilight */
    border-color: var(--secondary-color) !important;
}

.footer-col .btn-primary:hover {
    background-color: var(--accent-color) !important; /* Burgundy */
    color: #ffffff !important; /* White */
    border-color: var(--accent-color) !important;
}
