/* ============================================
   FOOTER STYLES
   ============================================ */

/* Footer Container */
.footer {
    font-family: 'Open Sans', sans-serif;
    padding: 3rem 0 1rem;
}

.footer h5 {
    font-family: 'Open Sans', sans-serif;
    font-weight: 600;
    font-size: 1.1rem;
    margin-bottom: 1rem;
}

.footer p {
    margin-bottom: 0.5rem;
    line-height: 1.6;
}

.footer ul {
    padding-left: 0;
    list-style: none;
}

.footer ul li {
    margin-bottom: 0.5rem;
}

.footer a {
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer a:hover {
    opacity: 0.8;
}

/* Brand Orange Color */
.text-brand-orange {
    color: #b99572 !important;
}

.footer .text-brand-orange {
    color: #b99572 !important;
}

/* Brand Orange Button */
.btn-brand-orange {
    background-color: #b99572;
    border-color: #b99572;
    color: #fff;
    font-weight: 600;
    padding: 0.5rem 1.5rem;
    border-radius: 0.375rem;
    transition: all 0.3s ease;
}

.btn-brand-orange:hover,
.btn-brand-orange:focus {
    background-color: #e67e22;
    border-color: #e67e22;
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(243, 156, 18, 0.3);
}

.footer .btn-brand-orange {
    font-size: 0.875rem;
    padding: 0.5rem 1.25rem;
}

/* Newsletter Section */
.newsletter-input {
    border-top-right-radius: 0 !important;
    border-bottom-right-radius: 0 !important;
    border: 1px solid rgba(255, 255, 255, 0.3);
    background-color: rgba(255, 255, 255, 0.1);
    color: #fff;
    padding: 0.625rem 1rem;
}

.newsletter-input::placeholder {
    color: rgba(255, 255, 255, 0.6);
}

.newsletter-input:focus {
    background-color: rgba(255, 255, 255, 0.15);
    border-color: #b99572;
    color: #fff;
    box-shadow: none;
}

.newsletter-btn {
    border-top-left-radius: 0 !important;
    border-bottom-left-radius: 0 !important;
    font-size: 0.875rem;
    font-weight: 600;
    padding: 0.625rem 1.25rem;
}

/* Social Links */
.social-links a {
    display: inline-block;
    font-size: 1.25rem;
    transition: all 0.3s ease;
}

.social-links a:hover {
    color: #b99572 !important;
    transform: translateY(-3px);
}

/* Footer Bottom */
.footer hr {
    border-color: rgba(255, 255, 255, 0.1);
    opacity: 0.5;
    margin: 2rem 0;
}

/* Text White 50% Opacity */
.text-white-50 {
    color: rgba(255, 255, 255, 0.5) !important;
}

.footer .text-white-50:hover {
    color: rgba(255, 255, 255, 0.8) !important;
}

/* Responsive Design */
@media (max-width: 768px) {
    .footer {
        padding: 2rem 0 1rem;
        text-align: center;
    }
    
    .footer .col-md-6,
    .footer .col-lg-3 {
        margin-bottom: 2rem;
    }
    
    .footer .text-md-end {
        text-align: center !important;
        margin-top: 1rem;
    }
    
    .btn-brand-orange {
        font-size: 0.875rem;
        padding: 0.5rem 1.25rem;
    }
    
    .social-links {
        justify-content: center;
    }
}

@media (max-width: 576px) {
    .footer h5 {
        font-size: 1rem;
    }
    
    .btn-brand-orange {
        font-size: 0.8125rem;
        padding: 0.5rem 1rem;
    }
    
    .newsletter-input,
    .newsletter-btn {
        font-size: 0.875rem;
    }
}
