/* Advanced CSS Variables for Transport Footer */
:root {
    /* Core colors */
    --primary-color: #e61919;
    --primary-light: #ff4444;
    --primary-dark: #c00000;
    --accent-color: #ff9800;
    --text-light: #ffffff;
    --text-muted: rgba(255, 255, 255, 0.8);
    --text-subtle: rgba(255, 255, 255, 0.6);
    --dark-bg: #121212;
    --darker-bg: #000000;
    --card-bg: rgba(255, 255, 255, 0.07);
    
    /* Transport-specific accents */
    --route-color: #4285f4;
    --logistics-color: #00bf7f;
    --safety-color: #ffca28;
    
    /* Interaction properties */
    --transition-fast: all 0.2s ease;
    --transition-normal: all 0.3s ease;
    --transition-slow: all 0.5s ease;
    --shadow-sm: 0 2px 10px rgba(0, 0, 0, 0.2);
    --shadow-md: 0 5px 15px rgba(0, 0, 0, 0.3);
    --shadow-lg: 0 10px 25px rgba(0, 0, 0, 0.4);
    
    /* Border radiuses */
    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-lg: 12px;
    --radius-xl: 20px;
    --radius-full: 9999px;
}

/* ======== Main Footer Styles ======== */
.site-footer {
    background: linear-gradient(to bottom, #1a1a1a 0%, var(--darker-bg) 100%);
    color: var(--text-light);
    position: relative;
    padding: 80px 0 30px;
    box-shadow: 0 -10px 30px rgba(0, 0, 0, 0.5);
    border-top: 4px solid var(--primary-color);
    overflow: hidden;
}

.site-footer * {
    font-size: 0.8rem;
    box-sizing: border-box;
}

/* Dynamic footer background with road pattern */
.footer-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.07;
    pointer-events: none;
    z-index: 0;
    background-image: 
        linear-gradient(to right, transparent 49%, rgba(255,255,255,0.1) 50%, transparent 51%),
        linear-gradient(to bottom, transparent 96%, rgba(255,0,0,0.3) 97%, rgba(255,0,0,0.5) 98%, rgba(255,0,0,0.3) 99%, transparent 100%);
    background-size: 40px 100px;
    animation: roadAnimation 10s linear infinite;
}

@keyframes roadAnimation {
    from { background-position: 0 0; }
    to { background-position: 0 100px; }
}

/* Truck silhouette as decorative element */
.footer-background::after {
    content: '';
    position: absolute;
    right: 5%;
    bottom: 30px;
    width: 200px;
    height: 80px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 640 512'%3E%3Cpath fill='%23ff0000' opacity='0.2' d='M624 352h-16V243.9c0-12.7-5.1-24.9-14.1-33.9L494 110.1c-9-9-21.2-14.1-33.9-14.1H416V48c0-26.5-21.5-48-48-48H48C21.5 0 0 21.5 0 48v320c0 26.5 21.5 48 48 48h16c0 53 43 96 96 96s96-43 96-96h128c0 53 43 96 96 96s96-43 96-96h48c8.8 0 16-7.2 16-16v-32c0-8.8-7.2-16-16-16zM160 464c-26.5 0-48-21.5-48-48s21.5-48 48-48 48 21.5 48 48-21.5 48-48 48zm320 0c-26.5 0-48-21.5-48-48s21.5-48 48-48 48 21.5 48 48-21.5 48-48 48zm80-208H416V144h44.1l99.9 99.9V256z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-size: contain;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 30px;
    position: relative;
    z-index: 1;
}

/* ======== Main Sections & Layout ======== */
.footer-grid {
    display: grid;
    grid-template-columns: 2.5fr 1.2fr 1.2fr 1.2fr;
    gap: 40px;
}

.footer-col {
    animation: slideUpFade 0.6s ease-out forwards;
    opacity: 0;
    transform: translateY(30px);
}

.footer-col:nth-child(1) { animation-delay: 0.1s; }
.footer-col:nth-child(2) { animation-delay: 0.2s; }
.footer-col:nth-child(3) { animation-delay: 0.3s; }
.footer-col:nth-child(4) { animation-delay: 0.4s; }

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

/* ======== Company Section ======== */
.footer-logo {
    display: inline-block;
    margin-bottom: 25px;
    position: relative;
}

