/* =========================================================================
 *  GV Advisors — Contact page (additions only).
 *  Loads AFTER gv-home.css + gv-about.css and reuses their tokens, sections,
 *  buttons, hero, breadcrumb, FAQ and CTA. Only contact-specific pieces —
 *  contact cards, the form, the WhatsApp band and the map — live here.
 * ========================================================================= */

/* ---------------------------- Contact cards --------------------------- */
.gv-contact-cards {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: clamp(18px, 2.2vw, 28px);
}
.gv-contact-card {
	position: relative;
	display: flex; flex-direction: column; align-items: flex-start;
	padding: clamp(28px, 3vw, 40px);
	background: var(--gv-surface);
	border: 1px solid var(--gv-border);
	border-radius: var(--gv-radius);
	box-shadow: 0 8px 26px var(--gv-shadow);
	text-decoration: none; color: inherit;
	overflow: hidden;
	transition: transform .4s var(--gv-ease), box-shadow .4s var(--gv-ease), border-color .4s var(--gv-ease);
}
.gv-contact-card::before {
	content: ""; position: absolute; top: 0; left: 0; right: 0; height: 3px;
	background: var(--gv-brass); transform: scaleX(0); transform-origin: left;
	transition: transform .5s var(--gv-ease);
}
a.gv-contact-card:hover { transform: translateY(-6px); box-shadow: 0 24px 48px rgba(26,77,58,.15); border-color: transparent; }
a.gv-contact-card:hover::before { transform: scaleX(1); }
.gv-contact-card__icon {
	display: inline-flex; align-items: center; justify-content: center;
	width: 56px; height: 56px; border-radius: 50%;
	background: var(--gv-light-sage); color: var(--gv-forest);
	margin-bottom: 22px;
	transition: background .4s var(--gv-ease), color .4s var(--gv-ease);
}
.gv-contact-card__icon svg { width: 24px; height: 24px; }
a.gv-contact-card:hover .gv-contact-card__icon { background: var(--gv-forest); color: var(--gv-bg); }
.gv-contact-card__label { font-size: 11px; font-weight: 600; letter-spacing: 1.6px; text-transform: uppercase; color: var(--gv-stone); margin-bottom: 8px; }
.gv-contact-card__value { font-family: var(--gv-serif); font-size: 22px; font-weight: 600; color: var(--gv-forest); line-height: 1.35; }

