.elementor-141 .elementor-element.elementor-element-a054a02{--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;--margin-top:0px;--margin-bottom:0px;--margin-left:0px;--margin-right:0px;--padding-top:0px;--padding-bottom:0px;--padding-left:0px;--padding-right:0px;}.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-a8334b6 *//* Footer Styles - Optimized Responsive */
.footer {
    background: #dfad18;
    color: #f4f1ed;
    padding: 60px 0 0;
    position: relative;
    overflow: hidden;
    width: 100%;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
}

.footer-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
    width: 100%;
    box-sizing: border-box;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 60px;
    margin-bottom: 40px;
}

/* Logo Section */
.footer-logo-section {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.footer-logo img {
    height: 100px;
    width: auto;
    filter: brightness(0) invert(1);
    opacity: 0.95;
    transition: all 0.3s ease;
}

.footer-logo img:hover {
    opacity: 1;
    transform: scale(1.05);
}

.footer-description {
    font-size: 15px;
    line-height: 1.8;
    opacity: 0.9;
    font-weight: 300;
    max-width: 500px;
}

/* Contact Section */
.footer-contact {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.footerlinks_header {
    font-size: 24px;
    font-family: 'Arial', sans-serif;
    color: white;
    font-weight: 600;
    margin-bottom: 10px;
    letter-spacing: 0.5px;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 15px;
    transition: all 0.3s ease;
    opacity: 0.95;
}

.contact-item:hover {
    opacity: 1;
    transform: translateX(5px);
}

.contact-icon {
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-icon img {
    width: 20px;
    height: 20px;
    filter: brightness(0) invert(1);
}

.contact-item a {
    color: inherit;
    text-decoration: none;
    transition: all 0.3s ease;
    font-weight: 400;
}

.contact-item a:hover {
    text-decoration: underline;
}

.social-icons {
    display: flex;
    gap: 15px;
    margin-top: 10px;
}

.social-icon {
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    cursor: pointer;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
}

.social-icon img {
    width: 24px;
    height: 24px;
    filter: brightness(0) invert(1);
}

.social-icon:hover {
    background: rgba(255, 255, 255, 0.25);
    transform: translateY(-3px) scale(1.1);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

/* Quick Links Section */
.footer-links {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.links-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.links-list a {
    color: #f4f1ed;
    text-decoration: none;
    font-size: 15px;
    transition: all 0.3s ease;
    opacity: 0.95;
    position: relative;
    padding-bottom: 3px;
    font-weight: 400;
}

.links-list a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: #f4f1ed;
    transition: width 0.3s ease;
}

.links-list a:hover {
    opacity: 1;
    transform: translateX(5px);
}

.links-list a:hover::after {
    width: 100%;
}

/* Copyright Section */
.footer-bottom {
    padding: 25px 0;
    text-align: center;
    background: rgba(0, 0, 0, 0.2);
    margin-top: 40px;
    width: 100vw;
    position: relative;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
}

.footer-bottom p {
    font-size: 14px;
    opacity: 0.9;
    letter-spacing: 0.5px;
    margin: 0;
}

/* Animation */
.footer-content > div {
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.8s ease forwards;
}

.footer-content > div:nth-child(1) {
    animation-delay: 0.1s;
}

.footer-content > div:nth-child(2) {
    animation-delay: 0.3s;
}

.footer-content > div:nth-child(3) {
    animation-delay: 0.5s;
}

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* RESPONSIVE BREAKPOINTS */

/* Large Laptops (1200px - 1400px) */
@media (max-width: 1366px) {
    .footer-container {
        padding: 0 35px;
    }
    
    .footer-content {
        gap: 50px;
    }
}

/* Medium Laptops (1024px - 1200px) */
@media (max-width: 1200px) {
    .footer-container {
        padding: 0 30px;
    }
    
    .footer-content {
        gap: 40px;
    }
    
    .footer-logo img {
        height: 90px;
    }
    
    .footer-description {
        font-size: 14px;
    }
}

/* Tablets (768px - 1024px) */
@media (max-width: 1024px) {
    .footer {
        padding: 50px 0 0;
    }
    
    .footer-container {
        padding: 0 25px;
    }
    
    .footer-content {
        grid-template-columns: 1fr 1fr;
        gap: 35px;
    }
    
    .footer-logo-section {
        grid-column: 1 / -1;
        max-width: 600px;
    }
    
    .footer-logo img {
        height: 85px;
    }
    
    .footerlinks_header {
        font-size: 22px;
    }
}

/* Mobile Landscape & Portrait (600px - 768px) */
@media (max-width: 768px) {
    .footer {
        padding: 45px 0 0;
    }
    
    .footer-container {
        padding: 0 20px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .footer-logo-section {
        align-items: center;
        text-align: center;
    }
    
    .footer-logo img {
        height: 80px;
    }
    
    .footer-description {
        text-align: center;
        max-width: 100%;
    }
    
    .contact-info {
        align-items: center;
    }
    
    .contact-item {
        justify-content: center;
    }
    
    .social-icons {
        justify-content: center;
    }
    
    .links-list {
        align-items: center;
    }
    
    .footerlinks_header {
        font-size: 20px;
    }
}

/* Small Mobile (480px - 600px) */
@media (max-width: 600px) {
    .footer {
        padding: 40px 0 0;
    }
    
    .footer-container {
        padding: 0 18px;
    }
    
    .footer-content {
        gap: 35px;
    }
    
    .footer-logo img {
        height: 70px;
    }
    
    .footer-description {
        font-size: 13px;
        line-height: 1.7;
    }
    
    .footerlinks_header {
        font-size: 19px;
    }
    
    .contact-item,
    .links-list a {
        font-size: 14px;
    }
    
    .social-icon {
        width: 42px;
        height: 42px;
    }
    
    .social-icon img {
        width: 22px;
        height: 22px;
    }
    
    .footer-bottom p {
        font-size: 13px;
    }
}

/* Extra Small Mobile (320px - 480px) */
@media (max-width: 480px) {
    .footer {
        padding: 35px 0 0;
    }
    
    .footer-container {
        padding: 0 16px;
    }
    
    .footer-content {
        gap: 30px;
    }
    
    .footer-logo img {
        height: 65px;
    }
    
    .footer-description {
        font-size: 12px;
    }
    
    .footerlinks_header {
        font-size: 18px;
        margin-bottom: 8px;
    }
    
    .contact-info {
        gap: 15px;
    }
    

    .contact-info {
        align-items: center !important;
    }
    
    .contact-item {
        font-size: 13px;
        gap: 10px;
    }
    
    .contact-icon {
        width: 20px;
        height: 20px;
    }
    
    .contact-icon img {
        width: 18px;
        height: 18px;
    }
    
    .links-list {
        gap: 12px;
    }
    
    .links-list a {
        font-size: 13px;
    }
    
    .social-icons {
        gap: 12px;
    }
    
    .social-icon {
        width: 38px;
        height: 38px;
    }
    
    .social-icon img {
        width: 20px;
        height: 20px;
    }
    
    .footer-bottom {
        padding: 20px 15px;
        margin-top: 30px;
    }
    
    .footer-bottom p {
        font-size: 12px;
    }
}

/* Extra Small Screens (< 360px) */
@media (max-width: 360px) {
    .footer-container {
        padding: 0 15px;
    }
    
    .footer-logo img {
        height: 60px;
    }
    
    .footer-description {
        font-size: 11px;
    }
    
    .footerlinks_header {
        font-size: 17px;
    }
    
    .contact-item,
    .links-list a {
        font-size: 12px;
    }
    
    .social-icon {
        width: 36px;
        height: 36px;
    }
    
    .social-icon img {
        width: 18px;
        height: 18px;
    }
}

/* Reduced Motion */
@media (prefers-reduced-motion: reduce) {
    .contact-item,
    .social-icon,
    .links-list a,
    .footer-logo img {
        transition: none;
    }
    
    .footer-content > div {
        animation: none;
        opacity: 1;
        transform: none;
    }
}/* End custom CSS */