/* Custom Footer Styling for MAINNET - No Background Color - 3px Bottom Padding */

/* FORCEFULLY HIDE the newsletter block */
.footer.content > .block.newsletter,
.footer .block.newsletter,
.block.newsletter {
    display: none !important;
    visibility: hidden !important;
    height: 0 !important;
    overflow: hidden !important;
    margin: 0 !important;
    padding: 0 !important;
}

/* Hide original footer links and copyright */
.footer.content .original-footer-hidden,
.footer .copyright {
    display: none !important;
}

/* Main Footer - NO BACKGROUND COLOR - 3PX BOTTOM PADDING */
.page-footer {
    background: transparent !important;  /* No background color */
    border-top: 1px solid #d0d7dd;
    margin-top: 30px;
    padding-bottom: 3px !important;
    padding-top: 0 !important;
    padding-left: 0 !important;
    padding-right: 0 !important;
}

/* Override any media query padding */
@media (min-width: 769px), print {
    .page-footer {
        padding-bottom: 3px !important;
        background: transparent !important;
    }
}

.footer.content {
    padding-top: 0 !important;
    padding-bottom: 0 !important;
    padding-left: 20px !important;
    padding-right: 20px !important;
    background: transparent !important;
}

/* Footer Columns Layout - MINIMAL PADDING */
.footer-columns-wrapper {
    border-top: 2px solid #11a188;
    padding: 25px 0 0 0 !important;
    margin-top: 0;
    margin-bottom: 0 !important;
    background: transparent;
}

.footer-columns-container {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 30px;
    margin-bottom: 15px !important;
    padding-bottom: 0 !important;
}

.footer-column {
    min-width: 0;
}

.footer-column-title {
    color: #11a188;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    position: relative;
    padding-bottom: 8px;
}

.footer-column-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 25px;
    height: 1px;
    background: #11a188;
}

/* Company Info Column - Compressed */
.company-info-column .column-content {
    color: #4a5568;
    line-height: 1.4;
    font-size: 13px;
}

.company-info-column .company-details {
    margin-top: 10px;
}

.company-info-column .company-details p {
    margin-bottom: 5px;
    font-size: 13px;
    color: #4a5568;
}

.company-info-column .contact-info a {
    color: #11a188 !important;
    text-decoration: none;
    font-size: 13px;
}

.company-info-column .contact-info a:hover {
    color: #0d8c76 !important;
    text-decoration: underline;
}

/* Footer Links Styling - Compressed */
.footer-column-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-column-links li {
    margin-bottom: 6px;
}

.footer-column-links a {
    color: #4a5568 !important;
    text-decoration: none;
    font-size: 13px;
    transition: all 0.3s ease;
    display: inline-block;
    position: relative;
    line-height: 1.3;
}

.footer-column-links a:hover {
    color: #11a188 !important;
    padding-left: 6px;
}

.footer-column-links a::before {
    content: '›';
    position: absolute;
    left: -8px;
    opacity: 0;
    color: #11a188;
    font-size: 16px;
    transition: all 0.3s ease;
}

.footer-column-links a:hover::before {
    left: 0;
    opacity: 1;
}

/* Bottom Info Bar - MINIMAL PADDING */
.footer-bottom-info {
    text-align: center;
    padding: 10px 0 10px 0 !important;
    border-top: 1px solid #d0d7dd;
    color: #4a5568;
    font-size: 12px;
    margin-top: 10px !important;
    margin-bottom: 0 !important;
    background: transparent;  /* No background */
}

.footer-bottom-info p {
    margin: 2px 0 !important;
}

/* Responsive Design - Maintain 3px bottom padding */
@media (max-width: 1024px) {
    .footer-columns-container {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }
    
    .company-info-column {
        grid-column: span 2;
    }
    
    .page-footer {
        padding-bottom: 3px !important;
        background: transparent !important;
    }
}

@media (max-width: 768px) {
    .footer-columns-container {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .company-info-column {
        grid-column: span 1;
    }
    
    .footer-columns-wrapper {
        padding: 20px 0 0 0 !important;
    }
    
    .page-footer {
        padding-bottom: 3px !important;
        background: transparent !important;
    }
}

@media (max-width: 480px) {
    .footer-columns-wrapper {
        padding: 15px 0 0 0 !important;
    }
    
    .footer-column-title {
        font-size: 13px;
    }
    
    .footer-column-links a {
        font-size: 12px;
    }
    
    .footer-column-links li {
        margin-bottom: 5px;
    }
    
    .page-footer {
        padding-bottom: 3px !important;
        background: transparent !important;
    }
}

/* Hide any debug or report elements */
.footer .report.bugs {
    display: none !important;
}