/* =========================================
   PREMIUM TEXTURED FOOTER
   ========================================= */
footer {
    /* 1. Background Texture/Color (Cream Theme) */
    background-color: var(--bg-cream);
    
    /* 2. Gradient Top Border */
    position: relative;
    border-top: 5px solid transparent;
    border-image: linear-gradient(to right, var(--primary-gold), var(--primary-light), var(--accent-dark)) 1;
    
    padding: 80px 0 30px;
    color: var(--accent-dark);
    font-size: 0.95rem;
    z-index: 10;
}

/* Container Alignment */
.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* --- TOP GRID LAYOUT --- */
.footer-top {
    display: grid;
    /* Columns: Wide Brand, Address, Links */
    grid-template-columns: 1.8fr 1.5fr 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 60px;
}

/* 1. Brand Column */
.footer-logo img {
    height: 55px; /* Slightly larger */
    width: auto;
    margin-bottom: 25px;
    filter: drop-shadow(0 2px 4px rgba(0,0,0,0.05));
}

.footer-vision {
    font-family: 'Playfair Display', serif; /* Elegant Font */
    font-style: italic;
    color: #555;
    line-height: 1.6;
    margin-bottom: 30px;
    max-width: 300px;
    font-size: 1.1rem;
}

.social-icons {
    display: flex;
    gap: 15px;
}

.icon-circle {
    width: 40px;
    height: 40px;
    border: 1px solid var(--primary-gold); /* Gold Border */
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-gold);
    transition: all 0.3s ease;
    font-size: 1rem;
    background: #fff;
}

.icon-circle:hover {
    background: var(--primary-gold);
    color: #fff;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(179, 120, 57, 0.2);
}

/* 2. Address Column */
.address-col h4 {
    font-family: 'Playfair Display', serif;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--accent-dark);
    margin-bottom: 12px;
    letter-spacing: 0.5px;
    border-left: 3px solid var(--primary-gold); /* Accent Line */
    padding-left: 10px;
}

.address-col p {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 25px;
    font-family: 'Lato', sans-serif;
}

.contact-highlight {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.contact-highlight a {
    font-weight: 700;
    color: var(--accent-dark);
    font-size: 1rem;
    font-family: 'Playfair Display', serif;
    transition: color 0.3s;
}
.contact-highlight a:hover {
    color: var(--primary-gold);
}

/* 3-5. Link Columns */
.links-col h4 {
    font-family: 'Playfair Display', serif;
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 25px;
    color: var(--primary-gold);
}

.links-col ul {
    list-style: none;
    padding: 0;
}

.links-col li {
    margin-bottom: 14px;
}

.links-col a {
    color: var(--accent-dark);
    font-family: 'Lato', sans-serif;
    font-weight: 400; /* Normal text weight (No button look) */
    font-size: 0.95rem;
    transition: all 0.3s ease;
    position: relative;
    display: inline-block;
    opacity: 0.8;
}

/* Hover Slide Effect */
.links-col a:hover {
    color: var(--primary-gold);
    opacity: 1;
    transform: translateX(5px);
}

/* --- BOTTOM BAR --- */
.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 30px;
    border-top: 1px solid rgba(0,0,0,0.05);
    font-size: 0.85rem;
    color: #888;
    font-weight: 300;
}

.legal-links a {
    margin-left: 30px;
    color: #666;
    font-weight: 400;
    transition: 0.3s;
    position: relative;
}

.legal-links a:hover {
    color: var(--primary-gold);
}

/* --- MOBILE RESPONSIVE (Stack & Accordion) --- */
@media (max-width: 992px) {
    footer { padding: 50px 0 20px; }
    
    .footer-top {
        display: flex;
        flex-direction: column;
        gap: 0;
    }

    .brand-col, .address-col {
        margin-bottom: 40px;
        text-align: left;
    }

    /* Accordion Style */
    .mobile-dropdown {
        border-bottom: 1px solid rgba(0,0,0,0.05);
    }

    .toggle-header {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 15px 0;
        cursor: pointer;
    }

    .toggle-header h4 { margin: 0; font-size: 1rem; color: var(--accent-dark); }

    .plus-icon {
        font-size: 1.2rem;
        font-weight: 300;
        color: var(--primary-gold);
        transition: transform 0.3s ease;
    }

    .dropdown-content {
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.4s ease-out;
        padding-left: 10px;
    }

    /* Open State */
    .mobile-dropdown.active .dropdown-content {
        max-height: 300px;
        padding-bottom: 20px;
    }
    
    .mobile-dropdown.active .plus-icon {
        transform: rotate(45deg);
    }

    /* Bottom Bar Stack */
    .footer-bottom {
        flex-direction: column-reverse;
        gap: 15px;
        text-align: center;
    }
    
    .legal-links a {
        margin: 0 10px;
    }
}