/* Only page-specific overrides that don't exist in style.css */

.contact-section {
    padding: 160px 0 100px;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 80px;
    align-items: flex-start;
}

/* Left Column: Info */
.contact-content {
    padding-top: 10px;
}

.contact-badge {
    display: inline-block;
    padding: 8px 16px;
    background: #f0f0f5;
    color: #666;
    border-radius: 6px;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 24px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.contact-title {
    font-family: 'Outfit', sans-serif;
    font-size: 48px;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 24px;
    color: #1d1d1f;
    letter-spacing: -1px;
}

.contact-text {
    font-size: 18px;
    color: #666;
    line-height: 1.6;
    margin-bottom: 48px;
    max-width: 480px;
}

.contact-info-list {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.info-card {
    display: flex;
    align-items: flex-start;
    gap: 20px;
}

.info-icon {
    width: 48px;
    height: 48px;
    background: #fff;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    color: #1d1d1f;
    border: 1px solid #e5e5e5;
    flex-shrink: 0;
}

.info-details h4 {
    font-family: 'Outfit', sans-serif;
    font-size: 18px;
    font-weight: 600;
    color: #1d1d1f;
    margin-bottom: 4px;
}

.info-details p {
    font-size: 15px;
    color: #666;
    line-height: 1.5;
    margin: 0;
}

.info-link {
    color: #1d1d1f;
    text-decoration: none;
    border-bottom: 1px solid #e5e5e5;
    transition: all 0.2s;
}

.info-link:hover {
    color: #000;
    border-color: #000;
}

/* Right Column: Form */
.form-card {
    background: #fff;
    border: 1px solid #e5e5e5;
    border-radius: 24px;
    padding: 40px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.03);
}

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

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

.form-group.full-width {
    grid-column: span 2;
}

.captcha-group {
    margin-top: -4px;
}

.form-label {
    display: block;
    margin-bottom: 8px;
    font-size: 13px;
    font-weight: 600;
    color: #1d1d1f;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.form-input,
.form-textarea {
    width: 100%;
    background: #f9f9f9;
    border: 1px solid #eee;
    padding: 16px 20px;
    border-radius: 10px;
    font-family: 'Inter', sans-serif;
    font-size: 15px;
    color: #1d1d1f;
    transition: all 0.2s ease;
    box-sizing: border-box;
}

.form-select {
    appearance: none;
    background-image: linear-gradient(45deg, transparent 50%, #6b7280 50%), linear-gradient(135deg, #6b7280 50%, transparent 50%);
    background-position: calc(100% - 20px) calc(50% - 3px), calc(100% - 14px) calc(50% - 3px);
    background-size: 6px 6px, 6px 6px;
    background-repeat: no-repeat;
    padding-right: 40px;
}

.form-input:focus,
.form-textarea:focus {
    outline: none;
    background: #fff;
    border-color: #000;
    box-shadow: none;
}

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

.submit-btn {
    background: #000;
    color: #fff;
    font-family: 'Outfit', sans-serif;
    font-weight: 600;
    font-size: 16px;
    padding: 18px 32px;
    border-radius: 10px;
    border: none;
    cursor: pointer;
    width: 100%;
    transition: all 0.3s ease;
}

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

.submit-btn[disabled],
.submit-btn[disabled]:hover {
    background: #9ca3af;
    cursor: not-allowed;
    transform: none;
}

.form-note {
    margin-top: 14px;
    color: #666;
    font-size: 14px;
    line-height: 1.5;
    text-align: center;
}

.form-note.is-success {
    color: #0f766e;
}

.form-note.is-error {
    color: #b91c1c;
}

.form-note a {
    color: #1d1d1f;
    text-decoration: underline;
}

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

    .contact-section {
        padding-top: 130px;
    }

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

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

    .form-group.full-width {
        grid-column: span 1;
    }

    .form-card {
        padding: 24px;
    }
}
