/* COLORS */
:root {
    --primary: #000;
    --dark: #111;
    --light: #fafafa;
    --text: #666;
    --white: #fff;
}

/* CONTACT SECTION */
.contact-section {
    padding: 70px 20px;
    background: var(--light);
}

.container {
    max-width: 1200px;
    margin: auto;
}

.title {
    font-size: 38px;
    font-weight: bold;
    text-align: center;
}

.about-section .title span {
    color: #FFFF00;   /* Yellow for "Us" */
}

.sub-title {
    text-align: center;
    color: var(--text);
    margin-bottom: 50px;
}

/* TWO GRID */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
}

/* LEFT INFO */
.contact-info h2 {
    font-size: 26px;
    color: var(--primary);
    margin-bottom: 15px;
}

.contact-info p {
    font-size: 16px;
    color: var(--text);
    margin-bottom: 20px;
    line-height: 1.6;
}

.info-box h3 {
    font-size: 18px;
    color: var(--primary);
    margin-bottom: 5px;
}

.info-box p {
    color: var(--dark);
}

/* FORM */
.contact-form h2 {
    font-size: 26px;
    color: var(--primary);
    margin-bottom: 15px;
}

.contact-form form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.contact-form input,
.contact-form textarea {
    padding: 12px 15px;
    border: 1px solid #ccc;
    outline: none;
    border-radius: 6px;
    background: var(--white);
    font-size: 16px;
}

.contact-form input:focus,
.contact-form textarea:focus {
    border-color: var(--primary);
}

.btn-primary {
    background: var(--primary);
    color: var(--white);
    padding: 12px;
    border-radius: 6px;
    font-weight: bold;
    cursor: pointer;
    border: none;
    transition: 0.3s ease;
}

.btn-primary:hover {
    background: #333;
}

/* RESPONSIVE */
@media (max-width: 850px) {
    .contact-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }
}
