/* ==========================================================================
   Contact Us Light page
   ========================================================================== */

body.mf-page-contact-light {
	background: #fff;
	color: #030303;
	--mf-container-max: 1343px;
	--mf-container-pad: 15px;
}

body.mf-page-contact-light .mf-container {
	max-width: var(--mf-container-max);
	margin-inline: auto;
	padding-inline: var(--mf-container-pad);
	width: 100%;
}

/* Hero */
.mf-ct-hero {
	padding: clamp(140px, 16vw, 220px) 0 clamp(48px, 6vw, 80px);
	background: #fff;
	overflow: hidden;
}

.mf-ct-hero__grid {
	display: grid;
	grid-template-columns: 1.05fr 0.95fr;
	gap: 40px 48px;
	align-items: end;
}

.mf-ct-hero__title-wrap {
	position: relative;
	display: inline-block;
	max-width: 100%;
}

.mf-ct-hero__title {
	font-family: var(--mf-font-heading);
	font-size: clamp(40px, 5.2vw, 70px);
	font-weight: 500;
	line-height: 1.2;
	letter-spacing: -0.02em;
	color: #030303;
	margin: 0;
}

.mf-ct-hero__scribble {
	position: absolute;
	right: -36px;
	bottom: -28px;
	animation: mfshake 3s ease-in-out infinite;
}

.mf-ct-hero__lead {
	font-family: var(--mf-font-heading);
	font-size: clamp(16px, 1.6vw, 22px);
	font-weight: 500;
	line-height: 1.55;
	color: #525252;
	margin: 0;
	max-width: 520px;
}

/* Map + form */
.mf-ct-map-form {
	padding: 0 0 clamp(70px, 8vw, 110px);
	background: #fff;
}

.mf-ct-map-form__grid {
	display: grid;
	grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
	gap: 0;
	border-radius: 16px;
	overflow: hidden;
	background: #f3f1f2;
}

.mf-ct-map-form__map-frame {
	position: relative;
	min-height: clamp(420px, 50vw, 640px);
	height: 100%;
	background: #e8e8e8;
}

.mf-ct-map-form__map-frame iframe {
	width: 100%;
	height: 100%;
	min-height: inherit;
	border: 0;
	display: block;
}

.mf-ct-map-form__map-placeholder {
	position: absolute;
	inset: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	background: #ececec;
}

.mf-ct-map-form__map-loader {
	width: 36px;
	height: 36px;
	border: 2px solid rgba(3, 3, 3, 0.12);
	border-top-color: #030303;
	border-radius: 50%;
	animation: mf-ct-spin 0.8s linear infinite;
}

.mf-ct-map-form__form-wrap {
	padding: clamp(32px, 4vw, 56px) clamp(28px, 4vw, 48px);
	background: #fff;
}

.mf-ct-map-form__title {
	font-family: var(--mf-font-heading);
	font-size: clamp(28px, 3vw, 36px);
	font-weight: 500;
	line-height: 1.2;
	color: #030303;
	margin: 0 0 28px;
}

/* Form */
.mf-ct-form__row {
	display: grid;
	gap: 20px;
	margin-bottom: 20px;
}

.mf-ct-form__row--2 {
	grid-template-columns: 1fr 1fr;
}

.mf-ct-field label {
	display: block;
	font-size: 18px;
	font-weight: 400;
	margin-bottom: 10px;
	color: #030303;
}

.mf-ct-required {
	color: #030303;
}

.mf-ct-field input,
.mf-ct-field textarea {
	width: 100%;
	padding: 14px 0;
	border: 0;
	border-bottom: 1px solid rgba(3, 3, 3, 0.15);
	background: transparent;
	color: #030303;
	font-family: inherit;
	font-size: 16px;
	transition: border-color 0.25s ease;
}

.mf-ct-field input:focus,
.mf-ct-field textarea:focus {
	outline: none;
	border-bottom-color: #030303;
}

.mf-ct-field textarea {
	resize: vertical;
	min-height: 120px;
}