.footer-logo img {
    width: auto;
    height: 50px;
    transition: var(--transition-normal);
    filter: drop-shadow(0 0 8px rgba(255, 0, 0, 0.3));
}

.footer-logo:hover img {
    transform: scale(1.05);
    filter: drop-shadow(0 0 12px rgba(255, 0, 0, 0.5));
}

/* Decorative elements for logo area */
.logo-decoration {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    pointer-events: none;
}

.logo-decoration::before {
    content: '';
    position: absolute;
    top: -8px;
    left: -15px;
    width: 30px;
    height: 30px;
    border-top: 2px solid var(--primary-color);
    border-left: 2px solid var(--primary-color);
    opacity: 0.6;
    transition: var(--transition-normal);
}

.logo-decoration::after {
    content: '';
    position: absolute;
    bottom: -8px;
    right: -15px;
    width: 30px;
    height: 30px;
    border-bottom: 2px solid var(--primary-color);
    border-right: 2px solid var(--primary-color);
    opacity: 0.6;
    transition: var(--transition-normal);
}

.footer-logo:hover .logo-decoration::before,
.footer-logo:hover .logo-decoration::after {
    width: 40px;
    height: 40px;
    opacity: 0.9;
}

.company-description {
    font-size: 0.8rem;
    line-height: 1.7;
    color: var(--text-muted);
    margin-bottom: 25px;
    padding-left: 15px;
    border-left: 3px solid var(--primary-color);
    position: relative;
}

.company-description::after {
    content: '';
    position: absolute;
    left: -3px;
    bottom: 0;
    width: 3px;
    height: 50%;
    background: linear-gradient(to bottom, var(--primary-color), transparent);
}

/* Transport certification badge */
.transport-certification {
    display: inline-flex;
    align-items: center;
    background: rgba(0, 0, 0, 0.2);
    border-radius: var(--radius-md);
    padding: 10px 15px;
    margin-top: 15px;
    border: 1px solid rgba(255, 0, 0, 0.1);
    transition: var(--transition-normal);
}

.transport-certification:hover {
    background: rgba(0, 0, 0, 0.4);
    border-color: rgba(255, 0, 0, 0.2);
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
}

.transport-certification i {
    color: var(--primary-color);
    font-size: 1.3rem;
    margin-right: 10px;
}

.transport-certification span {
    font-size: 0.9rem;
    color: var(--text-muted);
}

/* Transport performance stats */
.transport-stats {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-top: 25px;
}

.stat-item {
    flex: 1;
    min-width: 120px;
    background: rgba(0, 0, 0, 0.2);
    border-radius: var(--radius-md);
    padding: 12px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: var(--transition-normal);
}

.stat-item:hover {
    transform: translateY(-5px);
    border-color: rgba(255, 0, 0, 0.2);
    background: rgba(0, 0, 0, 0.4);
}

.stat-value {
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 5px;
    display: block;
}

.stat-label {
    font-size: 0.8rem;
    color: var(--text-subtle);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* ======== Section Headings ======== */
.footer-col h4 {
    font-size: 0.9rem;
    margin-bottom: 25px;
    color: var(--text-light);
    position: relative;
    padding-bottom: 12px;
    font-weight: 600;
}

.footer-col h4::before {
    content: '';
    display: inline-block;
    width: 8px;
    height: 8px;
    background-color: var(--primary-color);
    margin-right: 10px;
    transform: rotate(45deg);
}

.footer-col h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 3px;
    background: linear-gradient(to right, var(--primary-color), transparent);
    transition: var(--transition-normal);
}

.footer-col:hover h4::after {
    width: 80px;
}

/* ======== Footer Navigation Lists ======== */
.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: var(--text-muted);
    text-decoration: none;
    transition: var(--transition-fast);
    font-size: 0.95rem;
    display: inline-block;
    position: relative;
    padding-left: 22px;
}

.footer-links a::before {
    content: '\f061'; /* FontAwesome arrow */
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    position: absolute;
    left: 0;
    top: 2px;
    font-size: 0.9rem;
    color: var(--primary-color);
    transition: var(--transition-fast);
}

.footer-links a:hover {
    color: var(--text-light);
    transform: translateX(5px);
}

.footer-links a:hover::before {
    color: var(--primary-light);
    transform: translateX(3px);
}

