/* ========================================
   DESKTOP STYLES (Full View)
   ======================================== */

/* Footer Container */
.footer {
    background: linear-gradient(135deg, #2d3e34 0%, #3a4f42 100%);
    border-top: 3px solid #4ade80;
    padding: 3rem 0 0 0;
    margin-top: 3rem;
}

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

.footer-row {
    display: flex;
    gap: 2rem;
    align-items: flex-start;
}

.footer-col-contact {
    flex: 1;
    max-width: 45%;
}

.footer-col-map {
    flex: 1;
    max-width: 55%;
    margin-left: auto;
}

/* Typography */
.footer h5 {
    color: white;
    margin-bottom: 2rem;
    font-weight: bold;
    font-size: 1.2rem;
    font-family: "Poppins", sans-serif;
}

.footer h5 i {
    color: #4ade80;
    margin-right: 0.5rem;
}

.footer p {
    color: white;
    margin-bottom: 0.5rem;
    font-weight: 500;
    font-family: "Poppins", sans-serif;
}

.footer p i {
    color: #4ade80;
    margin-right: 0.5rem;
}

.footer a {
    color: white;
    text-decoration: none;
}

.footer a:hover {
    color: #4ade80;
    transition: color 0.3s ease;
}

/* Contact Section */
.contact-info {
    margin-bottom: 2rem;
}

.contact-info-item {
    margin-bottom: 1.5rem;
}

.contact-info p {
    margin-bottom: 0.5rem;
}

/* Location Map */
.location-map {
    margin-bottom: 1rem;
}

.location-map iframe {
    width: 100%;
    height: 200px;
    border: 2px solid #4ade80;
    border-radius: 12px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

/* Business Hours */
.business-hours p {
    color: #d1d5db;
    font-size: 0.9rem;
}

.business-hours i {
    color: #4ade80;
    margin-right: 0.5rem;
}

.social-btn {
    width: 45px;
    height: 45px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    background-color: transparent;
    border: 2px solid #4ade80;
    border-radius: 50%;
    color: #4ade80;
    text-decoration: none;
    font-size: 18px;
}

.social-btn:hover {
    background-color: #4ade80;
    border-color: #4ade80;
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(74, 222, 128, 0.3);
    text-decoration: none;
}

.hover-green:hover {
    color: #4ade80 !important;
    transition: color 0.3s ease;
}

/* ========================================
   MOBILE STYLES (Mobile View)
   ======================================== */

@media (max-width: 768px) {
    .footer-row {
        flex-direction: column;
        gap: 3rem;
    }
    
    .footer-col-contact {
        max-width: 100%;
        text-align: center;
        margin-top: 20px;
    }
    
    .footer-col-map {
        max-width: 100%;
        margin-left: 0;
        margin-top: 3rem;
    }
    
    /* Move FIND US heading positioning */
    .footer-col-map h5 {
        text-align: left;
        margin-bottom: 2rem;
        margin-left: 100px;
        /* margin-right: 190px; */
    }
    
    /* Move map positioning */
    .location-map {
        margin-left: auto;
        margin-right: 10px;
        max-width: calc(100% - 15px);
        padding: 0 10px;
    }
    
    .location-map iframe {
        height: 180px;
        border-radius: 8px;
    }
    
    /* Fix business hours text wrapping */
    .business-hours {
        text-align: center;
        padding: 0 15px;
        margin-left: -40px;
    }
    
    .business-hours p {
        font-size: 0.85rem;
        line-height: 1.4;
        word-wrap: break-word;
        white-space: normal;
    }
    
    .contact-info {
        max-width: 100%;
        margin: 0 auto;
    }
}