.mf-ct-field--checkbox {
	display: grid;
	grid-template-columns: auto 1fr;
	gap: 10px 12px;
	align-items: start;
	margin: 8px 0 24px;
}

.mf-ct-field--checkbox input {
	width: 18px;
	height: 18px;
	margin-top: 3px;
	accent-color: #030303;
}

.mf-ct-field--checkbox label {
	margin: 0;
	font-size: 14px;
	line-height: 1.5;
	color: #525252;
}

.mf-ct-field--checkbox label a {
	color: #030303;
}

.mf-ct-field__error {
	display: block;
	font-size: 12px;
	color: #d93025;
	margin-top: 6px;
}

.mf-ct-field.is-error input,
.mf-ct-field.is-error textarea {
	border-bottom-color: #d93025;
}

.mf-ct-form__status {
	padding: 14px 18px;
	border-radius: 12px;
	margin-bottom: 20px;
	font-size: 14px;
}

.mf-ct-form__status.is-success {
	background: rgba(252, 198, 16, 0.2);
	border: 1px solid rgba(252, 198, 16, 0.5);
	color: #030303;
}

.mf-ct-form__status.is-error {
	background: rgba(217, 48, 37, 0.08);
	border: 1px solid rgba(217, 48, 37, 0.25);
	color: #d93025;
}

.mf-ct-form__submit {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
	width: 100%;
	padding: 18px 28px;
	border: 0;
	border-radius: 999px;
	background: #030303;
	color: #fff;
	font-family: var(--mf-font-heading);
	font-size: 15px;
	font-weight: 500;
	text-transform: uppercase;
	letter-spacing: 0.02em;
	cursor: pointer;
	transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.mf-ct-form__submit:hover,
.mf-ct-form__submit:focus-visible {
	transform: translateY(-1px);
	box-shadow: 0 12px 32px rgba(3, 3, 3, 0.18);
}

.mf-ct-form__submit.is-loading {
	pointer-events: none;
	opacity: 0.7;
}

/* Studios intro */
.mf-ct-studios-intro {
	padding: 0 0 clamp(40px, 5vw, 64px);
	background: #fff;
}

.mf-ct-studios-intro__box {
	padding: clamp(36px, 5vw, 56px) clamp(28px, 4vw, 48px);
	background: #f3f1f2;
	border-radius: 16px;
	text-align: center;
}

.mf-ct-studios-intro__title {
	font-family: var(--mf-font-heading);
	font-size: clamp(24px, 3vw, 40px);
	font-weight: 500;
	line-height: 1.35;
	color: #030303;
	margin: 0;
	max-width: 900px;
	margin-inline: auto;
}

/* Studios */
.mf-ct-studios {
	padding: 0 0 clamp(90px, 10vw, 140px);
	background: #fff;
}

.mf-ct-studios__grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 24px;
}

.mf-ct-studio {
	text-align: center;
}

.mf-ct-studio__thumb {
	margin-bottom: 28px;
	overflow: hidden;
	border-radius: 12px;
	line-height: 0;
}

.mf-ct-studio__thumb img {
	width: 100%;
	height: auto;
	display: block;
	object-fit: cover;
}

.mf-ct-studio__city {
	font-family: var(--mf-font-heading);
	font-size: clamp(22px, 2.2vw, 28px);
	font-weight: 500;
	color: #030303;
	margin: 0 0 14px;
}

.mf-ct-studio__links {
	display: flex;
	flex-direction: column;
	gap: 6px;
	margin-bottom: 22px;
}

.mf-ct-studio__links a {
	font-size: 16px;
	color: #525252;
	text-decoration: none;
}

.mf-ct-studio__links a:hover,
.mf-ct-studio__links a:focus-visible {
	color: #030303;
}

