/* Contact Page Styles */
.contact-hero {
    height: 400px;
    background: linear-gradient(rgba(15, 20, 25, 0.7), rgba(15, 20, 25, 0.7)),
        url('https://images.unsplash.com/photo-1532434193582-840ed8b8e0a8?q=80&w=2070&auto=format&fit=crop');
    /* Dynamic fallback or user specific */
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff;
    margin-bottom: -100px;
}

.contact-hero h1 {
    font-size: 48px;
    font-weight: 800;
    margin-bottom: 16px;
    letter-spacing: -1px;
    color: #FFD700 !important;
}

.contact-hero p {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.8);
    max-width: 600px;
    margin: 0 auto;
}

.contact-container {
    position: relative;
    z-index: 5;
    padding-bottom: 80px;
}

.contact-wrapper {
    background: #1a2332;
    border-radius: 24px;
    overflow: hidden;
    display: flex;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.contact-info-sidebar {
    width: 350px;
    background: #101721;
    padding: 40px;
    border-right: 1px solid rgba(255, 255, 255, 0.1);
}

.contact-form-section {
    flex: 1;
    padding: 60px;
    background: #1a2332;
}

@media (max-width: 991px) {
    .contact-wrapper {
        flex-direction: column;
    }

    .contact-info-sidebar {
        width: 100%;
        border-right: none;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }

    .contact-hero {
        height: 300px;
    }

    .contact-hero h1 {
        font-size: 36px;
    }
}

.info-item {
    display: flex;
    gap: 20px;
    margin-bottom: 32px;
}

.info-icon {
    width: 48px;
    height: 48px;
    background: rgba(255, 215, 0, 0.1);
    color: #FFD700;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    flex-shrink: 0;
}

.info-content h4 {
    color: #fff;
    font-size: 18px;
    margin-bottom: 4px;
}

.info-content p {
    color: #8b95a8;
    margin-bottom: 0;
    font-size: 14px;
    line-height: 1.5;
}

.social-links {
    display: flex;
    gap: 12px;
    margin-top: 40px;
}

.social-link {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.05);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.social-link:hover {
    background: #FFD700;
    color: #111;
    transform: translateY(-3px);
}

.contact-form .form-group {
    margin-bottom: 24px;
}

.contact-form label {
    display: block;
    color: #8b95a8;
    margin-bottom: 8px;
    font-size: 14px;
    font-weight: 500;
}

.contact-form .form-input {
    width: 100%;
    background: #101721;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 14px 16px;
    color: #fff;
    font-size: 16px;
    transition: all 0.3s ease;
}

.contact-form textarea.form-input {
    min-height: 120px;
    resize: vertical;
}

.contact-form .form-input:focus {
    outline: none;
    border-color: #FFD700;
    box-shadow: 0 0 0 4px rgba(255, 215, 0, 0.1);
}

.contact-btn {
    background: #FFD700;
    color: #111;
    border: none;
    border-radius: 12px;
    padding: 16px 32px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.contact-btn:hover {
    background: #ffed4e;
    transform: translateY(-2px);
    box-shadow: 0 10px 20px -10px rgba(255, 215, 0, 0.5);
}