/* ─── Contact Hero ───────────────────────────────── */
.contact-hero {
	display: flex;
	align-items: center;
	justify-content: center;
	min-height: 888px;
	padding: 120px var(--section-padding) 80px;
	background: #ffffff;
}

.contact-hero__inner {
	max-width: 978px;
	text-align: center;
}

.contact-hero__title {
	font-size: 64px;
	font-weight: var(--font-weight-regular);
	color: var(--text-dark);
	line-height: 1.1;
	margin-bottom: 32px;
}

.contact-hero__subtitle {
	font-size: 40px;
	font-weight: var(--font-weight-regular);
	color: var(--text-dark);
	line-height: 1.3;
}

/* ─── Contact Form Section ───────────────────────── */
.contact-form-section {
	position: relative;
	background: var(--primary-red);
	padding: 100px var(--section-padding);
	overflow: hidden;
}

/* ─── Watermark ──────────────────────────────────── */
.contact-watermark-wrap {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	display: flex;
	align-items: flex-start;
	justify-content: center;
	pointer-events: none;
	z-index: 0;
	padding-top: 40px;
}

.contact-watermark {
	font-size: clamp(140px, 16vw, 280px);
	font-weight: var(--font-weight-bold);
	text-transform: uppercase;
	white-space: nowrap;
	line-height: 0.9;
	opacity: 0.9;
	background: linear-gradient(180deg, rgba(255, 255, 255, 0.18) 8%, rgba(255, 255, 255, 0) 109%);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
}

.contact-watermark-blur {
	position: absolute;
	top: 30%;
	left: 0;
	right: 0;
	height: 70%;
	backdrop-filter: blur(11.95px);
	-webkit-backdrop-filter: blur(11.95px);
	pointer-events: none;
	mask-image: linear-gradient(to bottom, transparent 0%, black 30%);
	-webkit-mask-image: linear-gradient(to bottom, transparent 0%, black 30%);
}

/* ─── Contact Card ───────────────────────────────── */
.contact-card {
	position: relative;
	z-index: 1;
	background: #ffffff;
	border-radius: 6px;
	max-width: 1400px;
	margin: 80px auto 0;
	padding: 64px 56px;
}

/* ─── Form Layout ────────────────────────────────── */
.contact-form__columns {
	display: flex;
	gap: 80px;
}

.contact-form__left,
.contact-form__right {
	flex: 1 1 0;
	min-width: 0;
	display: flex;
	flex-direction: column;
	gap: 28px;
}

/* ─── Name Row ───────────────────────────────────── */
.contact-form__row {
	display: flex;
	gap: 32px;
}

.contact-form__field--half {
	flex: 1;
}

/* ─── Field Styles ───────────────────────────────── */
.contact-form__field {
	display: flex;
	flex-direction: column;
	gap: 10px;
}

.contact-form__label {
	font-size: 18px;
	font-weight: var(--font-weight-regular);
	color: var(--text-dark);
}

.contact-form__required {
	color: var(--primary-red);
}

.contact-form__input {
	height: 60px;
	padding: 0 20px;
	background: #f1f1f1;
	border: none;
	border-radius: 5px;
	font-size: 17px;
	font-weight: var(--font-weight-regular);
	color: var(--text-dark);
	font-family: var(--font-family);
	width: 100%;
}

.contact-form__input::placeholder {
	color: #8f8f8f;
	font-size: 17px;
}

.contact-form__input:focus {
	outline: 2px solid var(--primary-red);
	outline-offset: -2px;
}

/* ─── Helper Text ────────────────────────────────── */
.contact-form__helper {
	font-family: "Manrope", var(--font-family);
	font-size: 12px;
	font-weight: var(--font-weight-regular);
	color: #a0a0a0;
}

/* ─── Textarea ───────────────────────────────────── */
.contact-form__textarea {
	height: 180px;
	padding: 20px;
	background: #f1f1f1;
	border: none;
	border-radius: 5px;
	font-size: 17px;
	font-weight: var(--font-weight-regular);
	color: var(--text-dark);
	font-family: var(--font-family);
	resize: vertical;
	width: 100%;
}

.contact-form__textarea::placeholder {
	color: #8f8f8f;
	font-size: 17px;
}

.contact-form__textarea:focus {
	outline: 2px solid var(--primary-red);
	outline-offset: -2px;
}

