@import url('./site-design.css');

@font-face {
	font-family: 'Manrope';
	font-style: normal;
	font-weight: 400 800;
	font-display: swap;
	src: url('assets/fonts/manrope-latin.woff2') format('woff2');
	unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

@font-face {
	font-family: 'Manrope';
	font-style: normal;
	font-weight: 400 800;
	font-display: swap;
	src: url('assets/fonts/manrope-latin-ext.woff2') format('woff2');
	unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}

@font-face {
	font-family: 'Manrope';
	font-style: normal;
	font-weight: 400 800;
	font-display: swap;
	src: url('assets/fonts/manrope-cyrillic.woff2') format('woff2');
	unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
}

:root {
	--ed-bg: #faf8f3;
	--ed-surface: #ffffff;
	--ed-line: #ddd8cd;
	--ed-text: #18212a;
	--ed-muted: #66707a;
	--ed-accent: #1f2933;
	--ed-link: #0f1720;
	--ed-link-soft: #eef1f3;
	--ed-success: #087044;
	--ed-success-soft: #ecf8f0;
	--ed-warning: #b27b00;
	--ed-warning-soft: #fff7dd;
	--ed-danger: #a62e2e;
	--ed-danger-soft: #fdeceb;
	--ed-info: #2f6ebd;
	--ed-info-soft: #edf5ff;
}

*,
*::before,
*::after {
	box-sizing: border-box;
}

html {
	scroll-behavior: auto;
}

body {
	margin: 0;
	font-family: 'Manrope', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
	font-synthesis: none;
	color: var(--ed-text);
	background: var(--ed-bg);
}

a {
	color: var(--ed-link);
}

code {
	font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
	font-size: 0.92em;
}

.ed-shell {
	width: min(960px, calc(100% - 32px));
	margin: 0 auto;
}

.ed-page {
	padding: 40px 0 64px;
}

.ed-home,
.ed-page-block {
	max-width: 760px;
}

.ed-kicker {
	margin: 0 0 14px;
	font-size: 0.76rem;
	font-weight: 700;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	color: var(--ed-muted);
}

.ed-home h1,
.ed-page-block h1 {
	margin: 0 0 14px;
	font-size: clamp(2.1rem, 5vw, 3.4rem);
	line-height: 1.02;
	letter-spacing: -0.05em;
	font-weight: 700;
}

.ed-home-tools {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	margin: 20px 0 0;
}

.ed-home-action {
	display: inline-flex;
	padding: 11px 16px;
	border-radius: 999px;
	background: var(--ed-text);
	color: #fff;
	font-size: 0.9rem;
	font-weight: 700;
	text-decoration: none;
}

.ed-intro,
.ed-content .entry-content,
.ed-content p {
	margin: 0;
	font-size: 1rem;
	line-height: 1.7;
	color: var(--ed-muted);
}

.ed-tabs {
	margin-top: 28px;
}

.ed-tablist {
	display: inline-flex;
	gap: 8px;
	padding: 4px;
	border: 1px solid var(--ed-line);
	border-radius: 999px;
	background: rgba(255, 255, 255, 0.76);
}

.ed-tab {
	padding: 10px 16px;
	border: 0;
	border-radius: 999px;
	background: transparent;
	font: inherit;
	font-weight: 600;
	color: var(--ed-muted);
	cursor: pointer;
}

.ed-tab.is-active {
	background: var(--ed-text);
	color: #fff;
}

.ed-tab-panel {
	margin-top: 18px;
}

.ed-nested-tabs {
	margin-top: 0;
}

.ed-nested-tabs .ed-tab-panel {
	margin-top: 16px;
}

.ed-form-panel,
.ed-table-panel,
.ed-content article {
	margin-top: 0;
	padding: 24px;
	background: var(--ed-surface);
	border: 1px solid var(--ed-line);
	border-radius: 18px;
}

.ed-form-panel .wpcf7 {
	width: 100%;
}

.ed-form-panel form {
	display: grid;
	gap: 16px;
}

.ed-form-panel p {
	margin: 0;
}

.ed-form-panel label {
	display: grid;
	gap: 8px;
	font-size: 0.95rem;
	font-weight: 600;
	color: var(--ed-text);
}

.ed-form-panel input:not([type='submit']),
.ed-form-panel select,
.ed-form-panel textarea {
	width: 100%;
	padding: 13px 14px;
	border: 1px solid var(--ed-line);
	border-radius: 12px;
	background: #fff;
	font: inherit;
	color: var(--ed-text);
}

.ed-form-panel .intl-tel-input {
	display: block;
	width: 100%;
}

.ed-form-panel .intl-tel-input input.wpcf7-phonetext,
.ed-form-panel .wpcf7-phonetext {
	padding-left: 106px !important;
	width: 100%;
}

.ed-form-panel .intl-tel-input .selected-flag {
	background: #f8fafb;
	border-right: 1px solid var(--ed-line);
	border-radius: 12px 0 0 12px;
	padding-left: 14px;
}

.ed-form-panel .intl-tel-input .selected-dial-code {
	color: var(--ed-text);
	font-size: 0.85rem;
	font-weight: 700;
}

.ed-form-panel .intl-tel-input .country-list {
	border: 1px solid var(--ed-line);
	border-radius: 14px;
	box-shadow: 0 20px 34px rgba(15, 23, 32, 0.12);
	margin-top: 10px;
}

.ed-form-panel textarea {
	min-height: 88px;
	resize: vertical;
}

.ed-form-panel input[readonly] {
	background: #f4f6f7;
	color: var(--ed-text);
}

.ed-form-panel input[type='submit'] {
	width: auto;
	padding: 13px 28px;
	border: 0;
	border-radius: 999px;
	background: var(--ed-accent);
	color: #fff;
	font-size: 1rem;
	font-weight: 700;
	cursor: pointer;
	transition: background 0.15s, transform 0.1s;
}

.ed-form-panel input[type='submit']:hover {
	background: #0a0f18;
	transform: translateY(-1px);
}

/* Two-column row */
.ed-form-panel .ed-form-row {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 14px;
}

/* Styled select */
.ed-form-panel select {
	appearance: none;
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%2366707a' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
	background-repeat: no-repeat;
	background-position: right 14px center;
	padding-right: 40px;
	cursor: pointer;
}

/* GDPR / acceptance checkbox row */
.ed-gdpr-wrap {
	display: flex;
	align-items: flex-start;
	gap: 10px;
	margin: 4px 0 0;
	font-size: 0.9rem;
	color: var(--ed-muted);
	line-height: 1.5;
}

.ed-gdpr-wrap .wpcf7-acceptance {
	flex-shrink: 0;
	margin-top: 1px;
}

.ed-gdpr-wrap input[type='checkbox'] {
	width: 18px;
	height: 18px;
	padding: 0;
	border: 1.5px solid var(--ed-line);
	border-radius: 4px;
	accent-color: var(--ed-accent);
	cursor: pointer;
}

.ed-gdpr-wrap a {
	color: var(--ed-text);
	text-decoration: underline;
	text-underline-offset: 2px;
}

.av-site .ed-gdpr-wrap a {
	color: var(--ed-text);
	text-decoration: underline;
	text-underline-offset: 2px;
}

/* Submit + autofill row */
.ed-form-panel .wpcf7-submit,
.ed-autofill-btn {
	margin-top: 4px;
}

/* ── Acte necesare info block ──────────────────────────── */
.ed-acte-info {
	display: none; /* hidden temporarily — re-enable when ready */
	padding: 20px;
	background: #f0f4ff;
	border: 1px solid #d4defc;
	border-radius: 14px;
	margin-top: 4px;
}

.ed-acte-header {
	display: flex;
	align-items: center;
	gap: 8px;
	margin-bottom: 16px;
	font-size: 0.95rem;
	font-weight: 700;
	color: var(--ed-text);
}

.ed-acte-icon {
	font-size: 1.1rem;
	line-height: 1;
}

.ed-acte-cols {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 16px;
}

.ed-acte-col-title {
	margin: 0 0 8px;
	font-size: 0.82rem;
	font-weight: 700;
	letter-spacing: 0.03em;
	color: #3a5bbd;
}

.ed-acte-col ul {
	margin: 0;
	padding: 0 0 0 16px;
}

.ed-acte-col ul li {
	margin-bottom: 5px;
	font-size: 0.88rem;
	line-height: 1.5;
	color: var(--ed-muted);
}

/* File upload label hint */
.ed-file-label {
	font-weight: 600;
}

.ed-file-hint {
	font-weight: 400;
	font-size: 0.82rem;
	color: var(--ed-muted);
	margin-left: 4px;
}



.ed-autofill-btn {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	padding: 10px 18px;
	border: 0;
	border-radius: 999px;
	background: #1a6ef5;
	font: inherit;
	font-size: 0.9rem;
	font-weight: 700;
	color: #fff;
	cursor: pointer;
	transition: background 0.15s, transform 0.1s;
	letter-spacing: 0.01em;
}

.ed-autofill-btn::before {
	content: '⚡';
	font-size: 0.85em;
}

.ed-autofill-btn:hover {
	background: #1558d6;
	transform: translateY(-1px);
}

.ed-autofill-btn:active {
	transform: translateY(0);
}

.ed-autofill-btn:disabled {
	opacity: 0.6;
	cursor: not-allowed;
	transform: none;
}

.ed-form-panel .codedropz-upload-wrapper {
	margin-top: 4px;
}

.ed-form-panel .codedropz-upload-handler {
	min-height: 120px;
	padding: 18px;
	border: 1px dashed #bfc7ce;
	border-radius: 12px;
	background: #f8fafb;
}

.ed-form-panel .codedropz-upload-inner h3,
.ed-form-panel .codedropz-upload-inner span,
.ed-form-panel .codedropz-upload-inner a.cd-upload-btn {
	font-family: inherit;
}

.ed-form-panel .codedropz-upload-inner h3 {
	margin: 0 0 8px;
	font-size: 1rem;
	font-weight: 600;
	color: var(--ed-text);
}

.ed-form-panel .codedropz-upload-inner span {
	color: var(--ed-muted);
}

.ed-form-panel .cd-upload-btn {
	display: inline-flex;
	align-items: center;
	margin-top: 12px;
	padding: 10px 14px;
	border-radius: 999px;
	background: var(--ed-link-soft);
	text-decoration: none;
	font-weight: 600;
}

.ed-form-panel .dnd-upload-status {
	margin-top: 14px;
}

.ed-form-panel .dnd-upload-status .dnd-upload-details {
	font-size: 0.9rem;
	color: var(--ed-muted);
}

.ed-form-panel .wpcf7-response-output {
	margin: 12px 0 0;
	padding: 12px 14px;
	border: 1px solid var(--ed-line);
	border-radius: 12px;
	background: #fff;
	color: var(--ed-text);
	font-size: 0.95rem;
	line-height: 1.55;
}

.ed-form-panel .wpcf7-not-valid-tip {
	color: var(--ed-danger);
	font-size: 12px;
	font-weight: 600;
	margin-top: 6px;
}

.ed-form-panel .wpcf7-form-control-wrap .wpcf7-not-valid,
.ed-form-panel .intl-tel-input input.wpcf7-not-valid {
	border-color: var(--ed-danger) !important;
	box-shadow: 0 0 0 3px rgba(166, 46, 46, 0.12);
}

.ed-form-panel .wpcf7 form.sent .wpcf7-response-output {
	background: var(--ed-success-soft);
	border-color: rgba(8, 112, 68, 0.34) !important;
	color: var(--ed-success);
}

.ed-form-panel .wpcf7 form.invalid .wpcf7-response-output,
.ed-form-panel .wpcf7 form.unaccepted .wpcf7-response-output,
.ed-form-panel .wpcf7 form.payment-required .wpcf7-response-output {
	background: var(--ed-warning-soft);
	border-color: rgba(178, 123, 0, 0.34) !important;
	color: #7a5800;
}

.ed-form-panel .wpcf7 form.failed .wpcf7-response-output,
.ed-form-panel .wpcf7 form.aborted .wpcf7-response-output,
.ed-form-panel .wpcf7 form.spam .wpcf7-response-output {
	background: var(--ed-danger-soft);
	border-color: rgba(166, 46, 46, 0.34) !important;
	color: #8d2430;
}

.ed-form-panel .wpcf7 form.submitting .wpcf7-response-output {
	background: var(--ed-info-soft);
	border-color: rgba(47, 110, 189, 0.28) !important;
	color: #23529b;
}

.ed-rates-table {
	width: 100%;
	border-collapse: collapse;
}

.ed-rates-table th,
.ed-rates-table td {
	padding: 14px 12px;
	border-bottom: 1px solid var(--ed-line);
	text-align: left;
}

.ed-rates-table th {
	font-size: 0.82rem;
	font-weight: 700;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: var(--ed-muted);
}

.ed-rates-table td {
	font-size: 0.98rem;
}

.ed-placeholder {
	margin: 0;
	color: var(--ed-muted);
}

.ed-rate-note {
	margin: 0 0 14px;
	font-size: 0.95rem;
	line-height: 1.6;
	color: var(--ed-muted);
}

@media (max-width: 720px) {
	.ed-page {
		padding: 32px 0 48px;
	}

	.ed-tablist {
		display: flex;
		width: 100%;
	}

	.ed-tab {
		flex: 1 1 0;
		text-align: center;
	}

	.ed-form-panel,
	.ed-table-panel,
	.ed-content article {
		padding: 18px;
	}

	.ed-form-panel .ed-form-row {
		grid-template-columns: 1fr;
	}

	.ed-acte-cols {
		grid-template-columns: 1fr;
	}

	.ed-rates-table,
	.ed-rates-table thead,
	.ed-rates-table tbody,
	.ed-rates-table tr,
	.ed-rates-table th,
	.ed-rates-table td {
		display: block;
		width: 100%;
	}

	.ed-rates-table thead {
		display: none;
	}

	.ed-rates-table tr {
		padding: 8px 0;
		border-bottom: 1px solid var(--ed-line);
	}

	.ed-rates-table td {
		padding: 6px 0;
		border: 0;
	}
}

#moove_gdpr_cookie_info_bar {
	left: 50% !important;
	bottom: 16px !important;
	margin: 0 !important;
	max-width: calc(100vw - 32px) !important;
	min-width: 0 !important;
	transform: translateX(-50%) !important;
	width: 456px !important;
	z-index: 140 !important;
}

