/* Footer Top Info Strip */
.footer-top-info {
    width: 100%;
    display: flex;
    align-items: stretch;
    min-height: 100px;
    background: #111;
    overflow: hidden;
}

.info-box {
    flex: 1;
    display: flex;
    align-items: center;
    padding: 20px 40px;
    color: #fff;
    gap: 20px;
    position: relative;
}

.info-box.email-box {
    background: #1a1a1a;
    justify-content: flex-end;
}

.info-box.phone-box {
    background: var(--primary-green);
    z-index: 2;
    clip-path: polygon(0% 0%, 95% 0%, 100% 50%, 95% 100%, 0% 100%, 5% 50%);
    margin-left: -2%;
    margin-right: -2%;
    padding-left: 8%;
    padding-right: 8%;
    justify-content: center;
}

.info-box.address-box {
    background: #1a1a1a;
    justify-content: flex-start;
    padding-left: 60px;
}

.info-icon-circle {
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    flex-shrink: 0;
}

.phone-box .info-icon-circle {
    background: rgba(0, 0, 0, 0.2);
}

.info-content span {
    display: block;
    font-size: 13px;
    color: #bbb;
    margin-bottom: 2px;
}

.phone-box .info-content span {
    color: #111;
}

.info-content strong {
    font-size: 18px;
    font-weight: 700;
}

.phone-box .info-content strong {
    color: #000;
}

/* Main Footer Styling */
.main-footer {
    background: #111;
    padding: 80px 0 40px;
    color: #fff;
}

.footer-container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr 1.2fr;
    gap: 40px;
}

.footer-col h4 {
    color: #fff;
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 30px;
    text-transform: uppercase;
    position: relative;
    display: inline-block;
}

.footer-col h4::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -8px;
    width: 40px;
    height: 2px;
    background: var(--primary-green);
}

.footer-col p {
    font-size: 14px;
    color: #bbb;
    line-height: 1.6;
    margin-bottom: 20px;
}

.read-more {
    color: #fff;
    text-decoration: none;
    font-size: 14px;
    font-weight: 700;
}

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

.social-icon {
    width: 35px;
    height: 35px;
    border: 1px solid #444;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    text-decoration: none;
    transition: all 0.3s;
    font-size: 14px;
}

.social-icon:hover {
    background: var(--primary-green);
    border-color: var(--primary-green);
}

.footer-links {
    list-style: none;
}

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

.footer-links a {
    color: #bbb;
    text-decoration: none;
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: color 0.3s;
}

.footer-links a i {
    font-size: 12px;
    color: #fff;
    background: #333;
    padding: 4px;
    border-radius: 2px;
}

.footer-links a:hover {
    color: var(--primary-green);
}

.contact-details {
    list-style: none;
    padding: 0;
}

.contact-details li {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 25px;
    font-size: 15px;
    color: #bbb;
}

.contact-details li i {
    color: var(--primary-green);
    font-size: 18px;
    width: 20px;
    text-align: center;
    margin-top: 4px;
    flex-shrink: 0;
}

.contact-details div {
    line-height: 1.5;
}

.contact-details .addr-label {
    display: block;
    color: var(--primary-green);
    margin-bottom: 3px;
    font-weight: 700;
    font-size: 16px;
}

/* Bottom Bar */
.footer-bottom {
    border-top: 1px solid #222;
    padding-top: 25px;
    margin-top: 30px;
    text-align: center;
    font-size: 13px;
    color: #666;
}

/* Mobile Responsiveness */
@media (max-width: 1024px) {
    .footer-container {
        grid-template-columns: 1fr 1fr;
    }
    
    .footer-top-info {
        flex-direction: column;
    }
    
    .info-box.phone-box {
        clip-path: none;
        margin: 0;
        padding: 20px 40px;
        justify-content: flex-start;
    }
}

@media (max-width: 600px) {
    .footer-container {
        grid-template-columns: 1fr;
    }
}
