/* New Footer Styles */
:root {
    --footer-bg: #0d0d0d;
    --footer-accent: #a3ff33;
    /* Neon green from the design */
    --footer-text: #ffffff;
    --footer-text-muted: #b0b0b0;
    --footer-border: #1a1a1a;
}

.footer-area {
    background-color: var(--footer-bg);
    color: var(--footer-text);
    padding: 80px 0 0;
    position: relative;
    overflow: hidden;
    font-family: 'Inter', sans-serif;
}

/* Background elements */
.footer-area::after {
    content: 'OBILLIONAIRE';
    position: absolute;
    bottom: 25vh;
    left: 50%;
    transform: translateX(-50%);
    font-size: 6vw;
    font-weight: 900;
    color: rgba(255, 255, 255, 0.03);
    z-index: 0;
    pointer-events: none;
    letter-spacing: 0.05em;
}

.footer-top-section {
    position: relative;
    z-index: 1;
    padding-bottom: 60px;
}

.footer-item__title {
    color: var(--footer-text);
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 30px;
}

.footer-menu {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-menu__item {
    margin-bottom: 12px;
}

.footer-menu__link {
    color: var(--footer-text-muted);
    text-decoration: none;
    transition: color 0.3s;
    font-size: 16px;
}

.footer-menu__link:hover {
    color: var(--footer-accent);
}

.footer-item__desc {
    color: var(--footer-text-muted);
    margin-top: 20px;
}

.social-list {
    display: flex;
    gap: 15px;
    padding: 0;
    margin-top: 25px;
    list-style: none;
}

.social-list__link {
    width: 40px;
    height: 40px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--footer-text);
    transition: all 0.3s;
    background: rgba(255, 255, 255, 0.05);
}

.social-list__link:hover {
    background: var(--footer-accent);
    color: #000;
    border-color: var(--footer-accent);
}

/* Newsletter Section */
/* ===============================
   NEWSLETTER BAR
================================ */
.footer-newsletter-bar{
    background: #ffb700;
    padding: 40px 0;
    position: relative;
    z-index: 2;
}

/* Bootstrap row fix */
.footer-newsletter-bar .row{
    align-items: center; /* 🔥 vertical center */
}

/* ===============================
   TITLE
================================ */
.newsletter-title{
    color: #000;
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 0;
    line-height: 1.2;
}

/* ===============================
   FORM WRAPPER
================================ */
.newsletter-form{
    position: relative;
    max-width: 500px;
    margin: 0 auto;
    display: flex;
    align-items: center; /* 🔥 input & button same baseline */
}

/* ===============================
   INPUT
================================ */
.newsletter-form input{
    width: 100%;
    height: 60px;
    background: rgba(0,0,0,0.05);
    border: 1px solid rgba(0,0,0,0.1);
    border-radius: 30px;
    padding: 0 70px 0 25px;
    color: #000;
    font-size: 16px;
    display: block;
    line-height: normal;
}

/* Placeholder */
.newsletter-form input::placeholder{
    color: rgba(0,0,0,0.5);
}

/* ===============================
   SUBMIT BUTTON
================================ */
.newsletter-form .submit-btn{
    position: absolute;
    right: 5px;
    top: 5px;
    width: 50px;
    height: 50px;
    background: #000;
    border-radius: 50%;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--footer-accent);
    transition: transform .3s ease;
}

.newsletter-form .submit-btn:hover{
    transform: rotate(45deg);
}

/* ===============================
   POLICY LINKS
================================ */
.footer-policy-links{
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 20px;
}

.footer-policy-link{
    color: #000;
    text-decoration: none;
    font-size: 14px;
    line-height: 1;
}

.footer-policy-link:hover{
    color: var(--footer-accent);
}

/* ===============================
   BOTTOM FOOTER
================================ */
.bottom-footer{
    background-color: transparent;
    border-top: 1px solid rgba(255,255,255,.1);
    padding: 20px 0;
    margin-top: 0;
}

.bottom-footer__text{
    color: var(--footer-text-muted);
    font-size: 14px;
}

/* ===============================
   RESPONSIVE
================================ */
@media (max-width: 991px){

    .footer-newsletter-bar{
        padding: 30px 15px;
    }

    .newsletter-title{
        text-align: center;
        margin-bottom: 15px;
        font-size: 26px;
    }

    .footer-policy-links{
        justify-content: center;
        margin-top: 15px;
    }
}


/* Decorative Elements */
.sparkle-group {
    position: absolute;
    top: 50px;
    left: 40px;
}

.sparkle {
    color: #ffd700;
    font-size: 30px;
}

.arrow-graphic {
    position: absolute;
    top: 150px;
    right: 15%;
}

.circular-badge {
    position: absolute;
    top: 50px;
    right: 50px;
    width: 100px;
    height: 100px;
    border: 1px dashed rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: rotate 10s linear infinite;
}

.circular-badge::before {
    content: 'EXPLORE MORE • EXPLORE MORE • ';
    position: absolute;
    font-size: 10px;
    color: var(--footer-text-muted);
    letter-spacing: 2px;
}

.badge-center {
    width: 40px;
    height: 40px;
    background: var(--footer-accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #000;
    transform: rotate(-45deg);
}

@keyframes rotate {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

/* Responsiveness */
@media (max-width: 991px) {
    .newsletter-title {
        text-align: center;
        margin-bottom: 50px;
    }

    .newsletter-form {
        margin: 0 auto;
    }

    .footer-policy-links {
        justify-content: center;
        margin-top: 15px;
    }
}