.contact-section {
background: linear-gradient(180deg, #f9fafb, #ffffff);
padding: 80px 20px;
font-family: "Inter", sans-serif;
}

.contact-container {
max-width: 1100px;
margin: auto;
}

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

.contact-header h1 {
font-size: 2.4rem;
font-weight: 700;
color: #111827;
}

.contact-header p {
color: #6b7280;
max-width: 650px;
margin: auto;
}

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

.contact-info {
background: #ffffff;
padding: 30px;
border-radius: 18px;
box-shadow: 0 18px 40px rgba(0,0,0,0.06);
}

.contact-info h2 {
margin-bottom: 16px;
font-size: 1.4rem;
}

.contact-info ul {
list-style: none;
padding: 0;
}

.contact-info ul li {
margin-bottom: 12px;
color: #374151;
}

.contact-note {
margin-top: 20px;
color: #059669;
font-weight: 500;
}

.contact-form {
background: #ffffff;
padding: 30px;
border-radius: 18px;
box-shadow: 0 18px 40px rgba(0,0,0,0.06);
}

.form-group {
display: flex;
flex-direction: column;
margin-bottom: 18px;
}

.form-group label {
font-weight: 500;
margin-bottom: 6px;
}

.form-group input,
.form-group textarea {
padding: 12px 14px;
border-radius: 10px;
border: 1px solid #d1d5db;
font-size: 0.95rem;
}

.form-group input:focus,
.form-group textarea:focus {
outline: none;
border-color: #2563eb;
}

.btn-submit {
width: 100%;
padding: 14px;
background: #2563eb;
color: #ffffff;
border: none;
border-radius: 12px;
font-size: 1rem;
font-weight: 600;
cursor: pointer;
transition: background 0.3s ease;
}

.btn-submit:hover {
background: #1d4ed8;
}

.form-feedback {
margin-top: 16px;
color: #16a34a;
font-weight: 500;
text-align: center;
}

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