/**
 * OMIVEXIS contact page — matches dradamsaesthetics.us contact layout
 */

:root {
	--omivexis-contact-accent: #b54883;
	--omivexis-contact-text: #2c2d33;
	--omivexis-contact-muted: #757575;
	--omivexis-contact-border: #e2e2e2;
}

/* Hide default theme chrome on contact page */
body.omivexis-contact-page #masthead,
body.omivexis-contact-page .bhfb-header,
body.omivexis-contact-page .bhfb-mobile,
body.omivexis-contact-page .botiga-mobile-header,
body.omivexis-contact-page .botiga-topbar,
body.omivexis-contact-page .site-header,
body.omivexis-contact-page .footer-widgets,
body.omivexis-contact-page .botiga-credits,
body.omivexis-contact-page .site-footer:not(.omivexis-home-footer),
body.omivexis-contact-page .entry-header,
body.omivexis-contact-page .page-header,
body.omivexis-contact-page .elementor-location-header {
	display: none !important;
}

body.omivexis-contact-page {
	background: #ffffff !important;
	font-family: "Source Sans Pro", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

body.omivexis-contact-page .content-wrapper,
body.omivexis-contact-page .omivexis-contact-wrapper {
	max-width: none !important;
	width: 100% !important;
	padding: 0 !important;
	margin: 0 !important;
}

body.omivexis-contact-page .site-main.omivexis-contact-main {
	width: 100% !important;
	max-width: none !important;
	padding: 0 !important;
	margin: 0 !important;
}

/* Pink title banner */
.omivexis-contact-banner {
	background: var(--omivexis-contact-accent) !important;
	padding: 32px 0;
	margin-bottom: 36px;
}

.omivexis-contact-banner__title {
	margin: 0;
	text-align: center;
	color: #ffffff !important;
	font-family: "Source Sans Pro", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
	font-size: clamp(2rem, 3vw, 2.75rem);
	font-weight: 600;
	letter-spacing: 0.02em;
}

/* Two-column layout */
.omivexis-contact__grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 48px 56px;
	align-items: start;
	margin-bottom: 48px;
}

.omivexis-contact__eyebrow {
	margin: 0 0 6px;
	font-size: 0.875rem;
	color: var(--omivexis-contact-muted);
}

.omivexis-contact__heading {
	margin: 0 0 24px;
	font-family: "Playfair Display", Georgia, serif;
	font-size: clamp(1.5rem, 2.2vw, 2rem);
	font-weight: 600;
	color: var(--omivexis-contact-text);
	line-height: 1.25;
}

/* FAQ accordion */
.omivexis-faq {
	border-top: 1px solid var(--omivexis-contact-border);
}

.omivexis-faq__item {
	border-bottom: 1px solid var(--omivexis-contact-border);
}

.omivexis-faq__question {
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
	gap: 16px;
	width: 100%;
	padding: 18px 0;
	margin: 0;
	border: 0;
	background: transparent;
	text-align: left;
	font-family: inherit;
	font-size: 0.8125rem;
	font-weight: 700;
	letter-spacing: 0.04em;
	text-transform: uppercase;
	color: var(--omivexis-contact-text);
	cursor: pointer;
	line-height: 1.45;
}

.omivexis-faq__question:hover {
	color: var(--omivexis-contact-accent);
}

.omivexis-faq__icon {
	flex-shrink: 0;
	width: 10px;
	height: 10px;
	margin-top: 4px;
	border-right: 2px solid currentColor;
	border-bottom: 2px solid currentColor;
	transform: rotate(45deg);
	transition: transform 0.2s ease;
}

.omivexis-faq__item.is-open .omivexis-faq__icon {
	transform: rotate(-135deg);
	margin-top: 8px;
}

.omivexis-faq__answer {
	display: none;
	padding: 0 0 18px;
}

.omivexis-faq__item.is-open .omivexis-faq__answer {
	display: block;
}

.omivexis-faq__answer p {
	margin: 0;
	font-size: 0.9375rem;
	line-height: 1.65;
	color: var(--omivexis-contact-muted);
}

/* Contact form */
.omivexis-contact-notice {
	padding: 12px 16px;
	margin-bottom: 20px;
	border-radius: 4px;
	font-size: 0.9375rem;
}

.omivexis-contact-notice--success {
	background: #e8f5e9;
	color: #2e7d32;
}

.omivexis-contact-notice--error {
	background: #fdecea;
	color: #c62828;
}

.omivexis-contact-form__row {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 16px;
}

.omivexis-contact-form__field {
	margin: 0 0 16px;
}

.omivexis-contact-form__field label {
	display: block;
	margin-bottom: 6px;
	font-size: 0.875rem;
	font-weight: 600;
	color: var(--omivexis-contact-text);
}

.omivexis-contact-form__field input,
.omivexis-contact-form__field textarea {
	width: 100%;
	padding: 12px 14px;
	border: 1px solid var(--omivexis-contact-border);
	border-radius: 4px;
	font-family: inherit;
	font-size: 0.9375rem;
	color: var(--omivexis-contact-text);
	background: #ffffff;
	box-sizing: border-box;
}

.omivexis-contact-form__field input:focus,
.omivexis-contact-form__field textarea:focus {
	outline: none;
	border-color: var(--omivexis-contact-accent);
	box-shadow: 0 0 0 2px rgba(181, 72, 131, 0.15);
}

.omivexis-contact-form__field textarea {
	resize: vertical;
	min-height: 140px;
}

.omivexis-contact-form__submit {
	margin-top: 8px;
	padding: 14px 32px;
	border: 0;
	border-radius: 4px;
	background: var(--omivexis-contact-accent);
	color: #ffffff;
	font-family: inherit;
	font-size: 0.9375rem;
	font-weight: 600;
	cursor: pointer;
	transition: background 0.2s ease;
}

