/* ========================================
   FOOTER LOGO & BRANDING
   ======================================== */

.footer-logo {
    text-align: center;
    margin-bottom: 1.5rem;
}

.footer-logo-text {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: #FFFFFF;
    display: block;
    letter-spacing: 3px;
    text-transform: lowercase;
}

.footer-logo-sub {
    font-size: 0.75rem;
    letter-spacing: 4px;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 600;
    display: block;
    margin-top: 0.25rem;
}

.footer-desc {
    text-align: center;
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.95rem;
    margin-bottom: 2rem;
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

/* ========================================
   SOCIAL ICONS - MODERN & STUNNING
   ======================================== */

.social-links {
    display: flex;
    gap: 1rem;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    margin-top: 2rem;
}

.social-icon {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    color: #999;
    transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    text-decoration: none;
}

/* Hover Effects - Direct Icon Coloring */
.social-icon:hover {
    transform: translateY(-8px);
}

/* Facebook - Blue */
.social-icon:nth-child(1):hover {
    color: #1877F2;
    filter: drop-shadow(0 8px 15px rgba(24, 119, 242, 0.4));
}

/* Instagram - Gradient */
.social-icon:nth-child(2):hover {
    color: #E4405F;
    filter: drop-shadow(0 8px 15px rgba(228, 64, 95, 0.4));
}

/* WhatsApp - Green */
.social-icon:nth-child(3):hover {
    color: #25D366;
    filter: drop-shadow(0 8px 15px rgba(37, 211, 102, 0.4));
}

/* Telegram - Blue */
.social-icon:nth-child(4):hover {
    color: #0088CC;
    filter: drop-shadow(0 8px 15px rgba(0, 136, 204, 0.4));
}

/* Active state */
.social-icon:active {
    transform: translateY(-4px) scale(0.95);
}

.social-icon svg {
    width: 28px;
    height: 28px;
    transition: all 0.3s ease;
}

.social-icon:hover svg {
    transform: scale(1.15);
}

/* Floating animation */
@keyframes float {
    0%, 100% {
        transform: translateY(-8px);
    }
    50% {
        transform: translateY(-12px);
    }
}

.social-icon:hover {
    animation: float 1.5s ease-in-out infinite;
}

/* RTL Support */
.rtl .social-links {
    flex-direction: row-reverse;
}

/* Responsive */
@media (max-width: 768px) {
    .footer-logo-text {
        font-size: 2rem;
    }
    
    .footer-desc {
        font-size: 0.9rem;
        padding: 0 1rem;
    }
    
    .social-links {
        gap: 0.75rem;
    }
    
    .social-icon {
        width: 45px;
        height: 45px;
    }
    
    .social-icon svg {
        width: 20px;
        height: 20px;
    }
}
