/* Villa Forms for Elementor
 * All colors come from CSS vars set by Elementor style controls, with fallbacks.
 */
.vf {
	--vf-accent: #152449;
	--vf-text: #1a1a1a;
	--vf-border: #2b2b2b;
	--vf-col-gap: 8px;
	color: var(--vf-text);
	box-sizing: border-box;
}
.vf *,
.vf *::before,
.vf *::after { box-sizing: inherit; }

.vf-wrap {
	background: #f5f1ea;
	padding: 56px;
}

.vf-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	grid-template-rows: auto 1fr;
	grid-template-areas:
		"info forms"
		"contact forms";
	gap: 64px 64px;
	align-items: start;
}
.vf-contact-col { align-self: start; }
.vf-info { grid-area: info; }
.vf-forms { grid-area: forms; }
.vf-contact-col { grid-area: contact; }

/* ----- Info column ----- */
.vf-eyebrow {
	text-transform: uppercase;
	letter-spacing: .12em;
	font-weight: 700;
	font-size: 13px;
	margin: 0 0 14px;
}
.vf-heading {
	font-size: clamp(30px, 4vw, 52px);
	line-height: 1.08;
	margin: 0 0 18px;
	font-weight: 700;
}
.vf-intro {
	max-width: 46ch;
	line-height: 1.55;
	margin: 0 0 26px;
	opacity: .9;
}
.vf-tabs {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
	margin-bottom: 34px;
}
.vf-tab {
	background: transparent;
	border: 1px solid var(--vf-border);
	padding: 12px 20px;
	font: inherit;
	font-size: 15px;
	cursor: pointer;
	color: var(--vf-text);
	transition: background .15s, color .15s;
}
.vf-tab.is-active {
	background: var(--vf-accent);
	color: #fff;
	border-color: var(--vf-accent);
}
.vf-tab:hover:not(.is-active) {
	background: var(--vf-tab-hover-bg, var(--vf-accent));
	color: var(--vf-tab-hover-text, #fff);
	border-color: var(--vf-tab-hover-bg, var(--vf-accent));
}
.vf-contact { margin-top: 8px; line-height: 1.7; }
.vf-contact p { margin: 0 0 10px; }
.vf-contact a { color: inherit; }

/* ----- Form column ----- */
.vf-form { display: none; }
.vf-form.is-active { display: block; }

.vf-fields {
	display: flex;
	flex-wrap: wrap;
	column-gap: var(--vf-col-gap);
	row-gap: 18px;
}
.vf-field {
	flex: 0 0 100%;
	max-width: 100%;
	display: flex;
	flex-direction: column;
}
.vf-field > label {
	font-weight: 600;
	margin-bottom: 8px;
	font-size: 15px;
}
.vf-req { color: #c0392b; }

.vf-control {
	width: 100%;
	padding: 14px 16px;
	border: 1px solid var(--vf-border);
	background: transparent;
	font: inherit;
	color: var(--vf-text);
	outline: none;
}
.vf-control:focus {
	border-color: var(--vf-accent);
	box-shadow: 0 0 0 2px rgba(21, 36, 73, .12);
}
textarea.vf-control { resize: vertical; min-height: 130px; }

/* Chips */
.vf-chips { display: flex; flex-wrap: wrap; gap: 10px; }
.vf-chip {
	display: inline-flex;
	align-items: center;
	border: 1px solid var(--vf-border);
	padding: 10px 16px;
	cursor: pointer;
	user-select: none;
	transition: background .15s, color .15s, border-color .15s;
}
.vf-chip input { position: absolute; opacity: 0; pointer-events: none; }
.vf-chip:has(input:checked) {
	background: var(--vf-accent);
	color: #fff;
	border-color: var(--vf-accent);
}
/* Fallback for browsers without :has() */
.vf-chip.is-checked {
	background: var(--vf-accent);
	color: #fff;
	border-color: var(--vf-accent);
}

.vf-note { font-size: 13px; opacity: .75; margin: 18px 0 14px; line-height: 1.5; }

.vf-submit {
	position: relative;
	display: inline-flex;
	align-items: center;
	gap: 10px;
	background: var(--vf-accent);
	color: #fff;
	border: none;
	padding: 16px 30px;
	font: inherit;
	font-weight: 600;
	letter-spacing: .04em;
	text-transform: uppercase;
	cursor: pointer;
	overflow: hidden;
	transition: background .3s ease, color .3s ease;
}
.vf .vf-submit:hover { background: var(--vf-btn-hover, #a97b46) !important; color: var(--vf-btn-hover-text, #fff) !important; }
.vf-submit[disabled] { opacity: .6; cursor: default; }

/* Icon slide animation: icon starts left, moves to right on hover */
.vf-submit .vf-ic { transition: opacity .3s ease, transform .3s ease; }
.vf-submit-text { transition: transform .3s ease; }
.vf-ic-right { opacity: 0; transform: translateX(-10px); }
.vf-submit:hover .vf-ic-left { opacity: 0; transform: translateX(10px); }
.vf-submit:hover .vf-ic-right { opacity: 1; transform: translateX(0); }
.vf-submit:hover .vf-submit-text { transform: translateX(-4px); }

.vf-feedback { margin: 12px 0 0; font-size: 14px; min-height: 1em; }
.vf-feedback.is-error { color: #c0392b; }
.vf-feedback.is-success { color: #1e7a41; }

/* ----- Responsive defaults (Elementor controls can override) ----- */
@media (max-width: 1024px) {
	.vf-wrap { padding: 40px; }
	.vf-grid { gap: 40px; }
}
@media (max-width: 767px) {
	.vf-wrap { padding: 24px; }
	.vf-grid {
		grid-template-columns: 1fr;
		grid-template-rows: auto auto auto;
		grid-template-areas:
			"info"
			"forms"
			"contact";
		gap: 28px;
	}
	/* On mobile, force every field full width for readability */
	.vf-field { flex: 0 0 100% !important; max-width: 100% !important; }
}

/* ----- Icons ----- */
.vf { --vf-icon: #a97b46; }
.vf-ic {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	color: var(--vf-icon);
	line-height: 1;
}
.vf-ic svg { width: 1em; height: 1em; fill: currentColor; }
.vf-eyebrow .vf-ic { margin-right: 8px; }
.vf-contact .vf-ic { width: 1.1em; }
.vf-submit .vf-ic { color: currentColor; margin-right: 6px; }

/* ----- Phone country selector ----- */
.vf-tel {
	display: flex;
	align-items: stretch;
	border: 1px solid var(--vf-border);
	position: relative;
}
.vf-tel .vf-control {
	border: none !important;
	flex: 1 1 auto;
	min-width: 0;
}
.vf-tel-toggle {
	display: flex;
	align-items: center;
	gap: 7px;
	background: transparent;
	border: none;
	border-right: 1px solid var(--vf-border);
	padding: 0 12px;
	cursor: pointer;
	font: inherit;
	color: inherit;
	white-space: nowrap;
}
.vf-flag { width: 24px; height: 18px; object-fit: cover; display: block; border-radius: 2px; }
.vf-dial { font-weight: 600; }
.vf-caret { font-size: 11px; opacity: .7; }

/* Country toggle must not inherit theme button styles (e.g. pink). High specificity to beat theme !important rules. */
.vf .vf-tel .vf-tel-toggle,
.vf .vf-tel .vf-tel-toggle:hover,
.vf .vf-tel .vf-tel-toggle:focus,
.vf .vf-tel .vf-tel-toggle:active,
.vf .vf-tel .vf-tel-toggle:focus-visible {
	background: transparent !important;
	background-color: transparent !important;
	background-image: none !important;
	color: var(--vf-text, #1a1a1a) !important;
	box-shadow: none !important;
	outline: none !important;
	transform: none !important;
}
.vf .vf-tel .vf-tel-toggle:hover { opacity: .85; }

.vf-tel-menu {
	position: absolute;
	top: calc(100% + 4px);
	left: 0;
	z-index: 40;
	width: 300px;
	max-width: 90vw;
	background: #fff;
	border: 1px solid var(--vf-border);
	box-shadow: 0 12px 30px rgba(0,0,0,.14);
	display: none;
}
.vf-tel.is-open .vf-tel-menu { display: block; }
.vf-tel-search {
	width: 100%;
	padding: 10px 12px;
	border: none;
	border-bottom: 1px solid #e2ddd3;
	font: inherit;
	outline: none;
}
.vf-tel-list {
	list-style: none;
	margin: 0;
	padding: 0;
	max-height: 260px;
	overflow-y: auto;
}
.vf-tel-item {
	display: flex;
	align-items: center;
	gap: 10px;
	padding: 9px 12px;
	cursor: pointer;
	color: #1a1a1a;
}
.vf-tel-item:hover { background: #f3efe7; }
.vf-tel-item img { width: 22px; height: 16px; object-fit: cover; border-radius: 2px; }
.vf-tel-item .n { flex: 1 1 auto; }
.vf-tel-item .d { opacity: .65; }