/* ======== Contact Information ======== */
.footer-contact-row {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-top: 30px;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-contact-col {
    width: 50%;
}

.footer-contact {
    line-height: 1.2;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.footer-contact p {
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.9rem;
    color: var(--text-muted);
}

.footer-contact p i {
    color: var(--primary-color);
    font-size: 1.1rem;
}

.social-icons {
    display: flex;
    gap: 15px;
    justify-content: flex-end;
}

.social-icons a {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: var(--text-light);
    transition: var(--transition-fast);
    text-decoration: none;
}

.social-icons a:hover {
    background: var(--primary-color);
    transform: translateY(-3px);
}

/* ======== Newsletter Subscription ======== */
.newsletter-form {
    position: relative;
    margin-top: 25px;
}

.newsletter-heading {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-bottom: 15px;
    display: flex;
    align-items: center;
}

.newsletter-heading i {
    color: var(--primary-color);
    margin-right: 10px;
}

.input-group {
    position: relative;
    display: flex;
}

.newsletter-form input {
    flex: 1;
    width: 100%;
    padding: 14px 20px 14px 45px;
    background: rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-full) 0 0 var(--radius-full);
    color: var(--text-light);
    font-size: 0.95rem;
    transition: var(--transition-normal);
}

.newsletter-form .input-icon {
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--primary-color);
    font-size: 1rem;
    pointer-events: none;
}

.newsletter-form input:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(230, 25, 25, 0.1);
}

.newsletter-form button {
    background: linear-gradient(to right, var(--primary-color), var(--primary-dark));
    color: white;
    border: none;
    padding: 0 20px;
    font-size: 0.9rem;
    cursor: pointer;
    transition: var(--transition-normal);
    border-radius: 0 var(--radius-full) var(--radius-full) 0;
    position: relative;
    overflow: hidden;
}

.newsletter-form button::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, transparent, rgba(255, 255, 255, 0.2), transparent);
    transform: translateX(-100%);
    transition: var(--transition-normal);
}

.newsletter-form button:hover {
    background: linear-gradient(to right, var(--primary-light), var(--primary-color));
}

.newsletter-form button:hover::before {
    transform: translateX(100%);
}

/* ======== Footer Bottom Section ======== */
.footer-bottom {
    /* margin-top: 60px; */
    padding-top: 25px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.copyright {
    font-size: 0.9rem;
    color: var(--text-subtle);
    display: flex;
    align-items: center;
}

.copyright i {
    color: var(--primary-color);
    margin-right: 8px;
    font-size: 1.1rem;
}

.footer-policies {
    display: flex;
    gap: 25px;
}

.footer-policies a {
    font-size: 0.8rem;
    color: var(--text-subtle);
    text-decoration: none;
    transition: var(--transition-fast);
    position: relative;
}

.footer-policies a::after {
    content: '';
    position: absolute;
    bottom: -3px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--primary-color);
    transition: var(--transition-fast);
}

.footer-policies a:hover {
    color: var(--primary-light);
}

.footer-policies a:hover::after {
    width: 100%;
}

/* ======== Back to Top Button ======== */
.scroll-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--primary-color);
    color: white;
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition-normal);
    z-index: 999;
    box-shadow: var(--shadow-md);
}

.scroll-top.active {
    opacity: 1;
    visibility: visible;
}

.scroll-top::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: var(--primary-color);
    z-index: -1;
    opacity: 0.3;
    transform: scale(0);
    transition: var(--transition-normal);
}

.scroll-top:hover {
    transform: translateY(-5px);
    background: var(--primary-light);
}

.scroll-top:hover::before {
    transform: scale(1.5);
    opacity: 0;
}

.scroll-top i {
    font-size: 1.2rem;
}

/* ======== Accessibility ======== */
@media (prefers-reduced-motion: reduce) {
    .footer-background {
        animation: none;
    }
    
    .footer-col {
        animation: none;
        opacity: 1;
        transform: none;
    }
    
    .social-icons a:hover,
    .scroll-top:hover,
    .stat-item:hover,
    .transport-certification:hover,
    .footer-logo:hover img,
    .footer-links a:hover,
    .footer-contact p:hover {
        transform: none;
    }
}

/* Focus styles for keyboard navigation */
a:focus-visible,
button:focus-visible,
input:focus-visible {
    outline: 2px solid var(--primary-color);
    outline-offset: 2px;
}

