    /* ========================================
   Enhanced Footer Styles
   ======================================== */

/* Footer Top Section */
.footer-top-section {
    padding-bottom: 30px;
}

.footer-brand {
    animation: fadeInUp 0.6s ease-out;
}

.footer-logo {
    max-width: 180px;
    height: auto;
    transition: transform 0.3s ease;
}

.footer-logo:hover {
    transform: scale(1.05);
}

.footer-tagline {
    color: var(--gray-400);
    font-size: 14px;
    line-height: 1.6;
    margin-top: 15px;
}

/* Footer Contact Cards */
.footer-contact-card,
.footer-hours-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    padding: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
    animation: fadeInUp 0.6s ease-out 0.2s both;
}

.footer-contact-card:hover,
.footer-hours-card:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: var(--primary-orange);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(255, 74, 0, 0.2);
}

.footer-card-title {
    color: var(--white);
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
}

.footer-card-title i {
    color: var(--primary-orange);
    margin-right: 8px;
}

.footer-contact-link {
    display: flex;
    align-items: center;
    color: var(--gray-300);
    text-decoration: none;
    padding: 8px 0;
    transition: all 0.3s ease;
    font-size: 14px;
}

.footer-contact-link i {
    color: var(--primary-orange);
    margin-right: 10px;
    width: 20px;
    transition: transform 0.3s ease;
}

.footer-contact-link:hover {
    color: var(--white);
    padding-left: 10px;
}

.footer-contact-link:hover i {
    transform: scale(1.2);
}

.footer-address-text {
    color: var(--gray-400);
    font-size: 13px;
    line-height: 1.6;
    margin-top: 10px;
}

/* Footer Divider */
.footer-divider {
    /* border-color: rgba(255, 255, 255, 0.1); */
    /* margin: 40px 0; */
    display:hidden;
    margin: 0px;
}

.text-sm {
    font-size: 12px !important;
}
/* Footer Headings */
.footer-heading {
    color: var(--white);
    font-size: 11px;
    font-weight: 700;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 12px;
    text-align: left !important;
}

.footer-heading::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 40px;
    height: 3px;
    background: var(--primary-orange);
    border-radius: 2px;
}

/* Force left alignment for all footer columns */
.footer .col-lg-2,
.footer .col-lg-3,
.footer .col-lg-5,
.footer .col-md-4,
.footer .col-md-6,
.footer .col-6,
.footer .row .col-6 {
    text-align: left !important;
    position: relative;
}

/* Add vertical divider lines between columns */
.footer .col-lg-2::after,
.footer .col-lg-3::after,
.footer .col-lg-5 .col-6:last-child::after {
    content: '';
    position: absolute;
    right: 0;
    top: 0;
    bottom: 0;
    width: 1px;
    background-color: rgba(128, 128, 128, 0.3);
    height: 100%;
}

/* Remove divider from last column in each row */
.footer .col-lg-2:last-child::after,
.footer .col-lg-3:last-child::after,
.footer .col-lg-5:last-child::after {
    display: none;
}

/* Keep divider on Services nested columns - only on last column */
.footer .col-lg-5 .col-6:last-child::after {
    display: block !important;
}

/* Force left alignment for nested rows in Services section */
.footer .row .row {
    text-align: left !important;
}

.footer .row .row .col-6 {
    text-align: left !important;
    position: relative;
}

/* Footer Links */
.footer-links {
    text-align: left !important;
    padding-left: 0 !important;
    list-style: none !important;
}

.footer-links li {
    margin-bottom: 10px;
    animation: fadeInLeft 0.6s ease-out both;
    text-align: left !important;
    list-style: none !important;
}

.footer-links li:nth-child(1) { animation-delay: 0.1s; }
.footer-links li:nth-child(2) { animation-delay: 0.15s; }
.footer-links li:nth-child(3) { animation-delay: 0.2s; }
.footer-links li:nth-child(4) { animation-delay: 0.25s; }
.footer-links li:nth-child(5) { animation-delay: 0.3s; }

