/* Premium Footer Component Styles */
.site-footer {
    background: #eaeff7;
    padding: 120px 0 30px;
    border-top: 1px solid rgba(42, 149, 224, 0.233);
    position: relative;
    overflow: hidden;
    z-index: 10;
}

/* Glowing Border on Top */
.site-footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, transparent, rgba(0, 229, 255, 0.8), transparent);
    box-shadow: 0 0 20px rgba(0, 229, 255, 0.5);
}

/* Enormous Watermark */
.site-footer::after {
    content: 'CAPCO';
    position: absolute;
    bottom: -10%;
    right: -5%;
    font-size: 15vw;
    font-weight: 900;
    color: rgba(0, 0, 0, 0.03);
    font-family: 'Montserrat', sans-serif;
    letter-spacing: -5px;
    pointer-events: none;
    z-index: -1;
}

/* Footer Glowing Orb */
.footer-orb {
    position: absolute;
    top: 30%;
    left: -10%;
    width: 600px;
    height: 600px;
    background: rgba(0, 114, 255, 0.06);
    filter: blur(150px);
    border-radius: 50%;
    pointer-events: none;
    z-index: -1;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 4rem;
    margin-bottom: 60px;
}

.footer-brand img {
    height: 70px;
    margin-bottom: 2rem;
    filter: brightness(0) opacity(0.8) drop-shadow(0 0 15px rgba(0, 0, 0, 0.05));
    transition: transform 0.4s ease;
}

.footer-brand img:hover {
    transform: scale(1.05);
}

.footer-brand p {
    color: #4b5563;
    font-size: 1.05rem;
    line-height: 1.6;
    margin-bottom: 2rem;
}

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

.social-links a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(0, 0, 0, 0.1);
    color: #1f2937;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: rgba(0, 114, 255, 0.1);
    border-color: #0072FF;
    color: #0072FF;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 114, 255, 0.3);
}

.footer-links h4,
.footer-newsletter h4 {
    color: #111827;
    margin-bottom: 2rem;
    text-transform: uppercase;
    font-size: 1.1rem;
    font-weight: 800;
    letter-spacing: 1px;
    position: relative;
    display: inline-block;
}

.footer-links h4::after,
.footer-newsletter h4::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -8px;
    width: 30px;
    height: 3px;
    background: #0072FF;
    box-shadow: 0 0 10px rgba(0, 114, 255, 0.3);
}

.footer-links ul {
    list-style: none;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.footer-links a {
    color: #4b5563;
    text-decoration: none;
    font-size: 1rem;
    font-weight: 500;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
}

.footer-links a::before {
    content: '›';
    margin-right: 8px;
    color: #0072FF;
    font-size: 1.4rem;
    opacity: 0;
    transform: translateX(-10px);
    transition: all 0.3s ease;
}

.footer-links a:hover {
    color: #0072FF;
    transform: translateX(5px);
}

.footer-links a:hover::before {
    opacity: 1;
    transform: translateX(0);
}

.footer-newsletter p {
    color: #4b5563;
    font-size: 1rem;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.newsletter-form-footer {
    display: flex;
    background: rgba(255, 255, 255, 0.6);
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    backdrop-filter: blur(10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.newsletter-form-footer:focus-within {
    border-color: #0072FF;
    box-shadow: 0 0 25px rgba(0, 114, 255, 0.15), inset 0 0 10px rgba(0, 0, 0, 0.02);
    transform: translateY(-3px);
}

.newsletter-form-footer input {
    flex: 1;
    padding: 1rem 1.2rem;
    background: transparent;
    border: none;
    color: #111827;
    outline: none;
    font-size: 0.95rem;
}

.newsletter-form-footer input::placeholder {
    color: #9ca3af;
}

.newsletter-form-footer button {
    background: linear-gradient(135deg, #0072FF, #0056b3);
    color: white;
    border: none;
    padding: 0 1.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.newsletter-form-footer button:hover {
    opacity: 0.9;
}

.footer-bottom {
    padding-top: 30px;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
    text-align: center;
    color: #6b7280;
    font-size: 0.9rem;
    font-weight: 500;
}

@media (max-width: 992px) {
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 3rem;
    }
}

@media (max-width: 576px) {
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
}