/* =======================================================
   AFRO ADVENTURES PREMIUM FOOTER WIDGET STYLES
   ======================================================= */

.aa-footer {
    position: relative;
    background: linear-gradient(180deg, #0B2345 0%, #071E49 100%);
    overflow: hidden;
    font-family: 'Poppins', sans-serif;
    color: #ffffff;
}

.footer-wrapper {
    width: min(1280px, 92%);
    margin: auto;
    padding: 80px 0 30px;
    position: relative;
    z-index: 2;
}

/* =======================================================
   TOP FOOTER (6-COLUMN LAYOUT)
   ======================================================= */
.footer-top {
    display: grid;
    grid-template-columns: 1.6fr 1.1fr 1.1fr 1.2fr 1.1fr 1.5fr;
    gap: 30px;
    padding-bottom: 60px;
    border-bottom: 1px solid rgba(255, 255, 255, .12);
}

.footer-column {
    display: flex;
    flex-direction: column;
    gap: 15px;
    transition: transform .35s ease;
}

.footer-logo {
    width: 180px;
    height: auto;
    margin-bottom: 15px;
    transition: transform .35s ease;
}

.footer-logo:hover {
    transform: scale(1.03);
}

.fallback-logo-text {
    font-size: 24px;
    font-weight: 800;
    color: #F6BE2C;
    margin-bottom: 15px;
    letter-spacing: 1px;
}

.about-text, .newsletter-text {
    color: #D9E3F2;
    font-size: 14px;
    line-height: 1.8;
    margin: 0;
}

.footer-column h3 {
    font-size: 16px;
    font-weight: 700;
    color: #F6BE2C;
    letter-spacing: .8px;
    margin: 0;
    text-transform: uppercase;
}

.gold-divider {
    width: 45px;
    height: 3px;
    background: #F6BE2C;
    border-radius: 30px;
    margin-top: -5px;
    margin-bottom: 5px;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: #D9E3F2;
    text-decoration: none;
    transition: all .35s ease;
    font-size: 14px;
    position: relative;
    display: inline-block;
}

.footer-links a:hover {
    color: #F6BE2C;
    padding-left: 6px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 12px;
    color: #D9E3F2;
    font-size: 14px;
    transition: all .35s ease;
    line-height: 1.5;
}

.contact-item i {
    color: #F6BE2C;
    font-size: 14px;
    min-width: 16px;
    margin-top: 3px;
}

.contact-item a {
    color: #D9E3F2;
    text-decoration: none;
}

.contact-item:hover {
    transform: translateX(4px);
}

/* =======================================================
   NEWSLETTER
   ======================================================= */
.newsletter-form {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 8px;
}

.newsletter-form input {
    width: 100%;
    height: 48px;
    border: none;
    outline: none;
    border-radius: 50px;
    padding: 0 20px;
    background: #ffffff;
    color: #333;
    font-size: 14px;
}

.newsletter-form button {
    height: 48px;
    border: none;
    cursor: pointer;
    border-radius: 50px;
    background: #F6BE2C;
    color: #071E49;
    font-size: 14px;
    font-weight: 700;
    transition: all .35s ease;
}

.newsletter-form button:hover {
    background: #FFD34D;
    transform: translateY(-2px);
}

/* =======================================================
   SOCIAL ICONS
   ======================================================= */
.social-icons {
    display: flex;
    gap: 10px;
    margin-top: 15px;
}

.social-icons a {
    width: 38px !important;
    height: 38px !important;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, .08);
    color: #ffffff;
    transition: all .35s ease;
    font-size: 14px !important;
    border: 1px solid rgba(255, 255, 255, .1);
}

.social-icons a:hover {
    background: #F6BE2C;
    color: #071E49;
    transform: translateY(-4px);
}