#moove_gdpr_cookie_info_bar .moove-gdpr-info-bar-container {
	padding: 0 !important;
}

#moove_gdpr_cookie_info_bar .moove-gdpr-info-bar-container .moove-gdpr-info-bar-content {
	align-items: center !important;
	background: #fff !important;
	border: 1px solid #dfe8e2 !important;
	border-radius: 16px !important;
	box-shadow: 0 20px 36px rgba(0, 74, 63, 0.15) !important;
	color: #617069 !important;
	display: flex !important;
	gap: 14px !important;
	min-height: 0 !important;
	padding: 14px 16px !important;
}

#moove_gdpr_cookie_info_bar .moove-gdpr-cookie-notice {
	flex: 1 1 auto !important;
	margin: 0 !important;
	padding: 0 !important;
}

#moove_gdpr_cookie_info_bar .moove-gdpr-cookie-notice p {
	color: #617069 !important;
	font-family: "Manrope", sans-serif !important;
	font-size: 11px !important;
	font-weight: 500 !important;
	line-height: 16px !important;
	margin: 0 !important;
}

#moove_gdpr_cookie_info_bar .moove-gdpr-cookie-notice p + p {
	margin-top: 0 !important;
}

#moove_gdpr_cookie_info_bar .moove-gdpr-cookie-notice .change-settings-button {
	background: transparent !important;
	border: 0 !important;
	box-shadow: none !important;
	color: #035d3c !important;
	cursor: pointer !important;
	display: inline !important;
	font-family: "Manrope", sans-serif !important;
	font-size: inherit !important;
	font-weight: 700 !important;
	letter-spacing: 0 !important;
	line-height: inherit !important;
	padding: 0 !important;
	text-decoration: underline !important;
	text-transform: none !important;
}