/* ─── Textarea Footer ────────────────────────────── */
.contact-form__textarea-footer {
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.contact-form__attach {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	font-size: 12px;
	font-weight: var(--font-weight-regular);
	color: #565656;
	text-decoration: underline;
	cursor: pointer;
}

.contact-form__attach:hover {
	opacity: 0.7;
}

.contact-form__word-count {
	font-size: 12px;
	font-weight: var(--font-weight-regular);
	color: #565656;
}

/* ─── Terms & Conditions ─────────────────────────── */
.contact-form__terms {
	margin-top: 8px;
}

.contact-form__checkbox-label {
	display: flex;
	gap: 10px;
	align-items: flex-start;
	cursor: pointer;
}

.contact-form__checkbox {
	position: absolute;
	opacity: 0;
	width: 0;
	height: 0;
}

.contact-form__checkbox-label .contact-form__checkbox-box {
	width: 18px;
	height: 18px;
	min-width: 18px;
	margin-top: 2px;
	border: 1.5px solid var(--border-dark);
	border-radius: 3px;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: background 0.15s, border-color 0.15s;
	background: transparent;
}

.contact-form__checkbox:checked + .contact-form__checkbox-box {
	background: var(--primary-red);
	border-color: var(--primary-red);
}

.contact-form__checkbox-box::after {
	content: '';
	display: block;
	width: 5px;
	height: 9px;
	border: 2px solid #fff;
	border-top: none;
	border-left: none;
	transform: rotate(45deg) translateY(-1px);
	opacity: 0;
	transition: opacity 0.15s;
}

.contact-form__checkbox:checked + .contact-form__checkbox-box::after {
	opacity: 1;
}

.contact-form__terms-text {
	font-size: 14px;
	font-weight: var(--font-weight-regular);
	color: var(--text-dark);
	line-height: 1.5;
}

.contact-form__link {
	color: #0088ff;
	text-decoration: underline;
}

.contact-form__link:hover {
	opacity: 0.7;
}

/* ─── Submit Button ──────────────────────────────── */
.contact-form__submit-wrap {
	margin-top: auto;
	display: flex;
	justify-content: flex-end;
}

.contact-form__submit {
	background: var(--primary-red);
	color: var(--text-white);
	font-size: 17px;
	font-weight: var(--font-weight-regular);
	font-family: var(--font-family);
	border: none;
	border-radius: 5px;
	padding: 16px 48px;
	min-width: 280px;
	cursor: pointer;
	transition: opacity 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
}

.contact-form__submit:hover {
	opacity: 0.92;
	transform: translateY(-2px);
	box-shadow: 0 6px 20px rgba(220, 31, 62, 0.25);
}

.contact-form__submit:active {
	transform: translateY(0);
	box-shadow: none;
}

/* ─── Responsive: 16:10 laptops (1440×900, 1536×864, 1600×900, 1680×1050) ─── */
@media (max-width: 1680px) {
	.contact-card {
		max-width: 100%;
		padding: 60px 52px;
	}

	.contact-form__columns {
		gap: 60px;
	}
}

@media (max-width: 1200px) {
	.contact-hero {
		min-height: 700px;
	}

	.contact-hero__title {
		font-size: 52px;
	}

	.contact-hero__subtitle {
		font-size: 32px;
	}

	.contact-form-section {
		padding: 80px var(--section-padding);
	}

	.contact-card {
		margin-top: 60px;
		padding: 52px 44px;
	}

	.contact-form__columns {
		gap: 48px;
	}
}

@media (max-width: 1024px) {
	.contact-hero {
		min-height: 600px;
		padding: 120px 40px 60px;
	}

	.contact-hero__title {
		font-size: 48px;
	}

	.contact-hero__subtitle {
		font-size: 28px;
	}

	.contact-form-section {
		padding: 70px 40px;
		min-height: auto;
	}

	.contact-card {
		margin-top: 48px;
		padding: 44px 36px;
	}

	.contact-form__columns {
		gap: 40px;
	}

	.contact-form__left,
	.contact-form__right {
		gap: 24px;
	}

	.contact-form__submit {
		width: 100%;
		min-width: 0;
	}
}

/* ─── Responsive: Mobile ─────────────────────────── */
@media (max-width: 768px) {
	.contact-hero {
		min-height: 500px;
		padding: 100px 20px 40px;
	}

	.contact-hero__title {
		font-size: 36px;
	}

	.contact-hero__subtitle {
		font-size: 22px;
	}

	.contact-form-section {
		padding: 60px 20px;
	}

	.contact-card {
		margin-top: 32px;
		padding: 36px 24px;
	}

	.contact-form__columns {
		flex-direction: column;
		gap: 28px;
	}

	.contact-form__left,
	.contact-form__right {
		flex: none;
		width: 100%;
		gap: 22px;
	}

	.contact-form__row {
		flex-direction: column;
		gap: 22px;
	}

	.contact-form__textarea {
		height: 160px;
	}

	.contact-form__submit {
		width: 100%;
		min-width: 0;
		padding: 14px 20px;
	}

	.contact-watermark {
		font-size: clamp(80px, 20vw, 200px);
	}
}

/* ─── Responsive: 1680px+ ────────────────────────── */
@media (min-width: 1680px) {
	.contact-hero__inner {
		max-width: 1180px;
	}
	.contact-hero__title {
		font-size: 76px;
	}
	.contact-hero__subtitle {
		font-size: 46px;
	}
}

/* ─── Responsive: 1920px+ ────────────────────────── */
@media (min-width: 1920px) {
	.contact-hero {
		min-height: 1000px;
	}
	.contact-hero__inner {
		max-width: 1320px;
	}
	.contact-hero__title {
		font-size: 88px;
	}
	.contact-hero__subtitle {
		font-size: 52px;
	}
	.contact-form-section {
		min-height: 1500px;
	}
}

/* ─── Responsive: 2400px+ ────────────────────────── */
@media (min-width: 2400px) {
	.contact-hero {
		min-height: 1120px;
	}
	.contact-hero__inner {
		max-width: 1480px;
	}
	.contact-hero__title {
		font-size: 104px;
	}
	.contact-hero__subtitle {
		font-size: 60px;
	}
	.contact-card {
		max-width: 1800px;
	}
}
