/* ------------------------------------
   FOOTER BASE
------------------------------------ */
.simple-footer {
    background: #0b1e54;
    color: white;
    padding: 70px 0 0 0;
    width: 100%;
    font-family: sans-serif;
}

/* ------------------------------------
   FOOTER 3 COLUMNS (LEFT - CENTER - RIGHT)
------------------------------------ */
.footer-box {
    width: 90%;
    margin: auto;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    align-items: flex-start;
    gap: 50px;
}

.footer-col:nth-child(1) { text-align: left; }
.footer-col:nth-child(2) { text-align: center; }
.footer-col:nth-child(3) { text-align: right; }

/* Titles */
.footer-title {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.footer-col:nth-child(2) .footer-title { justify-content: center; }
.footer-col:nth-child(3) .footer-title { justify-content: flex-end; }

.footer-col p {
    margin: 0;
    line-height: 1.6;
    font-size: 16px;
}

.footer-icon {
    color: gold;
    font-size: 20px;
}

.footer-col a {
    color: white;
    text-decoration: none;
}
.footer-col a:hover {
    color: #4da3ff;
}

/* ------------------------------------
   SOCIAL ICONS BELOW ADDRESS
------------------------------------ */
.footer-socials {
    display: flex;
    gap: 12px;
    margin-top: 12px;
}

.footer-socials a {
    width: 40px;
    height: 40px;
    background: rgba(255,255,255,0.07);
    border-radius: 50%;
    border: 1px solid rgba(255,255,255,0.2);
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 18px;
    color: white;
    transition: 0.3s ease;
}

.footer-socials a:nth-child(1):hover {
    color: #0A66C2;
    box-shadow: 0 0 10px #0A66C2;
    border-color: #0A66C2;
}
.footer-socials a:nth-child(2):hover {
    color: #FF0000;
    box-shadow: 0 0 10px #FF0000;
    border-color: #FF0000;
}

/* ------------------------------------
   NEWSLETTER SECTION
------------------------------------ */
.newsletter-section {
    width: 80%;
    margin: 50px auto 30px auto;
    padding: 30px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(6px);
    text-align: center;
}

.newsletter-title {
    font-size: 24px;
    color: #ffffff;
    margin-bottom: 10px;
    font-weight: 600;
}

.newsletter-subtext {
    color: #dbe7ff;
    font-size: 15px;
    margin-bottom: 20px;
}

.input-group {
    display: flex;
    justify-content: center;
    align-items: center;
}

.input-group input {
    padding: 12px 16px;
    width: 300px;
    border-radius: 8px 0 0 8px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.25);
    color: white;
    font-size: 15px;
    outline: none;
}

.input-group input::placeholder {
    color: #d1d9e6;
}

.input-group button {
    padding: 12px 18px;
    border: none;
    border-radius: 0 8px 8px 0;
    background: #4da3ff;
    color: white;
    cursor: pointer;
    font-size: 18px;
    transition: 0.3s ease;
}

.input-group button:hover {
    background: #78bcff;
    transform: scale(1.05);
}

/* ------------------------------------
   COPYRIGHT
------------------------------------ */
.footer-copy {
    text-align: center;
    font-size: 14px;
    color: #dde8ff;
    margin-top: 20px;
    padding: 12px 0;
    background: rgba(255,255,255,0.08);
    backdrop-filter: blur(6px);
    border-top: 1px solid rgba(255,255,255,0.15);
}

/* ------------------------------------
   RESPONSIVE FIXED FOOTER
------------------------------------ */
@media (max-width: 768px) {

    .footer-box {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: left;
    }

    /* Force all columns to align left on mobile */
    .footer-col:nth-child(1),
    .footer-col:nth-child(2),
    .footer-col:nth-child(3) {
        text-align: left !important;
    }

    /* Titles alignment fix */
    .footer-col .footer-title {
        justify-content: flex-start !important;
    }

    /* Social icons alignment left */
    .footer-socials {
        justify-content: flex-start !important;
    }

    /* Newsletter width fix */
    .newsletter-section {
        width: 95%;
    }

    /* Input/mobile stacked */
    .input-group {
        flex-direction: column;
        gap: 10px;
    }

    .input-group input,
    .input-group button {
        width: 100%;
        border-radius: 8px;
    }
}
