/* Footer Gradient Section */
.footer-gradient {
    background: linear-gradient(90deg, #FFB703, #FD9E02, #FB8500);
    padding: 3rem 0;
    color: white;
}

/* Footer Column Titles */
.footer-title {
    font-weight: bold;
    background: #FF4C4C;
    display: inline-block;
    padding: 6px 18px;
    border-radius: 12px;
    margin-bottom: 20px;
}

/* Footer Lists */
.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: #1f1b7e;
    font-weight: 700;
    font-size: 15px;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 8px;
}

/* Footer Contact Info */
.footer-contact p {
    margin: 12px 0;
    display: flex;
    align-items: center;
    color: #1f1b7e;
    font-weight: 700;
    gap: 10px;
    font-size: 15px;
}

.footer-contact span {
    background: #FFE5B4;
    padding: 10px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
}

.footer-contact i {
    color: #1f1b7e;
    font-weight: 700;
    font-size: 16px;
}

/* Newsletter Form */
.footer-newsletter form {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-newsletter input[type="email"] {
    border-radius: 30px;
    padding: 10px 15px;
    border: none;
    outline: none;
    width: 100%;
}

.footer-newsletter button {
    border-radius: 30px;
    padding: 8px 20px;
    font-weight: bold;
    background: #8B0000;
    color: white;
    border: none;
    transition: 0.3s;
    width: auto;
    align-self: flex-start;
}

/* Social Media Buttons */
.footer-social a {
    width: 45px;
    height: 45px;
    background: #0A1D37;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 18px;
    text-decoration: none;
    transition: 0.3s;
    margin-right: 15px;
}

/* Bottom Bar */
.footer-bottom {
    background: #0A1D37;
    color: #fff;
    padding: 1rem 0;
    text-align: center;
}

.footer-bottom a {
    color: #FF7F00;
    text-decoration: none;
}