.omivexis-contact-form__submit:hover {
	background: #9a3a6f;
}

.omivexis-recaptcha {
	margin-bottom: 16px;
}

/* Info cards row */
.omivexis-contact-cards {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 20px;
	margin-bottom: 48px;
}

.omivexis-contact-card {
	padding: 28px 20px;
	background: #ffffff;
	border-radius: 8px;
	box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
	text-align: center;
}

.omivexis-contact-card__icon {
	width: 48px;
	height: 48px;
	margin: 0 auto 16px;
	border-radius: 50%;
	background: rgba(181, 72, 131, 0.12);
	position: relative;
}

.omivexis-contact-card__icon::after {
	content: "";
	position: absolute;
	inset: 0;
	margin: auto;
	width: 22px;
	height: 22px;
	background-color: var(--omivexis-contact-accent);
	mask-size: contain;
	mask-repeat: no-repeat;
	mask-position: center;
	-webkit-mask-size: contain;
	-webkit-mask-repeat: no-repeat;
	-webkit-mask-position: center;
}

.omivexis-contact-card__icon--address::after {
	mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2'%3E%3Cpath d='M22 2L11 13M22 2l-7 20-4-9-9-4 20-7z'/%3E%3C/svg%3E");
	-webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2'%3E%3Cpath d='M22 2L11 13M22 2l-7 20-4-9-9-4 20-7z'/%3E%3C/svg%3E");
}

.omivexis-contact-card__icon--phone::after {
	mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2'%3E%3Cpath d='M22 16.92v3a2 2 0 01-2.18 2 19.79 19.79 0 01-8.63-3.07 19.5 19.5 0 01-6-6 19.79 19.79 0 01-3.07-8.67A2 2 0 014.11 2h3a2 2 0 012 1.72c.127.96.361 1.903.7 2.81a2 2 0 01-.45 2.11L8.09 9.91a16 16 0 006 6l1.27-1.27a2 2 0 012.11-.45c.907.339 1.85.573 2.81.7A2 2 0 0122 16.92z'/%3E%3C/svg%3E");
	-webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2'%3E%3Cpath d='M22 16.92v3a2 2 0 01-2.18 2 19.79 19.79 0 01-8.63-3.07 19.5 19.5 0 01-6-6 19.79 19.79 0 01-3.07-8.67A2 2 0 014.11 2h3a2 2 0 012 1.72c.127.96.361 1.903.7 2.81a2 2 0 01-.45 2.11L8.09 9.91a16 16 0 006 6l1.27-1.27a2 2 0 012.11-.45c.907.339 1.85.573 2.81.7A2 2 0 0122 16.92z'/%3E%3C/svg%3E");
}

.omivexis-contact-card__icon--hours::after {
	mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2'%3E%3Crect x='2' y='7' width='20' height='14' rx='2'/%3E%3Cpath d='M16 7V5a2 2 0 00-2-2h-4a2 2 0 00-2 2v2'/%3E%3C/svg%3E");
	-webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2'%3E%3Crect x='2' y='7' width='20' height='14' rx='2'/%3E%3Cpath d='M16 7V5a2 2 0 00-2-2h-4a2 2 0 00-2 2v2'/%3E%3C/svg%3E");
}

.omivexis-contact-card__icon--email::after {
	mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2'%3E%3Cpath d='M4 4h16c1.1 0 2 .9 2 2v12c0 1.1-.9 2-2 2H4c-1.1 0-2-.9-2-2V6c0-1.1.9-2 2-2z'/%3E%3Cpolyline points='22,6 12,13 2,6'/%3E%3C/svg%3E");
	-webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2'%3E%3Cpath d='M4 4h16c1.1 0 2 .9 2 2v12c0 1.1-.9 2-2 2H4c-1.1 0-2-.9-2-2V6c0-1.1.9-2 2-2z'/%3E%3Cpolyline points='22,6 12,13 2,6'/%3E%3C/svg%3E");
}

.omivexis-contact-card__title {
	margin: 0 0 10px;
	font-size: 1rem;
	font-weight: 700;
	color: var(--omivexis-contact-text);
}

.omivexis-contact-card__line {
	margin: 0 0 4px;
	font-size: 0.875rem;
	line-height: 1.5;
	color: var(--omivexis-contact-muted);
}

/* Social follow banner */
.omivexis-contact-social {
	background: var(--omivexis-contact-accent);
	padding: 36px 0;
	margin-bottom: 0;
}

.omivexis-contact-social__title {
	margin: 0 0 20px;
	text-align: center;
	color: #ffffff;
	font-size: 1.125rem;
	font-weight: 600;
}

.omivexis-contact-social__links {
	display: flex;
	justify-content: center;
	gap: 16px;
}

.omivexis-contact-social__link {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 44px;
	height: 44px;
	border-radius: 50%;
	background: #ffffff;
	color: var(--omivexis-contact-text);
	font-size: 0.875rem;
	font-weight: 700;
	text-decoration: none;
	transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.omivexis-contact-social__link:hover {
	transform: translateY(-2px);
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
	color: var(--omivexis-contact-accent);
}

/* Responsive */
@media (max-width: 991px) {
	.omivexis-contact__grid {
		grid-template-columns: 1fr;
		gap: 40px;
	}

	.omivexis-contact-cards {
		grid-template-columns: repeat(2, 1fr);
	}
}

@media (max-width: 600px) {
	.omivexis-contact-form__row {
		grid-template-columns: 1fr;
	}

	.omivexis-contact-cards {
		grid-template-columns: 1fr;
	}

	.omivexis-contact-banner {
		padding: 24px 0;
	}
}