.mf-ct-studio__btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
	width: 100%;
	max-width: 320px;
	padding: 16px 24px;
	border-radius: 999px;
	background: var(--mf-accent, #fcc610);
	color: #030303;
	font-family: var(--mf-font-heading);
	font-size: 15px;
	font-weight: 500;
	text-transform: uppercase;
	letter-spacing: 0.02em;
	text-decoration: none;
	transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.mf-ct-studio__btn:hover,
.mf-ct-studio__btn:focus-visible {
	transform: translateY(-1px);
	box-shadow: 0 10px 28px rgba(252, 198, 16, 0.35);
}

@keyframes mf-ct-spin {
	to {
		transform: rotate(360deg);
	}
}

/* Responsive */
@media (max-width: 991px) {
	.mf-ct-hero__grid,
	.mf-ct-map-form__grid,
	.mf-ct-studios__grid {
		grid-template-columns: 1fr;
	}

	.mf-ct-hero__lead br {
		display: none;
	}

	.mf-ct-hero__scribble {
		display: none;
	}

	.mf-ct-map-form__map-frame {
		min-height: 320px;
	}
}

@media (max-width: 640px) {
	.mf-ct-form__row--2 {
		grid-template-columns: 1fr;
	}
}

/* ==========================================================================
   Contact Us Dark overrides
   ========================================================================== */

body.mf-page-contact {
	background: #030303;
	color: #fff;
	/* Match Aleric Elementor kit boxed container */
	--mf-container-max: 1343px;
	--mf-container-pad: 15px;
}

body.mf-page-contact .mf-container {
	max-width: var(--mf-container-max);
	margin-inline: auto;
	padding-inline: var(--mf-container-pad);
	width: 100%;
}

/* Hero */
body.mf-page-contact .mf-ct-hero {
	position: relative;
	padding: clamp(140px, 18vw, 250px) 0 clamp(60px, 8vw, 100px);
	overflow: hidden;
	background: #030303;
}

body.mf-page-contact .mf-ct-hero__bg {
	position: absolute;
	inset: 0;
	pointer-events: none;
	overflow: hidden;
}

body.mf-page-contact .mf-ct-hero__orb {
	position: absolute;
	border-radius: 50%;
	filter: blur(80px);
	opacity: 0.45;
	animation: mf-ct-float 12s ease-in-out infinite;
}

body.mf-page-contact .mf-ct-hero__orb--1 {
	width: clamp(200px, 30vw, 420px);
	height: clamp(200px, 30vw, 420px);
	top: -10%;
	left: -5%;
	background: radial-gradient(circle, rgba(125, 93, 255, 0.55) 0%, transparent 70%);
}

body.mf-page-contact .mf-ct-hero__orb--2 {
	width: clamp(180px, 25vw, 360px);
	height: clamp(180px, 25vw, 360px);
	top: 20%;
	right: -8%;
	background: radial-gradient(circle, rgba(252, 198, 16, 0.35) 0%, transparent 70%);
	animation-delay: -4s;
}

body.mf-page-contact .mf-ct-hero__orb--3 {
	width: clamp(120px, 18vw, 260px);
	height: clamp(120px, 18vw, 260px);
	bottom: 0;
	left: 35%;
	background: radial-gradient(circle, rgba(125, 93, 255, 0.4) 0%, transparent 70%);
	animation-delay: -8s;
}

body.mf-page-contact .mf-ct-hero__grid {
	position: absolute;
	inset: 0;
	background-image:
		linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
		linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
	background-size: 48px 48px;
	mask-image: radial-gradient(ellipse 80% 70% at 50% 40%, #000 20%, transparent 75%);
}

body.mf-page-contact .mf-ct-hero__inner {
	position: relative;
	z-index: 1;
	text-align: center;
	max-width: 900px;
	margin: 0 auto;
}

body.mf-page-contact .mf-ct-breadcrumb__list {
	display: inline-flex;
	align-items: center;
	gap: 12px;
	list-style: none;
	margin: 0 0 28px;
	padding: 0;
	font-size: 14px;
	letter-spacing: 0.04em;
	text-transform: uppercase;
}

body.mf-page-contact .mf-ct-breadcrumb__list a {
	color: rgba(255, 255, 255, 0.65);
	text-decoration: none;
	transition: color 0.25s ease;
}

body.mf-page-contact .mf-ct-breadcrumb__list a:hover,
body.mf-page-contact .mf-ct-breadcrumb__list a:focus-visible {
	color: var(--mf-accent);
}

body.mf-page-contact .mf-ct-breadcrumb__sep {
	color: rgba(255, 255, 255, 0.35);
}

body.mf-page-contact .mf-ct-breadcrumb__item--current {
	color: #fff;
}

body.mf-page-contact .mf-ct-hero__title {
	font-family: var(--mf-font-heading);
	font-size: clamp(42px, 7vw, 96px);
	font-weight: 500;
	line-height: 1.05;
	margin: 0 0 20px;
	letter-spacing: -0.02em;
	color: #fff;
}

body.mf-page-contact .mf-ct-hero__subtitle {
	font-size: clamp(16px, 2vw, 22px);
	color: rgba(255, 255, 255, 0.72);
	margin: 0;
	line-height: 1.5;
}

@keyframes mf-ct-float {
	0%,
	100% {
		transform: translateY(0);
	}
	50% {
		transform: translateY(-14px);
	}
}

/* Section titles */
body.mf-page-contact .mf-ct-section-title,
body.mf-page-contact .mf-ct-cta__title,
body.mf-page-contact .mf-ct-info__title {
	font-family: var(--mf-font-heading);
	font-size: clamp(28px, 3.5vw, 48px);
	font-weight: 500;
	margin: 0 0 clamp(40px, 5vw, 64px);
	text-align: center;
	line-height: 1.15;
	color: #fff;
}

/* Info cards */
body.mf-page-contact .mf-ct-info {
	padding: clamp(60px, 8vw, 100px) 0;
	background: #030303;
}

body.mf-page-contact .mf-ct-info__grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 24px;
}

body.mf-page-contact .mf-ct-card {
	position: relative;
	display: block;
	padding: 32px 28px;
	border-radius: 20px;
	background: rgba(255, 255, 255, 0.04);
	border: 1px solid rgba(255, 255, 255, 0.08);
	backdrop-filter: blur(16px);
	text-decoration: none;
	color: inherit;
	overflow: hidden;
	transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1), border-color 0.4s ease, box-shadow 0.4s ease;
}

