/* ===================================
   FOOTER STYLES - ORGANIC DESIGN
   =================================== */
.footer {
    background: linear-gradient(135deg, #6f4a38 0%, #583b2d 100%);
    color: var(--color-text-white);
    padding: var(--spacing-3xl) 0 0;
    position: relative;
    overflow: hidden;
}

/* Animated gradient overlay */
.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: -50%;
    right: -50%;
    bottom: 0;
    background: linear-gradient(90deg,
            transparent 0%,
            rgba(218, 165, 32, 0.1) 25%,
            rgba(244, 208, 63, 0.1) 50%,
            rgba(218, 165, 32, 0.1) 75%,
            transparent 100%);
    animation: shimmer 8s linear infinite;
    pointer-events: none;
}

/* Futuristic grid pattern */
.footer::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image:
        linear-gradient(rgba(218, 165, 32, 0.05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(218, 165, 32, 0.05) 1px, transparent 1px);
    background-size: 50px 50px;
    opacity: 0.3;
    pointer-events: none;
}

@keyframes shimmer {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(50%);
    }
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--spacing-2xl);
    margin-bottom: var(--spacing-2xl);
    position: relative;
    z-index: 1;
}

.footer-section {
    animation: fadeInUp 0.6s ease-out;
    backdrop-filter: blur(10px);
    padding: var(--spacing-lg);
    border-radius: var(--radius-lg);
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(218, 165, 32, 0.2);
    transition: var(--transition-smooth);
    text-align: left;
    /* Ensure left alignment */
    height: 100%;
    /* Uniform height */
}

.footer-section:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(218, 165, 32, 0.4);
    transform: translateY(-4px);
    box-shadow: 0 8px 32px rgba(218, 165, 32, 0.2);
}

.footer-section h3 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: var(--spacing-lg);
    background: linear-gradient(135deg, #c97f4e, #edcf8f);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
    display: inline-block;
}

.footer-section h3::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 60%;
    height: 2px;
    background: linear-gradient(90deg, #c97f4e, #edcf8f);
    border-radius: 2px;
    box-shadow: 0 0 10px rgba(218, 165, 32, 0.5);
}

.footer-about {
    width: 100%;
    /* Full width of grid column */
}

.footer-tagline {
    font-size: 0.95rem;
    opacity: 0.9;
    margin-bottom: var(--spacing-sm);
    font-weight: 500;
    color: rgba(255, 255, 255, 0.9);
}

.footer-desc {
    font-size: 0.9rem;
    line-height: 1.7;
    opacity: 0.85;
    margin-bottom: var(--spacing-lg);
    color: rgba(255, 255, 255, 0.8);
}

/* Social Links - Futuristic Style */
.social-links {
    display: flex;
    gap: var(--spacing-md);
    margin-top: var(--spacing-md);
    justify-content: flex-start;
    /* Align to left */
}

.social-link {
    width: 48px;
    height: 48px;
    border-radius: var(--radius-md);
    background: rgba(218, 165, 32, 0.1);
    backdrop-filter: blur(10px);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-text-white);
    font-size: 1.5rem;
    transition: var(--transition-smooth);
    border: 1px solid rgba(218, 165, 32, 0.2);
    position: relative;
    overflow: hidden;
}

.social-link::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, #c97f4e, #edcf8f);
    opacity: 0;
    transition: var(--transition-smooth);
}

.social-link:hover::before {
    opacity: 1;
}

.social-link:hover {
    transform: translateY(-6px) scale(1.05);
    box-shadow: 0 12px 32px rgba(218, 165, 32, 0.4);
    border-color: rgba(244, 208, 63, 0.6);
}

.social-link i {
    position: relative;
    z-index: 1;
}

/* Footer Links - Modern Style */
.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: var(--spacing-sm);
}

.footer-links a {
    color: rgba(255, 255, 255, 0.85);
    text-decoration: none;
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    gap: var(--spacing-xs);
    transition: var(--transition-fast);
    padding: var(--spacing-xs) var(--spacing-sm);
    border-radius: var(--radius-sm);
    position: relative;
}

.footer-links a::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #c97f4e, #edcf8f);
    transition: var(--transition-fast);
}

.footer-links a:hover::before {
    width: 20px;
}

.footer-links a:hover {
    color: var(--color-text-white);
    transform: translateX(8px);
    background: rgba(218, 165, 32, 0.1);
}

.footer-links a i {
    font-size: 0.875rem;
    opacity: 0.7;
    color: #c97f4e;
}

/* Footer Contact - Futuristic Icons */
.footer-contact {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-contact li {
    display: flex;
    align-items: flex-start;
    gap: var(--spacing-sm);
    margin-bottom: var(--spacing-md);
    color: rgba(255, 255, 255, 0.85);
    font-size: 0.95rem;
    line-height: 1.6;
    padding: var(--spacing-sm);
    border-radius: var(--radius-sm);
    transition: var(--transition-fast);
}

.footer-contact li:hover {
    background: rgba(218, 165, 32, 0.1);
    transform: translateX(4px);
}

.footer-contact i {
    font-size: 1.25rem;
    margin-top: 2px;
    flex-shrink: 0;
    color: #c97f4e;
    filter: drop-shadow(0 0 8px rgba(218, 165, 32, 0.5));
}

.footer-contact span {
    flex: 1;
    word-break: break-all;
}

/* Footer Bottom - Sleek Design */
.footer-bottom {
    border-top: 1px solid rgba(218, 165, 32, 0.3);
    padding: var(--spacing-lg) 0;
    text-align: center;
    position: relative;
    z-index: 1;
    background: rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(10px);
}

.footer-bottom-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--spacing-xs);
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
}

.footer-group {
    display: flex;
    align-items: center;
    gap: var(--spacing-xs);
    flex-wrap: wrap;
    justify-content: center;
}

@media (min-width: 768px) {
    .footer-bottom-content {
        flex-direction: row;
        justify-content: center;
        gap: var(--spacing-md);
    }

    .footer-group:not(:last-child)::after {
        content: '|';
        margin-left: var(--spacing-md);
        opacity: 0.5;
    }
}

.footer-bottom a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: var(--transition-fast);
    position: relative;
}

.footer-bottom a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 1px;
    background: linear-gradient(90deg, #edcf8f, #6f4a38);
    transition: var(--transition-fast);
}

.footer-bottom a:hover {
    color: #edcf8f;
}

.footer-bottom a:hover::after {
    width: 100%;
}

.footer-bottom i {
    animation: heartbeat 1.5s ease-in-out infinite;
    color: #edcf8f;
    filter: drop-shadow(0 0 8px rgba(218, 165, 32, 0.6));
}

/* WhatsApp Floating Button */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #25D366, #128C7E);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 2rem;
    box-shadow: 0 8px 24px rgba(37, 211, 102, 0.4);
    z-index: 1000;
    transition: var(--transition-smooth);
    border: 2px solid rgba(255, 255, 255, 0.2);
}

.whatsapp-float:hover {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 12px 32px rgba(37, 211, 102, 0.6);
}

@keyframes heartbeat {

    0%,
    100% {
        transform: scale(1);
    }

    25% {
        transform: scale(1.2);
    }

    50% {
        transform: scale(1);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .footer-section {
        padding: var(--spacing-md);
    }

    .footer-content {
        gap: var(--spacing-lg);
    }

    .social-link {
        width: 44px;
        height: 44px;
    }

    .whatsapp-float {
        width: 56px;
        height: 56px;
        bottom: 20px;
        right: 20px;
    }
}