/* Footer Styles */
.footer-section {
    background: linear-gradient(135deg, #FF6B35 0%, #F7931E 50%, #FA6E32 100%);
    color: white;
    padding: 80px 0 0;
    margin-top: 50px;
    position: relative;
    overflow: hidden;
}

.footer-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="yoga-pattern" x="0" y="0" width="50" height="50" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="2" fill="rgba(255,255,255,0.05)"/></pattern></defs><rect width="100" height="100" fill="url(%23yoga-pattern)"/></svg>');
    opacity: 0.3;
}


.footer-logo-img {
    max-height: 60px;
    width: auto;
    border-radius: 10px;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.2));
    transition: transform 0.3s ease;
}

.footer-logo-img:hover {
    transform: scale(1.05);
}

.footer-about h5,
.footer-links h5,
.footer-location h5 {
    color: white;
    font-weight: 700;
    margin-bottom: 25px;
    font-size: 1.3rem;
    position: relative;
    padding-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.footer-about h5::after,
.footer-links h5::after,
.footer-location h5::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 3px;
    background: linear-gradient(90deg, #FFD700, #FFA500);
    border-radius: 2px;
}

.footer-about p {
    color: rgba(255, 255, 255, 0.95);
    line-height: 1.8;
    font-size: 1rem;
    font-weight: 400;
    text-align: justify;
    margin-bottom: 1.5rem;
}

.footer-links ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links ul li {
    margin-bottom: 15px;
    position: relative;
    padding-left: 20px;
}

.footer-links ul li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: #FFD700;
    font-weight: bold;
    transition: transform 0.3s ease;
}

.footer-links ul li:hover::before {
    transform: translateX(5px);
}

.footer-links ul li a {
    color: rgba(255, 255, 255, 0.95);
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 1rem;
    font-weight: 500;
    position: relative;
}

.footer-links ul li a:hover {
    color: #FFD700;
    transform: translateX(8px);
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.social-media h6 {
    color: white;
    font-weight: 700;
    margin-bottom: 20px;
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.social-icons {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.social-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.2), rgba(255, 255, 255, 0.1));
    color: white;
    border-radius: 50%;
    text-decoration: none;
    font-size: 1.2rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
}

.social-icon::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    transition: left 0.6s ease;
}

.social-icon:hover::before {
    left: 100%;
}

.social-icon:hover {
    background: linear-gradient(135deg, #FFD700, #FFA500);
    color: #333;
    transform: translateY(-3px) scale(1.1);
    box-shadow: 0 8px 25px rgba(255, 215, 0, 0.4);
    border-color: #FFD700;
}

.location-info p {
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 15px;
    font-size: 1rem;
    font-weight: 500;
    display: flex;
    align-items: center;
    transition: color 0.3s ease;
    padding: 8px 0;
}

.location-info p:hover {
    color: #FFD700;
}

.location-info i {
    margin-right: 15px;
    width: 20px;
    color: #FFD700;
    font-size: 1.1rem;
    text-align: center;
}

.map-container {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    border: 3px solid rgba(255, 255, 255, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
}

.map-container:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.4);
}

.map-container iframe {
    border-radius: 12px;
    transition: filter 0.3s ease;
}

.map-container:hover iframe {
    filter: brightness(1.1) contrast(1.1);
}

.footer-bottom {
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.6));
    padding: 25px 0;
    margin-top: 50px;
    border-top: 2px solid rgba(255, 215, 0, 0.3);
    backdrop-filter: blur(10px);
    position: relative;
}

.footer-bottom::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 2px;
    background: linear-gradient(90deg, #FFD700, #FFA500);
    border-radius: 2px;
}

.footer-bottom p {
    margin: 0;
    color: rgba(255, 255, 255, 0.9);
    font-size: 1rem;
    font-weight: 500;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.footer-bottom a {
    color: #FFD700;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    position: relative;
}

.footer-bottom a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -2px;
    left: 0;
    background: linear-gradient(90deg, #FFD700, #FFA500);
    transition: width 0.3s ease;
}

.footer-bottom a:hover {
    color: #FFA500;
    text-shadow: 0 2px 8px rgba(255, 215, 0, 0.5);
}

.footer-bottom a:hover::after {
    width: 100%;
}

/* Additional Enhancements */
.footer-section .container > .row > div {
    position: relative;
    z-index: 1;
}

/* Responsive Improvements */
@media (max-width: 768px) {
    .footer-section {
        padding: 60px 0 0;
    }
    
    .footer-about h5,
    .footer-links h5,
    .footer-location h5 {
        font-size: 1.2rem;
        margin-bottom: 20px;
    }
    
    .social-icons {
        justify-content: center;
        margin-bottom: 30px;
    }
    
    .location-info p {
        text-align: center;
    }
    
    .footer-links ul {
        text-align: center;
    }
    
    .footer-links ul li {
        padding-left: 0;
    }
    
    .footer-links ul li::before {
        display: none;
    }
}

/* Animation for scroll reveal */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.footer-section > .container > .row > div {
    animation: fadeInUp 0.8s ease-out;
}

.footer-section > .container > .row > div:nth-child(1) {
    animation-delay: 0.1s;
}

.footer-section > .container > .row > div:nth-child(2) {
    animation-delay: 0.2s;
}

.footer-section > .container > .row > div:nth-child(3) {
    animation-delay: 0.3s;
}


@media (max-width: 768px) {
    .footer-about h5::after,
    .footer-links h5::after,
    .footer-location h5::after {
        left: 44%;
    }


.footer-logo {
display: flex;
justify-content: center;
}

}