/* Footer Map */
.footer-map {
    width: 100%;
    height: 350px;
    margin-bottom: 0;
    position: relative;
    overflow: hidden;
    box-shadow: 0 -5px 30px rgba(0,0,0,0.1);
}

.footer-map:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 10px;
    background: linear-gradient(90deg, #c8a45d, #f3d9a4, #c8a45d);
    z-index: 2;
    background-size: 200% auto;
    animation: gradientBG 3s ease infinite;
}

.footer-map iframe {
    width: 100%;
    height: 100%;
    border: none;
    display: block;
    filter: grayscale(20%) contrast(1.1);
    transition: all 0.5s ease;
}

.footer-map:hover iframe {
    filter: grayscale(0%) contrast(1);
    transform: scale(1.01);
}

/* Footer Main Content */
.footer-main-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 30px;
    padding: 40px 20px 0 20px;
    width: 100%;
    max-width: 900px;
    margin: 0 auto;
}

.footer-logo {
    text-align: center;
    margin-bottom: 15px;
}

.logo-main {
    font-size: 2.2rem;
    font-weight: bold;
    letter-spacing: 2px;
    color: #fff;
}

.logo-sub {
    font-size: 1.1rem;
    color: #c8a45d;
    margin-top: 5px;
}

.footer-contact-hours {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    align-items: flex-start;
    justify-content: center;
}

.footer-contact {
    display: flex;
    flex-direction: column;
    gap: 15px;
    min-width: 220px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1rem;
    color: #fff;
}

.footer-hours {
    min-width: 220px;
    text-align: center;
}

.footer-hours h3 {
    color: #c8a45d;
    font-size: 1.3rem;
    margin-bottom: 8px;
}

.footer-hours p {
    color: #fff;
    font-size: 1rem;
    margin: 0;
}

@media (min-width: 901px) {
    .footer-main-content {
        flex-direction: column;
        align-items: center;
        padding: 60px 40px 0 40px;
        gap: 36px;
        max-width: 1100px;
    }
    .footer-logo {
        margin-bottom: 28px;
    }
    .logo-main {
        font-size: 2.8rem;
        letter-spacing: 3px;
    }
    .logo-sub {
        font-size: 1.3rem;
    }
    .footer-contact-hours {
        flex-direction: row;
        gap: 70px;
        align-items: flex-start;
        justify-content: center;
        width: 100%;
        margin-top: 10px;
    }
    .footer-contact, .footer-hours {
        min-width: 270px;
        font-size: 1.09rem;
    }
    .footer-hours h3 {
        font-size: 1.5rem;
        margin-bottom: 12px;
    }
    .footer-hours p {
        font-size: 1.13rem;
    }
    .contact-item i {
        font-size: 1.25rem;
        transition: color 0.2s;
    }
    .contact-item a {
        transition: color 0.2s;
    }
    .contact-item a:hover, .contact-item i:hover {
        color: #f3d9a4;
    }
}

@media (max-width: 600px) {
    .footer-main-content {
        padding: 30px 10px 0 10px;
        gap: 18px;
    }
    .footer-contact-hours {
        flex-direction: column;
        gap: 20px;
    }
    .footer-map {
        height: 220px;
    }
}

/* Footer Styles */
.site-footer {
    position: relative;
    background: linear-gradient(135deg, #2a2a2a 0%, #1a1a1a 100%);
    color: #ffffff;
    padding: 0;
    font-size: 15px;
    line-height: 1.8;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    min-height: 100px;
}

.site-footer:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, #c8a45d, #f3d9a4, #c8a45d);
    background-size: 200% auto;
    animation: gradientBG 3s ease infinite;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    margin-bottom: 30px;
    position: relative;
    z-index: 1;
}

.footer-logo {
    flex: 0 0 25%;
    padding-right: 20px;
}

.footer-logo .logo-main {
    font-size: 22px;
    font-weight: bold;
    color: #ffffff;
    margin-bottom: 5px;
}

.footer-logo .logo-sub {
    font-size: 12px;
    color: #c8a45d;
    letter-spacing: 1.5px;
}

.footer-contact {
    flex: 0 0 35%;
    padding: 0 20px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 15px;
}

.contact-item i {
    color: #c8a45d;
    margin-right: 15px;
    margin-top: 3px;
}

.footer-contact .contact-item i.fa-map-marker-alt,
.footer-contact .contact-item svg {
    font-size: 1.5rem !important;
    width: 1.5rem; 
    height: 1.5rem;
    margin-right: 20px !important;
    color: #c8a45d !important;
    fill: #c8a45d !important;
}

.contact-item a {
    color: #ffffff;
    transition: color 0.3s;
}

.contact-item a:hover {
    color: #c8a45d;
}

.footer-hours {
    flex: 0 0 25%;
    padding-left: 20px;
}

.footer-hours h3 {
    color: #c8a45d;
    font-size: 18px;
    margin-bottom: 15px;
    font-weight: 600;
}

.footer-bottom {
    border-top: 1px solid rgba(200, 164, 93, 0.2);
    padding: 20px 0 10px 0;
    text-align: center;
    font-size: 14px;
    color: #aaaaaa;
    background: rgba(0,0,0,0.1);
    width: 100%;
    margin: 0;
    border-radius: 0;
    position: relative;
    bottom: 0;
    left: 0;
}

.footer-bottom a {
    color: #c8a45d;
    margin: 0 5px;
    text-decoration: none;
    transition: color 0.3s;
}

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

/* Responsive Footer */
@media (max-width: 768px) {
    .footer-map {
        height: 350px;
    }
    
    .footer-content {
        flex-direction: column;
        gap: 30px;
    }
    
    .footer-logo,
    .footer-contact,
    .footer-hours {
        flex: 1 1 100%;
        text-align: center;
        padding: 0;
    }
    
    .contact-item {
        justify-content: center;
    }
}

@media (max-width: 992px) {
    .footer-content {
        flex-direction: column;
    }
    
    .footer-logo,
    .footer-contact,
    .footer-hours {
        flex: 1 1 100%;
        padding: 0 0 30px;
        text-align: center;
    }
    
    .contact-item {
        justify-content: center;
    }
}
