/**
 * Valor Vacations USA - Footer Styles
 * Blue footer with white text
 */

.valor-footer {
    background-color: #134E9D;
    color: #FFFFFF;
    padding: 60px 0 0 0;
}

/* Footer Content */
.footer-content {
    padding-bottom: 40px;
}

/* Logo Section */
.footer-logo-section {
    padding: 20px;
}

.footer-logo {
    width: 50%;
    margin-bottom: 15px;
    display: block;
}

.footer-logo-section a {
    color: #FFFFFF !important;
    font-size: 14px;
    font-weight: 300;
    text-decoration: none;
    display: block;
    margin-top: 10px;
}

.footer-logo-section a:hover {
    text-decoration: underline;
}

.footer-tagline {
    color: #FFFFFF;
    font-size: 14px;
    font-weight: 300;
    margin: 0;
}

/* Footer Headings */
.footer-heading {
    color: #FFFFFF;
    font-size: 16px;
    font-weight: 400;
    font-family: 'Lato', sans-serif;
    margin-bottom: 20px;
    letter-spacing: 0.5px;
}

/* Payment Section */
.footer-payment-section {
    padding: 20px;
}

/* Newsletter Section */
.footer-newsletter-section {
    padding: 20px;
}

.footer-newsletter-section input[type="email"] {
    background-color: #FFFFFF;
    border: none;
    padding: 10px;
    width: 100%;
    margin-bottom: 10px;
    color: #1d1a05;
}

.footer-newsletter-section button,
.footer-newsletter-section .btn {
    background-color: #1d1a05;
    border: none;
    color: #FFFFFF;
    padding: 10px 20px;
    width: 100%;
    cursor: pointer;
    transition: all 0.3s ease;
}

.footer-newsletter-section button:hover,
.footer-newsletter-section .btn:hover {
    background-color: #FFFFFF;
    color: #134E9D;
}

/* Links Section */
.footer-links-section {
    padding: 20px;
}

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

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

.footer-links a {
    color: #FFFFFF !important;
    text-decoration: none;
    font-size: 14px;
    font-weight: 300;
    transition: opacity 0.3s ease;
}

.footer-links a:hover {
    opacity: 0.8;
    text-decoration: none;
}

/* Social Media Section */
.footer-social-row {
    margin-top: 30px;
    padding: 30px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.footer-social-icons {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 15px;
}

.social-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border: 2px solid #FFFFFF;
    border-radius: 50%;
    color: #FFFFFF !important;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-icon:hover {
    background-color: #FFFFFF;
    color: #134E9D !important;
}

.social-icon i {
    font-size: 18px;
}

/* Copyright Bar */
.footer-copyright {
    background-color: #0D3A73;
    padding: 20px 0;
    text-align: center;
}

.footer-copyright p {
    margin: 0;
    color: #FFFFFF;
    font-size: 14px;
    font-weight: 300;
}

/* Responsive */
@media (max-width: 768px) {
    .footer-logo-section,
    .footer-payment-section,
    .footer-newsletter-section,
    .footer-links-section {
        margin-bottom: 30px;
    }

    .footer-social-icons {
        margin-top: 20px;
    }
}
