.elementor-182 .elementor-element.elementor-element-767630d{--display:flex;--padding-top:0px;--padding-bottom:0px;--padding-left:0px;--padding-right:0px;}/* Start custom CSS for html, class: .elementor-element-b256b2a */@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700&display=swap');

/* Main Footer Wrapper */
.minicell-dark-footer {
    background-color: #0a0a0c; /* Deep premium dark */
    font-family: 'Outfit', sans-serif;
    color: #a1a1aa;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    position: relative;
    overflow: hidden;
}

/* Subtle background glow effect */
.minicell-dark-footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 10%;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(227, 30, 36, 0.05) 0%, transparent 70%);
    pointer-events: none;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 80px 20px 60px;
}

/* Grid Layout */
.footer-grid {
    display: grid;
    /* First column gets more space for the logo and description */
    grid-template-columns: 1.5fr 1fr 1fr 1fr; 
    gap: 50px;
}

/* --- COLUMN 1: BRAND --- */
.footer-logo {
    max-width: 190px; /* Slightly wider to accommodate the padding */
    height: auto;
    margin-bottom: 12px;
    display: block;
    width: 80%;
     /* New styling to make the dark logo visible */
    background-color: #ffffff; 
    padding: 12px 20px; 
    border-radius: 12px; /* Smooth rounded corners */
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4); /* Drops shadow to separate it from the background */
   
}
.footer-tagline {
    color: #e31e24; /* Brand Red */
    font-weight: 600;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin: 0 0 20px 0;
}

.footer-desc {
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 30px;
    max-width: 300px;
}

/* Social Buttons */
.footer-socials {
    display: flex;
    gap: 12px;
}

.social-btn {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-size: 1.1rem;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.social-btn:hover {
    background: #e31e24;
    border-color: #e31e24;
    transform: translateY(-4px);
    box-shadow: 0 10px 20px rgba(227, 30, 36, 0.3);
}

/* --- COLUMNS 2, 3, 4: LINKS --- */
.footer-heading {
    color: #ffffff;
    font-size: 1.25rem;
    font-weight: 600;
    margin: 0 0 24px 0;
    position: relative;
    padding-bottom: 12px;
}

/* Red underline accent for headings */
.footer-heading::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 30px;
    height: 2px;
    background: #e31e24;
    border-radius: 2px;
}

.footer-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.footer-list a {
    color: #a1a1aa;
    text-decoration: none;
    font-size: 1rem;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.footer-list a i {
    color: #e31e24;
    font-size: 0.8rem;
    transition: transform 0.3s ease;
}

/* Link Hover Micro-interactions */
.footer-list a:hover {
    color: #ffffff;
    transform: translateX(6px); /* Smooth slide to the right */
}

.footer-list a:hover i {
    transform: translateX(2px);
}

/* --- BOTTOM COPYRIGHT BAR --- */
.footer-bottom-bar {
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    background-color: rgba(0, 0, 0, 0.2);
}

.footer-bottom-bar .footer-container {
    padding: 24px 20px;
}

.bottom-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.9rem;
}

.bottom-flex p {
    margin: 0;
}

.bottom-links {
    display: flex;
    align-items: center;
    gap: 16px;
}

.bottom-links a {
    color: #a1a1aa;
    text-decoration: none;
    transition: color 0.3s ease;
}

.bottom-links a:hover {
    color: #ffffff;
}

.bottom-links .divider {
    color: rgba(255, 255, 255, 0.1);
}

/* --- RESPONSIVE DESIGN --- */
@media (max-width: 992px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr; /* Switch to 2 columns */
        row-gap: 50px;
    }
    
    .footer-brand-col {
        grid-column: span 2; /* Brand takes full width on tablets */
        text-align: center;
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    
    .footer-desc {
        max-width: 500px;
    }
}

@media (max-width: 768px) {
    .footer-container {
        padding: 60px 20px 40px;
    }

    .footer-grid {
        grid-template-columns: 1fr; /* Switch to 1 column for mobile */
        gap: 40px;
    }
    
    .footer-brand-col {
        grid-column: span 1;
    }
    
    .bottom-flex {
        flex-direction: column;
        gap: 16px;
        text-align: center;
    }
}/* End custom CSS */