.elementor-6001 .elementor-element.elementor-element-fa97fa7{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;}.elementor-theme-builder-content-area{height:400px;}.elementor-location-header:before, .elementor-location-footer:before{content:"";display:table;clear:both;}/* Start custom CSS for html, class: .elementor-element-24b01fe *//* ==========================================
   SMP Footer Responsive Design
   ========================================== */

:root {
    --footer-bg: #3d3d3d;
    --footer-text: #ffffff;
    --footer-link: #ffffff;
    --footer-link-hover: #e0e0e0;
    --footer-title: #ffffff;
    --social-size: 40px;
}

/* Footer Container */
.smp-footer {
    background-color: var(--footer-bg);
    color: var(--footer-text);
    padding: 40px 20px;
    position: relative;
    margin-top: 60px;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    overflow: hidden;
}

/* ==========================================
   Top Navigation
   ========================================== */

.footer-nav {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding-bottom: 20px;
    margin-bottom: 40px;
}

.footer-nav-menu {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
}

.footer-nav-menu li {
    margin: 0;
    padding: 0;
}

.footer-nav-menu a {
    color: var(--footer-link);
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: color 0.3s ease;
    white-space: nowrap;
}

.footer-nav-menu a:hover {
    color: var(--footer-link-hover);
}

/* ==========================================
   Main Footer Content
   ========================================== */

.footer-content {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.footer-section {
    padding: 0;
}

.footer-section-title {
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.5px;
    margin: 0 0 20px 0;
    color: var(--footer-title);
    text-transform: uppercase;
}

/* ==========================================
   Follow Section (Social Media)
   ========================================== */

.follow-section {
    display: flex;
    flex-direction: column;
    margin-left: 15px
}

.social-links {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.social-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background-color: rgba(255, 254, 254, 0.1);
    border-radius: 4px;
    transition: all 0.3s ease;
    color: var(--footer-text);
}

.social-link:hover {
    background-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

.social-link svg {
    width: 24px;
    height: 24px;
}

.social-link.facebook:hover {
    background-color: #1877f2;
}

.social-link.instagram:hover {
    background: linear-gradient(45deg, #f9ce34, #ee2a7b, #6228d7);
}

.social-link.linkedin:hover {
    background-color: #0a66c2;
}

.social-link.youtube:hover {
    background-color: #ff0000;
}

/* ==========================================
   Report Section
   ========================================== */

.report-section {
    display: flex;
    flex-direction: column;
}

.report-text {
    margin: 0 0 15px 0;
    font-size: 15px;
    line-height: 1.6;
    color: var(--footer-text);
}

.report-phone {
    margin: 0;
    font-size: 15px;
    line-height: 1.6;
    color: var(--footer-text);
}

.report-phone a {
    color: var(--footer-link);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.report-phone a:hover {
    color: var(--footer-link-hover);
}

/* ==========================================
   Acknowledgements Section
   ========================================== */

.acknowledgements-section {
    display: flex;
    flex-direction: column;
    margin-left: -180px
}

.acknowledgement-text {
    margin: 0;
    font-size: 13px;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.9);
    text-align: justify;
}

.acknowledgement-text a {
    color: var(--footer-link);
    text-decoration: none;
    transition: color 0.3s ease;
}

.acknowledgement-text a:hover {
    color: var(--footer-link-hover);
    text-decoration: underline;
}

/* ==========================================
   Decorative Element
   ========================================== */

.footer-decoration {
    position: absolute;
    bottom: 20px;
    right: 20px;
    width: 150px;
    height: 150px;
    background: linear-gradient(135deg, #00bcd4 0%, #ff5722 50%, #2196f3 100%);
    border-radius: 50%;
    opacity: 0.15;
    pointer-events: none;
}

.footer-decoration::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    border: 2px dashed rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    top: -20px;
    left: -20px;
    animation: rotate 20s linear infinite;
}

@keyframes rotate {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

/* ==========================================
   Responsive Design
   ========================================== */

/* Tablet (768px and below) */
@media (max-width: 768px) {
    .smp-footer {
        padding: 30px 15px;
        margin-top: 40px;
    }

    .footer-nav-menu {
        gap: 15px;
        flex-direction: column;
        align-items: flex-start;
    }

    .footer-nav-menu a {
        font-size: 13px;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .footer-section-title {
        font-size: 12px;
        margin-bottom: 15px;
    }

    .report-text,
    .report-phone {
        font-size: 14px;
    }

    .acknowledgement-text {
        font-size: 12px;
    }

    .social-links {
        gap: 15px;
    }

    .social-link {
        width: 45px;
        height: 45px;
    }

    .footer-decoration {
        width: 120px;
        height: 120px;
        opacity: 0.1;
    }
}

/* Mobile (480px and below) */
@media (max-width: 480px) {
    .smp-footer {
        padding: 20px 10px;
        margin-top: 30px;
    }

    .footer-nav {
        padding-bottom: 15px;
        margin-bottom: 25px;
    }

    .footer-nav-menu {
        gap: 10px;
    }

    .footer-nav-menu a {
        font-size: 12px;
    }

    .footer-content {
        gap: 25px;
    }

    .footer-section-title {
        font-size: 11px;
        margin-bottom: 12px;
        letter-spacing: 0.3px;
    }

    .report-text,
    .report-phone {
        font-size: 13px;
    }

    .acknowledgement-text {
        font-size: 11px;
        line-height: 1.6;
        /*text-align: left;*/
        margin-left: 180px;
    }

    .social-links {
        gap: 12px;
    }

    .social-link {
        width: 40px;
        height: 40px;
    }

    .social-link svg {
        width: 20px;
        height: 20px;
    }

    .follow-section,
    .report-section,
    .acknowledgements-section {
        text-align: center;
    }

    .social-links {
        justify-content: center;
    }

    .footer-decoration {
        width: 100px;
        height: 100px;
        right: 10px;
        bottom: 10px;
        opacity: 0.08;
    }
}

/* Extra Small Devices (320px and below) */
@media (max-width: 320px) {
    .smp-footer {
        padding: 15px 8px;
    }

    .footer-nav-menu a {
        font-size: 11px;
    }

    .footer-section-title {
        font-size: 10px;
    }

    .report-text,
    .report-phone {
        font-size: 12px;
    }

    .acknowledgement-text {
        font-size: 10px;
    }

    .social-link {
        width: 38px;
        height: 38px;
    }

    .social-link svg {
        width: 18px;
        height: 18px;
    }

    .footer-decoration {
        width: 80px;
        height: 80px;
    }
}

/* ==========================================
   Dark Mode Support
   ========================================== */

@media (prefers-color-scheme: dark) {
    :root {
        --footer-bg: #2d2d2d;
        --footer-text: #f0f0f0;
    }
}

/* ==========================================
   Print Styles
   ========================================== */

@media print {
    .smp-footer {
        background-color: #ffffff;
        color: #000000;
        border-top: 1px solid #000000;
        page-break-inside: avoid;
    }

    .footer-nav-menu a,
    .social-link,
    .acknowledgement-text a {
        color: #000000;
    }

    .footer-decoration {
        display: none;
    }
}/* End custom CSS */