.elementor-17 .elementor-element.elementor-element-bb34117{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;}/* Start custom CSS for html, class: .elementor-element-c85e6ba *//* Footer Styles - Enhanced with Animations */
.sph-footer * {
    box-sizing: border-box;
    font-family: 'Inter', 'Segoe UI', Roboto, sans-serif;
}

.sph-footer {
    background: linear-gradient(145deg, #121520, #1e2335, #2a2f45);
    color: #d1d9f0;
    padding: 2.8rem 2rem 1.2rem;
    margin-top: auto;
    width: 100%;
    box-shadow: 0 -10px 30px -10px rgba(0,0,0,0.3);
    position: relative;
    overflow-x: hidden;
}

/* Animated gradient border at top */
.sph-footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, #70e1f5, #ffd194, #70e1f5);
    background-size: 200% 100%;
    animation: gradientShift 3s ease infinite;
}

@keyframes gradientShift {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

.sph-footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 2rem;
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

/* Footer column animations */
.sph-footer-col {
    backdrop-filter: blur(4px);
    opacity: 0;
    transform: translateY(25px);
    transition: opacity 0.6s cubic-bezier(0.2, 0.9, 0.4, 1.1), transform 0.6s cubic-bezier(0.2, 0.9, 0.4, 1.1);
}

.sph-footer.animate-ready .sph-footer-col {
    opacity: 1;
    transform: translateY(0);
}

/* Staggered animation for columns */
.sph-footer.animate-ready .sph-footer-col:nth-child(1) { transition-delay: 0.02s; }
.sph-footer.animate-ready .sph-footer-col:nth-child(2) { transition-delay: 0.08s; }
.sph-footer.animate-ready .sph-footer-col:nth-child(3) { transition-delay: 0.14s; }
.sph-footer.animate-ready .sph-footer-col:nth-child(4) { transition-delay: 0.20s; }
.sph-footer.animate-ready .sph-footer-col:nth-child(5) { transition-delay: 0.26s; }

/* Logo column styling */
.sph-footer-logo {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
}

.sph-footer-logo img {
    max-width: 180px;
    height: auto;
    filter: brightness(1) drop-shadow(0 4px 8px rgba(0,0,0,0.3));
    transition: all 0.3s cubic-bezier(0.2, 0.9, 0.4, 1.1);
}

.sph-footer-logo img:hover {
    transform: scale(1.02) translateY(-3px);
    filter: brightness(1.05) drop-shadow(0 8px 16px rgba(112,225,245,0.3));
}

.sph-footer-logo p {
    font-size: 0.85rem;
    color: #a0b0d0;
    margin-top: 0.5rem;
    line-height: 1.5;
    max-width: 180px;
    transition: color 0.2s;
}

/* Column headings with animated underline */
.sph-footer-col h3 {
    color: #ffd194;
    margin-bottom: 1.2rem;
    font-size: 1.3rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    border-left: 4px solid #70e1f5;
    padding-left: 0.9rem;
    position: relative;
    display: inline-block;
}

.sph-footer-col h3::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #70e1f5, #ffd194);
    transition: width 0.3s ease;
}

.sph-footer-col:hover h3::after {
    width: 100%;
}

/* List items with animations */
.sph-footer-col ul {
    list-style: none;
    padding-left: 0;
    margin: 0;
}

.sph-footer-col ul li {
    margin-bottom: 0.7rem;
    transition: all 0.2s cubic-bezier(0.2, 0.9, 0.4, 1.1);
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 0.6rem;
    transform: translateX(0);
}

.sph-footer-col ul li:hover {
    color: #ffffff;
    transform: translateX(6px);
}

.sph-footer-col ul li a {
    color: inherit;
    text-decoration: none;
    display: inline-block;
    width: 100%;
    transition: color 0.2s;
}

.sph-footer-col ul li a:hover {
    color: #ffd194;
}

/* Contact items */
.sph-footer-col p {
    margin-bottom: 0.9rem;
    display: flex;
    align-items: center;
    gap: 0.7rem;
    transition: transform 0.2s ease;
}

.sph-footer-col p:hover {
    transform: translateX(4px);
    color: #ffffff;
}

.sph-footer-col i {
    color: #70e1f5;
    width: 22px;
    font-size: 1.2rem;
    transition: transform 0.2s, color 0.2s;
}

.sph-footer-col p:hover i {
    transform: scale(1.1);
    color: #ffd194;
}

/* Badges with pulse animation */
.sph-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 0.8rem;
    margin-top: 1.5rem;
}

.sph-badge {
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(112, 225, 245, 0.4);
    padding: 0.45rem 1.2rem;
    border-radius: 30px;
    font-size: 0.8rem;
    font-weight: 500;
    color: #ffd194;
    backdrop-filter: blur(4px);
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s cubic-bezier(0.2, 0.9, 0.4, 1.1);
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.sph-badge::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(112,225,245,0.3);
    transform: translate(-50%, -50%);
    transition: width 0.5s, height 0.5s;
}

.sph-badge:active::before {
    width: 100px;
    height: 100px;
}

.sph-badge:hover {
    border-color: #ffd194;
    background: rgba(255,255,255,0.12);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(112,225,245,0.2);
}

