/* Footer Styles */
/* Footer Styles */
.footer {
    background: #1a1a1a;
    padding: 5rem 0 3rem;
    font-family: 'Montserrat', sans-serif;
    position: relative;
    overflow: hidden;
}

.footer-logo {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.logo-img {
    max-width: 180px; /* Increased from 150px */
    height: auto;
    margin-bottom: 1rem;
    transition: transform 0.3s ease;
}

/* Make sure your logo file is named exactly as referenced */
/* If your logo is ArCSam logo.jpeg (with space), rename it to ArCSam-logo.jpeg */
/* Or update the src attribute to match your exact filename */

.footer-text {
    font-weight: 300;
    font-size: 0.85rem;
    color: #cccccc;
    margin-bottom: 0;
    letter-spacing: 0.5px;
}


.logo-img:hover {
    transform: scale(1.05); /* Subtle hover effect */
}

.footer-text {
    font-weight: 300;
    font-size: 0.85rem;
    color: #cccccc;
    margin-bottom: 0;
    letter-spacing: 0.5px;
}

/* Navigation Styles */
.footer-title {
    font-weight: 600;
    font-size: 1.2rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #ffffff;
    margin-bottom: 1.75rem;
    position: relative;
    padding-bottom: 0.5rem;
}

.footer-title::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 40px;
    height: 1px;
    background: #ffffff;
    opacity: 0.7;
}

.footer-links {
    padding-left: 0;
}

.footer-link {
    font-weight: 400;
    font-size: 0.9rem;
    color: #cccccc;
    text-decoration: none;
    display: block;
    margin-bottom: 0.75rem;
    transition: color 0.3s ease, padding-left 0.3s ease;
}

.footer-link:hover {
    color: #ffffff;
    padding-left: 5px;
}

/* Social Logos Styles */
.social-links .social-icon {
    display: inline-block;
    margin-left: 1.75rem;
    text-decoration: none;
    transition: transform 0.3s ease;
}

.social-links .social-icon:first-child {
    margin-left: 0;
}

.social-logo {
    width: 24px; /* Adjust size as needed */
    height: 24px;
    filter: brightness(0) invert(0.8); /* Slightly muted white for consistency */
    transition: filter 0.3s ease, transform 0.3s ease; /* Added transform transition */
}

.social-links .social-icon:hover .social-logo {
    filter: brightness(0) invert(1); /* Bright white on hover */
    transform: scale(1.1);
}

/* Subtext and Divider */
.footer-divider {
    border: 0;
    height: 1px;
    background: linear-gradient(to right, rgba(255, 255, 255, 0), rgba(255, 255, 255, 0.2), rgba(255, 255, 255, 0));
    margin: 0;
}

.footer-subtext {
    font-weight: 300;
    font-size: 0.8rem;
    color: #b0b0b0;
    margin-bottom: 0;
    letter-spacing: 0.5px;
}

.footer-subtext .footer-link {
    font-size: 0.8rem;
    color: #b0b0b0;
    transition: color 0.3s ease;
}

.footer-subtext .footer-link:hover {
    color: #ffffff;
}

/* Decorative Elements */
.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(to right, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.3), rgba(255, 255, 255, 0.1));
    opacity: 0.5;
}

.footer::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 50px;
    height: 50px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    border-right: 1px solid rgba(255, 255, 255, 0.2);
    opacity: 0.6;
    transform: rotate(45deg); /* Subtle geometric accent */
}

.footer-decor-line {
    position: absolute;
    bottom: 10px;
    left: 10px;
    width: 80px;
    height: 1px;
    background: rgba(255, 255, 255, 0.15);
    transform: skew(-20deg); /* Angled line for architectural flair */
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .footer {
        padding: 3rem 0 2rem;
    }

    .footer .col-md-4 {
        margin-bottom: 2.5rem;
        text-align: center;
    }

    .footer-logo {
        align-items: center; /* Center logo on mobile */
    }

    .footer-title::after {
        left: 50%;
        transform: translateX(-50%);
    }

    .social-links .social-icon {
        margin: 0 1rem;
    }

    .footer-subtext {
        font-size: 0.75rem;
    }

    .text-md-end {
        text-align: center !important;
    }

    .footer::after {
        display: none; /* Hide bottom-right decor on mobile */
    }

    .footer-decor-line {
        width: 50px; /* Smaller on mobile */
    }
}