.contact-page {
    background-color: #000;
    width: 100%;
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 40px 20px;
    box-sizing: border-box;
}

.contact-container {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    gap: 60px;
    max-width: 1200px;
    width: 100%;
    flex-wrap: wrap;
}

/* ===== LEFT SECTION ===== */
.contact-left {
    display: flex;
    flex-direction: column;
    gap: 48px;
    max-width: 458px;
}

.contact-title {
    font-family: 'Inter', sans-serif;
    font-weight: 300;
    font-size: 48px;
    line-height: 58px;
    letter-spacing: -0.02em;
    color: #fff;
    margin: 0;
}

.contact-description {
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 19px;
    letter-spacing: -0.02em;
    color: #808080;
    margin: 0;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.contact-item {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.contact-label {
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 19px;
    color: #808080;
}

.contact-value {
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 16px;
    line-height: 19px;
    color: #fff;
}

/* ===== RIGHT SECTION ===== */
.contact-form-card {
    background: #131313;
    border-radius: 12px;
    padding: 24px;
    width: 458px;
    display: flex;
    justify-content: center;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 24px;
    width: 100%;
    max-width: 410px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group label {
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 14px;
    line-height: 17px;
    color: #fff;
}

.form-group input,
.form-group textarea {
    background: #080808;
    border: 1px solid #242424;
    border-radius: 12px;
    padding: 13px 16px;
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    line-height: 17px;
    color: #fff;
    resize: none;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #666666;
}

textarea {
    height: 130px;
}

.submit-btn {
    background: #67EBD3;
    color: #000;
    border: none;
    border-radius: 12px;
    padding: 13px 24px;
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    font-size: 16px;
    cursor: pointer;
    transition: background 0.3s ease;
}

.submit-btn:hover {
    background: #4fd5bf;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 900px) {
    .contact-container {
        flex-direction: column;
        align-items: center;
        gap: 40px;
    }

    .contact-left,
    .contact-form-card {
        width: 100%;
        max-width: 458px;
    }

    .contact-title {
        font-size: 36px;
        line-height: 44px;
    }
}

@media (min-width: 1441px) {
    .contact-container {
        max-width: 80%;
    }
    .contact-left{
        max-width: 40%;
    }
    .contact-form-card{
        width: 40%;
    }
}