body.mf-page-contact a.mf-ct-card:hover,
body.mf-page-contact a.mf-ct-card:focus-visible {
	transform: translateY(-6px);
	border-color: rgba(252, 198, 16, 0.35);
	box-shadow: 0 20px 60px rgba(125, 93, 255, 0.15);
}

body.mf-page-contact .mf-ct-card__glow {
	position: absolute;
	inset: -1px;
	border-radius: inherit;
	background: radial-gradient(circle at 30% 20%, rgba(252, 198, 16, 0.12), transparent 55%);
	opacity: 0;
	transition: opacity 0.4s ease;
	pointer-events: none;
}

body.mf-page-contact .mf-ct-card:hover .mf-ct-card__glow,
body.mf-page-contact .mf-ct-card:focus-visible .mf-ct-card__glow {
	opacity: 1;
}

body.mf-page-contact .mf-ct-card__icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 56px;
	height: 56px;
	border-radius: 14px;
	background: rgba(125, 93, 255, 0.15);
	color: var(--mf-accent);
	margin-bottom: 20px;
}

body.mf-page-contact .mf-ct-card__title {
	font-family: var(--mf-font-heading);
	font-size: 18px;
	font-weight: 500;
	margin: 0 0 8px;
	color: #fff;
}

body.mf-page-contact .mf-ct-card__value {
	font-size: 16px;
	font-weight: 500;
	margin: 0 0 10px;
	color: #fff;
}

body.mf-page-contact .mf-ct-card__desc {
	font-size: 14px;
	line-height: 1.6;
	margin: 0;
	color: rgba(255, 255, 255, 0.6);
}