/* ======== Responsive Design ======== */
@media (max-width: 992px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }
    
    .footer-col:nth-child(3) { animation-delay: 0.1s; }
    .footer-col:nth-child(4) { animation-delay: 0.2s; }
}

@media (max-width: 768px) {
    .site-footer {
        padding: 60px 0 30px;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 20px;
    }
    
    .footer-policies {
        justify-content: center;
    }
    
    .copyright {
        justify-content: center;
    }
    
    .transport-stats {
        justify-content: center;
    }
    
    .newsletter-form {
        max-width: 450px;
        margin-left: auto;
        margin-right: auto;
    }

    .footer-contact-row {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .footer-contact-col:first-child,
    .footer-contact-col:last-child {
        grid-column: span 1;
    }

    .social-icons {
        justify-content: center;
    }
}

@media (max-width: 576px) {
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 35px;
    }
    
    .footer-logo, .company-description, .transport-certification, .transport-stats {
        display: flex;
        justify-content: center;
        margin-left: auto;
        margin-right: auto;
        text-align: center;
    }
    
    .company-description {
        padding-left: 0;
        padding-top: 15px;
        border-left: none;
        border-top: 3px solid var(--primary-color);
        max-width: 450px;
    }
    
    .company-description::after {
        left: 0;
        top: -3px;
        width: 50%;
        height: 3px;
        background: linear-gradient(to right, var(--primary-color), transparent);
    }
    
    .footer-col h4 {
        text-align: center;
        display: flex;
        justify-content: center;
    }
    
    .footer-col h4::after {
        left: 50%;
        transform: translateX(-50%);
    }
    
    .footer-links a {
        display: flex;
        justify-content: center;
        width: 100%;
        padding-left: 0;
    }
    
    .footer-links a::before {
        position: static;
        margin-right: 10px;
    }
    
    .footer-contact p {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    
    .footer-contact i {
        margin-right: 0;
        margin-bottom: 8px;
        font-size: 1.3rem;
    }
    
    .social-icons {
        justify-content: center;
    }
    
    .input-group {
        flex-direction: column;
    }
    
    .newsletter-form input {
        border-radius: var(--radius-full);
        text-align: center;
    }
    
    .newsletter-form button {
        width: 100%;
        margin-top: 10px;
        border-radius: var(--radius-full);
        padding: 12px;
    }
    
    .newsletter-form .input-icon {
        top: 17px;
        transform: none;
    }
}

/* Form message styles */
.form-message {
    margin-top: 15px;
    padding: 10px 15px;
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    font-size: 0.9rem;
    transition: opacity 0.3s ease;
}

.form-message.success {
    background: rgba(0, 191, 125, 0.1);
    border: 1px solid rgba(0, 191, 125, 0.3);
    color: #00bf7d;
}

.form-message.error {
    background: rgba(255, 0, 0, 0.1);
    border: 1px solid rgba(255, 0, 0, 0.3);
    color: #ff5555;
}

.form-message i {
    margin-right: 8px;
    font-size: 1.1rem;
}

/* Mobile focus states */
.input-group.focus {
    transform: scale(1.02);
}

.input-group.focus input {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(230, 25, 25, 0.1);
}

/* Additional helpers for transport-related content */
.transport-quick-links {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 20px;
}

.quick-link {
    background: rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: var(--radius-sm);
    padding: 8px 15px;
    font-size: 0.85rem;
    color: var(--text-muted);
    text-decoration: none;
    transition: var(--transition-fast);
    display: inline-flex;
    align-items: center;
}

.quick-link i {
    margin-right: 8px;
    color: var(--primary-color);
    font-size: 0.8rem;
}

.quick-link:hover {
    background: rgba(255, 0, 0, 0.1);
    border-color: rgba(255, 0, 0, 0.2);
    color: var(--text-light);
    transform: translateY(-3px);
}

/* Location map teaser */
.location-teaser {
    margin-top: 20px;
    background: var(--card-bg);
    border-radius: var(--radius-md);
    overflow: hidden;
    position: relative;
    height: 120px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.location-teaser::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M11 18c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm48 25c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm-43-7c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm63 31c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM34 90c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm56-76c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM12 86c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm28-65c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm23-11c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-6 60c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm29 22c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zM32 63c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm57-13c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-9-21c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM60 91c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM35 41c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM12 60c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2z' fill='%23ff0000' fill-opacity='0.08' fill-rule='evenodd'/%3E%3C/svg%3E");
    opacity: 0.5;
}

.location-teaser::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgba(0, 0, 0, 0.7), transparent);
}

