﻿/* ===== PROFESSIONAL GREEN FOOTER ===== */

:root {
    --green-primary: #1b5e20; /* Dark Green */
    --green-dark: #0f3d16; /* Deep Green */
    --green-light: #43a047; /* Accent Green */
    --green-accent: #66bb6a; /* Hover Green */

    --text-white: #ffffff;
    --text-light: #e8f5e9;
    --text-muted: #c8e6c9;
    --border-light: rgba(255,255,255,0.15);
    --border-medium: rgba(255,255,255,0.25);
    --hover-light: rgba(255,255,255,0.08);
    --hover-medium: rgba(255,255,255,0.12);
}

/* ===== MAIN FOOTER ===== */
.samco-footer {
    background: linear-gradient(135deg, var(--green-primary), var(--green-dark));
    color: var(--text-white);
    padding: 50px 0 25px;
    font-family: 'Segoe UI', sans-serif;
}

/* ===== CONTAINER ===== */
.footer-container {
    max-width: 1200px;
    margin: auto;
    padding: 0 20px;
}

/* ===== GRID ===== */
.footer-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    margin-bottom: 40px;
}

/* ===== LOGO ===== */
.logo-wrapper {
    width: 85px;
    height: 85px;
    background: #ffffff;
    border-radius: 10px;
    padding: 8px;
    border: 2px solid var(--green-light);
}

.footer-logo {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

/* ===== BRAND TEXT ===== */
.brand-title {
    font-size: 26px;
    font-weight: 800;
    color: var(--text-white);
}

.brand-subtitle {
    color: var(--text-light);
    font-size: 14px;
}

.brand-mission {
    color: var(--text-muted);
    font-size: 14px;
    border-left: 3px solid var(--green-light);
    padding-left: 10px;
    margin-top: 10px;
}

/* ===== HEADINGS ===== */
.footer-heading {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 20px;
    border-bottom: 2px solid var(--green-light);
    color: #ffffff;
}

/* ===== LINKS ===== */
.footer-nav {
    list-style: none;
    padding: 0;
}

    .footer-nav li {
        margin-bottom: 12px;
    }

.footer-link {
    color: var(--text-light);
    text-decoration: none;
    font-size: 15px;
    transition: 0.3s;
}

    .footer-link:hover {
        color: #ffffff;
        padding-left: 6px;
    }

/* ===== CONTACT ===== */
.contact-item {
    display: flex;
    gap: 12px;
    margin-bottom: 15px;
}

.contact-icon {
    background: rgba(255,255,255,0.1);
    color: var(--green-accent);
    width: 35px;
    height: 35px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-link,
.contact-text {
    color: var(--text-light);
    text-decoration: none;
}

    .contact-link:hover {
        color: #ffffff;
    }

/* ===== DIVIDER ===== */
.footer-divider {
    height: 1px;
    background: var(--border-medium);
    margin: 25px 0;
}

/* ===== BOTTOM ===== */
.footer-bottom {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 20px;
}

.copyright-text {
    color: var(--text-muted);
    font-size: 14px;
}

.developer-section {
    background: rgba(255,255,255,0.08);
    padding: 8px 16px;
    border-radius: 20px;
}

.developer-link {
    color: #ffffff;
    font-weight: 600;
}

    .developer-link:hover {
        color: var(--green-accent);
    }

/* ===== HOVER EFFECTS ===== */
.footer-link:hover,
.contact-item:hover {
    background: var(--hover-light);
    border-radius: 5px;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .footer-grid {
        grid-template-columns: 1fr;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
}
