/**
 * Footer Styles
 *
 * @package Augro_Fresh
 */

/* ==========================================================================
   Main Footer
   ========================================================================== */

.augrofresh-footer {
    background-color: var(--augrofresh-black-primary);
    color: var(--augrofresh-white);
}

.augrofresh-footer-main {
    padding: 4rem 0 3rem;
}

.augrofresh-footer-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2.5rem;
}

@media (min-width: 768px) {
    .augrofresh-footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .augrofresh-footer-grid {
        grid-template-columns: 1.5fr 1fr 1fr 1fr;
    }
}

/* ==========================================================================
   Footer Columns
   ========================================================================== */

.augrofresh-footer-col {
    /* Base column styles */
}

.augrofresh-footer-title {
    color: var(--augrofresh-white);
    font-size: 1.125rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    position: relative;
    padding-bottom: 0.75rem;
}

.augrofresh-footer-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 3rem;
    height: 2px;
    background-color: var(--augrofresh-gold-primary);
}

/* ==========================================================================
   About Column
   ========================================================================== */

.augrofresh-footer-about .augrofresh-footer-logo {
    margin-bottom: 1.25rem;
}

/* .augrofresh-footer-about .augrofresh-footer-logo img,
.augrofresh-footer-about .augrofresh-footer-logo .custom-logo {
    height: 4rem;
    width: auto;
    filter: brightness(0) invert(1);
} */

.augrofresh-footer-description {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9375rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

/* ==========================================================================
   Social Icons
   ========================================================================== */

.augrofresh-social-icons {
    display: flex;
    gap: 0.75rem;
}

.augrofresh-social-icons a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 2.5rem;
    height: 2.5rem;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: var(--augrofresh-radius-full);
    color: var(--augrofresh-white);
    transition: all var(--augrofresh-transition-fast);
}

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

.augrofresh-social-icons i,
.augrofresh-social-icons svg {
    width: 1.125rem;
    height: 1.125rem;
}

/* ==========================================================================
   Footer Links
   ========================================================================== */

.augrofresh-footer-links .augrofresh-footer-nav,
.augrofresh-footer-menu {
    list-style: none;
    margin: 0;
    padding: 0;
}

.augrofresh-footer-menu li {
    margin-bottom: 0.75rem;
}

.augrofresh-footer-menu a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-size: 0.9375rem;
    transition: all var(--augrofresh-transition-fast);
    display: inline-block;
}

.augrofresh-footer-menu a:hover {
    color: var(--augrofresh-gold-primary);
    transform: translateX(5px);
}

/* ==========================================================================
   Contact List
   ========================================================================== */

.augrofresh-contact-list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.augrofresh-contact-list li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    margin-bottom: 1rem;
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9375rem;
}

.augrofresh-contact-list i,
.augrofresh-contact-list svg {
    width: 1.25rem;
    height: 1.25rem;
    color: var(--augrofresh-gold-primary);
    flex-shrink: 0;
    margin-top: 0.125rem;
}

.augrofresh-contact-list a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color var(--augrofresh-transition-fast);
}

.augrofresh-contact-list a:hover {
    color: var(--augrofresh-gold-primary);
}

/* ==========================================================================
   Footer Bottom
   ========================================================================== */

.augrofresh-footer-bottom {
    background-color: rgba(0, 0, 0, 0.3);
    padding: 1.25rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.augrofresh-footer-bottom-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    text-align: center;
}

@media (min-width: 768px) {
    .augrofresh-footer-bottom-content {
        flex-direction: row;
        justify-content: space-between;
        text-align: left;
    }
}

.augrofresh-copyright {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.875rem;
    margin: 0;
}

.augrofresh-webmail-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.875rem;
    text-decoration: none;
    transition: color var(--augrofresh-transition-fast);
}

.augrofresh-webmail-link:hover {
    color: var(--augrofresh-gold-primary);
}

.augrofresh-webmail-link i,
.augrofresh-webmail-link svg {
    width: 1rem;
    height: 1rem;
}

/* ==========================================================================
   Footer Widgets
   ========================================================================== */

.augrofresh-footer-widgets .widget {
    margin-bottom: 1.5rem;
}

.augrofresh-footer-widgets .widget:last-child {
    margin-bottom: 0;
}

.augrofresh-footer-widgets .widget-title {
    color: var(--augrofresh-white);
    font-size: 1.125rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.augrofresh-footer-widgets ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.augrofresh-footer-widgets li {
    margin-bottom: 0.5rem;
}

.augrofresh-footer-widgets a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color var(--augrofresh-transition-fast);
}

.augrofresh-footer-widgets a:hover {
    color: var(--augrofresh-gold-primary);
}