/* Form */
body.mf-page-contact .mf-ct-form-section {
	padding: clamp(60px, 8vw, 100px) 0;
	background: #030303;
}

body.mf-page-contact .mf-ct-form-section__grid {
	display: grid;
	grid-template-columns: 1fr 1.15fr;
	gap: clamp(32px, 5vw, 72px);
	align-items: start;
}

body.mf-page-contact .mf-ct-form-section__title {
	font-family: var(--mf-font-heading);
	font-size: clamp(28px, 3.2vw, 44px);
	font-weight: 500;
	margin: 0 0 20px;
	line-height: 1.15;
	color: #fff;
}

body.mf-page-contact .mf-ct-form-section__desc {
	font-size: 16px;
	line-height: 1.7;
	color: rgba(255, 255, 255, 0.68);
	margin: 0 0 16px;
}

body.mf-page-contact .mf-ct-form-section__points {
	list-style: none;
	margin: 8px 0 28px;
	padding: 0;
	display: flex;
	flex-direction: column;
	gap: 12px;
}

body.mf-page-contact .mf-ct-form-section__points li {
	position: relative;
	padding-left: 22px;
	font-size: 15px;
	line-height: 1.55;
	color: rgba(255, 255, 255, 0.72);
}

body.mf-page-contact .mf-ct-form-section__points li::before {
	content: "";
	position: absolute;
	left: 0;
	top: 0.55em;
	width: 8px;
	height: 8px;
	border-radius: 50%;
	background: var(--mf-accent);
}

body.mf-page-contact .mf-ct-form-section__contacts {
	display: flex;
	flex-direction: column;
	gap: 16px;
}

body.mf-page-contact .mf-ct-form-section__contact {
	display: flex;
	flex-direction: column;
	gap: 4px;
	text-decoration: none;
	color: inherit;
	transition: opacity 0.25s ease;
}

body.mf-page-contact .mf-ct-form-section__contact:hover {
	opacity: 0.85;
}

body.mf-page-contact .mf-ct-form-section__contact-label {
	font-size: 13px;
	font-weight: 500;
	letter-spacing: 0.04em;
	text-transform: uppercase;
	color: rgba(255, 255, 255, 0.45);
}

body.mf-page-contact .mf-ct-form-section__contact-value {
	font-family: var(--mf-font-heading);
	font-size: 18px;
	font-weight: 500;
	line-height: 1.35;
	color: #fff;
}

body.mf-page-contact .mf-ct-form-wrap {
	padding: clamp(28px, 4vw, 40px);
	border-radius: 24px;
	background: rgba(255, 255, 255, 0.03);
	border: 1px solid rgba(255, 255, 255, 0.08);
	backdrop-filter: blur(12px);
}

body.mf-page-contact .mf-ct-form__row {
	display: grid;
	gap: 20px;
	margin-bottom: 20px;
}

body.mf-page-contact .mf-ct-form__row--2 {
	grid-template-columns: 1fr 1fr;
}

body.mf-page-contact .mf-ct-field label {
	display: block;
	font-size: 14px;
	font-weight: 500;
	margin-bottom: 8px;
	color: rgba(255, 255, 255, 0.85);
}

body.mf-page-contact .mf-ct-required {
	color: var(--mf-accent);
}

body.mf-page-contact .mf-ct-field input,
body.mf-page-contact .mf-ct-field select,
body.mf-page-contact .mf-ct-field textarea {
	width: 100%;
	padding: 14px 18px;
	border-radius: 12px;
	border: 1px solid rgba(255, 255, 255, 0.12);
	background: rgba(0, 0, 0, 0.35);
	color: #fff;
	font-family: inherit;
	font-size: 15px;
	transition: border-color 0.25s ease, box-shadow 0.25s ease;
}

body.mf-page-contact .mf-ct-field input::placeholder,
body.mf-page-contact .mf-ct-field textarea::placeholder {
	color: rgba(255, 255, 255, 0.35);
}

