/* 
=============================================
FOOTER REDESIGN - DEEP SPACE THEME
=============================================
*/

:root {
    --footer-bg-dark: #0f0c15;
    --footer-bg-gradient-start: #1a1b3a;
    --footer-bg-gradient-end: #0f0c15;
    --footer-text-main: #ffffff;
    --footer-text-muted: rgba(255, 255, 255, 0.7);
    --footer-accent-teal: #2DD4BF;
    --footer-accent-purple: #7c3aed;
    --footer-border: rgba(255, 255, 255, 0.1);
}

.site-footer {
    background: linear-gradient(180deg, var(--footer-bg-gradient-start) 0%, var(--footer-bg-gradient-end) 100%) !important;
    position: relative;
    padding-top: 80px;
    z-index: 10;
    overflow: hidden;
}

/* Remove old background images if they clash, or blend them */
.site-footer-bg-1,
.site-footer-bg-2 {
    opacity: 0.1;
    /* Make them subtle */
    mix-blend-mode: overlay;
}

/* 
=============================================
TOP CTA SECTION (Glassmorphic Card)
=============================================
*/
.site-footer__top {
    padding-bottom: 60px;
    border-bottom: 1px solid var(--footer-border);
    margin-bottom: 60px;
}

.site-footer__top-inner {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 24px;
    padding: 40px 50px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    position: relative;
    overflow: hidden;
}

/* Glow Effect behind card */
.site-footer__top-inner::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(124, 58, 237, 0.15) 0%, rgba(0, 0, 0, 0) 70%);
    pointer-events: none;
    z-index: 0;
}

.site-footer__top-left {
    display: flex;
    align-items: center;
    gap: 25px;
    position: relative;
    z-index: 1;
}

.site-footer__top-icon {
    background: linear-gradient(135deg, var(--footer-accent-teal), #059669);
    width: 70px;
    height: 70px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    color: #fff;
    box-shadow: 0 10px 20px rgba(45, 212, 191, 0.3);
    flex-shrink: 0;
}

.site-footer__top-title {
    font-size: 28px;
    font-weight: 700;
    color: var(--footer-text-main);
    margin: 0;
    line-height: 1.3;
}

.site-footer__top-right {
    position: relative;
    z-index: 1;
}

.site-footer__btn {
    background: var(--footer-accent-purple) !important;
    color: white !important;
    border-radius: 50px;
    padding: 15px 40px;
    font-weight: 600;
    letter-spacing: 0.5px;
    box-shadow: 0 10px 20px rgba(124, 58, 237, 0.4);
    transition: all 0.3s ease;
    border: none;
}

.site-footer__btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(124, 58, 237, 0.6);
    background: #6D28D9 !important;
}

/* 
=============================================
WIDGETS AREA
=============================================
*/
.site-footer__middle {
    padding-bottom: 60px;
}

.footer-widget__title {
    color: var(--footer-text-main);
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 30px;
    position: relative;
    display: inline-block;
}

.footer-widget__title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 40px;
    height: 3px;
    background: var(--footer-accent-teal);
    border-radius: 2px;
}

/* About / Logo Widget */
.footer-widget__logo img {
    margin-bottom: 25px;
    filter: brightness(1.2);
    /* Make logo pop on dark bg */
}

.footer-widget__about-text {
    color: var(--footer-text-muted);
    line-height: 1.8;
    margin-bottom: 30px;
    font-size: 15px;
}

/* Newsletter Input */
.footer-widget__newsletter-input-box {
    position: relative;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 5px;
    display: flex;
    align-items: center;
}

.footer-widget__newsletter-input-box input {
    background: transparent;
    border: none;
    color: #fff;
    padding: 10px 20px;
    width: 100%;
    outline: none;
    font-size: 14px;
}

.footer-widget__newsletter-input-box input::placeholder {
    color: rgba(255, 255, 255, 0.4);
}

.footer-widget__newsletter-btn {
    background: var(--footer-accent-teal);
    width: 45px;
    height: 45px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.footer-widget__newsletter-btn:hover {
    background: #5EEAD4;
    transform: scale(1.05);
}

.footer-widget__newsletter-btn img {
    filter: brightness(0);
    /* Make icon black for contrast on teal */
    width: 18px;
}

/* Links Lists */
.footer-widget__links-list li,
.footer-widget__contact-list li {
    margin-bottom: 15px;
}

.footer-widget__links-list li a {
    color: var(--footer-text-muted);
    font-size: 15px;
    transition: all 0.3s ease;
    display: inline-block;
    position: relative;
}

.footer-widget__links-list li a:hover {
    color: var(--footer-accent-teal);
    transform: translateX(5px);
}

/* Contact List */
/* Contact List */
.footer-widget__contact-list .icon {
    color: #ffffff !important;
    font-size: 16px;
    margin-right: 15px;
    background: rgba(45, 212, 191, 0.15);
    border: 1px solid rgba(45, 212, 191, 0.3);
    width: 40px;
    height: 40px;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    border-radius: 50%;
    float: left;
    transition: all 0.3s ease;
    padding: 0 !important;
}

.footer-widget__contact-list .icon span {
    color: #ffffff !important;
    line-height: normal !important;
    display: inline-block !important;
    margin: 0 !important;
    padding: 0 !important;
    font-size: inherit;
    width: auto !important;
    height: auto !important;
}

.footer-widget__contact-list .icon span::before {
    margin: 0 !important;
    padding: 0 !important;
    line-height: 1 !important;
    display: block !important;
}

.footer-widget__contact-list li:hover .icon {
    background: var(--footer-accent-teal);
    border-color: var(--footer-accent-teal);
    color: #1a1a1a !important;
    /* Dark icon on bright hover */
    transform: scale(1.1);
}

.footer-widget__contact-list li:hover .icon span {
    color: #1a1a1a !important;
}

.footer-widget__contact-list .text p {
    color: var(--footer-text-muted);
    font-size: 15px;
    line-height: 1.6;
    margin: 0;
    padding-top: 5px;
}

.footer-widget__contact-list .text a {
    color: var(--footer-text-muted);
    transition: all 0.3s ease;
}

.footer-widget__contact-list .text a:hover {
    color: var(--footer-accent-teal);
}

/* Social Icons */
.site-footer__social {
    display: flex;
    gap: 15px;
}

.site-footer__social a {
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--footer-text-main);
    /* White icon */
    font-size: 16px;
    transition: all 0.3s ease;
}

.site-footer__social a:hover {
    background: var(--footer-accent-teal);
    color: #1a1a1a;
    /* Dark icon on hover */
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(45, 212, 191, 0.3);
    border-color: var(--footer-accent-teal);
}

/* 
=============================================
BOTTOM BAR
=============================================
*/
.site-footer__bottom {
    background: rgba(0, 0, 0, 0.2);
    border-top: 1px solid var(--footer-border);
    padding: 25px 0;
}

.site-footer__bottom-text {
    color: rgba(255, 255, 255, 0.5);
    text-align: center;
    font-size: 14px;
    margin: 0;
}

.site-footer__bottom-text a {
    color: var(--footer-accent-teal);
    font-weight: 600;
}


/* 
=============================================
RESPONSIVE
=============================================
*/
@media (max-width: 991px) {
    .site-footer__top-inner {
        flex-direction: column;
        text-align: center;
        padding: 40px 30px;
    }

    .site-footer__top-left {
        flex-direction: column;
        margin-bottom: 30px;
    }

    .site-footer__top-icon {
        margin-bottom: 15px;
    }

    .site-footer__top-title {
        font-size: 24px;
    }
}