/* Purpose: Contact page section styles. Ported from AXL axl-contact.html. Loaded only on the Contact page. */

/* ---- Content hero (light chevron) ---- */
.chero { padding: 140px 0 60px; background: linear-gradient(rgba(255, 255, 255, .86), rgba(255, 255, 255, .92)), url("../../images/bg-chevron-hero.jpg") center / cover; position: relative; }
.chero h1 { font-size: clamp(34px, 5vw, 62px); font-weight: 800; letter-spacing: -.03em; }
.chero h1 .red { color: var(--accent); }
.chero .lead { margin: 22px 0 28px; font-size: clamp(17px, 2vw, 20px); color: var(--slate); max-width: 46ch; }
.chero-copy { max-width: 740px; }
.crumb { font-size: 13px; color: var(--slate); margin-bottom: 22px; display: flex; gap: 8px; align-items: center; }
.crumb a:hover { color: var(--accent); }
.crumb span { opacity: .5; }
.crumb .current { opacity: 1; color: var(--ink); }

/* ---- Quick-contact cards ---- */
.qcards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.qc { border: 1px solid var(--hair); border-radius: var(--r); padding: 30px; background: #fff; transition: .4s var(--ease); }
.qc:hover { box-shadow: var(--shadow); transform: translateY(-5px); border-color: transparent; }
.qc .ic { width: 50px; height: 50px; border-radius: 13px; background: var(--accent-soft); display: flex; align-items: center; justify-content: center; margin-bottom: 16px; }
.qc .ic svg { width: 24px; height: 24px; fill: var(--accent); }
.qc .lab { font-size: 12px; font-weight: 600; letter-spacing: .12em; text-transform: uppercase; color: var(--slate); }
.qc .val { font-size: 19px; font-weight: 600; margin: 6px 0 14px; }
.qc a.mini { font-weight: 600; font-size: 14px; color: var(--accent); display: inline-flex; gap: 7px; transition: gap .3s; }
.qc:hover a.mini { gap: 12px; }
@media (max-width: 820px) { .qcards { grid-template-columns: 1fr; } }

/* ---- Info + form grid ---- */
.cgrid { display: grid; grid-template-columns: .85fr 1.15fr; gap: 50px; align-items: start; }
.cinfo h2 { font-size: clamp(24px, 3vw, 34px); margin-bottom: 16px; }
.cinfo p { color: var(--slate); margin-bottom: 26px; }
.cinfo .row { display: flex; gap: 14px; margin-bottom: 20px; align-items: flex-start; }
.cinfo .row .d { width: 9px; height: 9px; border-radius: 50%; background: var(--grad); margin-top: 8px; flex: none; }
.cinfo .row b { display: block; font-size: 12px; letter-spacing: .08em; text-transform: uppercase; color: var(--ink); margin-bottom: 4px; }
.cinfo .row span { color: var(--slate); font-size: 15px; line-height: 1.6; }
.cinfo .row a:hover { color: var(--accent); }

/* ---- Form ---- */
.form { border: 1px solid var(--hair); border-radius: var(--r); padding: 34px; background: #fff; box-shadow: var(--shadow-sm); }
.form h3 { font-size: 22px; margin-bottom: 20px; }
.frow { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.field { margin-bottom: 16px; }
.field label { display: block; font-size: 13px; font-weight: 600; margin-bottom: 7px; }
.field input, .field select, .field textarea { width: 100%; font-family: var(--font); font-size: 15px; padding: 13px 15px; border: 1px solid var(--hair); border-radius: 11px; background: var(--mist); color: var(--ink); transition: .25s; }
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--accent); background: #fff; box-shadow: 0 0 0 3px rgba(228, 0, 75, .1); }
.field textarea { min-height: 120px; resize: vertical; }
.form .btn { width: 100%; justify-content: center; margin-top: 6px; }
.form .ok { display: none; text-align: center; padding: 26px 10px; }
.form .ok .tick { width: 60px; height: 60px; border-radius: 50%; background: var(--accent-soft); color: var(--accent); display: flex; align-items: center; justify-content: center; font-size: 30px; margin: 0 auto 16px; }
.form .ok h3 { margin-bottom: 8px; }
.form .ok p { color: var(--slate); max-width: 34ch; margin-inline: auto; text-wrap: balance; }
.form.sent .fwrap { display: none; }
.form.sent .ok { display: block; }
.form-result { margin-top: 14px; font-size: 15px; line-height: 1.5; display: none; }
.form-result.show { display: block; }
.form-result.ok { color: #1f8f4e; }
.form-result.err { color: #c0392b; }
.field.invalid input { border-color: #c0392b !important; }
@media (max-width: 860px) { .cgrid { grid-template-columns: 1fr; gap: 34px; } .frow { grid-template-columns: 1fr; } }

/* ---- Map ---- */
.cmap { border: 1px solid var(--hair); border-radius: var(--r); overflow: hidden; height: 420px; }
.cmap iframe { width: 100%; height: 100%; border: 0; }
