/**
 * External Links Styles
 * WhatsApp, Delivery Partners, Google Business
 * 
 * @package RytChef_Fusion
 * @version 1.0.0
 */

/* ===================================================================
   WHATSAPP NAVBAR BUTTON
   =================================================================== */

.whatsapp-navbar-btn {
    position: fixed;
    top: 50%;
    transform: translateY(-50%);
    z-index: 998; /* Below header (1000) but above content */
    background: #25D366;
    color: white;
    padding: 12px 20px;
    border-radius: 50px;
    display: flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
    transition: all 0.3s ease;
    text-decoration: none;
    font-weight: 600;
}

.whatsapp-right {
    right: 20px;
}

.whatsapp-left {
    left: 20px;
}

.whatsapp-navbar-btn:hover {
    transform: translateY(-50%) scale(1.05);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.6);
    color: white;
}

.whatsapp-navbar-btn svg {
    flex-shrink: 0;
}

/* ===================================================================
   DELIVERY PARTNER BUTTONS
   =================================================================== */

.hero-delivery-partners {
    display: flex;
    gap: 16px;
    margin-top: 24px;
    flex-wrap: wrap;
}

.delivery-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 12px 24px;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
    text-decoration: none;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.delivery-swiggy {
    background: #FC8019;
    color: white;
}

.delivery-zomato {
    background: #E23744;
    color: white;
}

.delivery-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
    color: white;
}

.delivery-btn .badge {
    background: rgba(255, 255, 255, 0.2);
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.85rem;
    margin-left: 4px;
}

/* ===================================================================
   GOOGLE BUSINESS BADGE
   =================================================================== */

.google-business-badge {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 12px 20px;
    background: white;
    border: 2px solid #4285F4;
    border-radius: 12px;
    transition: all 0.3s ease;
    text-decoration: none;
    color: #1a1a1a;
}

.google-business-badge:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(66, 133, 244, 0.2);
    color: #1a1a1a;
}

.google-business-badge svg {
    flex-shrink: 0;
}

.badge-rating {
    color: #FBBC04;
    font-weight: 600;
    font-size: 0.9rem;
    margin-top: 2px;
}

/* ===================================================================
   SOCIAL LINKS (Follow Us Section)
   =================================================================== */

.follow-us-section {
    padding: 48px 0;
    background: var(--gradient-light-green-bg, #f0fff4);
}

.follow-us-section h2 {
    text-align: center;
    margin-bottom: 32px;
    color: var(--grab-go-text, #1a1a1a);
}

.social-links-grid {
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: white;
    color: #1a1a1a;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.social-link:hover {
    transform: translateY(-4px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    color: var(--grab-primary, #00B14F);
}

.social-link svg {
    width: 24px;
    height: 24px;
}

/* Icon styles */
.social-link-icon-circle {
    border-radius: 50%;
}

.social-link-icon-square {
    border-radius: 0;
}

.social-link-icon-rounded {
    border-radius: 12px;
}

/* ===================================================================
   FOOTER EXTERNAL LINKS
   =================================================================== */

.footer-external-links {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    margin-top: 24px;
}

.footer-external-links a {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    color: var(--grab-gray-300, #B3B3B3);
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 0.9rem;
}

.footer-external-links a:hover {
    background: rgba(255, 255, 255, 0.2);
    color: var(--grab-white, #FFFFFF);
}

/* ===================================================================
   MOBILE RESPONSIVE
   =================================================================== */

@media (max-width: 768px) {
    .whatsapp-navbar-btn span {
        display: none;
    }
    
    .whatsapp-navbar-btn {
        width: 56px;
        height: 56px;
        padding: 0;
        justify-content: center;
        border-radius: 50%;
    }
    
    .hero-delivery-partners {
        flex-direction: column;
    }
    
    .delivery-btn {
        width: 100%;
        justify-content: center;
    }
    
    .social-links-grid {
        gap: 12px;
    }
    
    .social-link {
        width: 48px;
        height: 48px;
    }
    
    .footer-external-links {
        flex-direction: column;
    }
    
    .footer-external-links a {
        width: 100%;
        justify-content: center;
    }
}