#moove_gdpr_cookie_info_bar .moove-gdpr-button-holder {
	align-items: center !important;
	display: flex !important;
	flex: 0 0 auto !important;
	margin: 0 !important;
	padding: 0 !important;
}

#moove_gdpr_cookie_info_bar .moove-gdpr-info-bar-container .moove-gdpr-info-bar-content button.mgbutton.moove-gdpr-infobar-allow-all,
#moove_gdpr_cookie_info_bar .moove-gdpr-info-bar-container .moove-gdpr-info-bar-content a.mgbutton.moove-gdpr-infobar-allow-all {
	background: #035d3c !important;
	border: 0 !important;
	border-radius: 10px !important;
	box-shadow: none !important;
	color: #fff !important;
	font-family: "Manrope", sans-serif !important;
	font-size: 11px !important;
	font-weight: 800 !important;
	line-height: 1 !important;
	margin: 0 !important;
	min-width: auto !important;
	padding: 10px 14px !important;
	transition: background-color 0.25s ease, transform 0.25s ease !important;
	white-space: nowrap !important;
}

#moove_gdpr_cookie_info_bar .moove-gdpr-info-bar-container .moove-gdpr-info-bar-content button.mgbutton.moove-gdpr-infobar-allow-all:hover,
#moove_gdpr_cookie_info_bar .moove-gdpr-info-bar-container .moove-gdpr-info-bar-content a.mgbutton.moove-gdpr-infobar-allow-all:hover {
	background: #024b31 !important;
	color: #fff !important;
	transform: translateY(-1px) !important;
}

