/* Box Sizing Reset */
.acb-footer-wrapper,
.acb-footer-wrapper * {
    box-sizing: border-box;
}

/* Outer Footer Wrapper */
.acb-footer-wrapper {
    width: 100%;
    padding: 40px 20px 0px 20px;
    display: flex;
    justify-content: center;
}

/* Dark Semi-Transparent Card with Subtle Outline */
.acb-footer-card {
    max-width: 1200px;
    width: 100%;
    background: rgba(14, 9, 36, 0.75);
    border: 1px solid rgba(255, 255, 255, 0.15);
    display: flex;
    align-items: stretch; /* Allows dividers to stretch full height */
    justify-content: space-between;
    min-height: 140px;
}

/* Footer Columns */
.acb-footer-col {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 30px 20px;
    text-align: center;
}

/* Thin Vertical Dividers matching design height */
.acb-footer-divider {
    width: 1px;
    background-color: rgba(255, 255, 255, 0.25);
    margin: 25px 0;
    align-self: stretch;
}

/* Top Small Labels (EMAIL US / FOLLOW OUR SOCIAL) */
.acb-footer-label {
    color: #d99a6c;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 14px;
}

/* Email Address Styling */
.acb-footer-email {
    color: #ffffff;
    font-family: 'Georgia', serif;
    font-size: 24px;
    font-weight: 700;
    text-decoration: none;
    letter-spacing: 0.5px;
    transition: color 0.3s ease;
    word-break: break-word;
}

.acb-footer-email:hover {
    color: #d99a6c;
}

/* Middle Column Content */
.acb-footer-mid-text {
    color: rgba(255, 255, 255, 0.7);
    font-size: 13px;
    line-height: 1.5;
}

/* Social Media Button Icon */
.acb-footer-socials {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.acb-footer-social-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    background-color: rgba(255, 255, 255, 0.1);
    color: #ffffff;
    border-radius: 3px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.acb-footer-social-icon:hover {
    background-color: #d99a6c;
    color: #ffffff;
}

.acb-footer-social-icon svg {
    width: 14px;
    height: 14px;
    fill: currentColor;
}

/* Responsive Layout */
@media (max-width: 850px) {
    .acb-footer-card {
        flex-direction: column;
        align-items: center;
    }

    .acb-footer-divider {
        width: 80%;
        height: 1px;
        min-height: 1px;
        margin: 0 auto;
    }

    .acb-footer-col {
        width: 100%;
        padding: 25px 15px;
    }
}