/* ===== General Layout ===== */
/* delete default astra credit */
.site-below-footer-wrap.ast-builder-grid-row-container.site-footer-focus-item.ast-builder-grid-row-full.ast-builder-grid-row-tablet-full.ast-builder-grid-row-mobile-full.ast-footer-row-stack.ast-footer-row-tablet-stack.ast-footer-row-mobile-stack {
    display: none;
}

/* footer */
.footer {
    width: 100%;
    background: #040811;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    color: rgba(255, 254, 250, 0.72);
    font-family: 'Inter', sans-serif;
}

/* ===== Top Section ===== */
.footer-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 32px 152px 24px;
    border-bottom: 1px solid rgba(255, 254, 250, 0.24);
}

.footer-title {
    color: #fffefa;
    font-family: 'Poppins', sans-serif;
    font-size: 30px;
    font-style: italic;
    font-weight: 600;
    text-transform: uppercase;
    margin-bottom: 8px;
}

.footer-subtitle {
    color: rgba(255, 254, 250, 0.72);
    font-size: 16px;
    line-height: 24px;
    margin: 0;
}

/* === Buttons === */
.footer-top-buttons {
    display: flex;
    gap: 24px;
}

/* ===== Middle Section ===== */
.footer-middle {
    padding: 56px 152px;
    border-bottom: 1px solid rgba(255, 254, 250, 0.24);
}

.footer-columns {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
    gap: 40px;
}

/* === Individual Columns === */
.footer-col {
    display: flex;
    flex-direction: column;
    gap: 10px;
    min-width: 180px;
}

.footer-col h4 {
    color: #fffefa;
    font-family: 'Poppins', sans-serif;
    font-style: italic;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 18px;
    margin: 0;
}

.footer-col a {
    color: rgba(255, 254, 250, 0.72);
    text-decoration: none;
    font-size: 16px;
    line-height: 24px;
    transition: color 0.2s ease;
}

.footer-col p {
    margin: 0;
}

.footer-col a:hover {
    color: #ffba00;
}

/* === Payment Icons === */
.footer-payments {
    display: flex;
    gap: 10px;
    align-items: center;
}
.footer-payments svg {
    width: auto;
    height: 24px;
}

/* === Contact Column === */
.footer-col .highlight {
    color: #ffba00;
    text-decoration: none;
}

.footer-col .phone {
    font-family: 'Public Sans', sans-serif;
    font-weight: 500;
    text-transform: capitalize;
    font-size: 15px;
    line-height: 22px;
}

/* ===== Bottom Section ===== */
.footer-bottom {
    padding: 32px 152px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-bottom-links {
    display: flex;
    gap: 32px;
}

.footer-bottom p {
    margin: 0;
}

.footer-bottom-links a {
    color: rgba(255, 254, 250, 0.72);
    font-size: 16px;
    text-decoration: none;
    transition: color 0.2s ease;
}

.footer-bottom-links a:hover {
    color: #ffba00;
}

/* ===== Responsive Adjustments ===== */
@media (max-width: 1024px) {
    .footer-top,
    .footer-middle,
    .footer-bottom {
        padding-left: 40px;
        padding-right: 40px;
    }

    .footer-columns {
        flex-wrap: wrap;
    }
}

@media (max-width: 768px) {
    .footer-top {
        flex-direction: column;
        gap: 24px;
        text-align: center;
    }

    .footer-top-buttons {
        flex-direction: column;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 16px;
        text-align: center;
    }
}