body.mf-page-contact .mf-ct-field input:focus,
body.mf-page-contact .mf-ct-field select:focus,
body.mf-page-contact .mf-ct-field textarea:focus {
	outline: none;
	border-color: var(--mf-accent);
	box-shadow: 0 0 0 3px rgba(252, 198, 16, 0.15);
}

body.mf-page-contact .mf-ct-field select {
	appearance: none;
	background-image: url("data:image/svg+xml,%3Csvg width='12' height='8' viewBox='0 0 12 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1.5L6 6.5L11 1.5' stroke='%23fcc610' stroke-width='1.5' stroke-linecap='round'/%3E%3C/svg%3E");
	background-repeat: no-repeat;
	background-position: right 16px center;
	padding-right: 40px;
}

body.mf-page-contact .mf-ct-field select option {
	background: #111;
	color: #fff;
}

body.mf-page-contact .mf-ct-field textarea {
	resize: vertical;
	min-height: 140px;
}

body.mf-page-contact .mf-ct-field--checkbox {
	display: grid;
	grid-template-columns: auto 1fr;
	gap: 12px;
	align-items: start;
	margin-bottom: 24px;
}

body.mf-page-contact .mf-ct-field--checkbox input {
	width: 18px;
	height: 18px;
	margin-top: 3px;
	accent-color: var(--mf-accent);
}

body.mf-page-contact .mf-ct-field--checkbox label {
	margin: 0;
	font-size: 13px;
	line-height: 1.5;
	color: rgba(255, 255, 255, 0.7);
}

body.mf-page-contact .mf-ct-field--checkbox label a {
	color: var(--mf-accent);
}

body.mf-page-contact .mf-ct-field__error {
	display: block;
	font-size: 12px;
	color: #ff6b6b;
	margin-top: 6px;
	min-height: 0;
}

body.mf-page-contact .mf-ct-field.is-error input,
body.mf-page-contact .mf-ct-field.is-error select,
body.mf-page-contact .mf-ct-field.is-error textarea {
	border-color: #ff6b6b;
}

body.mf-page-contact .mf-ct-form__status {
	padding: 14px 18px;
	border-radius: 12px;
	margin-bottom: 20px;
	font-size: 14px;
}

body.mf-page-contact .mf-ct-form__status.is-success {
	background: rgba(252, 198, 16, 0.12);
	border: 1px solid rgba(252, 198, 16, 0.35);
	color: var(--mf-accent);
}

body.mf-page-contact .mf-ct-form__status.is-error {
	background: rgba(255, 107, 107, 0.1);
	border: 1px solid rgba(255, 107, 107, 0.35);
	color: #ff8a8a;
}

/* Map */
body.mf-page-contact .mf-ct-map {
	padding: 0 0 clamp(70px, 10vw, 130px);
	background: #030303;
}

body.mf-page-contact .mf-ct-map__frame {
	position: relative;
	border-radius: 16px;
	overflow: hidden;
	background: #101010;
	min-height: clamp(420px, 50vw, 640px);
}

body.mf-page-contact .mf-ct-map__placeholder {
	position: absolute;
	inset: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	background: rgba(255, 255, 255, 0.02);
}

body.mf-page-contact .mf-ct-map__loader {
	width: 44px;
	height: 44px;
	border-radius: 50%;
	border: 2px solid rgba(255, 255, 255, 0.14);
	border-top-color: var(--mf-accent);
	animation: mf-ct-spin 0.8s linear infinite;
}

@keyframes mf-ct-spin {
	to {
		transform: rotate(360deg);
	}
}

/* FAQ */
body.mf-page-contact .mf-ct-faq {
	padding: clamp(70px, 9vw, 120px) 0;
	background: #030303;
}

body.mf-page-contact .mf-ct-faq__inner {
	max-width: 980px;
	margin: 0 auto;
}

body.mf-page-contact .mf-faq__list {
	margin-top: 30px;
}

