.contact-container {
    max-width: 1100px;
    margin: 60px auto 100px;
    padding: 0 20px;
    font-family: 'Instrument Sans', sans-serif;
    animation: fadeIn 0.4s ease-out forwards;
}

.contact-header {
    text-align: center;
    margin-bottom: 50px;
}

.contact-header h1 {
    font-size: clamp(28px, 4vw, 40px);
    font-weight: 900;
    color: #0f172a;
    margin-bottom: 10px;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 40px;
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px -10px rgba(0,0,0,0.05);
}

.contact-info {
    background: #0f172a;
    color: #ffffff;
    padding: 40px;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.info-block {
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.info-block i {
    font-size: 24px;
    color: #3b82f6;
    margin-top: 5px;
}

.info-block h3 {
    margin: 0 0 5px 0;
    font-size: 16px;
    font-weight: 700;
}

.info-block p {
    margin: 0;
    color: #94a3b8;
    font-size: 14px;
}

.contact-form-wrapper {
    padding: 40px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    font-size: 13px;
    font-weight: 800;
    color: #1e293b;
    margin-bottom: 8px;
    text-transform: uppercase;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1.5px solid #cbd5e1;
    border-radius: 10px;
    font-family: inherit;
    font-size: 15px;
    transition: all 0.2s;
    box-sizing: border-box;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #0f172a;
    box-shadow: 0 0 0 3px rgba(15,23,42,0.1);
}

.btn-submit-contact {
    width: 100%;
    background: #0f172a;
    color: white;
    border: none;
    padding: 15px;
    border-radius: 10px;
    font-size: 15px;
    font-weight: 800;
    text-transform: uppercase;
    cursor: pointer;
    transition: transform 0.2s, background 0.2s;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
}

.btn-submit-contact:hover {
    background: #334155;
    transform: translateY(-2px);
}

@media (max-width: 768px) {
    .contact-grid {
        grid-template-columns: 1fr;
    }
}