.footer-links li a {
    color: var(--gray-300);
    text-decoration: none;
    font-size: 10px;
    display: flex;
    align-items: center;
    transition: all 0.3s ease;
    position: relative;
    text-align: left !important;
    justify-content: flex-start !important;
}

.footer-links li a i {
    color: var(--primary-orange);
    font-size: 6px;
    margin-right: 8px;
    opacity: 0;
    transform: translateX(-10px);
    transition: all 0.3s ease;
}

.footer-links li a:hover {
    color: var(--primary-orange);
    padding-left: 10px;
}

.footer-links li a:hover i {
    opacity: 1;
    transform: translateX(0);
}

/* Override any Bootstrap text-center classes */
.footer .text-center .footer-heading,
.footer .text-center .footer-links,
.footer .text-center .footer-links li,
.footer .text-center .footer-links li a {
    text-align: left !important;
}

/* Footer Social Links Sidebar */
.footer-social-links-sidebar {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-social-links-sidebar .footer-social-link {
    width: 100%;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    color: var(--gray-300);
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.footer-social-links-sidebar .footer-social-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 74, 0, 0.3), transparent);
    transition: left 0.5s ease;
}

.footer-social-links-sidebar .footer-social-link:hover::before {
    left: 100%;
}

.footer-social-links-sidebar .footer-social-link:hover {
    background: var(--primary-orange);
    color: var(--white);
    border-color: var(--primary-orange);
    transform: translateX(5px);
}

/* Trust Badges */
.footer-trust-badge {
    margin-top: 20px;
}

.trust-badge-item {
    display: flex;
    align-items: center;
    padding: 12px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    margin-bottom: 10px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.trust-badge-item:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: var(--primary-orange);
}

.trust-badge-item i {
    color: var(--primary-orange);
    font-size: 20px;
    margin-right: 10px;
}

.trust-badge-item span {
    color: var(--gray-300);
    font-size: 12px;
    font-weight: 500;
}

/* Mobile Contact Card */
.mobile-contact-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    padding: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.mobile-contact-item {
    display: flex;
    align-items: center;
    padding: 10px 0;
}

.mobile-contact-item i {
    color: var(--primary-orange);
    margin-right: 12px;
    font-size: 18px;
}

.mobile-contact-item a {
    color: var(--gray-300);
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}

.mobile-contact-item a:hover {
    color: var(--white);
}

/* Accordion Enhancements */
.acordion-col-item {
    margin-bottom: 12px;
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.acordion-col-item:hover {
    border-color: var(--primary-orange);
}

.accordion-btn {
    width: 100%;
    background: rgba(255, 255, 255, 0.05);
    color: var(--white);
    border: none;
    padding: 15px 20px;
    text-align: left;
    font-size: 16px;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: all 0.3s ease;
    cursor: pointer;
}

.accordion-btn:hover {
    background: rgba(255, 255, 255, 0.08);
}

.accordion-btn i.me-2 {
    color: var(--primary-orange);
    margin-right: 10px;
}

.accordion-btn .fa-chevron-down {
    transition: transform 0.3s ease;
}

.accordion-btn[aria-expanded="true"] .fa-chevron-down {
    transform: rotate(180deg);
}

.accordion-body {
    background: rgba(0, 0, 0, 0.2);
    padding: 15px 20px;
}

.accordion-body ul li a {
    display: flex;
    align-items: center;
    padding: 8px 0;
}

.accordion-body ul li a i {
    margin-right: 10px;
    font-size: 10px;
}

/* Footer Bottom */
.footer-disclaimer {
    font-size: 16px;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 15px;
}

.footer-description {
    color: var(--gray-400);
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 30px;
}

.footer-bottom {
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
    color: var(--gray-400);
    font-size: 14px;
}

.footer-link-highlight {
    color: var(--primary-orange);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.footer-link-highlight:hover {
    color: var(--primary-orange-light);
    text-decoration: underline;
}

/* Footer Social Links (Bottom) */
.footer-social-links {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 30px;
}

.footer-social-links .footer-social-link {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: var(--gray-300);
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.footer-social-links .footer-social-link::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: var(--primary-orange);
    transform: translate(-50%, -50%);
    transition: width 0.4s ease, height 0.4s ease;
    z-index: -1;
}

.footer-social-links .footer-social-link:hover::before {
    width: 100%;
    height: 100%;
}

.footer-social-links .footer-social-link:hover {
    color: var(--white);
    border-color: var(--primary-orange);
    transform: translateY(-5px);
}

/* Smaller Social Icons */
.footer-social-link-small {
    width: 32px !important;
    height: 32px !important;
    font-size: 14px !important;
}

/* Footer Bottom Row - Three Column Layout */
.footer-bottom-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
    gap: 20px;
}

.footer-copyright-left {
    flex: 1;
    text-align: left;
}

.footer-copyright-left p {
    font-size: 10px;
}

.footer-disclaimer {
    font-size: 12px !important;
}

.footer-description {
    font-size: 11px !important;
}

.footer-social-links-center {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex: 1;
}

.footer-right-space {
    flex: 1;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .footer-bottom-row {
        flex-direction: column;
        text-align: center;
    }
    
    .footer-copyright-left {
        text-align: center;
    }
}

/* Back to Top Button */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--primary-orange);
    color: var(--white);
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 999;
    box-shadow: 0 4px 15px rgba(255, 74, 0, 0.3);
}