/* ------------------------------- Form --------------------------------- */
.gv-form-card {
	max-width: 860px; margin: 0 auto;
	background: var(--gv-surface);
	border: 1px solid var(--gv-border);
	border-radius: var(--gv-radius);
	box-shadow: 0 14px 44px var(--gv-shadow);
	padding: clamp(30px, 4vw, 56px);
}
.gv-form { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(18px, 2vw, 26px); }
.gv-field { display: flex; flex-direction: column; }
.gv-field--full { grid-column: 1 / -1; }
.gv-field label { font-size: 12px; font-weight: 600; letter-spacing: 1px; text-transform: uppercase; color: var(--gv-charcoal); margin-bottom: 9px; }
.gv-field input,
.gv-field select,
.gv-field textarea {
	width: 100%;
	font-family: var(--gv-sans); font-size: 15px; color: var(--gv-charcoal);
	background: var(--gv-bg);
	border: 1px solid var(--gv-border);
	border-radius: var(--gv-radius-sm);
	padding: 14px 16px;
	transition: border-color .3s var(--gv-ease), box-shadow .3s var(--gv-ease), background .3s var(--gv-ease);
	-webkit-appearance: none; appearance: none;
}
.gv-field textarea { resize: vertical; min-height: 130px; }
.gv-field select {
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 24 24' fill='none' stroke='%231A4D3A' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
	background-repeat: no-repeat; background-position: right 16px center; padding-right: 44px;
}
.gv-field input:focus,
.gv-field select:focus,
.gv-field textarea:focus {
	outline: none; background: var(--gv-surface);
	border-color: var(--gv-forest);
	box-shadow: 0 0 0 3px rgba(26,77,58,.10);
}
.gv-field.has-error input,
.gv-field.has-error select,
.gv-field.has-error textarea { border-color: #b4472f; box-shadow: 0 0 0 3px rgba(180,71,47,.10); }
.gv-field__error { font-size: 12.5px; color: #b4472f; margin-top: 7px; min-height: 0; }
.gv-field.has-error .gv-field__error { min-height: 18px; }

.gv-form__actions { margin-top: 6px; }
.gv-form__actions .gv-btn { width: 100%; }
.gv-form__actions .gv-btn[disabled] { opacity: .6; pointer-events: none; }

/* Honeypot — visually hidden, off-screen. */
.gv-hp { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }

.gv-form__notice {
	background: rgba(180,71,47,.08); border: 1px solid rgba(180,71,47,.3);
	color: #8f3a26; border-radius: var(--gv-radius-sm);
	padding: 14px 18px; margin: 0 0 22px; font-size: 14px;
}
.gv-form__success { text-align: center; padding: clamp(20px, 3vw, 40px) 10px; }
.gv-form__success.is-static { padding: clamp(10px, 2vw, 24px) 10px; }
.gv-form__check {
	display: inline-flex; align-items: center; justify-content: center;
	width: 68px; height: 68px; border-radius: 50%;
	background: var(--gv-light-sage); color: var(--gv-forest);
	margin-bottom: 22px;
}
.gv-form__check svg { width: 32px; height: 32px; }
.gv-form__success h3 { font-family: var(--gv-serif); font-size: clamp(26px, 3vw, 34px); color: var(--gv-forest); margin: 0 0 12px; }
.gv-form__success p { font-size: 16px; color: var(--gv-charcoal); opacity: .82; margin: 0; }

/* -------------------------- WhatsApp band ----------------------------- */
.gv-whatsapp {
	display: flex; align-items: center; gap: clamp(20px, 3vw, 36px);
	background: var(--gv-surface);
	border: 1px solid var(--gv-border);
	border-left: 4px solid var(--gv-brass);
	border-radius: var(--gv-radius);
	padding: clamp(28px, 3.4vw, 46px);
	box-shadow: 0 12px 36px var(--gv-shadow);
}
.gv-whatsapp__icon {
	flex: 0 0 auto;
	display: inline-flex; align-items: center; justify-content: center;
	width: 66px; height: 66px; border-radius: 50%;
	background: var(--gv-light-sage); color: var(--gv-forest);
}
.gv-whatsapp__icon svg { width: 30px; height: 30px; }
.gv-whatsapp__body { flex: 1; }
.gv-whatsapp__title { font-size: clamp(24px, 2.6vw, 32px); margin: 0 0 6px; }
.gv-whatsapp__text { font-size: 15px; color: var(--gv-charcoal); opacity: .8; margin: 0; }
.gv-whatsapp__btn { flex: 0 0 auto; }

/* ------------------------------- Map ---------------------------------- */
.gv-map {
	position: relative;
	border-radius: var(--gv-radius);
	overflow: hidden;
	border: 1px solid var(--gv-border);
	box-shadow: 0 14px 44px var(--gv-shadow);
	background: var(--gv-light-sage);
}
.gv-map::after { /* subtle brand frame */
	content: ""; position: absolute; inset: 0; pointer-events: none;
	box-shadow: inset 0 0 0 1px rgba(26,77,58,.06);
	border-radius: var(--gv-radius);
}
.gv-map iframe { display: block; width: 100%; height: clamp(320px, 46vw, 480px); border: 0; filter: grayscale(.2) contrast(1.02); }

/* ------------------------------ Responsive ---------------------------- */
@media (max-width: 900px) {
	.gv-contact-cards { grid-template-columns: repeat(2, 1fr); }
	.gv-whatsapp { flex-direction: column; text-align: center; align-items: center; }
	.gv-whatsapp__btn { width: 100%; }
}
@media (max-width: 620px) {
	.gv-contact-cards { grid-template-columns: 1fr; }
	.gv-form { grid-template-columns: 1fr; }
}
