/* Shared footer: contact rows (icon + handle) and brand partners CTA */
.footer-contact-row {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.4rem 0;
    color: rgba(255, 255, 255, 0.72);
    text-decoration: none;
    transition: color 0.2s ease;
}
.footer-contact-row:hover {
    color: rgba(255, 255, 255, 0.96);
}
.footer-contact-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 2.5rem;
    height: 2.5rem;
    flex-shrink: 0;
    border-radius: 0.75rem;
    border: 1px solid rgba(255, 255, 255, 0.12);
    background: rgba(255, 255, 255, 0.06);
    color: rgba(255, 255, 255, 0.88);
    transition: background 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}
.footer-contact-row:hover .footer-contact-icon {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 188, 20, 0.4);
    transform: scale(1.05);
}
.footer-contact-icon svg {
    width: 1.05rem;
    height: 1.05rem;
    fill: currentColor;
}

.partner-cta-btn {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    overflow: hidden;
    border-radius: 9999px;
    padding: 0.55rem 1.2rem;
    font-size: 0.875rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.9);
    border: 1px solid rgba(255, 188, 20, 0.4);
    background: linear-gradient(135deg, rgba(255, 188, 20, 0.14), rgba(255, 255, 255, 0.05));
    text-decoration: none;
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}
.partner-cta-btn::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(
        105deg,
        transparent 35%,
        rgba(255, 255, 255, 0.22) 50%,
        transparent 65%
    );
    background-size: 220% 100%;
    animation: partner-cta-shine 3.2s ease-in-out infinite;
    pointer-events: none;
}
.partner-cta-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 32px rgba(246, 168, 0, 0.18);
    border-color: rgba(255, 212, 103, 0.55);
}
.partner-cta-btn svg {
    width: 1rem;
    height: 1rem;
    stroke: currentColor;
    fill: none;
    stroke-width: 2.2;
    stroke-linecap: round;
    stroke-linejoin: round;
    position: relative;
    z-index: 1;
}
.partner-cta-btn span {
    position: relative;
    z-index: 1;
}

@keyframes partner-cta-shine {
    0%,
    100% {
        background-position: 120% 0;
    }
    50% {
        background-position: -20% 0;
    }
}

@media (prefers-reduced-motion: reduce) {
    .partner-cta-btn::before {
        animation: none;
        opacity: 0;
    }
}
