/* ============================================
   CONTACT.CSS
============================================ */

/* ---- Page wrapper ---- */
.contact {
    padding: 120px 60px 80px 60px;
    max-width: 1100px;
    margin: 0 auto;
}

/* ---- Two column layout ---- */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.3fr;
    gap: 4rem;
    align-items: start;
    margin-top: 3rem;
}

/* ============================================
   LEFT SIDE — Info
============================================ */
.contact-info h2 {
    font-family: var(--font-display);
    font-size: 1.6rem;
    font-weight: 800;
    color: var(--text-color);
    margin-bottom: 0.75rem;
    line-height: 1.3;
}

.contact-info > p {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.75;
    margin-bottom: 2rem;
}

/* Contact detail items */
.contact-items {
    display: flex;
    flex-direction: column;
    gap: 14px;
    margin-bottom: 2.5rem;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 14px;
    color: var(--text-muted);
    font-size: 0.875rem;
    text-decoration: none;
    transition: color 0.2s;
}

.contact-item:hover {
    color: var(--text-color);
}

.contact-item .ci-icon {
    width: 38px;
    height: 38px;
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: 9px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    font-size: 0.875rem;
    flex-shrink: 0;
    transition: background 0.2s, border-color 0.2s;
}

.contact-item:hover .ci-icon {
    background: rgba(100, 255, 218, 0.08);
    border-color: rgba(100, 255, 218, 0.25);
}

/* Social links row */
.social-links {
    display: flex;
    gap: 10px;
    margin-bottom: 2rem;
}

.social-link {
    width: 40px;
    height: 40px;
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: 9px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-muted);
    font-size: 0.95rem;
    text-decoration: none;
    transition: all 0.2s ease;
}

.social-link:hover {
    background: rgba(100, 255, 218, 0.08);
    border-color: rgba(100, 255, 218, 0.25);
    color: var(--primary-color);
    transform: translateY(-2px);
}

/* Response time note */
.response-note {
    padding: 16px 18px;
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    font-size: 0.875rem;
    color: var(--text-muted);
    line-height: 1.6;
}

.response-note strong {
    color: var(--primary-color);
    font-weight: 600;
}

/* ============================================
   RIGHT SIDE — Form
============================================ */
.form-container {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 2.25rem;
}

.form-container h3 {
    font-family: var(--font-display);
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--text-color);
    margin-bottom: 6px;
}

.form-container > p {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-bottom: 1.75rem;
}

/* Form layout */
form {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

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

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

/* Label */
label {
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--text-color);
    letter-spacing: 0.2px;
}

/* Inputs & textarea */
input,
textarea {
    font-size: 0.9rem;
    font-family: var(--font-body);
    padding: 11px 14px;
    background: var(--surface);
    border: 1.5px solid var(--border);
    border-radius: var(--radius-sm);
    color: var(--text-color);
    width: 100%;
    box-sizing: border-box;
    transition: border-color 0.2s, box-shadow 0.2s;
    outline: none;
    margin-bottom: 0;
}

input::placeholder,
textarea::placeholder {
    color: var(--text-muted);
    font-size: 0.875rem;
}

input:focus,
textarea:focus {
    border-color: rgba(100, 255, 218, 0.4);
    box-shadow: 0 0 0 3px rgba(100, 255, 218, 0.06);
}

textarea {
    resize: vertical;
    min-height: 120px;
    line-height: 1.6;
}

/* Submit button */
.form-submit {
    width: 100%;
    padding: 13px;
    background: var(--primary-color);
    color: #000;
    font-family: var(--font-body);
    font-size: 0.95rem;
    font-weight: 700;
    border: none;
    border-radius: var(--radius-sm);
    cursor: pointer;
    transition: background 0.2s, transform 0.2s, box-shadow 0.2s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    letter-spacing: 0.2px;
    margin-top: 0.25rem;
}

.form-submit:hover {
    background: #00bcd4;
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(100, 255, 218, 0.2);
}

/* ============================================
   RESPONSIVE
============================================ */
@media (max-width: 900px) {
    .contact {
        padding: 100px 30px 60px 30px;
    }

    .contact-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
}

@media (max-width: 600px) {
    .contact {
        padding: 90px 16px 50px 16px;
    }

    .form-container {
        padding: 1.5rem;
    }

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

    .contact-info h2 {
        font-size: 1.35rem;
    }
}