/* --- CONTACT HERO --- */
.contact-hero {
    background-color: var(--bg-white);
    /* Top padding is handled by the main.css global fix */
    min-height: 40vh; /* Shorter hero for contact page */
    display: flex;
    align-items: center;
}

.hero-sub {
    max-width: 600px;
    margin: 0 auto;
}

/* --- CONTACT GRID LAYOUT --- */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr; /* Info takes less space than Form */
    gap: 3rem;
    align-items: start;
}

/* LEFT COL: INFO CARD */
.info-card {
    background: white;
    padding: 2rem;
    border: var(--border-thick);
    border-radius: var(--radius);
    box-shadow: var(--shadow-hard);
    margin-bottom: 2rem;
}

.info-text { margin-bottom: 2rem; font-size: 0.95rem; }

.contact-item {
    display: flex;
    gap: 15px;
    margin-bottom: 1.5rem;
    align-items: flex-start;
}

.icon-box {
    width: 40px;
    height: 40px;
    background: var(--brand-black);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.contact-item label {
    display: block;
    font-size: 0.8rem;
    color: var(--text-light);
    font-weight: 600;
    text-transform: uppercase;
}

.contact-item a, .contact-item span {
    color: var(--brand-black);
    font-weight: 700;
    font-size: 1.1rem;
    text-decoration: none;
    transition: 0.2s;
}

.contact-item a:hover { color: var(--brand-red); }

/* MAP */
.map-wrapper {
    border: var(--border-thick);
    border-radius: var(--radius);
    overflow: hidden;
    height: 300px;
}

/* RIGHT COL: FORM */
.contact-form-wrapper {
    background: white;
    padding: 3rem;
    border: var(--border-thick);
    border-radius: var(--radius);
}

.form-header { margin-bottom: 2rem; }
.form-header h2 { font-size: 2rem; }

/* Form Styles */
.detailed-form label {
    display: block;
    font-weight: 700;
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
    color: var(--brand-black);
}

.detailed-form input, 
.detailed-form select, 
.detailed-form textarea {
    width: 100%;
    padding: 1rem;
    border: 2px solid #ddd;
    border-radius: 8px;
    font-family: var(--font-body);
    font-size: 1rem;
    transition: 0.3s;
    background: #fdfdfd;
}

.detailed-form input:focus, 
.detailed-form select:focus, 
.detailed-form textarea:focus {
    border-color: var(--brand-cyan);
    outline: none;
    box-shadow: 0 0 0 3px rgba(0, 212, 255, 0.1);
}

/* Form Layout Logic */
.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.form-group { margin-bottom: 1.5rem; }

/* --- STEPS / PROCESS ROW --- */
.steps-row {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    margin-top: 2rem;
    flex-wrap: wrap;
}

.step-card {
    background: white;
    border: 1px solid #eee;
    padding: 2rem;
    border-radius: var(--radius);
    width: 250px;
    position: relative;
}

.step-icon {
    width: 40px; height: 40px;
    background: var(--brand-red);
    color: white;
    font-weight: 900;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    margin: 0 auto 1rem auto;
}

.step-arrow {
    font-size: 2rem;
    color: var(--brand-black);
    font-weight: 900;
}

/* --- RESPONSIVE --- */
@media (max-width: 900px) {
    .contact-grid { grid-template-columns: 1fr; }
    .contact-form-wrapper { padding: 2rem 1.5rem; }
}

@media (max-width: 600px) {
    .form-row { grid-template-columns: 1fr; }
    .steps-row { flex-direction: column; }
    .step-arrow { transform: rotate(90deg); }
}