/* Footer Styles */
footer {
    background: linear-gradient(135deg, var(--primary-color), #2C4B7C) !important;
    padding: 4rem 0 !important;
    margin-top: 0 !important;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255,255,255,0.1);
    color: white;
    transition: all 0.3s ease;
}

.social-link:hover {
    background: var(--secondary-color);
    color: var(--primary-color);
    transform: translateY(-3px);
}

.company-info {
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(255,255,255,0.1);
}

.info-item {
    color: var(--accent-color);
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
}

/* Sticky Social Buttons */
.sticky-social {
    position: fixed;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 999;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.sticky-button {
    display: flex;
    align-items: center;
    padding: 12px;
    border-radius: 50px;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

.sticky-button span {
    max-width: 0;
    overflow: hidden;
    white-space: nowrap;
    transition: max-width 0.3s ease;
}

.sticky-button:hover span {
    max-width: 150px;
    margin-left: 8px;
}

.sticky-button.whatsapp {
    background: #25D366;
}

.sticky-button.instamojo {
    background: var(--secondary-color);
}

.sticky-button.amazon {
    background: #FF9900;
}

.sticky-button:hover {
    background: var(--primary-color);
}

@media (max-width: 768px) {
    .sticky-social {
        right: 10px;
    }
    
    .sticky-button {
        padding: 10px;
    }
}