.map-pin {
    position: absolute;
    width: 30px;
    height: 30px;
    top: 45%;
    left: 60%;
    z-index: 2;
}

.map-pin::before {
    content: '';
    position: absolute;
    width: 16px;
    height: 16px;
    background: var(--primary-color);
    border-radius: 50%;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    box-shadow: 0 0 0 4px rgba(255, 0, 0, 0.3);
    animation: pulse 2s infinite;
}

.map-pin::after {
    content: '';
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    border-style: solid;
    border-width: 8px 6px 0;
    border-color: var(--primary-color) transparent transparent;
}

@keyframes pulse {
    0% { box-shadow: 0 0 0 0 rgba(255, 0, 0, 0.7); }
    70% { box-shadow: 0 0 0 10px rgba(255, 0, 0, 0); }
    100% { box-shadow: 0 0 0 0 rgba(255, 0, 0, 0); }
}

.location-content {
    position: relative;
    z-index: 2;
    padding: 15px;
    color: var(--text-light);
}

.location-content h5 {
    font-size: 1rem;
    margin: 0 0 5px 0;
}

.location-content p {
    font-size: 0.85rem;
    margin: 0;
    color: var(--text-muted);
}

.view-all-locations {
    font-size: 0.8rem;
    color: var(--primary-color);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    margin-top: 8px;
}

.view-all-locations i {
    margin-left: 5px;
    transition: var(--transition-fast);
}

.view-all-locations:hover i {
    transform: translateX(3px);
}

/* Enhanced footer background for transport theme */
.footer-truck-silhouette {
    position: absolute;
    width: 400px;
    height: 100px;
    bottom: 0;
    right: 5%;
    opacity: 0.04;
    transform: translateY(30%);
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 640 512'%3E%3Cpath fill='%23ffffff' d='M624 352h-16V243.9c0-12.7-5.1-24.9-14.1-33.9L494 110.1c-9-9-21.2-14.1-33.9-14.1H416V48c0-26.5-21.5-48-48-48H48C21.5 0 0 21.5 0 48v320c0 26.5 21.5 48 48 48h16c0 53 43 96 96 96s96-43 96-96h128c0 53 43 96 96 96s96-43 96-96h48c8.8 0 16-7.2 16-16v-32c0-8.8-7.2-16-16-16zM160 464c-26.5 0-48-21.5-48-48s21.5-48 48-48 48 21.5 48 48-21.5 48-48 48zm320 0c-26.5 0-48-21.5-48-48s21.5-48 48-48 48 21.5 48 48-21.5 48-48 48zm80-208H416V144h44.1l99.9 99.9V256z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right bottom;
    background-size: contain;
    z-index: 0;
}

/* Add a subtle road line at the bottom of footer */
.footer-road {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 10px;
    background: repeating-linear-gradient(
        90deg,
        var(--primary-dark),
        var(--primary-dark) 50px,
        transparent 50px,
        transparent 80px
    );
    opacity: 0.2;
}

/* Know About Us Section Styling */
.footer-col .footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-col .footer-links li {
    margin-bottom: 12px;
    transition: var(--transition-fast);
}

.footer-col .footer-links li:hover {
    transform: translateX(5px);
}

.footer-col .footer-links a {
    line-height: 0.9;
    color: var(--text-muted);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.8rem;
    transition: var(--transition-fast);
}

.footer-col .footer-links a i {
    color: var(--primary-color);
    font-size: 1rem;
    transition: var(--transition-fast);
}

.footer-col .footer-links a:hover {
    color: var(--text-light);
}

.footer-col .footer-links a:hover i {
    color: var(--primary-light);
    transform: scale(1.1);
}

/* Responsive adjustments for Know About Us section */
@media (max-width: 768px) {
    .footer-col .footer-links {
        text-align: center;
    }
    
    .footer-col .footer-links li {
        display: inline-block;
        margin: 0 10px 10px 0;
    }
    
    .footer-col .footer-links a {
        justify-content: center;
    }
}