/* ============================================================================
   CONTACT PAGE STYLES (page-contact.php)
   ============================================================================ */

/* Two-column contact grid (form + sidebar) */
.contact-grid {
	display: grid;
	grid-template-columns: 1.6fr 1fr;
	gap: 32px;
	margin-top: 20px;
}
@media (max-width: 900px) {
	.contact-grid { grid-template-columns: 1fr; }
}

.contact-form-card {
	background: #fff;
	border-radius: 14px;
	padding: 36px 32px;
	box-shadow: 0 2px 8px rgba(10,22,40,0.06);
	border: 1px solid #e5e7eb;
}
.contact-form-card h2 {
	font-size: 1.5rem;
	color: #0a1628;
	margin: 0 0 12px;
}
.contact-form-card__lead {
	color: #4a5568;
	margin: 0 0 24px;
	line-height: 1.6;
}

/* WPForms styling override */
.contact-form-card .wpforms-container { margin: 0; }
.contact-form-card .wpforms-field-label {
	font-weight: 600;
	color: #0a1628;
	font-size: 0.925rem;
	margin-bottom: 6px;
}
.contact-form-card input[type="text"],
.contact-form-card input[type="email"],
.contact-form-card input[type="tel"],
.contact-form-card input[type="url"],
.contact-form-card select,
.contact-form-card textarea {
	width: 100%;
	padding: 11px 14px;
	border: 1px solid #d1d5db;
	border-radius: 8px;
	font-size: 0.95rem;
	font-family: inherit;
	transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
.contact-form-card input:focus,
.contact-form-card select:focus,
.contact-form-card textarea:focus {
	outline: none;
	border-color: #ffb81c;
	box-shadow: 0 0 0 3px rgba(255, 184, 28, 0.15);
}
.contact-form-card .wpforms-submit {
	background: #ffb81c !important;
	color: #0a1628 !important;
	font-weight: 700 !important;
	padding: 14px 32px !important;
	border-radius: 8px !important;
	border: none !important;
	font-size: 1rem !important;
	cursor: pointer !important;
	transition: background 0.2s ease, transform 0.1s ease !important;
}
.contact-form-card .wpforms-submit:hover {
	background: #e8a410 !important;
	transform: translateY(-1px);
}

.contact-form-fallback {
	background: #f8fafc;
	padding: 24px;
	border-radius: 10px;
	border-left: 4px solid #ffb81c;
}
.contact-form-fallback p {
	margin: 0 0 12px;
	color: #4a5568;
	line-height: 1.6;
}
.contact-form-fallback p:last-child { margin-bottom: 0; }
.contact-form-fallback a { color: #0a1628; font-weight: 600; }

/* Sidebar */
.contact-sidebar-card,
.contact-sidebar-trust {
	background: #fff;
	border-radius: 14px;
	padding: 28px;
	border: 1px solid #e5e7eb;
	margin-bottom: 20px;
}
.contact-sidebar-card h3,
.contact-sidebar-trust h3 {
	font-size: 1.075rem;
	color: #0a1628;
	margin: 0 0 18px;
	padding-bottom: 12px;
	border-bottom: 2px solid #ffb81c;
}

.contact-method {
	display: flex;
	gap: 14px;
	padding: 12px 0;
	border-bottom: 1px solid #f1f5f9;
}
.contact-method:last-child { border-bottom: none; }
.contact-method__icon {
	flex-shrink: 0;
	width: 40px;
	height: 40px;
	background: rgba(255, 184, 28, 0.12);
	border-radius: 8px;
	display: flex;
	align-items: center;
	justify-content: center;
	color: #ffb81c;
}
.contact-method__label {
	font-size: 0.75rem;
	color: #6b7280;
	text-transform: uppercase;
	letter-spacing: 0.05em;
	margin-bottom: 2px;
}
.contact-method__value {
	color: #0a1628;
	font-weight: 600;
	font-size: 0.95rem;
	text-decoration: none;
	display: block;
}
.contact-method__value:hover { color: #ffb81c; }
.contact-method__note {
	font-size: 0.8rem;
	color: #6b7280;
	margin-top: 2px;
}

/* Trust list in sidebar */
.trust-list {
	list-style: none;
	padding: 0;
	margin: 0;
}
.trust-list li {
	display: flex;
	gap: 10px;
	padding: 8px 0;
	color: #4a5568;
	font-size: 0.875rem;
	line-height: 1.5;
}
.trust-list li svg { color: #16a34a; flex-shrink: 0; margin-top: 3px; }

/* What happens next timeline */
.next-steps-timeline {
	display: flex;
	flex-direction: column;
	gap: 24px;
	margin-top: 40px;
}
.next-step {
	display: flex;
	gap: 24px;
	align-items: flex-start;
	background: #fff;
	border-radius: 12px;
	padding: 28px;
	border: 1px solid #e5e7eb;
	transition: border-color 0.2s ease, transform 0.2s ease;
}
.next-step:hover { border-color: #ffb81c; transform: translateX(4px); }
.next-step__number {
	font-size: 1.5rem;
	font-weight: 800;
	color: #ffb81c;
	flex-shrink: 0;
	background: rgba(255, 184, 28, 0.1);
	width: 56px;
	height: 56px;
	border-radius: 12px;
	display: flex;
	align-items: center;
	justify-content: center;
}
.next-step__content h3 {
	font-size: 1.075rem;
	color: #0a1628;
	margin: 0 0 8px;
}
.next-step__content p {
	color: #4a5568;
	line-height: 1.65;
	margin: 0;
}

/* Contact methods grid */
.contact-methods-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
	gap: 22px;
	margin-top: 40px;
}
.contact-method-card {
	background: #fff;
	border-radius: 14px;
	padding: 32px 28px;
	border: 1px solid #e5e7eb;
	text-decoration: none;
	color: inherit;
	display: flex;
	flex-direction: column;
	transition: border-color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}
.contact-method-card:hover {
	border-color: #ffb81c;
	transform: translateY(-4px);
	box-shadow: 0 12px 28px rgba(10,22,40,0.08);
}
.contact-method-card__icon {
	width: 56px;
	height: 56px;
	background: rgba(255, 184, 28, 0.12);
	border-radius: 12px;
	display: flex;
	align-items: center;
	justify-content: center;
	color: #ffb81c;
	margin-bottom: 18px;
}
.contact-method-card h3 {
	font-size: 1.15rem;
	color: #0a1628;
	margin: 0 0 6px;
}
.contact-method-card__value {
	font-size: 1.075rem;
	color: #0a1628;
	font-weight: 700;
	margin: 0 0 14px;
}
.contact-method-card__detail {
	color: #4a5568;
	font-size: 0.875rem;
	line-height: 1.6;
	margin: 0 0 16px;
	flex-grow: 1;
}
.contact-method-card__cta {
	color: #ffb81c;
	font-weight: 600;
	font-size: 0.95rem;
}
.contact-method-card--info { cursor: default; }
.contact-method-card--info:hover { transform: none; }

/* Contact form trust indicators */
.form-trust-strip{list-style:none;margin:16px 0 20px;padding:0;display:grid;grid-template-columns:1fr 1fr;gap:8px 16px}
.form-trust-strip li{display:flex;align-items:center;gap:7px;font-size:.85rem;color:#475569;font-weight:500}
.form-trust-strip li svg{flex:0 0 auto;color:#16a34a}
@media(max-width:520px){.form-trust-strip{grid-template-columns:1fr}}
