.elementor-1361 .elementor-element.elementor-element-5a9768f{--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-widget .tippy-tooltip .tippy-content{text-align:center;}/* Start custom CSS *//* --- FOOTER WRAPPER & VARIABLES --- */
.natpack-global-footer-wrapper {
    --primary: #003B6F;
    --primary-dark: #002a50;
    --gold: #C5A059;
    --text-light: #f8fafc;
    --text-gray: #94a3b8;
    --text-dark: #111827; 
    --border-color: rgba(255, 255, 255, 0.1);
    
    font-family: 'Plus Jakarta Sans', sans-serif;
    color: var(--text-gray); 
}

.natpack-global-footer-wrapper * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* --- FOOTER STYLES --- */
.natpack-global-footer-wrapper .site-footer {
    background: var(--primary);
    color: var(--text-light);
    padding: 80px 0 0 0;
    font-size: 15px;
    position: relative;
    overflow: hidden;
}

.natpack-global-footer-wrapper .footer-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
    gap: 40px;
    margin-bottom: 60px;
}

/* Brand Column */
.natpack-global-footer-wrapper .footer-logo img {
    height: 45px;
    margin-bottom: 25px;
    filter: brightness(0) invert(1);
    opacity: 0.9;
}

.natpack-global-footer-wrapper .footer-desc {
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 25px;
    max-width: 300px;
}

.natpack-global-footer-wrapper .social-links {
    display: flex;
    gap: 15px;
}

.natpack-global-footer-wrapper .social-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    transition: 0.3s;
    text-decoration: none;
    border: 1px solid transparent;
}

.natpack-global-footer-wrapper .social-btn:hover {
    background: var(--gold);
    transform: translateY(-3px);
    border-color: var(--gold);
}

/* Links Columns */
.natpack-global-footer-wrapper .footer-title {
    color: white;
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 25px;
}

.natpack-global-footer-wrapper .footer-links {
    list-style: none;
}

.natpack-global-footer-wrapper .footer-links li {
    margin-bottom: 15px;
}

.natpack-global-footer-wrapper .footer-links a {
    color: var(--text-gray);
    text-decoration: none;
    transition: 0.3s;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.natpack-global-footer-wrapper .footer-links a:hover {
    color: var(--gold);
    transform: translateX(5px);
}

.natpack-global-footer-wrapper .footer-links a i {
    font-size: 12px;
    opacity: 0;
    transition: 0.3s;
    transform: translateX(-5px);
}

.natpack-global-footer-wrapper .footer-links a:hover i {
    opacity: 1;
    transform: translateX(0);
}

/* Contact Column */
.natpack-global-footer-wrapper .contact-item {
    display: flex;
    align-items: flex-start; /* Aligns icon to top for multi-line text */
    gap: 15px;
    margin-bottom: 20px;
    color: var(--text-gray);
    line-height: 1.5;
}

.natpack-global-footer-wrapper .contact-item i {
    color: var(--gold);
    font-size: 18px;
    margin-top: 3px;
    flex-shrink: 0;
}

.natpack-global-footer-wrapper .hours-text {
    display: flex;
    flex-direction: column;
}

/* Bottom Bar */
.natpack-global-footer-wrapper .footer-bottom {
    background: #002a50;
    padding: 25px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.natpack-global-footer-wrapper .bottom-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.natpack-global-footer-wrapper .copyright {
    color: var(--text-gray);
    font-size: 14px;
}

.natpack-global-footer-wrapper .legal-links {
    display: flex;
    gap: 25px;
}

.natpack-global-footer-wrapper .legal-links a {
    color: var(--text-gray);
    font-size: 14px;
    text-decoration: none;
    transition: 0.3s;
}

.natpack-global-footer-wrapper .legal-links a:hover {
    color: var(--gold);
}

/* Responsive */
@media (max-width: 1024px) {
    .natpack-global-footer-wrapper .footer-container {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 600px) {
    .natpack-global-footer-wrapper .footer-container {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .natpack-global-footer-wrapper .bottom-container {
        flex-direction: column;
        text-align: center;
    }
}/* End custom CSS */