/* =============================
   av_end_footer.css
============================= */

/* Removed font import - already in HTML */

.av_end_site-footer {
    background-color: var(--primary-blue); /* Use variable */
    color: var(--white); /* Use variable */
    opacity: 1.0; /* Slightly transparent text */
    padding: 60px 0 0 0; /* Adjusted padding */
    /* font-family: 'Inter', sans-serif; Removed - Inherit from body */
    font-size: 0.95rem; /* Adjusted base font size */
    line-height: 1.7; /* Use global line-height */
    position: relative;
    overflow: hidden;
}

/* Removed decorative shape */
/* .av_end_site-footer::before {
    content: '';
    position: absolute;
    bottom: -50px;
    left: -50px;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(30, 50, 100, 0.1) 0%, rgba(30, 50, 100, 0) 70%);
} */

.av_end_footer-container {
    max-width: 1200px; /* Consistent max-width */
    margin: 0 auto;
    padding: 0 20px; /* Consistent padding */
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 50px; /* Increased gap */
    margin-bottom: 40px; /* Adjusted margin */
    position: relative;
    z-index: 1;
}

.av_end_footer-column {
    flex: 1;
    min-width: 200px; /* Adjusted min-width */
}

/* Column 1: About */
.av_end_about-column {
    flex-basis: 30%; /* Adjusted basis */
}

.av_end_footer-logo {
    display: flex;
    align-items: center;
    margin-bottom: 0px; /* Adjusted margin */
    font-size: 1.8rem; /* Adjusted size */
    font-weight: 700;
    color: var(--white); /* Use variable */
}

.av_end_logo-icon {
    margin-right: 12px; /* Adjusted margin */
    color: var(--white); /* Use variable */
    opacity: 0.8;
    /* font-size: 1.4em; Removed */
    line-height: 1;
}
.av_end_logo-icon img { /* Style the image inside */
    width: 40px; /* Control size */
    height: auto;
}

.av_end_logo-text {
    /* Styles for logo text if needed */
}

.av_end_footer-description {
    color: var(--white); /* Use variable */
    opacity: 0.8;
    font-size: 0.9rem; /* Adjusted size */
}

/* Columns 2 & 3: Links */
.av_end_links-column {
    flex-basis: 18%; /* Adjusted basis */
}

.av_end_footer-heading {
    font-size: 1rem; /* Adjusted size */
    font-weight: 600;
    margin-bottom: 20px; /* Adjusted margin */
    color: var(--white); /* Use variable */
    opacity: 0.9;
    text-transform: none; /* Removed uppercase */
    letter-spacing: 0; /* Removed letter spacing */
}

.av_end_footer-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.av_end_footer-list li {
    margin-bottom: 12px; /* Adjusted spacing */
    /* transition: transform 0.2s ease-out; Removed transform */
}

/* Removed hover transform */
/* .av_end_footer-list li:hover {
    transform: translateX(4px);
} */

.av_end_footer-list a {
    color: var(--white); /* Use variable */
    opacity: 0.8;
    text-decoration: none;
    transition: color 0.2s ease, opacity 0.2s ease;
    position: relative;
}

.av_end_footer-list a:hover {
    color: var(--secondary-yellow); /* Use variable */
    opacity: 1;
}

/* Removed underline effect */
/* .av_end_footer-list a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 1px;
    display: block;
    margin-top: 2px;
    right: 0;
    background: #76c7ff;
    transition: width .3s ease;
    -webkit-transition: width .3s ease;
}
.av_end_footer-list a:hover::after {
    width: 100%;
    left: 0;
} */

/* Column 4: Contact */
.av_end_contact-column {
     flex-basis: 24%; /* Adjusted basis */
}

.av_end_contact-list {
    /* Specific styles if needed */
}

.av_end_contact-list li {
    display: flex;
    align-items: flex-start; /* Align items top */
    margin-bottom: 15px; /* Adjusted margin */
    color: var(--white); /* Use variable */
    opacity: 0.8;
}

.av_end_contact-list a {
    color: inherit; /* Inherit color from li */
    text-decoration: none;
    transition: color 0.2s ease, opacity 0.2s ease;
}
.av_end_contact-list a:hover {
    color: var(--secondary-yellow); /* Use variable */
    opacity: 1;
}

.av_end_contact-icon {
    margin-right: 12px; /* Adjusted margin */
    color: var(--white); /* Use variable */
    opacity: 1.0;
    font-size: 1.1em; /* Adjusted size */
    width: 26px; /* Adjusted width */
    text-align: center;
    flex-shrink: 0;
    margin-top: 1px; /* Align icon slightly better */
}

/* Removed Social Media Section - not present in HTML */
/*
.av_end_social-media-section { ... }
.av_end_social-icons a { ... }
.av_end_social-icons a:hover { ... }
*/

/* Bottom Bar */
.av_end_footer-bottom-bar {
    background-color: rgba(0, 0, 0, 0.15); /* Darker overlay */
    padding: 18px 0; /* Adjusted padding */
    text-align: center;
    font-size: 0.9rem; /* Adjusted size */
    color: var(--white); /* Use variable */
    opacity: 0.7;
    margin-top: 40px; /* Add margin above */
    position: relative;
    z-index: 1;
}

/* --- Responsive Adjustments --- */
@media (max-width: 992px) {
    .av_end_footer-column {
        flex-basis: 46%;
        min-width: unset;
    }
     .av_end_about-column {
        flex-basis: 100%; /* Make about full width first */
        margin-bottom: 20px; /* Add space below it */
    }
     .av_end_links-column, .av_end_contact-column {
        flex-basis: 46%; /* Then allow links/contact to be side-by-side */
    }
}

@media (max-width: 768px) {
    .av_end_footer-container {
        flex-direction: column;
        align-items: flex-start;
        text-align: left;
        padding: 0 25px; /* Adjusted padding */
    }

    .av_end_footer-column, .av_end_about-column, .av_end_links-column, .av_end_contact-column {
        flex-basis: 100%; /* All full width */
        width: 100%;
        margin-bottom: 35px; /* Increased space */
    }

    .av_end_footer-heading {
        margin-bottom: 20px;
    }

    .av_end_footer-bottom-bar {
        padding: 20px 25px;
        font-size: 0.85rem;
    }
}

/* --- End Enhanced Modern Footer Styles --- */

