/* ============================================
   FOOTER STYLES - Matching Original Layout
   Bronze bar, 3 product cards, Company + Contact section
   ============================================ */

/* Footer container */
.footer {
    background: var(--pure-white);
    color: var(--charcoal);
    padding: 0;
    font-size: 15px;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 60px;
}

/* Bronze Statement Bar - Full Width */
.footer-statement {
    background: var(--bronze);
    color: var(--pure-white);
    padding: 0;
    margin: 0 0 50px 0;
    width: 100%;
}

.footer-statement-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 60px;
    text-align: left;
}

.footer-statement h2 {
    font-size: 28px;
    font-weight: 700;
    line-height: 1.3;
    margin: 0 0 6px 0;
    color: var(--pure-white);
}

.footer-tagline {
    font-size: 17px;
    font-weight: 400;
    line-height: 1.5;
    opacity: 0.95;
}

/* Product Cards Section (3 cards in a row) */
.product-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 50px;
}

/* Universal Card Styling - Warm White */
.footer-card {
    background: var(--warm-white);
    padding: 32px;
    border-radius: 8px;
    border: 2px solid var(--warm-white);
    transition: border-color 0.3s ease;
}

.footer-card:hover {
    border-color: var(--bronze);
}

/* Contact Cards - Light Gray */
.contact-card {
    background: var(--light-gray);
    border: 2px solid var(--light-gray);
}

.footer-card h3 {
    font-size: 16px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 20px;
    padding-bottom: 12px;
    color: var(--charcoal);
    border-bottom: 3px solid var(--bronze);
}

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

.footer-card ul li {
    margin-bottom: 6px;
}

.footer-card ul li a {
    color: var(--charcoal);
    text-decoration: none;
    font-size: 15px;
    transition: color 0.3s ease;
}

.footer-card ul li a:hover {
    color: var(--bronze);
    text-decoration: underline;
}

/* Capabilities Preview (bullet list under View Machining Capabilities) */
.footer-card .capabilities-preview {
    list-style: none;
    margin: 4px 0 0 0;
    padding: 0 0 0 16px;
}

.footer-card .capabilities-preview li {
    font-size: 15px;
    color: var(--slate-gray);
    padding: 1px 0;
    line-height: 1.3;
    position: relative;
    padding-left: 12px;
}

.footer-card .capabilities-preview li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: var(--bronze);
}

/* Bottom Section: Company + Contact Information */
.footer-bottom-section {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 30px;
    margin-bottom: 40px;
}

/* Company Card */
.company-card {
    /* Uses universal .footer-card styles */
}

/* Contact Section (Right side) */
.contact-section {
    /* Container for contact title and cards */
}

.contact-section-title {
    font-size: 18px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 20px;
    padding-bottom: 12px;
    color: var(--charcoal);
    border-bottom: 3px solid var(--bronze);
}

.contact-cards-row {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

/* Contact Cards */
.contact-card {
    /* Uses universal .footer-card styles */
    display: flex;
    flex-direction: column;
    height: 100%;
}

.contact-label {
    font-size: 15px;
    font-weight: 700;
    color: var(--charcoal);
    margin-bottom: 12px;
}

.contact-details {
    font-size: 14px;
    line-height: 1.6;
    color: var(--charcoal);
}

.contact-details a {
    color: var(--charcoal);
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-details a:hover {
    color: var(--bronze);
    text-decoration: underline;
}

.contact-phone {
    font-size: 18px;
    font-weight: 700;
    display: block;
    margin-top: 12px;
    margin-bottom: 6px;
    color: var(--bronze);
}

.contact-hours {
    font-size: 13px;
    opacity: 0.85;
}

.contact-email {
    font-size: 16px;
    font-weight: 600;
    display: block;
    color: var(--bronze);
}

/* Copyright Bar */
.footer-copyright-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 30px 0;
    font-size: 14px;
    color: var(--slate-gray);
    border-top: 1px solid #e5e5e5;
}

.copyright-text {
    /* Inherits color from parent */
}

.footer-legal-links {
    display: flex;
    gap: 24px;
}

.footer-legal-links a {
    color: var(--slate-gray);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-legal-links a:hover {
    color: var(--bronze);
    text-decoration: underline;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .footer-container {
        padding: 0 30px;
    }
    
    .footer-statement-inner {
        padding: 30px 30px;
    }
    
    .footer-statement h2 {
        font-size: 24px;
    }
    
    .footer-tagline {
        font-size: 15px;
    }
    
    .product-cards {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .footer-bottom-section {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .contact-cards-row {
        grid-template-columns: 1fr;
        gap: 15px;
    }
}

@media (max-width: 768px) {
    .footer {
        padding: 0;
    }
    
    .footer-statement-inner {
        padding: 25px 20px;
    }
    
    .footer-statement h2 {
        font-size: 20px;
    }
    
    .footer-tagline {
        font-size: 14px;
    }
    
    .footer-copyright-bar {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
    
    .footer-legal-links {
        flex-direction: column;
        gap: 12px;
    }
}
