/* ============================================
   SALESHIVE FOOTER STYLES
   ============================================ */

.sh-footer {
    background: var(--sh-black);
    position: relative;
}

/* Footer CTA Section */
.sh-footer-cta {
    position: relative;
    padding: 100px 40px;
    overflow: hidden;
}

.sh-footer-cta .sh-container {
    padding: 0;
}

.sh-footer-cta-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        linear-gradient(135deg, var(--sh-dark) 0%, var(--sh-dark-purple) 50%, var(--sh-dark) 100%);
}

.sh-footer-cta-bg::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(ellipse 60% 40% at 30% 50%, rgba(255, 107, 0, 0.1) 0%, transparent 60%),
        radial-gradient(ellipse 50% 50% at 70% 60%, rgba(155, 81, 224, 0.1) 0%, transparent 60%);
    animation: footerBgPulse 15s ease-in-out infinite;
}

@keyframes footerBgPulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.6; }
}

.sh-footer-cta-bg::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        linear-gradient(rgba(155, 81, 224, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 140, 26, 0.03) 1px, transparent 1px);
    background-size: 50px 50px;
}

.sh-footer-cta-content {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
}

.sh-footer-cta-eyebrow {
    display: inline-block;
    padding: 8px 20px;
    background: rgba(255, 140, 26, 0.1);
    border: 1px solid rgba(255, 140, 26, 0.3);
    border-radius: var(--sh-radius-full);
    color: var(--sh-orange-light);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 24px;
}

.sh-footer-cta-title {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    color: var(--sh-white);
    margin: 0 0 20px 0;
    line-height: 1.2;
}

.sh-footer-cta-text {
    font-size: 18px;
    color: var(--sh-gray-300);
    margin: 0 0 40px 0;
    line-height: 1.7;
}

.sh-footer-cta-buttons {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}

.sh-footer-cta-buttons .sh-btn-icon {
    width: 18px;
    height: 18px;
    transition: transform var(--sh-transition-fast);
}

.sh-footer-cta-buttons .sh-btn-primary:hover .sh-btn-icon {
    transform: translateX(4px);
}

/* Main Footer */
.sh-footer-main {
    padding: 80px 40px;
    border-top: 1px solid var(--sh-gray-800);
}

.sh-footer-main .sh-container {
    padding: 0;
}

.sh-footer-grid {
    display: grid;
    grid-template-columns: 1.5fr repeat(3, 1fr);
    gap: 60px;
}

/* Brand Column */
.sh-footer-brand {
    max-width: 320px;
}

.sh-footer-company-name {
    font-size: 24px;
    font-weight: 800;
    color: var(--sh-white);
    margin: 0 0 20px;
    letter-spacing: -0.5px;
}

.sh-footer-logo {
    display: inline-block;
    text-decoration: none;
    margin-bottom: 20px;
}

.sh-footer-logo .sh-logo-text {
    font-size: 26px;
    font-weight: 800;
    letter-spacing: -1px;
}

.sh-footer-tagline {
    color: var(--sh-gray-400);
    font-size: 14px;
    line-height: 1.7;
    margin: 0 0 24px 0;
}

/* Social Links */
.sh-footer-social {
    display: flex;
    gap: 12px;
}

.sh-footer-social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    background: var(--sh-gray-900);
    border: 1px solid var(--sh-gray-800);
    border-radius: var(--sh-radius-sm);
    color: var(--sh-gray-400);
    transition: all var(--sh-transition-fast);
}

.sh-footer-social-link svg {
    width: 18px;
    height: 18px;
}

.sh-footer-social-link:hover {
    background: var(--sh-gray-800);
    border-color: var(--sh-orange);
    color: var(--sh-orange-light);
    transform: translateY(-2px);
}

/* Footer Contact Info */
.sh-footer-contact {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 20px;
}

.sh-footer-contact-item {
    display: flex;
    align-items: center;
    font-size: 14px;
    color: var(--sh-gray-400);
    margin: 0;
}

.sh-footer-contact-item svg {
    color: var(--sh-orange);
    flex-shrink: 0;
}

.sh-footer-contact-item a {
    color: var(--sh-gray-300);
    text-decoration: none;
    transition: color var(--sh-transition-fast);
}

.sh-footer-contact-item a:hover {
    color: var(--sh-orange-light);
}

/* Footer Columns */
.sh-footer-column {
    
}

.sh-footer-heading {
    font-size: 14px;
    font-weight: 700;
    color: var(--sh-white);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin: 0 0 24px 0;
}

.sh-footer-menu {
    list-style: none;
    padding: 0;
    margin: 0;
}

.sh-footer-menu li {
    margin: 0 0 12px 0;
}

.sh-footer-menu a {
    color: var(--sh-gray-400);
    font-size: 14px;
    text-decoration: none;
    transition: color var(--sh-transition-fast);
    display: inline-block;
}

.sh-footer-menu a:hover {
    color: var(--sh-orange-light);
}

/* Footer Bottom */
.sh-footer-bottom {
    padding: 24px 40px;
    border-top: 1px solid var(--sh-gray-800);
}

.sh-footer-bottom .sh-container {
    padding: 0;
}

.sh-footer-bottom-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 16px;
}

.sh-footer-copyright {
    color: var(--sh-gray-500);
    font-size: 13px;
    margin: 0;
}

.sh-footer-legal {
    display: flex;
    gap: 24px;
}

.sh-footer-legal a {
    color: var(--sh-gray-500);
    font-size: 13px;
    text-decoration: none;
    transition: color var(--sh-transition-fast);
}

.sh-footer-legal a:hover {
    color: var(--sh-orange-light);
}

/* Responsive */
@media (max-width: 1024px) {
    .sh-footer-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px;
    }
    
    .sh-footer-brand {
        grid-column: span 2;
        max-width: 100%;
    }
}

@media (max-width: 768px) {
    .sh-footer-cta {
        padding: 70px 20px;
    }
    
    .sh-footer-cta-text {
        font-size: 16px;
    }
    
    .sh-footer-cta-buttons {
        flex-direction: column;
    }
    
    .sh-footer-cta-buttons .sh-btn {
        width: 100%;
    }
    
    .sh-footer-main {
        padding: 50px 20px;
    }
    
    .sh-footer-bottom {
        padding: 24px 20px;
    }
    
    .sh-footer-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .sh-footer-brand {
        grid-column: span 1;
        text-align: center;
    }
    
    .sh-footer-contact {
        align-items: center;
    }
    
    .sh-footer-contact-item {
        justify-content: center;
    }
    
    .sh-footer-social {
        justify-content: center;
    }
    
    .sh-footer-column {
        text-align: center;
    }
    
    .sh-footer-bottom-inner {
        flex-direction: column;
        text-align: center;
    }
}

/* ============================================
   BUTTON SHIMMER ANIMATION
   ============================================ */
@keyframes btnShimmer {
    0% { left: -100%; }
    50%, 100% { left: 100%; }
}

