/* Footer background image */
.footer-bg-section {
    width: 100%;
    height: 300px;
    overflow: hidden;
}

.footer-bg-image {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
}

/* Footer styles - SEAS */
.footer {
    background-color: #1E3C72;
    color: white;
    padding: 3rem 0 0 0;
    margin-top: auto;
}

.footer > .container {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 2rem;
}

.footer-section-title {
    font-size: 1.125rem;
    font-weight: 600;
    color: #FFC107;
    margin-bottom: 0.5rem;
    margin-top: 1.5rem;
}

.footer-section-title:first-child {
    margin-top: 0;
}

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

.footer-links li {
    margin-bottom: 0.3rem;
}

.footer-links a {
    font-size: 0.875rem;
    color: white;
    transition: color 0.2s;
}

.footer-links a:hover {
    color: #FFC107;
}

/* Follow GIFT section */
.footer-follow-section {
    width: 100%;
    text-align: center;
    margin-top: 20px;
}

.footer-follow-heading {
    color: white;
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 15px;
}

/* Social icons container */
.footer-social-container {
    width: 100%;
    display: flex;
    justify-content: center;
    margin: 10px 0;
}

.footer-social {
    display: flex;
    gap: 12px;
    align-items: center;
    flex-wrap: wrap;
    justify-content: center;
}

.footer-social a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s;
}

.footer-social a:hover {
    transform: translateY(-2px);
    opacity: 0.8;
}

/* Contact bar */
.contact-bar {
    text-align: center;
    background-color: #1E3C72;
    padding: 15px 0;
    color: white;
}

.contact-container-full {
    display: inline-block;
    border: 1px solid rgba(255, 255, 255, 0.3);
    padding: 10px 15px;
    margin: 0 auto;
    color: white;
    font-size: 14px;
    line-height: 1.5;
    max-width: 95%;
}

.contact-container-full a {
    color: white;
    text-decoration: underline;
}

.contact-container-full a:hover {
    color: #FFC107;
}

/* Footer bottom wrapper - wraps copyright + disclaimer in shared gray bg */
.footer-bottom-wrapper {
    background-color: #f8f9fa;
}

/* Copyright bar */
.footer-copyright-bar {
    padding: 15px 0;
    color: #333;
    border-bottom: 1px solid #eee;
}

.copyright-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
    padding: 0 15px;
}

.copyright-text {
    font-size: 14px;
    color: #333;
}

.footer-policies {
    font-size: 14px;
    color: #666;
}

.footer-policies a {
    color: #666;
    text-decoration: none;
    transition: color 0.2s;
}

.footer-policies a:hover {
    color: #000;
}

/* Disclaimer */
.footer-disclaimer {
    padding: 12px 0;
}

.footer-disclaimer p {
    font-size: 11px;
    color: #666;
    text-align: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
    line-height: 1.5;
}

/* Responsive */
@media (max-width: 1200px) {
    .footer > .container {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 992px) {
    .footer > .container {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .footer > .container {
        grid-template-columns: 1fr;
        text-align: center;
    }
    .footer-section {
        padding: 0 20px;
    }
    .footer-social {
        justify-content: center;
    }
    .copyright-container {
        flex-direction: column;
        justify-content: center;
        text-align: center;
    }
}