.back-to-top.show {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    background: var(--primary-orange-light);
    transform: translateY(-5px);
    box-shadow: 0 6px 20px rgba(255, 74, 0, 0.4);
}

.back-to-top i {
    font-size: 20px;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-20px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Responsive Styles */
@media (max-width: 991px) {
    .footer-top-section {
        padding-bottom: 20px;
    }
    
    .footer-contact-card,
    .footer-hours-card {
        margin-bottom: 20px;
    }
    
    .footer-heading,
    .footer-links,
    .footer-links li,
    .footer-links li a,
    .footer .col-lg-2,
    .footer .col-lg-3,
    .footer .col-lg-5,
    .footer .col-md-4,
    .footer .col-md-6,
    .footer .col-6,
    .footer .row .col-6 {
        text-align: left !important;
    }
    
    /* Hide dividers on tablet and mobile */
    .footer .col-lg-2::after,
    .footer .col-lg-3::after,
    .footer .col-lg-5 .col-6:first-child::after,
    .footer .col-lg-5 .col-6:last-child::after {
        display: none;
    }
}

@media (max-width: 767px) {
    .footer {
        padding: 40px 0 20px;
    }
    
    .footer-logo {
        max-width: 150px;
    }
    
    .footer-heading {
        font-size: 12px;
        text-align: left !important;
    }
    
    .footer-links li a {
        font-size: 11px;
    }
    
    .footer-links,
    .footer-links li,
    .footer-links li a,
    .footer .col-lg-2,
    .footer .col-lg-3,
    .footer .col-lg-5,
    .footer .col-md-4,
    .footer .col-md-6,
    .footer .col-6,
    .footer .row .col-6 {
        text-align: left !important;
    }
    
    .footer-divider {
        margin: 30px 0;
    }
    
    .back-to-top {
        width: 45px;
        height: 45px;
        bottom: 20px;
        right: 20px;
    }
    
    .back-to-top i {
        font-size: 18px;
    }
    
    /* Hide dividers on mobile */
    .footer .col-lg-2::after,
    .footer .col-lg-3::after,
    .footer .col-lg-5 .col-6:first-child::after,
    .footer .col-lg-5 .col-6:last-child::after {
        display: none;
    }
}

/* Additional override for any inline styles or Bootstrap classes */
.footer * {
    text-align: inherit !important;
}

.footer .row > div {
    text-align: left !important;
}

.footer ul {
    text-align: left !important;
    padding-left: 0 !important;
}

.footer ul li {
    text-align: left !important;
}

.footer h5,
.footer h6 {
    text-align: left !important;
}