body.mf-page-contact .mf-faq__item {
	border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

body.mf-page-contact .mf-faq__btn {
	width: 100%;
	border: 0;
	background: transparent;
	color: #fff;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 16px;
	padding: 20px 0;
	cursor: pointer;
	font-family: var(--mf-font-heading);
	font-size: 16px;
	font-weight: 500;
}

body.mf-page-contact .mf-faq__icon {
	width: 14px;
	height: 14px;
	border-radius: 4px;
	background: rgba(255, 255, 255, 0.1);
	position: relative;
	flex-shrink: 0;
}

body.mf-page-contact .mf-faq__panel {
	max-height: 0;
	overflow: hidden;
	transition: max-height 0.4s ease;
}

body.mf-page-contact .mf-faq__item.is-active .mf-faq__panel {
	max-height: 360px;
	padding-bottom: 20px;
}

body.mf-page-contact .mf-faq__panel p {
	margin: 0;
	color: rgba(255, 255, 255, 0.68);
	line-height: 1.7;
}

/* CTA */
body.mf-page-contact .mf-ct-cta {
	position: relative;
	padding: clamp(70px, 9vw, 120px) 0;
	background: #030303;
	overflow: hidden;
}

body.mf-page-contact .mf-ct-cta__bg {
	position: absolute;
	inset: 0;
	background: radial-gradient(circle at 20% 20%, rgba(125, 93, 255, 0.25), transparent 55%),
		radial-gradient(circle at 80% 30%, rgba(252, 198, 16, 0.14), transparent 55%);
	pointer-events: none;
}

body.mf-page-contact .mf-ct-cta__shape {
	position: absolute;
	width: 420px;
	height: 420px;
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.03);
	filter: blur(0px);
	opacity: 0.7;
}

body.mf-page-contact .mf-ct-cta__shape--1 {
	top: -170px;
	left: -120px;
	background: radial-gradient(circle, rgba(125, 93, 255, 0.45), transparent 65%);
}

body.mf-page-contact .mf-ct-cta__shape--2 {
	top: -140px;
	right: -140px;
	background: radial-gradient(circle, rgba(252, 198, 16, 0.25), transparent 65%);
}

body.mf-page-contact .mf-ct-cta__shape--3 {
	bottom: -210px;
	left: 40%;
	background: radial-gradient(circle, rgba(125, 93, 255, 0.3), transparent 65%);
}

body.mf-page-contact .mf-ct-cta__title,
body.mf-page-contact .mf-ct-cta__text {
	color: #fff;
}

body.mf-page-contact .mf-ct-cta__text {
	color: rgba(255, 255, 255, 0.72);
	line-height: 1.7;
	margin: 0 auto 30px;
	max-width: 720px;
	text-align: center;
}

/* Responsive */
@media (max-width: 991px) {
	body.mf-page-contact .mf-ct-info__grid {
		grid-template-columns: repeat(2, 1fr);
	}

	body.mf-page-contact .mf-ct-form-section__grid {
		grid-template-columns: 1fr;
	}

	body.mf-page-contact .mf-ct-breadcrumb__list {
		flex-wrap: wrap;
		justify-content: center;
	}
}

/* ==========================================================================
   Contact Dark Template â€” Light skin override
   Keep same layout/animation, only colors become light
   ========================================================================== */

body.mf-page-contact-dark,
body.mf-page-contact-dark .mf-ct-hero,
body.mf-page-contact-dark .mf-ct-info,
body.mf-page-contact-dark .mf-ct-form-section,
body.mf-page-contact-dark .mf-ct-map,
body.mf-page-contact-dark .mf-ct-faq,
body.mf-page-contact-dark .mf-ct-cta {
	background: #fff;
	color: #030303;
}

body.mf-page-contact-dark .mf-ct-hero__grid {
	background-image:
		linear-gradient(rgba(3, 3, 3, 0.04) 1px, transparent 1px),
		linear-gradient(90deg, rgba(3, 3, 3, 0.04) 1px, transparent 1px);
}

