/* FOOTER STYLES */
        .footer {
            background: rgb(46, 46, 46);
            color: #ffffff;
            position: relative;
            overflow: hidden;
        }

        .footer::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 1px;
            background: linear-gradient(90deg, transparent 0%, #007cba 50%, transparent 100%);
        }

        /* Main footer content */
        .footer-content {
            max-width: 1200px;
            margin: 0 auto;
            padding: 50px 20px;
        }

        .footer-main {
            display: flex;
            justify-content: space-between;
            gap: 50px;
            margin-bottom: 40px;
        }

        .footer-contact {
            flex: 2;
        }

        .footer-links,
        .footer-social {
            flex: 1;
        }

        /* Contact section */
        .footer-contact h3 {
            color: #ffffff;
            font-size: 26px;
            font-weight: 500;
            margin-bottom: 25px;
            position: relative;
            
        }

        .footer-contact h3::after {
            content: '';
            position: absolute;
            bottom: -8px;
            left: 0;
            width: 40px;
            height: 1px;
            background: #ffffff;
        }

        .contact-item {
            display: flex;
            align-items: flex-start;
            margin-bottom: 15px;
            color: #ffffff;
            font-size: 16px;
            line-height: 1.5;
        }

        .contact-item strong {
            color: #ffffff;
            min-width: 80px;
            margin-right: 10px;
            font-weight: 300 !important;
        }
        
        .contact-item a {
         color: #ffffff !important;
         transition: color 0.3s ease, padding-left 0.3s ease !important;
         display: block;
        }
        
        .contact-item a:hover {
        color: #cccccc !important;
        }

        /* Quick links section */
        .footer-links h3 {
            color: #ffffff;
            font-size: 26px;
            font-weight: 500;
            margin-bottom: 25px;
            position: relative;
            
        }

        .footer-links h3::after {
            content: '';
            position: absolute;
            bottom: -8px;
            left: 0;
            width: 30px;
            height: 1px;
            background: #ffffff;
        }

        .footer-links ul {
            list-style: none;
            padding: 0;
        }

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

        .footer-links ul li a {
            color: #ffffff;
            text-decoration: none;
            font-size: 16px;
            transition: color 0.3s ease, padding-left 0.3s ease;
            display: block;
        }

        .footer-links ul li a:hover {
            color: #cccccc;
            padding-left: 5px;
        }

        /* Social media section */
        .footer-social h3 {
            color: #ffffff;
            font-size: 26px;
            font-weight: 500;
            margin-bottom: 20px;
            position: relative;
            
        }

        .footer-social h3::after {
            content: '';
            position: absolute;
            bottom: -8px;
            left: 0;
            width: 30px;
            height: 1px;
            background: #ffffff;
        }

        .social-links {
            display: flex;
            flex-wrap: wrap;
            gap: 15px;
            padding-top: 10px;
        }

        .social-links a {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 45px;
            height: 45px;
            background: #822122;
            border-radius: 50%;
            color: #ffffff;
            text-decoration: none;
            transition: all 0.3s ease;
            backdrop-filter: blur(10px);
            font-size: 18px;
        }

        .social-links a:hover {
            background: #cccccc;
            color: white;
            transform: translateY(-3px);
        }

        /* Footer bottom */
        .footer-bottom {
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            padding: 30px 0;
        }

        .footer-bottom-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }

        .footer-logo {
            display: flex;
            align-items: center;
        }

        .footer-logo img {
            height: 40px;
            margin-right: 15px;
            opacity: 0.9;
        }

        .footer-logo span {
            font-size: 18px;
            font-weight: 600;
            color: #ffffff;
        }

        .copyright {
            color: #ffffff;
            font-size: 15px;
        }
        
        .copyright a {
            color: #ffffff !important;
        }

        /* MOBILE RESPONSIVE */
        @media (max-width: 968px) {
            .footer-main {
                grid-template-columns: 1fr 1fr;
                gap: 40px;
            }

            .footer-contact {
                grid-column: 1 / -1;
            }
        }

        @media (max-width: 768px) {
            .footer-content {
                padding: 40px 15px;
            }

            .footer-main {
                grid-template-columns: 1fr;
                gap: 30px;
            }

            .footer-contact {
                grid-column: 1;
            }

            .footer-bottom-content {
                flex-direction: column;
                gap: 20px;
                text-align: center;
            }

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

            .contact-item {
                flex-direction: column;
                align-items: flex-start;
                margin-bottom: 20px;
            }

            .contact-item strong {
                margin-bottom: 5px;
                min-width: auto;
            }
        }

        @media (max-width: 480px) {
            .footer-main {
                gap: 25px;
            }

            .footer-logo {
                flex-direction: column;
                gap: 10px;
            }

            .footer-logo img {
                margin-right: 0;
            }
        }   
        
        
  .footer-logo-column {
    flex: 1;
    min-width: 200px;
}

.footer-logo-img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* Optional: If you want a placeholder style */
.footer-logo-placeholder {
    width: 180px;
    height: 100px;
    background-color: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #999;
    border: 2px dashed #666;
    border-radius: 4px;
}

/* Adjust the footer-main grid to accommodate 4 columns */
.footer-main {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    gap: 40px;
}

/* Mobile responsive - stack columns */
@media (max-width: 768px) {
    .footer-main {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .footer-logo-column {
        text-align: center;
    }
    
    .footer-logo-img {
        margin: 0 auto;
    }
}
     