.elementor-334 .elementor-element.elementor-element-706f090{width:100%;max-width:100%;}/* Start custom CSS for html, class: .elementor-element-706f090 *//* ==========================================
   1. MAIN FOOTER WRAPPER (UNIVERSAL BASE)
========================================== */
.wow-footer {
    background: #0f172a !important; /* Rich Modern Slate Black */
    color: #94a3b8 !important;      /* Soft, readable grey text */
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    padding-top: 65px;
    border-top: 3px solid #0066cc;  /* Crisp blue accent line */
    width: 100% !important;
    max-width: 100vw !important;
    overflow-x: hidden;             /* Prevents horizontal scrollbars on phones */
    box-sizing: border-box;
}

/* Fluid Auto-Adapting Grid Container */
.footer-container {
    display: grid !important;
    /* Automatically creates 4 columns on desktop, 2 on tablet, 1 on phone */
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)) !important;
    max-width: 1380px;
    margin: 0 auto !important;
    padding: 0 30px 50px 30px !important;
    gap: 40px !important;
    box-sizing: border-box !important;
}

/* ==========================================
   2. COLUMN TYPOGRAPHY & LOGO
========================================== */
.footer-col {
    display: flex;
    flex-direction: column;
}

.footer-col h4 {
    color: #ffffff !important;
    font-size: 18px;
    font-weight: 700;
    margin-top: 0;
    margin-bottom: 22px;
    position: relative;
    padding-bottom: 10px;
}

/* Blue Indicator Bar Below Headings */
.footer-col h4::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 35px;
    height: 3px;
    background: #0080ff;
    border-radius: 2px;
}

.brand-col .footer-logo img {
    height: 48px;
    width: auto;
    max-width: 180px;
    object-fit: contain;
    filter: brightness(1.1);
    margin-bottom: 16px;
    display: block;
}

.footer-bio {
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 22px;
    color: #cbd5e1;
}

/* Social Media Badges */
.social-links {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}
.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    background: #1e293b;
    color: #ffffff !important;
    font-size: 13px;
    font-weight: 700;
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.3s ease;
}
.social-links a:hover {
    background: #0080ff;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 128, 255, 0.4);
}

/* ==========================================
   3. ANIMATED HOVER LINKS (UNDERLINE + COLOR)
========================================== */
.footer-links {
    list-style: none !important;
    margin: 0 !important;
    padding: 0 !important;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a,
.legal-links a {
    position: relative;
    color: #cbd5e1 !important;
    text-decoration: none !important;
    font-size: 14.5px;
    font-weight: 500;
    padding: 3px 0;
    display: inline-block;
    transition: color 0.3s ease, transform 0.3s ease;
}

/* Expanding Invisible Underline */
.footer-links a::after,
.legal-links a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0px;
    left: 50%;
    background: #38bdf8;
    transition: width 0.3s ease, left 0.3s ease;
    border-radius: 2px;
}

/* Hover Action: Color Shift + Slide + Line Expansion */
.footer-links a:hover,
.legal-links a:hover {
    color: #38bdf8 !important;
    transform: translateX(5px);
}

.footer-links a:hover::after,
.legal-links a:hover::after {
    width: 100%;
    left: 0;
}

/* ==========================================
   4. NEWSLETTER FORM
========================================== */
.newsletter-col p {
    font-size: 13.5px;
    line-height: 1.6;
    margin-top: 0;
    margin-bottom: 18px;
}

.footer-newsletter {
    display: flex;
    flex-direction: column;
    gap: 12px;
    width: 100%;
}

.footer-newsletter input[type="email"] {
    width: 100%;
    padding: 12px 18px;
    border-radius: 25px;
    border: 1px solid #334155;
    background: #1e293b;
    color: #ffffff;
    font-size: 14px;
    outline: none;
    box-sizing: border-box;
    transition: border-color 0.2s ease;
}

.footer-newsletter input[type="email"]:focus {
    border-color: #0080ff;
    background: #0f172a;
}

.footer-newsletter button {
    width: 100%;
    background: linear-gradient(135deg, #0066cc, #0080ff);
    color: #ffffff;
    border: none;
    padding: 12px 20px;
    border-radius: 25px;
    font-weight: 600;
    font-size: 14.5px;
    cursor: pointer;
    transition: all 0.25s ease;
    box-shadow: 0 4px 12px rgba(0, 102, 204, 0.25);
}

.footer-newsletter button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(0, 128, 255, 0.45);
}

/* ==========================================
   5. BOTTOM COPYRIGHT BAR
========================================== */
.footer-bottom {
    max-width: 1380px;
    margin: 0 auto;
    padding: 24px 30px;
    border-top: 1px solid #1e293b;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    gap: 15px;
    font-size: 13.5px;
    color: #64748b;
}

.footer-bottom strong {
    color: #cbd5e1;
}

.legal-links {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

/* ==========================================
   6. TABLET RESPONSIVE RULES (Max-Width: 992px)
========================================== */
@media screen and (max-width: 992px) {
    .footer-container {
        /* Locks columns into a neat 2x2 grid on iPad/Tablets */
        grid-template-columns: repeat(2, 1fr) !important;
        padding: 0 24px 40px 24px !important;
        gap: 35px !important;
    }
}

/* ==========================================
/* ==========================================
   7. MOBILE PHONE RESPONSIVE GRID (< 576px)
========================================== */
@media screen and (max-width: 576px) {
    .wow-footer {
        padding-top: 40px;
    }

    /* Converts Phone Layout into a Neat 2-Column Grid */
    .footer-container {
        grid-template-columns: repeat(2, 1fr) !important;
        padding: 0 16px 30px 16px !important;
        gap: 24px 16px !important; /* 24px vertical gap, 16px horizontal gap */
    }

    /* Make Brand/Bio span across both columns so the logo and text don't get squished */
    .footer-container .brand-col {
        grid-column: span 2 !important;
        border-bottom: 1px solid #1e293b;
        padding-bottom: 15px;
    }

    /* Make Newsletter span across both columns so email inputs stay thumb-friendly */
    .footer-container .newsletter-col {
        grid-column: span 2 !important;
        border-top: 1px solid #1e293b;
        padding-top: 15px;
    }

    /* Make headings and links slightly more compact for mobile side-by-side viewing */
    .footer-col h4 {
        font-size: 16px !important;
        margin-bottom: 14px !important;
    }

    .footer-links a {
        font-size: 13.5px !important;
        padding: 4px 0 !important;
    }

    /* Center copyright and legal links at the very bottom */
    .footer-bottom {
        flex-direction: column;
        text-align: center;
        justify-content: center;
        padding: 18px 14px;
        gap: 12px;
    }

    .legal-links {
        justify-content: center;
        width: 100%;
        gap: 16px;
    }
}/* End custom CSS */