/* Specific scoping to prevent newsletter form elements or icons from getting oversized */
.newsletter-column .social-icons {
    display: flex;
    gap: 10px;
    margin-top: 15px;
}
.newsletter-column .social-icons a {
    width: 38px !important;
    height: 38px !important;
    font-size: 14px !important;
}

/* =======================================================
   TRUST BAR (5-COL GRID)
   ======================================================= */
.trust-bar {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
    padding: 40px 0;
    border-bottom: 1px solid rgba(255, 255, 255, .12);
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 14px;
    color: #D9E3F2;
    font-size: 14px;
    transition: all .35s ease;
}

.trust-item i {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    background: rgba(246, 190, 44, .12);
    color: #F6BE2C;
    font-size: 20px;
    border: 1.5px solid rgba(246, 190, 44, .25);
}

.trust-item strong {
    display: block;
    font-size: 14px;
    color: #ffffff;
    text-transform: uppercase;
}

.badge-sub {
    font-size: 12px;
    margin: 3px 0 0 0;
    opacity: 0.8;
}

.trust-item:hover {
    transform: translateY(-3px);
}

/* =======================================================
   AFFILIATE DISCLOSURE CARD
   ======================================================= */
.affiliate-disclosure {
    margin: 40px 0;
    padding: 30px;
    background: rgba(255, 255, 255, .01);
    border: 1px solid rgba(255, 255, 255, .08);
    border-radius: 18px;
    transition: all .35s ease;
}

.disclosure-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
}

.disclosure-header i {
    color: #F6BE2C;
    font-size: 20px;
}

.affiliate-disclosure h4 {
    color: #F6BE2C;
    margin: 0;
    font-size: 16px;
    font-weight: 700;
}

.affiliate-disclosure p {
    color: #D9E3F2;
    margin: 0;
    font-size: 14px;
    line-height: 1.8;
}

/* =======================================================
   FOOTER BOTTOM (CENTERED LAYOUT FROM DESIGN IMAGE)
   ======================================================= */
.footer-bottom {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 24px;
    padding: 30px 0;
    text-align: center;
}

.footer-bottom-left p {
    color: #D9E3F2;
    font-size: 14px;
    margin: 0;
    text-align: center;
}

.footer-bottom-menu {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    list-style: none;
    padding: 0;
    margin: 0;
    flex-wrap: wrap;
}

.footer-bottom-menu a {
    color: #D9E3F2;
    text-decoration: none;
    font-size: 14px;
    transition: all .35s ease;
}

.footer-bottom-menu a:hover {
    color: #F6BE2C;
}

.footer-bottom-right {
    display: flex;
    justify-content: center;
    gap: 12px;
}

.footer-bottom-right a {
    width: 44px !important;
    height: 44px !important;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, .08);
    color: #ffffff;
    transition: all .35s ease;
    font-size: 16px !important;
    border: 1px solid rgba(255, 255, 255, .1);
}

.footer-bottom-right a:hover {
    background: #F6BE2C;
    color: #071E49;
    transform: translateY(-3px);
}

.footer-small-print {
    padding-top: 25px;
    border-top: 1px solid rgba(255, 255, 255, .08);
}

.footer-small-print p {
    text-align: center;
    color: rgba(255, 255, 255, .6);
    font-size: 12px;
    line-height: 1.8;
    max-width: 980px;
    margin: auto;
}

/* =======================================================
   RESPONSIVE LAYOUTS
   ======================================================= */
@media (max-width: 1200px) {
    .footer-top {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 30px;
    }
    .about-column, .newsletter-column {
        grid-column: span 3;
    }
    .trust-bar {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .footer-top {
        grid-template-columns: repeat(2, 1fr);
    }
    .about-column, .newsletter-column {
        grid-column: span 2;
    }
    .trust-bar {
        grid-template-columns: 1fr;
    }
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
    .footer-bottom-menu {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .footer-top {
        grid-template-columns: 1fr;
    }
    .about-column, .newsletter-column {
        grid-column: span 1;
    }
}