.sph-badge i {
    color: #70e1f5;
    width: auto;
    font-size: 0.9rem;
    transition: transform 0.2s;
}

.sph-badge:hover i {
    transform: scale(1.1);
    color: #ffd194;
}

/* Footer bottom with fade-in */
.sph-footer-bottom {
    text-align: center;
    padding-top: 2rem;
    margin-top: 2rem;
    border-top: 1px solid rgba(255,255,255,0.08);
    font-size: 0.85rem;
    color: #a0b0d0;
    letter-spacing: 0.3px;
    opacity: 0;
    transform: translateY(15px);
    transition: opacity 0.5s ease 0.4s, transform 0.5s ease 0.4s;
}

.sph-footer.animate-ready .sph-footer-bottom {
    opacity: 1;
    transform: translateY(0);
}

/* ===== MOBILE OPTIMIZATIONS ===== */
@media (max-width: 900px) {
    .sph-footer {
        padding: 2rem 1.5rem 1rem;
    }
    
    .sph-footer-content {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 1.5rem;
    }
    
    .sph-footer-logo {
        align-items: center;
        text-align: center;
        grid-column: span 2;
    }
    
    .sph-footer-logo p {
        max-width: 100%;
        text-align: center;
    }
    
    .sph-footer-logo img {
        max-width: 150px;
    }
    
    .sph-footer-col h3 {
        font-size: 1.2rem;
        margin-bottom: 1rem;
    }
    
    .sph-footer-col ul li {
        margin-bottom: 0.6rem;
        font-size: 0.9rem;
    }
    
    .sph-footer-col p {
        font-size: 0.85rem;
    }
    
    .sph-badges {
        justify-content: center;
    }
    
    .sph-badge {
        font-size: 0.75rem;
        padding: 0.4rem 1rem;
    }
}

@media (max-width: 600px) {
    .sph-footer {
        padding: 1.8rem 1rem 1rem;
    }
    
    .sph-footer-content {
        grid-template-columns: 1fr 1fr;
        gap: 1.2rem;
    }
    
    .sph-footer-logo {
        grid-column: span 2;
        margin-bottom: 0.5rem;
    }
    
    .sph-footer-logo img {
        max-width: 130px;
    }
    
    .sph-footer-logo p {
        font-size: 0.75rem;
        max-width: 280px;
        margin-left: auto;
        margin-right: auto;
    }
    
    .sph-footer-col h3 {
        font-size: 1rem;
        margin-bottom: 0.8rem;
        padding-left: 0.6rem;
        border-left-width: 3px;
    }
    
    .sph-footer-col ul li {
        margin-bottom: 0.5rem;
        font-size: 0.8rem;
        gap: 0.5rem;
    }
    
    .sph-footer-col p {
        margin-bottom: 0.7rem;
        font-size: 0.75rem;
        gap: 0.6rem;
    }
    
    .sph-footer-col i {
        width: 18px;
        font-size: 1rem;
    }
    
    .sph-badges {
        gap: 0.6rem;
        margin-top: 1rem;
    }
    
    .sph-badge {
        font-size: 0.7rem;
        padding: 0.3rem 0.8rem;
    }
    
    .sph-footer-bottom {
        padding-top: 1.2rem;
        margin-top: 1.5rem;
        font-size: 0.7rem;
    }
}

/* Very small devices */
@media (max-width: 480px) {
    .sph-footer-content {
        gap: 1rem;
    }
    
    .sph-footer-col ul li {
        font-size: 0.75rem;
    }
    
    .sph-footer-col p {
        font-size: 0.7rem;
    }
}

/* Landscape orientation */
@media (max-width: 800px) and (orientation: landscape) {
    .sph-footer {
        padding: 1.5rem 1.5rem 1rem;
    }
    
    .sph-footer-content {
        grid-template-columns: repeat(3, 1fr);
        gap: 1rem;
    }
    
    .sph-footer-logo {
        grid-column: span 1;
    }
    
    .sph-footer-logo p {
        font-size: 0.7rem;
    }
    
    .sph-footer-logo img {
        max-width: 110px;
    }
}

/* Tablet devices */
@media (min-width: 601px) and (max-width: 900px) {
    .sph-footer-content {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .sph-footer-logo {
        grid-column: span 1;
    }
}

/* Hover effects for touch devices - subtle */
@media (hover: hover) {
    .sph-footer-col ul li:hover,
    .sph-footer-col p:hover {
        transform: translateX(6px);
    }
}

/* Reduced motion preference */
@media (prefers-reduced-motion: reduce) {
    .sph-footer::before,
    .sph-footer-col,
    .sph-footer-bottom,
    .sph-footer-col h3::after,
    .sph-footer-col ul li,
    .sph-footer-col p,
    .sph-badge,
    .sph-footer-logo img {
        animation: none;
        transition: none;
    }
    
    .sph-footer-col {
        opacity: 1;
        transform: none;
    }
    
    .sph-footer-bottom {
        opacity: 1;
        transform: none;
    }
    
    .sph-footer::before {
        animation: none;
    }
}/* End custom CSS */