/* Footer Redesign */
.footer-layout-img {
    background: linear-gradient(180deg, #0a1f18 0%, #020b16 100%);
    position: relative;
    border-top: 2px solid rgba(212, 175, 55, 0.3);
    color: #a0aec0;
    font-family: 'Outfit', sans-serif;
}
.footer-layout-img::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; height: 1px;
    background: linear-gradient(90deg, transparent, #d4af37, transparent);
}
.footer-1 {
    padding: 80px 0 50px 0;
}
.footer-logo img {
    max-width: 220px;
    margin-bottom: 30px;
    filter: drop-shadow(0 0 15px rgba(255, 255, 255, 0.15));
}
.footer-content ul {
    list-style: none;
    padding: 0;
    margin: 0;
}
.footer-content > ul > li {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 20px;
}
.footer-content > ul > li i {
    color: #d4af37;
    font-size: 22px;
    margin-top: 2px;
    flex-shrink: 0;
}
.footer-content > ul > li h6 {
    color: #a0aec0;
    font-size: 15px;
    line-height: 1.6;
    margin: 0;
    font-weight: 400;
}
.footer-content > ul > li h6 .main_color {
    color: #fff;
    font-weight: 600;
}
.footer-title h5 {
    color: #d4af37;
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 30px;
    text-transform: uppercase;
    letter-spacing: 1px;
}
.footer-details {
    list-style: none;
    padding: 0;
    margin: 0;
}
.footer-details li {
    margin-bottom: 15px;
}
.footer-details li a {
    color: #a0aec0;
    text-decoration: none;
    font-size: 16px;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 10px;
}
.footer-details li a::before {
    content: '\f105';
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    color: #d4af37;
    font-size: 12px;
    transition: transform 0.3s ease;
}
.footer-details li a:hover {
    color: #fff;
}
.footer-details li a:hover::before {
    transform: translateX(5px);
}
.footer-social-wrapper {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    padding: 25px;
    margin-top: 30px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.social-title {
    color: #fff;
    margin: 0;
    font-size: 18px;
    font-weight: 500;
}
.social {
    display: flex;
    gap: 15px;
    list-style: none;
    padding: 0; margin: 0;
}
.social a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    background: rgba(212, 175, 55, 0.1);
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-radius: 50%;
    color: #d4af37;
    font-size: 18px;
    transition: all 0.3s ease;
    text-decoration: none;
}
.social a i {
    margin: 0;
}
.social a:hover {
    background: #d4af37;
    color: #000;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(212, 175, 55, 0.4);
}
.footer-map-container iframe {
    border-radius: 15px;
    border: 1px solid rgba(212, 175, 55, 0.3) !important;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
    transition: all 0.3s ease;
    width: 100%;
}
.footer-map-container iframe:hover {
    border-color: rgba(212, 175, 55, 0.8) !important;
}
.sub-footer {
    background: rgba(0,0,0,0.4);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding: 20px 0;
}
.footer-end h6 {
    color: #a0aec0;
    margin: 0;
    font-size: 15px;
    font-weight: 400;
}
.footer-end .main_color {
    color: #d4af37;
    font-weight: 600;
}
.footer-end a {
    color: #fff;
    text-decoration: none;
    transition: color 0.3s ease;
}
.footer-end a:hover {
    color: #d4af37;
}
.payment-card-bottom ul {
    display: flex;
    gap: 15px;
    justify-content: flex-end;
    list-style: none;
    padding: 0; margin: 0;
}
.payment-card-bottom img {
    height: 35px;
    opacity: 0.6;
    transition: all 0.3s ease;
    filter: grayscale(1);
}
.payment-card-bottom img:hover {
    opacity: 1;
    filter: grayscale(0);
}

@media (max-width: 991px) {
    .footer-map-container {
        margin-top: 40px;
    }
}
@media (max-width: 767px) {
    .payment-card-bottom ul {
        justify-content: center;
        margin-top: 15px;
    }
    .footer-end {
        text-align: center;
    }
    .footer-social-wrapper {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
}
