/* ============================================
   MODERN FOOTER STYLES
   Clean, responsive footer for construction site
   ============================================ */

.modern-footer {
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    color: #ffffff;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    position: relative;
    z-index: 10;
    width: 100%;
}

/* Contact Section */
.footer-contact-section {
    background: linear-gradient(135deg, #d4af37 0%, #f4d03f 100%);
    padding: 60px 20px;
    color: #1a1a1a;
}

.footer-contact-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.footer-contact-content h4 {
    font-size: 16px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin: 0 0 10px 0;
    color: #1a1a1a;
}

.footer-contact-content h2 {
    font-size: 48px;
    font-weight: 700;
    line-height: 1.2;
    margin: 0 0 20px 0;
    color: #1a1a1a;
}

.footer-contact-content p {
    font-size: 16px;
    line-height: 1.6;
    margin: 0 0 30px 0;
    color: #2d2d2d;
}

.footer-contact-info {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.footer-contact-item {
    display: flex;
    align-items: center;
    gap: 15px;
    background: rgba(255, 255, 255, 0.2);
    padding: 20px;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.footer-contact-item:hover {
    background: rgba(255, 255, 255, 0.35);
    transform: translateX(5px);
}

.footer-contact-icon {
    width: 50px;
    height: 50px;
    background: #1a1a1a;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.footer-contact-icon svg {
    width: 24px;
    height: 24px;
    fill: #d4af37;
}

.footer-contact-details h5 {
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin: 0 0 5px 0;
    color: #1a1a1a;
}

.footer-contact-details a,
.footer-contact-details p {
    font-size: 20px;
    font-weight: 700;
    color: #1a1a1a;
    text-decoration: none;
    margin: 0;
    transition: color 0.3s ease;
}

.footer-contact-details a:hover {
    color: #fff;
}

/* Main Footer Section */
.footer-main-section {
    padding: 60px 20px 40px;
    background: #1a1a1a;
}

.footer-main-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 2fr 1.5fr 1.5fr 2fr;
    gap: 40px;
}

.footer-column h3 {
    font-size: 18px;
    font-weight: 700;
    margin: 0 0 25px 0;
    color: #d4af37;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.footer-logo img {
    max-width: 200px;
    height: auto;
    margin-bottom: 20px;
}

.footer-description {
    font-size: 14px;
    line-height: 1.8;
    color: #b8b8b8;
    margin: 0 0 25px 0;
}

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

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

.footer-nav-links a {
    color: #b8b8b8;
    text-decoration: none;
    font-size: 15px;
    transition: all 0.3s ease;
    display: inline-block;
    position: relative;
    padding-left: 20px;
}

.footer-nav-links a::before {
    content: "›";
    position: absolute;
    left: 0;
    color: #d4af37;
    font-size: 20px;
    transition: transform 0.3s ease;
}

.footer-nav-links a:hover {
    color: #d4af37;
    transform: translateX(5px);
}

.footer-nav-links a:hover::before {
    transform: translateX(5px);
}

.footer-address {
    display: flex;
    gap: 15px;
    margin-bottom: 25px;
}

.footer-address-icon {
    width: 40px;
    height: 40px;
    background: #d4af37;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.footer-address-icon svg {
    width: 20px;
    height: 20px;
    fill: #1a1a1a;
}

.footer-address-text {
    color: #b8b8b8;
    font-size: 15px;
    line-height: 1.6;
}

.footer-social-links {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.footer-social-link {
    width: 45px;
    height: 45px;
    background: #2d2d2d;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-social-link:hover {
    background: #d4af37;
    transform: translateY(-3px);
}

.footer-social-link svg {
    width: 20px;
    height: 20px;
    fill: #b8b8b8;
    transition: fill 0.3s ease;
}

.footer-social-link:hover svg {
    fill: #1a1a1a;
}

/* Bottom Bar */
.footer-bottom-section {
    background: #0d0d0d;
    padding: 25px 20px;
    border-top: 1px solid #2d2d2d;
}

.footer-bottom-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-bottom-left,
.footer-bottom-center,
.footer-bottom-right {
    font-size: 14px;
    color: #b8b8b8;
}

.footer-bottom-center {
    font-weight: 600;
    color: #d4af37;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.footer-bottom-left a {
    color: #d4af37;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-bottom-left a:hover {
    color: #fff;
}

/* Mobile Responsive Styles */
@media (max-width: 1024px) {
    .footer-main-container {
        grid-template-columns: 1fr 1fr;
        gap: 30px;
    }
}

@media (max-width: 768px) {
    .footer-contact-container {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-contact-content h2 {
        font-size: 36px;
    }

    .footer-contact-info {
        align-items: center;
    }

    .footer-contact-item {
        justify-content: center;
        max-width: 400px;
        margin: 0 auto;
    }

    .footer-main-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .footer-column {
        text-align: center;
    }

    .footer-logo {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .footer-nav-links a {
        padding-left: 0;
    }

    .footer-nav-links a::before {
        display: none;
    }

    .footer-address {
        justify-content: center;
        text-align: left;
    }

    .footer-social-links {
        justify-content: center;
    }

    .footer-bottom-container {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .footer-contact-section {
        padding: 40px 20px;
    }

    .footer-contact-content h2 {
        font-size: 28px;
    }

    .footer-contact-details a,
    .footer-contact-details p {
        font-size: 18px;
    }

    .footer-main-section {
        padding: 40px 20px 30px;
    }

    .footer-contact-item {
        padding: 15px;
    }
}

/* Accessibility */
@media (prefers-reduced-motion: reduce) {
    .footer-contact-item,
    .footer-nav-links a,
    .footer-social-link {
        transition: none;
    }
}

/* Print Styles */
@media print {
    .modern-footer {
        background: white;
        color: black;
    }

    .footer-contact-section {
        background: none;
        border-top: 2px solid black;
    }
}