body.mf-page-contact-dark .mf-ct-breadcrumb__list a,
body.mf-page-contact-dark .mf-ct-breadcrumb__sep {
	color: rgba(3, 3, 3, 0.55);
}

body.mf-page-contact-dark .mf-ct-breadcrumb__item--current,
body.mf-page-contact-dark .mf-ct-hero__title,
body.mf-page-contact-dark .mf-ct-hero__subtitle,
body.mf-page-contact-dark .mf-ct-section-title,
body.mf-page-contact-dark .mf-ct-form-section__title,
body.mf-page-contact-dark .mf-faq__btn,
body.mf-page-contact-dark .mf-ct-cta__title,
body.mf-page-contact-dark .mf-ct-cta__text {
	color: #030303;
}

body.mf-page-contact-dark .mf-ct-form-section__desc,
body.mf-page-contact-dark .mf-ct-form-section__points li,
body.mf-page-contact-dark .mf-faq__panel p {
	color: #525252;
}

body.mf-page-contact-dark .mf-ct-form-section__contact-label {
	color: rgba(3, 3, 3, 0.45);
}

body.mf-page-contact-dark .mf-ct-form-section__contact-value {
	color: #030303;
}

body.mf-page-contact-dark .mf-ct-card {
	background: #fff;
	border: 1px solid rgba(3, 3, 3, 0.1);
	box-shadow: 0 16px 45px rgba(3, 3, 3, 0.06);
}

body.mf-page-contact-dark .mf-ct-card__title,
body.mf-page-contact-dark .mf-ct-card__value {
	color: #030303;
}

body.mf-page-contact-dark .mf-ct-card__desc {
	color: #525252;
}

body.mf-page-contact-dark .mf-ct-card__icon {
	background: rgba(125, 93, 255, 0.12);
	color: #7d5dff;
}

body.mf-page-contact-dark .mf-ct-form-wrap {
	background: #fff;
	border: 1px solid rgba(3, 3, 3, 0.12);
}

body.mf-page-contact-dark .mf-ct-field label {
	color: #030303;
}

body.mf-page-contact-dark .mf-ct-required {
	color: #7d5dff;
}

body.mf-page-contact-dark .mf-ct-field input,
body.mf-page-contact-dark .mf-ct-field select,
body.mf-page-contact-dark .mf-ct-field textarea {
	background: #fff;
	color: #030303;
	border: 1px solid rgba(3, 3, 3, 0.18);
}

body.mf-page-contact-dark .mf-ct-field input::placeholder,
body.mf-page-contact-dark .mf-ct-field textarea::placeholder {
	color: rgba(3, 3, 3, 0.45);
}

body.mf-page-contact-dark .mf-ct-field select option {
	background: #fff;
	color: #030303;
}

body.mf-page-contact-dark .mf-ct-field--checkbox label {
	color: #525252;
}

body.mf-page-contact-dark .mf-ct-field--checkbox label a {
	color: #030303;
}

body.mf-page-contact-dark .mf-ct-form__status.is-success {
	color: #030303;
}

body.mf-page-contact-dark .mf-ct-form__status.is-error {
	color: #d93025;
}

body.mf-page-contact-dark .mf-ct-map__frame {
	background: #f3f3f3;
}

body.mf-page-contact-dark .mf-ct-map__placeholder {
	background: #efefef;
}

body.mf-page-contact-dark .mf-ct-map__loader {
	border: 2px solid rgba(3, 3, 3, 0.16);
	border-top-color: #030303;
}

body.mf-page-contact-dark .mf-faq__item {
	border-bottom: 1px solid rgba(3, 3, 3, 0.1);
}

body.mf-page-contact-dark .mf-faq__icon {
	background: rgba(3, 3, 3, 0.08);
}

body.mf-page-contact-dark .mf-ct-cta__bg {
	background: radial-gradient(circle at 20% 20%, rgba(125, 93, 255, 0.2), transparent 55%),
		radial-gradient(circle at 80% 30%, rgba(252, 198, 16, 0.16), transparent 55%);
}


