/* Styling setup mapping brand assets from flyer */
:root {
    --footer-bg: #1E252B;       /* Charcoal Dark Blue/Black */
    --footer-bottom-bg: #151A1E;/* Slightly darker hue for sub-footer copyright */
    --brand-red: #A30000;       /* Deep red accent color */
    --brand-gold: #FFCC00;      /* Rich Gold link-hover highlight */
    --white: #FFFFFF;
    --text-slate: #94A3B8;      /* Readable grey body color over dark layouts */
    --border-dark: #2E373F;     /* Subtle panel breaks */
    --transition: all 0.3s ease;
}

.site-footer {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: var(--footer-bg);
    color: var(--text-slate);
    padding: 70px 0 0 0;
    font-size: 0.92rem;
    border-top: 4px solid var(--brand-red);
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px 50px 20px;
    display: grid;
    grid-template-columns: 1.2fr 0.8fr 1fr 1.2fr;
    gap: 40px;
    
}

/* Company Branding Header Sub-Layout */
.footer-logo-block {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
}

.footer-logo-block .logo-icon {
    background-color: var(--brand-red);
    color: var(--white);
    width: 38px;
    height: 38px;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
}

.footer-logo-block .logo-text h3 {
    margin: 0;
    color: var(--white);
    font-size: 1.3rem;
    font-weight: 700;
    line-height: 1.1;
}

.footer-logo-block .logo-text span {
    font-size: 0.72rem;
    color: var(--brand-gold);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.company-desc {
    line-height: 1.6;
    margin-bottom: 25px;
}

/* Rounded Square Social Icons */
.social-links {
    display: flex;
    gap: 10px;
}

.social-links a {
    background-color: rgba(255, 255, 255, 0.05);
    color: var(--text-slate);
    width: 35px;
    height: 35px;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.95rem;
    transition: var(--transition);
    text-decoration: none;
}

.social-links a:hover {
    background-color: var(--brand-red);
    color: var(--white);
    transform: translateY(-3px);
}

/* Universal Columns Header & Lists Setup */
.footer-column h4 {
    color: var(--white);
    font-size: 1.1rem;
    font-weight: 600;
    margin-top: 0;
    margin-bottom: 25px;
    position: relative;
}

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

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

.footer-links li a {
    color: var(--text-slate);
    text-decoration: none;
    transition: var(--transition);
    display: inline-block;
}

.footer-links li a:hover {
    color: var(--brand-gold);
    transform: translateX(4px);
}

/* Contact Column Structural Elements */
.contact-details {
    list-style: none;
    padding: 0;
    margin: 0;
}

.contact-details li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 16px;
    line-height: 1.5;
}

.contact-details li i {
    color: var(--brand-red);
    margin-top: 3px;
    flex-shrink: 0;
}

.contact-details li a {
    color: var(--text-slate);
    text-decoration: none;
    transition: var(--transition);
}

.contact-details li a:hover {
    color: var(--brand-gold);
}


/* Grid Breakdown Media Queries */
@media (max-width: 992px) {
    .footer-container {
        grid-template-columns: 1.5fr 1fr;
        gap: 40px;
    }
}

@media (max-width: 600px) {
    .footer-container {
        grid-template-columns: 1fr;
        gap: 35px;
    }
    .footer-bottom-container {
        flex-direction: column;
        text-align: center;
        gap: 10px;
    }
}