/* Footer Styles */
.footer-section {
    background-color: black;
    padding: 2rem 5rem;
    /*background-image: url(../images/Black_Logo.png);*/
    background-position: bottom;
    background-repeat: no-repeat;
    background-size: contain;
}

.footer-link {
    display: flex;
    align-items: baseline;
    gap: 10%;
    flex-wrap: wrap;
}

.contact-us h6 h3 {
    font-weight: 700;
    font-size: 1rem;
    margin-bottom: 1rem;
    color: #e6c350;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.contact-us{
    min-width: 45%;
}

.contact-us p {
    margin-bottom: 0.5rem;
    color: #666;
    font-size: 0.9rem;
    line-height: 1.6;
}

.contact-us p:first-of-type {
    font-weight: 600;
    color: #e6c350;
}

.footer-section h3 {
    font-weight: 600;
    color: #e6c350;
    margin-bottom: 1rem;
}

.footer-section .form input {
    border: 2px solid #e9ecef;
    border-radius: 8px;
    transition: border-color 0.3s ease;
}

.footer-section .form input:focus {
    border-color: #007bff;
    box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25);
}

.footer-section p {
    font-size: 0.85rem;
    color: #e6c350;
    margin-top: 1rem;
    line-height: 1.5;
}

.footer-section p u {
    color: #e6c350;
    cursor: pointer;
    text-decoration: underline;
}

.footer-section p u:hover {
    color: light#e6c350;
}

.footer-section .btn {
    margin-top: 1rem;
    padding: 0.75rem 2rem;
    font-weight: 600;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.footer-section .btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.social-media-icons{
  display: flex;
  align-items: center;
  gap: 3.3rem;
  flex-wrap: wrap;
}

.footer-logo{
    width: 70%;
}

/* Responsive Design */
@media (max-width: 992px) {
    .footer-section {
        padding: 4rem 2rem;
    }
    
    .footer-link {
        gap: 3rem;
    }
}

@media (max-width: 768px) {
    .footer-section {
        padding: 3rem 1rem;
    }
    
    .footer-link {
        flex-direction: column;
        gap: 2rem;
        align-items: flex-start;
    }
    
    .contact-us{
        width: 100%;
    }
    
    .footer-section .form input {
        width: 100%;
    }
    .footer-logo{
        width: 100%;
    }
}

@media (max-width: 576px) {
    .footer-section {
        padding: 2rem 0.5rem;
    }
    
    .footer-section h5 {
        font-size: 1.1rem;
    }
    
    .contact-us h6 {
        font-size: 0.9rem;
    }
    
    .contact-us p{
        font-size: 0.85rem;
    }
}
