:root {
    --primary-dark: #0f1419;
    --secondary-gold: #d4af37;
    --accent-gold: #b8941f;
    --light-cream: #f8f5f0;
    --text-gray: #8c8c8c;
    --text-light: #b3b3b3;
    --border-dark: #2a2f35;
}

.main-footer {
    background: linear-gradient(135deg, var(--primary-dark), #1a1f25);
    color: var(--light-cream);
    padding: 1.5rem 0 0.8rem;
    border-top: 1px solid var(--border-dark);
    font-family: 'Inter', sans-serif;
    font-size: 0.85rem;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

.footer-content {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: 1rem;
    align-items: start;
    margin-bottom: 1rem;
}

/* Brand Section */
.footer-brand {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.brand-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 0.6rem;
}

.footer-logo-img {
    height: 42px;
    width: auto;
}

.logo-text {
    line-height: 1.1;
}

.logo-text .logo-main {
    color: var(--light-cream);
    font-size: 1.2rem;
    font-weight: 700;
    font-family: 'Playfair Display', serif;
}

.logo-text .logo-tagline {
    font-size: 0.65rem;
    color: var(--secondary-gold);
    text-transform: uppercase;
    letter-spacing: 0.4px;
    display: block;
}

.brand-description {
    color: var(--text-light);
    font-size: 0.8rem;
    margin-bottom: 0.5rem;
    line-height: 1.4;
}

/* Social Links */
.social-links {
    display: flex;
    gap: 0.4rem;
}

.social-link {
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 6px;
    background: rgba(255, 255, 255, 0.05);
    color: var(--text-light);
    font-size: 0.8rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.social-link:hover {
    background: var(--secondary-gold);
    color: var(--primary-dark);
    transform: translateY(-2px);
}

/* Titles */
.footer-title {
    color: var(--light-cream);
    font-size: 1rem;
    margin-bottom: 0.6rem;
    font-weight: 600;
    font-family: 'Playfair Display', serif;
    position: relative;
    padding-bottom: 0.3rem;
}

.footer-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 20px;
    height: 1px;
    background: var(--secondary-gold);
}

/* Footer Links */
.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

/* Horizontal layout for smaller footer */
.horizontal-links {
    display: flex;
    flex-wrap: wrap;
    gap: 0.6rem 1.2rem;
}

.footer-link {
    color: var(--text-light);
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 0.8rem;
}

.footer-link:hover {
    color: var(--secondary-gold);
    transform: translateY(-2px);
}

/* Divider & Signature */
.footer-divider {
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(212, 175, 55, 0.3), transparent);
    margin: 0.8rem 0;
}

.footer-signature {
    text-align: center;
    padding-top: 0.4rem;
}

.footer-signature p {
    color: var(--text-gray);
    font-size: 0.7rem;
    margin: 0;
}

/* WhatsApp Floating Button */
.whatsapp-float {
    position: fixed;
    bottom: 18px;
    right: 18px;
    background: linear-gradient(135deg, #25D366, #128C7E);
    color: white;
    border-radius: 50%;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.25);
    transition: all 0.3s ease;
    z-index: 999;
}

.whatsapp-float:hover {
    transform: scale(1.1);
}

/* Responsive Footer */
@media (max-width: 768px) {
    .footer-content {
        grid-template-columns: 1fr;
    }
    .horizontal-links {
        flex-direction: column;
        gap: 0.4rem;
    }
}
