.site-footer {
    width: 100%;
    background-color: #fcfbfa;
    border-top: 4px solid #FF7A45;
    padding: 60px 0;
    font-family: 'Outfit', sans-serif;
    position: relative;
    overflow: hidden;
}

.footer-container {
    max-width: 1300px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    gap: 40px;
    padding: 0 20px;
    position: relative;
    z-index: 1;
}

.footer-col {
    display: flex;
    flex-direction: column;
}

.footer-heading {
    font-size: 1.1rem;
    font-weight: 800;
    color: #111111;
    margin-bottom: 30px;
    position: relative;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    display: inline-block;
    align-self: center;
}

.footer-heading::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 30px;
    height: 3px;
    background-color: #FF7A45;
    border-radius: 2px;
}

/* Connect Cards */
.connect-col {
    flex: 1.2;
    align-items: center;
}

.connect-cards {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.connect-card {
    display: flex;
    align-items: center;
    background: #ffffff;
    border-radius: 12px;
    padding: 12px 16px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.04);
    border: 1px solid rgba(0,0,0,0.02);
}

.connect-icon {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-right: 15px;
    flex-shrink: 0;
    color: #fff;
    font-size: 1.2rem;
}

.bg-green { background-color: #2ECC71; box-shadow: 0 4px 10px rgba(46,204,113,0.3); }
.bg-purple { background-color: #8A2BE2; box-shadow: 0 4px 10px rgba(138,43,226,0.3); }
.bg-pink { background-color: #E83E8C; box-shadow: 0 4px 10px rgba(232,62,140,0.3); }

.connect-info {
    display: flex;
    flex-direction: column;
}

.info-label {
    font-size: 0.75rem;
    color: #888;
    font-weight: 800;
    text-transform: uppercase;
    margin-bottom: 3px;
    letter-spacing: 0.8px;
}

.info-value {
    font-size: 1rem;
    color: #111;
    font-weight: 700;
    line-height: 1.4;
}

/* Quick Links */
.links-col {
    flex: 0.8;
    align-items: center;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: center;
}

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

.footer-links a {
    text-decoration: none;
    color: #111;
    font-weight: 600;
    font-size: 0.95rem;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: #FF7A45;
}

/* Social */
.social-col {
    flex: 1;
    align-items: center;
}

.social-icons {
    display: flex;
    gap: 15px;
    justify-content: center;
}

.social-icon {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #fff;
    font-size: 1.3rem;
    text-decoration: none;
    transition: transform 0.3s;
}

.social-icon:hover {
    transform: translateY(-3px);
}

.bg-fb { background-color: #1877F2; box-shadow: 0 8px 20px rgba(24,119,242,0.4); }
.bg-wa { background-color: #25D366; box-shadow: 0 8px 20px rgba(37,211,102,0.4); }
.bg-ig { 
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%); 
    box-shadow: 0 8px 20px rgba(220,39,67,0.4); 
}
.bg-tk { background-color: #000000; box-shadow: 0 8px 20px rgba(0,0,0,0.4); }

/* Location */
.location-col {
    flex: 1.2;
    align-items: center;
}


.map-container {
    width: 100%;
    height: 220px;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(0,0,0,0.12);
    border: 3px solid #FF7A45;
}

/* Animations */
.animate-footer {
    opacity: 0;
    transform: translateY(30px);
}

.animate-footer.is-visible {
    animation: fadeInUp 0.8s ease forwards;
}

.delay-1 { animation-delay: 0.2s; }
.delay-2 { animation-delay: 0.4s; }
.delay-3 { animation-delay: 0.6s; }

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hover-lift {
    transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275), box-shadow 0.3s ease;
}

.hover-lift:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

/* Background Animated Glow Dots */
.footer-glow-dots {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 0;
    pointer-events: none;
}

.glow-dot {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.6;
    animation: floatGlow 15s ease-in-out infinite alternate;
}

.dot-purple {
    top: -20%;
    left: 40%;
    width: 300px;
    height: 300px;
    background: rgba(138, 43, 226, 0.25);
    animation-delay: 0s;
}

.dot-yellow {
    bottom: -10%;
    right: 15%;
    width: 250px;
    height: 250px;
    background: rgba(255, 215, 0, 0.25);
    animation-delay: -5s;
}

.dot-green {
    top: 30%;
    left: -5%;
    width: 350px;
    height: 350px;
    background: rgba(46, 204, 113, 0.2);
    animation-delay: -10s;
}

@keyframes floatGlow {
    0% {
        transform: translate(0, 0) scale(1);
    }
    33% {
        transform: translate(30px, -50px) scale(1.1);
    }
    66% {
        transform: translate(-20px, 20px) scale(0.9);
    }
    100% {
        transform: translate(40px, 40px) scale(1.05);
    }
}

.footer-bottom {
    text-align: center;
    padding: 18px 20px;
    font-size: 0.75rem;
    color: #888;
    border-top: 1px solid rgba(0,0,0,0.06);
    margin-top: 40px;
}
