/* ========================================
   SOCIAL MEDIA COMPONENTS
   ======================================== */

/* Floating Social Media Bar */
.social-media-bar {
    position: fixed;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    z-index: 999;
    display: flex;
    flex-direction: column;
    gap: 12px;
    padding: 12px 8px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 20px 0 0 20px;
    box-shadow: -4px 0 20px rgba(0, 0, 0, 0.15);
    animation: slideInRight 0.5s ease;
}

@keyframes slideInRight {
    from {
        transform: translateY(-50%) translateX(100%);
        opacity: 0;
    }

    to {
        transform: translateY(-50%) translateX(0);
        opacity: 1;
    }
}

.social-icon-btn {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    position: relative;
    overflow: hidden;
}

.social-icon-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transform: translateX(-100%);
    transition: transform 0.6s;
}

.social-icon-btn:hover::before {
    transform: translateX(100%);
}

.social-icon-btn:hover {
    transform: scale(1.15) rotate(5deg);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
}

.social-icon-btn svg {
    width: 26px;
    height: 26px;
    position: relative;
    z-index: 1;
}

/* Facebook */
.social-icon-btn.facebook {
    background: linear-gradient(135deg, #1877F2 0%, #0C63D4 100%);
}

/* Instagram */
.social-icon-btn.instagram {
    background: linear-gradient(135deg, #833AB4 0%, #E1306C 50%, #F77737 100%);
}

/* WhatsApp */
.social-icon-btn.whatsapp {
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
}

/* TikTok */
.social-icon-btn.tiktok {
    background: linear-gradient(135deg, #000000 0%, #EE1D52 50%, #69C9D0 100%);
}

/* WhatsApp Floating Button */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 65px;
    height: 65px;
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 6px 25px rgba(37, 211, 102, 0.4);
    z-index: 1000;
    animation: pulse 2s infinite, float 3s ease-in-out infinite;
    transition: all 0.3s ease;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 8px 30px rgba(37, 211, 102, 0.6);
}

.whatsapp-float svg {
    width: 35px;
    height: 35px;
    fill: white;
}

@keyframes pulse {

    0%,
    100% {
        box-shadow: 0 6px 25px rgba(37, 211, 102, 0.4);
    }

    50% {
        box-shadow: 0 6px 35px rgba(37, 211, 102, 0.7);
    }
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }
}

/* Footer Social Media */
.social-footer {
    background: linear-gradient(135deg, #FFB6C1 0%, #98FB98 50%, #F0E68C 100%) !important;
    padding: 60px 20px 30px;
    margin-top: 60px;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.08);
    position: relative;
    overflow: hidden;
}

.social-footer::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 182, 193, 0.1) 0%, transparent 70%);
    animation: footerGlow 15s ease-in-out infinite;
}

@keyframes footerGlow {

    0%,
    100% {
        transform: rotate(0deg);
    }

    50% {
        transform: rotate(180deg);
    }
}

.social-footer-content {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 1;
}

.social-footer h3 {
    font-size: 26px;
    font-weight: 700;
    background: linear-gradient(90deg, #66BB6A 0%, #FF69B4 50%, #F0E68C 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 15px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.social-footer p {
    color: #616161;
    font-size: 15px;
    margin-bottom: 30px;
    font-weight: 500;
}

.social-icons-footer {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

.social-footer-icon {
    width: 65px;
    height: 65px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    background: white;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
    position: relative;
    overflow: hidden;
}

.social-footer-icon::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, transparent, rgba(255, 255, 255, 0.5), transparent);
    transform: translateX(-100%);
    transition: transform 0.6s ease;
}

.social-footer-icon:hover::before {
    transform: translateX(100%);
}

.social-footer-icon:hover {
    transform: translateY(-10px) scale(1.15) rotate(5deg);
    box-shadow: 0 15px 40px rgba(255, 105, 180, 0.3);
}

.social-footer-icon svg {
    width: 32px;
    height: 32px;
    position: relative;
    z-index: 1;
    transition: all 0.3s ease;
}

.social-footer-icon:hover svg {
    transform: scale(1.2);
}

/* Contact Information Section */
.contact-info-section {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 182, 193, 0.3);
    border-radius: 25px;
    padding: 35px;
    margin-bottom: 50px;
    box-shadow: 0 8px 32px rgba(255, 105, 180, 0.15);
    position: relative;
    z-index: 1;
}

.contact-info-section h4 {
    font-size: 28px;
    font-weight: 700;
    background: linear-gradient(90deg, #FF69B4 0%, #66BB6A 50%, #F0E68C 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 30px;
}

.contact-items {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 15px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.9), rgba(255, 255, 255, 0.7));
    padding: 20px 25px;
    border-radius: 20px;
    border: 2px solid transparent;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    color: #424242;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.contact-item:hover {
    transform: translateY(-8px) scale(1.03);
    border-color: #FF69B4;
    box-shadow: 0 12px 35px rgba(255, 105, 180, 0.25);
    background: linear-gradient(135deg, #fff, rgba(255, 182, 193, 0.1));
}

.contact-item svg {
    flex-shrink: 0;
    width: 55px;
    height: 55px;
    padding: 16px;
    background: linear-gradient(135deg, #FF69B4, #FFB6C1);
    border-radius: 20px;
    box-shadow: 0 4px 12px rgba(255, 105, 180, 0.3);
    transition: all 0.3s ease;
    color: white !important;
}

.contact-item:hover svg {
    transform: rotate(10deg) scale(1.1);
    box-shadow: 0 6px 18px rgba(255, 105, 180, 0.5);
}

.contact-item a,
.contact-item span {
    color: #424242;
    text-decoration: none;
    font-weight: 500;
    font-size: 16px;
    flex: 1;
    transition: color 0.2s;
}

.contact-item a:hover {
    color: #FF69B4;
}

.social-section {
    margin-bottom: 30px;
}

.social-section h3 {
    font-size: 26px;
    font-weight: 700;
    background: linear-gradient(90deg, #66BB6A 0%, #FF69B4 50%, #F0E68C 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 15px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.social-section p {
    color: #616161;
    font-size: 15px;
    margin-bottom: 30px;
    font-weight: 500;
}

.footer-info {
    margin-top: 30px;
    padding-top: 25px;
    border-top: 2px solid rgba(255, 182, 193, 0.2);
    color: #757575;
    font-size: 14px;
}

.footer-info p::before {
    content: '🦖 ';
    margin-right: 8px;
    font-size: 18px;
    animation: bounce 2s ease-in-out infinite;
}

@keyframes bounce {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-5px);
    }
}

/* Responsive */
@media (max-width: 768px) {
    .social-media-bar {
        display: none;
    }

    .whatsapp-float {
        bottom: 20px;
        right: 20px;
        width: 55px;
        height: 55px;
    }

    .whatsapp-float svg {
        width: 28px;
        height: 28px;
    }

    .social-footer h3,
    .social-section h3 {
        font-size: 24px;
    }

    .contact-info-section {
        padding: 20px;
    }

    .contact-info-section h4 {
        font-size: 18px;
    }

    .contact-items {
        grid-template-columns: 1fr;
        gap: 10px;
    }

    .contact-item {
        padding: 12px 15px;
        font-size: 14px;
    }
}