/* Inline Contact Form Stylesheet */

.icf-form-wrapper {
	margin: 2rem auto;
	max-width: 1000px;
	padding: 0 1rem;
}

.icf-form {
	background: #ffffff;
	padding: 2.5rem 2rem;
	border-radius: 0;
	box-shadow: none;
}

.icf-greeting {
	font-size: 2.8rem;
	font-weight: 900;
	text-transform: uppercase;
	text-align: center;
	margin: 0 0 1.5rem 0;
	letter-spacing: 0.08em;
	line-height: 1;
}

.icf-form-text {
	font-size: 3rem;
	font-weight: 300;
	text-transform: uppercase;
	line-height: 1.8;
	margin: 0 0 2.5rem 0;
	word-spacing: 0.08em;
	letter-spacing: 0.03em;
}

.icf-form-text .icf-input {
	display: inline-block;
	width: 310px;
	padding: 0.65rem 1.25rem;
	border: 1.2px solid #666;
	border-radius: 9999px;
	font-size: 0.8rem;
	font-weight: 400;
	text-transform: none;
	background: #ffffff;
	font-family: inherit;
	transition: all 0.2s ease;
	margin: 0 0.3rem;
	vertical-align: middle;
}

.icf-form-text .icf-input:focus {
	outline: none;
	border-color: #000;
	box-shadow: 0 0 0 2px rgba(0, 0, 0, 0.08);
}

.icf-form-text .icf-input::placeholder {
	color: #999;
	opacity: 1;
}

.icf-company {
	font-weight: 900;
	white-space: nowrap;
}

/* Privacy Consent Checkbox */
.icf-privacy-consent {
	margin: 2rem 0;
	padding: 1rem;
	background: #f9f9f9;
	border-radius: 0;
	font-size: 0.8rem;
	line-height: 1.6;
}

.icf-privacy-consent label {
	display: flex;
	align-items: flex-start;
	cursor: pointer;
	gap: 0.6rem;
}

.icf-privacy-consent input[type="checkbox"] {
	margin-top: 0.15rem;
	width: 16px;
	height: 16px;
	cursor: pointer;
	flex-shrink: 0;
	accent-color: #000;
}

.icf-privacy-text {
	margin: 0;
	padding: 0;
}

.icf-privacy-text a {
	color: #0073aa;
	text-decoration: underline;
	font-weight: 500;
}

.icf-privacy-text a:hover {
	color: #005a87;
}

.icf-required {
	color: #dc3545;
	font-weight: bold;
	margin-left: 0.2rem;
}

/* Submit Button */
.icf-form-footer {
	text-align: center;
	margin-top: 2rem;
}

.icf-submit-button {
	padding: 0.7rem 2.5rem;
	background-color: #ccc;
	border: none;
	border-radius: 0.35rem;
	font-size: 0.85rem;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.08em;
	cursor: pointer;
	transition: all 0.2s ease;
	color: #000;
	min-width: 160px;
}

.icf-submit-button:hover {
	background-color: #aaa;
	box-shadow: 0 2px 6px rgba(0, 0, 0, 0.12);
}

.icf-submit-button:active {
	box-shadow: 0 1px 2px rgba(0, 0, 0, 0.08);
}

.icf-submit-button:disabled {
	background-color: #ddd;
	color: #999;
	cursor: not-allowed;
	box-shadow: none;
}

/* Responsive */
@media (max-width: 768px) {
	.icf-form {
		padding: 2rem 1.5rem;
	}

	.icf-greeting {
		font-size: 2rem;
	}

	.icf-form-text {
		font-size: 0.9rem;
		line-height: 1.8;
	}

	.icf-form-text .icf-input {
		width: 100%;
		display: block;
		margin: 0.5rem 0;
	}

	.icf-privacy-consent {
		margin: 1.5rem 0;
		padding: 0.75rem;
		font-size: 0.75rem;
	}

	.icf-submit-button {
		width: 100%;
		padding: 0.65rem;
	}
}

@media (max-width: 480px) {
	.icf-form {
		padding: 1.5rem 1rem;
	}

	.icf-greeting {
		font-size: 1.6rem;
		margin-bottom: 1rem;
	}

	.icf-form-text {
		font-size: 0.75rem;
		line-height: 1.6;
		margin-bottom: 1.5rem;
	}

	.icf-form-text .icf-input {
		width: 100%;
		display: block;
		padding: 0.5rem 1rem;
		font-size: 0.7rem;
		margin: 0.4rem 0;
	}

	.icf-privacy-consent {
		font-size: 0.65rem;
		padding: 0.6rem;
	}

	.icf-privacy-consent input[type="checkbox"] {
		width: 14px;
		height: 14px;
	}

	.icf-submit-button {
		font-size: 0.75rem;
		padding: 0.6rem;
		min-width: 140px;
	}
}
