/* ========== CONTACT LAYOUT ========== */
.contact-section {
    padding: 160px 0 10vh;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 80px;
}

/* LEFT SIDE - INFO */
.contact-info h1 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 40px;
}

.info-block {
    margin-bottom: 32px;
}

.info-block h3 {
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: #24262B;
    margin-bottom: 8px;
}

.info-block p {
    color: #94949e;
    font-size: 15px;
    line-height: 1.7;
}

.info-block a {
    color: #24262B;
    font-weight: 600;
}

.info-block a:hover {
    color: #878787;
}

/* MAP */
.map-container {
    margin-top: 32px;
    border-radius: 12px;
    overflow: hidden;
    height: 200px;
}

.map-container iframe {
    width: 100%;
    height: 100%;
    border: 0;
}

/* RIGHT SIDE - FORM */
.contact-form h2 {
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 32px;
}

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

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-group label {
    display: block;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: #24262B;
    margin-bottom: 8px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 14px 16px;
    border: 1px solid rgba(36,38,43,0.15);
    border-radius: 8px;
    font-family: inherit;
    font-size: 15px;
    color: #24262B;
    background: #fff;
    transition: border-color 0.3s;
    outline: none;
}

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

.form-group input:focus,
.form-group textarea:focus {
    border-color: #878787;
}

.form-group textarea {
    resize: vertical;
    min-height: 140px;
}

.btn-submit {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 32px;
    border-radius: 50px;
    border: none;
    background: #24262B;
    color: #fff;
    font-family: inherit;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s;
}

.btn-submit:hover {
    background: #878787;
}

.btn-submit svg {
    width: 16px;
    height: 16px;
    fill: currentColor;
}

/* Success message */
.form-success {
    display: none;
    padding: 20px;
    background: #e8f5e9;
    border-radius: 8px;
    color: #2e7d32;
    font-weight: 500;
    margin-top: 16px;
}

/* ========== RESPONSIVE ========== */
@media screen and (max-width: 768px) {
    .contact-section {
        padding: 120px 0 60px;
    }

    .contact-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .contact-info h1 {
        font-size: 2rem;
    }

    .form-row {
        grid-template-columns: 1fr;
    }
}