#moove_gdpr_cookie_modal,
#moove_gdpr_cookie_modal * {
	font-family: "Manrope", sans-serif !important;
}

#moove_gdpr_cookie_modal .moove-gdpr-modal-content {
	border-radius: 24px !important;
	box-shadow: 0 32px 80px rgba(0, 74, 63, 0.18) !important;
	overflow: hidden !important;
}

#moove_gdpr_cookie_modal .moove-gdpr-modal-content .moove-gdpr-modal-footer-content .moove-gdpr-button-holder button.mgbutton,
#moove_gdpr_cookie_modal .moove-gdpr-modal-content .moove-gdpr-modal-footer-content .moove-gdpr-button-holder a.mgbutton,
.gdpr_cookie_settings_shortcode_content .gdpr-shr-button {
	border-radius: 12px !important;
	font-size: 13px !important;
	font-weight: 800 !important;
	min-height: 44px !important;
	padding: 12px 20px !important;
}

#moove_gdpr_cookie_modal .moove-gdpr-modal-content .moove-gdpr-modal-footer-content .moove-gdpr-button-holder button.mgbutton.moove-gdpr-modal-allow-all,
#moove_gdpr_cookie_modal .moove-gdpr-modal-content .moove-gdpr-modal-footer-content .moove-gdpr-button-holder button.mgbutton.moove-gdpr-modal-save-settings,
#moove_gdpr_cookie_modal .moove-gdpr-modal-content .moove-gdpr-modal-footer-content .moove-gdpr-button-holder a.mgbutton.moove-gdpr-modal-allow-all,
#moove_gdpr_cookie_modal .moove-gdpr-modal-content .moove-gdpr-modal-footer-content .moove-gdpr-button-holder a.mgbutton.moove-gdpr-modal-save-settings,
.gdpr_cookie_settings_shortcode_content .gdpr-shr-button.button-green {
	background: #035d3c !important;
	border-color: #035d3c !important;
	color: #fff !important;
}

