/* ==================================
   MACHINERIES MARKET - FIXED FOOTER COLORS
   ================================== */

/* --- 1. CALL TO ACTION BAR (Top Strip) --- */
.cta-bar-section {
    background-color: #1F2937;
    padding: clamp(24px, 3vw, 40px) clamp(20px, 5vw, 120px);
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid #374151;
    flex-wrap: wrap;
    gap: 20px;
}

.cta-text {
    font-family: 'Orbitron', sans-serif;
    font-size: clamp(1.2rem, 1.5vw, 1.6rem);
    font-weight: 600;
    color: #ffffff;
}

.cta-button {
    background-color: #1954d8; /* Hydro Blue */
    color: white;
    padding: 12px 30px;
    text-decoration: none;
    font-family: 'Roboto', sans-serif;
    font-weight: bold;
    border-radius: 4px;
    transition: background 0.2s ease;
}

.cta-button:hover {
    background-color: #FFA500;
}

/* --- 2. MAIN FOOTER AREA --- */
.footer-wrapper {
    background-color: #111827; /* Deep Blue/Black Background */
    border-top: 1px solid #374151;
    color: #d1d5db; /* Default text color: Light Grey */
}

.footer-container {
    max-width: 1800px;
    width: 92%;
    margin: 0 auto;
    padding: clamp(40px, 5vw, 80px) 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: clamp(30px, 4vw, 80px);
}

/* HEADERS (Company Info, Products, etc.) */
.footer-col h3 {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.1rem;
    font-weight: 600;
    color: #ffffff; /* FORCE WHITE */
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
    max-width: 420px;
}

/* PARAGRAPH TEXT (The part that was too dark) */
.footer-col p {
    font-family: 'Roboto', sans-serif;
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 10px;
    color: #d1d5db; /* Light Grey (Readable) */
    max-width: 420px;
}

/* LINKS LIST */
.footer-col ul {
    list-style: none;
    padding: 0;
    max-width: 420px;
}

.footer-col ul li {
    margin-bottom: 12px;
    max-width: 420px;
}

.footer-col ul li a {
    color: #d1d5db; /* Light Grey Links */
    text-decoration: none;
    font-family: 'Roboto', sans-serif;
    font-size: 0.95rem;
    transition: color 0.2s;
    display: flex;
    align-items: center;
    max-width: 420px;
}

/* The Blue Arrow before links */
.footer-col ul li a::before {
    content: "›";
    color: #3b82f6; /* Hydro Blue */
    font-weight: bold;
    font-size: 1.2rem;
    margin-right: 8px;
    line-height: 0;
    max-width: 420px;
}

.footer-col ul li a:hover {
    color: #3b82f6; /* Turn Blue on Hover */
    padding-left: 5px;
    max-width: 420px;
}

/* CONTACT INFO SPECIFIC */
.contact-info-item {
    display: block;
    margin-bottom: 20px;
    font-size: 0.95rem;
    color: #d1d5db; /* Light Grey */
}

.contact-label {
    display: block;
    color: #3b82f6; /* Blue Label (e.g., "Phone") */
    font-weight: bold;
    margin-bottom: 4px;
    font-family: 'Orbitron', sans-serif;
    font-size: 0.85rem;
}

/* --- 3. BOTTOM BAR --- */
.footer-bottom {
    background-color: #0b0f19;
    padding: 18px clamp(20px, 5vw, 120px);
    text-align: center;
    border-top: 1px solid #374151;
    border-bottom: 5px solid #3b82f6;
}

.footer-bottom p {
    margin: 0;
    font-size: 0.85rem;
    color: #9ca3af; /* Slightly muted grey */
}

@media (max-width: 768px) {

    .cta-bar-section {
        flex-direction: column;
        text-align: center;
    }

    .footer-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }

}