
/* Contact section enhancements */
.contact {
    position: relative;
    padding: 6rem 0;
    background-color: var(--primary-dark);
}

/* Add decorative top border to contact section */
.contact::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 8px;
    background: linear-gradient(90deg, var(--primary-gold), var(--accent-blue), var(--primary-gold));
}

/* Add spacing and shadow for contact form */
.contact-form form {
    background-color: rgba(255, 255, 255, 0.05);
    padding: 2.5rem;
    border-radius: 8px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
    border-top: 3px solid var(--primary-gold);
}

/* Footer enhancements */
footer {
    background-color: #061320; /* Darker than primary-dark */
    padding-top: 5rem;
    position: relative;
}

/* Add decorative separator between contact and footer */
footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 30px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 100'%3E%3Cpath fill='%230A1929' d='M0,64L80,69.3C160,75,320,85,480,80C640,75,800,53,960,48C1120,43,1280,53,1360,58.7L1440,64L1440,0L1360,0C1280,0,1120,0,960,0C800,0,640,0,480,0C320,0,160,0,80,0L0,0Z'%3E%3C/path%3E%3C/svg%3E");
    background-size: cover;
    background-position: center;
    transform: translateY(-100%);
}

/* Enhance footer content */
.footer-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin-bottom: 3rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding-bottom: 3rem;
}

.footer-logo {
    flex: 1;
    min-width: 250px;
    margin-right: 2rem;
}

.footer-links {
    display: flex;
    flex-wrap: wrap;
    flex: 2;
    justify-content: space-between;
}

.link-group {
    min-width: 150px;
    margin-bottom: 1.5rem;
}

.link-group h4 {
    color: var(--primary-gold);
    margin-bottom: 1.2rem;
    font-size: 1.1rem;
}

.link-group ul li {
    margin-bottom: 0.8rem;
}

.link-group ul li a {
    color: var(--text-gray);
    transition: var(--transition-fast);
}

.link-group ul li a:hover {
    color: var(--text-white);
    padding-left: 5px;
}

/* Footer bottom section */
.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 0;
    color: var(--text-gray);
}

.footer-social {
    display: flex;
    gap: 1rem;
}

.footer-social a {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.05);
    display: flex;
    justify-content: center;
    align-items: center;
    transition: var(--transition-fast);
}

.footer-social a:hover {
    background-color: var(--primary-gold);
    color: var(--primary-dark);
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .footer-content {
        flex-direction: column;
    }
    
    .footer-logo {
        margin-right: 0;
        margin-bottom: 2rem;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
}
