/* ===========================================
   TRUBAČI STARS - FOOTER
   =========================================== */

.footer {
    background: var(--bg-secondary);
    border-top: 1px solid var(--border-color);
    padding: 60px 0 30px;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr 2fr;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 1.5rem;
    color: var(--text-primary);
    margin-bottom: 15px;
}

.footer-logo img {
    height: 80px;
    width: auto;
    object-fit: contain;
}

.footer-logo-text {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 700;
    background: linear-gradient(135deg, var(--primary-gold) 0%, #f5d485 50%, var(--primary-gold) 100%);
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: 2px;
    text-transform: uppercase;
    text-shadow: 0 2px 10px rgba(212, 168, 71, 0.3);
    transition: all 0.3s ease;
}

.footer-logo:hover .footer-logo-text {
    background-position: 100% center;
}

.footer-logo i {
    color: var(--primary-gold);
}

.footer-logo strong {
    color: var(--primary-gold);
}

.footer-tagline {
    color: var(--text-muted);
    margin-bottom: 20px;
}

.footer-social {
    display: flex;
    gap: 12px;
}

.footer-social a {
    width: 42px;
    height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg-primary);
    border: 1px solid var(--border-color);
    border-radius: 50%;
    color: var(--text-secondary);
    transition: var(--transition);
}

.footer-social a:hover {
    background: var(--primary-gold);
    border-color: var(--primary-gold);
    color: #fff;
    transform: translateY(-3px);
}

.footer-links h4,
.footer-contact h4,
.footer-friends h4 {
    font-family: var(--font-display);
    font-size: 1.1rem;
    color: var(--text-primary);
    margin-bottom: 20px;
}

.footer-links ul li {
    margin-bottom: 10px;
}

.footer-links a {
    color: var(--text-muted);
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--primary-gold);
    padding-left: 5px;
}

.footer-contact p {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--text-muted);
    margin-bottom: 10px;
}

.footer-contact i {
    color: var(--primary-gold);
    width: 20px;
}

.friends-links {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.friends-links a {
    color: var(--text-muted);
    font-size: 0.9rem;
    transition: var(--transition);
}

.friends-links a:hover {
    color: var(--primary-gold);
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid var(--border-color);
}

.footer-bottom p {
    color: var(--text-muted);
    font-size: 0.9rem;
}

.footer-bottom a {
    color: var(--primary-gold);
}

.footer-bottom a:hover {
    text-decoration: underline;
}

/* Viber & WhatsApp icons in footer */
.footer-contact .fa-viber {
    color: #7360f2;
}

.footer-contact .fa-whatsapp {
    color: #25d366;
}

/* ===========================================
   FLOATING CALL BUTTON
   =========================================== */
.floating-call-btn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 999;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 15px 25px;
    background: linear-gradient(135deg, var(--primary-gold) 0%, #c49b30 100%);
    color: #fff;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    box-shadow: 0 8px 30px rgba(212, 168, 71, 0.4);
    transition: all 0.3s ease;
    animation: floatingPulse 2s ease-in-out infinite;
}

.floating-call-btn:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 12px 40px rgba(212, 168, 71, 0.5);
}

.floating-call-btn i {
    font-size: 1.2rem;
    animation: phoneRing 1.5s ease-in-out infinite;
}

.floating-call-text {
    display: inline;
}

@keyframes floatingPulse {
    0%, 100% {
        box-shadow: 0 8px 30px rgba(212, 168, 71, 0.4);
    }
    50% {
        box-shadow: 0 8px 40px rgba(212, 168, 71, 0.6);
    }
}

@keyframes phoneRing {
    0%, 100% {
        transform: rotate(0deg);
    }
    10%, 30% {
        transform: rotate(-10deg);
    }
    20%, 40% {
        transform: rotate(10deg);
    }
    50% {
        transform: rotate(0deg);
    }
}

/* Mobile styles for floating button */
@media (max-width: 768px) {
    .floating-call-btn {
        bottom: 20px;
        right: 20px;
        padding: 15px;
        border-radius: 50%;
    }
    
    .floating-call-text {
        display: none;
    }
}
