/* Header */
header.site-header {
    background: var(--bg-white);
    color: var(--primary-harvest-green);
    padding: 20px 0;
    position: sticky;
    top: 0;
    width: 100%;
    z-index: 1000;
}

header.site-header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

header.site-header nav {
    display: flex;
    align-items: center;
}

/* Main layout */
main section {
    padding: 40px 20px;
}

/* Footer Base */
footer {
    background: var(--dark-forest-green);
    color: var(--text-light);
    padding: 30px 20px;
    font-family: var(--font-main);
}

footer p {
    font-size: .954rem;
}

/* Footer Container */
.footer-container {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    max-width: 1200px;
    margin: auto;
    gap: 30px;
}

/* Brand & Socials */
.footer-brand h3 {
    font-size: 1.6rem;
    color: var(--bg-white);
    text-transform: uppercase;
    margin-bottom: 20px;
}

.footer-brand h3 img {
    width: 200px;
}

.footer-brand span {
    color: var(--text-light);
}

.footer-socials {
    display: flex;
    gap: 15px;
    margin-top: 10px;
}

/* Footer Socials */
.footer-socials {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 15px;
}

.footer-socials a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    background: var(--primary-harvest-green);
    border-radius: 50%;
    transition: transform 0.3s ease, background 0.3s ease;
}

.footer-socials a svg {
    width: 20px;
    height: 20px;
    fill: var(--bg-white); /* default icon color */
    transition: fill 0.3s ease;
}

.footer-socials a:hover {
    transform: scale(1.2);
    background: var(--text-light);
}

.footer-socials a:hover svg {
    fill: var(--dark-forest-green); /* icon color on hover; can be brand-specific if needed */
}

/* Optional: brand-specific colors on hover */
.footer-socials a.facebook:hover svg { fill: #1877F2; }
.footer-socials a.instagram:hover svg { fill: #E4405F; }
.footer-socials a.linkedin:hover svg { fill: #0A66C2; }
.footer-socials a.whatsapp:hover svg { fill: #25D366; }
.footer-socials a.youtube:hover svg { fill: #FF0000; }

/* Quick Links */
.footer-links h4,
.footer-contact h4 {
    font-size: 1.2rem;
    margin-bottom: 10px;
    color: var(--bg-white);
    font-weight: 600;
    text-transform: capitalize;
}

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

.footer-links ul li {
    margin-bottom: 8px;
}

.footer-links a {
    color: var(--text-light);
    text-decoration: none;
    transition: color 0.3s;
    font-size: .954rem;
}

.footer-links a:hover {
    color: var(--accent-gold);
}

/* Contact Info */
.footer-contact p {
    margin-bottom: 10px;
}

.footer-contact p a {
    font-weight: 600;
}

/* Footer Bottom */
.footer-bottom {
    margin-top: 30px;
    text-align: center;
    font-size: 0.9rem;
}

/* Back to Top */
.back-to-top {
    position: fixed;
    bottom: 25px;
    right: 25px;
    background: var(--primary-harvest-green);
    color: var(--leaf-green);
    border: none;
    border-radius: 50%;
    width: 45px;
    height: 45px;
    font-size: 1.4rem;
    cursor: pointer;
    opacity: 0;
    pointer-events: none;
    transition: all 0.3s ease;
}

.back-to-top.show {
    opacity: 1;
    pointer-events: auto;
}

/* Utility classes */
.text-center {
    text-align: center;
}

.mt-20 {
    margin-top: 20px;
}

.mb-20 {
    margin-bottom: 20px;
}