#moove_gdpr_cookie_modal .moove-gdpr-modal-content .moove-gdpr-modal-footer-content .moove-gdpr-button-holder button.mgbutton.moove-gdpr-modal-reject-all,
#moove_gdpr_cookie_modal .moove-gdpr-modal-content .moove-gdpr-modal-footer-content .moove-gdpr-button-holder a.mgbutton.moove-gdpr-modal-reject-all {
	background: #fff !important;
	border-color: #035d3c !important;
	color: #035d3c !important;
}

#moove_gdpr_cookie_modal .moove-gdpr-modal-content .moove-gdpr-modal-close i,
#moove_gdpr_cookie_modal .moove-gdpr-modal-content .moove-gdpr-modal-close span.gdpr-icon,
#moove_gdpr_save_popup_settings_button {
	background: #035d3c !important;
	border-color: #035d3c !important;
	color: #fff !important;
}

#moove_gdpr_save_popup_settings_button {
	border-radius: 999px !important;
	box-shadow: 0 14px 30px rgba(0, 74, 63, 0.2) !important;
}

@media (max-width: 520px) {
	#moove_gdpr_cookie_info_bar {
		bottom: 12px !important;
		max-width: calc(100vw - 20px) !important;
	}

	#moove_gdpr_cookie_info_bar .moove-gdpr-info-bar-container .moove-gdpr-info-bar-content {
		align-items: stretch !important;
		flex-direction: column !important;
		gap: 12px !important;
		padding: 14px !important;
	}

	#moove_gdpr_cookie_info_bar .moove-gdpr-button-holder {
		width: 100% !important;
	}

	#moove_gdpr_cookie_info_bar .moove-gdpr-info-bar-container .moove-gdpr-info-bar-content button.mgbutton.moove-gdpr-infobar-allow-all,
	#moove_gdpr_cookie_info_bar .moove-gdpr-info-bar-container .moove-gdpr-info-bar-content a.mgbutton.moove-gdpr-infobar-allow-all {
		justify-content: center !important;
		width: 100% !important;
	}
}
