.coaContactForm {
	max-width: 700px;
	margin: 0 auto;
	font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, sans-serif;
}

.coaContactFormIntro {
	margin-bottom: 24px;
}

.coaContactFormIntro p {
	color: rgba(255, 255, 255, 0.85);
	font-size: 15px;
	line-height: 1.5;
	margin: 0;
	text-align: center;
}

.coaContactForm .coaFormSection {
	margin-bottom: 24px;
}

.coaContactForm .coaFormSectionLabel {
	display: block;
	font-size: 14px;
	font-weight: 400;
	margin-bottom: 12px;
	color: #ffffff;
}

.coaContactForm .coaFormRequired {
	color: #C41E7A;
}

.coaContactForm label:not(.coaCheckboxItem):not(.coaCheckboxContainer) {
	display: block;
	font-size: 14px;
	font-weight: 400;
	margin-bottom: 6px;
	color: #ffffff;
}

.coaContactForm .coaFormRow {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 16px;
	margin-bottom: 16px;
}

.coaContactForm .coaFormRow:last-child {
	margin-bottom: 0;
}

.coaContactForm .coaFormRow > .coaFormField {
	margin-bottom: 0;
}

@media screen and (max-width: 600px) {
	.coaContactForm .coaFormRow:nth-of-type(2) {
		grid-template-columns: 1fr;
	}
}

.coaContactForm .coaFormField {
	margin-bottom: 16px;
}

.coaContactForm .coaFormField:last-child {
	margin-bottom: 0;
}

.coaContactForm input[type="text"],
.coaContactForm input[type="email"],
.coaContactForm input[type="tel"],
.coaContactForm select {
	width: 100%;
	padding: 14px 20px;
	background: #19546A;
	border: 1px solid #1A5060;
	border-radius: 50px;
	font-family: inherit;
	font-size: 15px;
	color: #ffffff !important;
	-webkit-text-fill-color: #ffffff !important;
	transition: border-color 0.2s, background-color 0.2s;
}

.coaContactForm textarea {
	width: 100%;
	padding: 14px 20px;
	background: #19546A;
	border: 1px solid #1A5060;
	border-radius: 16px;
	font-family: inherit;
	font-size: 15px;
	color: #ffffff;
	resize: vertical;
	min-height: 120px;
	transition: border-color 0.2s, background-color 0.2s;
}

.coaContactForm input[type="text"]:focus,
.coaContactForm input[type="email"]:focus,
.coaContactForm input[type="tel"]:focus,
.coaContactForm select:focus,
.coaContactForm textarea:focus {
	outline: none;
	border-color: #2A6070;
	background: #154555;
}

.coaContactForm input::placeholder,
.coaContactForm textarea::placeholder {
	color: rgba(255, 255, 255, 0.5);
}

.coaContactForm 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='white' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
	background-repeat: no-repeat;
	background-position: right 16px center;
	padding-right: 44px;
	cursor: pointer;
}

.coaContactForm select option {
	background: #093040;
	color: #ffffff;
}

.coaContactForm select option:first-child {
	color: rgba(255, 255, 255, 0.5);
}

#coaContactChildren,
.coaContactForm #coaContactChildren {
	color: #ffffff !important;
	-webkit-text-fill-color: #ffffff !important;
}

/* Program Checkbox Grid */
.coaProgramCheckboxGrid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 12px 24px;
	margin-top: 10px;
	margin-bottom: 16px;
}

@media screen and (max-width: 600px) {
	.coaProgramCheckboxGrid {
		grid-template-columns: 1fr;
	}
}

.coaCheckboxItem {
	display: flex;
	align-items: center;
	gap: 10px;
	cursor: pointer;
	margin-bottom: 0;
}

.coaCheckboxItem span {
	font-size: 14px;
	color: rgba(255, 255, 255, 0.85);
	padding-top: 1px;
}

.coaCheckboxItem input[type="checkbox"] {
	width: 20px;
	height: 20px;
	margin: 0;
	cursor: pointer;
	flex-shrink: 0;
	appearance: none;
	-webkit-appearance: none;
	border: 2px solid rgba(255, 255, 255, 0.4);
	border-radius: 50%;
	background: transparent;
	transition: border-color 0.2s, background-color 0.2s;
	position: relative;
}

.coaCheckboxItem input[type="checkbox"]:hover {
	border-color: rgba(255, 255, 255, 0.6);
}

.coaCheckboxItem input[type="checkbox"]:checked {
	background: #C41E7A;
	border-color: #C41E7A;
}

.coaCheckboxItem input[type="checkbox"]:checked::after {
	content: "";
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	width: 8px;
	height: 8px;
	background: #ffffff;
	border-radius: 50%;
}

/* Select All Button */
.coaSelectAllBtn {
	display: inline-block;
	padding: 8px 16px;
	background: #C41E7A;
	border: none;
	border-radius: 6px;
	color: #ffffff;
	font-family: inherit;
	font-size: 13px;
	font-weight: 500;
	cursor: pointer;
	transition: background-color 0.2s;
}

.coaSelectAllBtn:hover {
	background: #A31866;
}

/* Terms Checkbox */
.coaContactForm .coaCheckboxContainer {
	display: flex;
	align-items: flex-start;
	gap: 10px;
	cursor: pointer;
}

.coaContactForm .coaCheckboxContainer input[type="checkbox"] {
	width: 20px;
	height: 20px;
	margin: 0;
	cursor: pointer;
	appearance: none;
	-webkit-appearance: none;
	border: 2px solid rgba(255, 255, 255, 0.4);
	border-radius: 4px;
	background: transparent;
	transition: border-color 0.2s, background-color 0.2s;
	position: relative;
	flex-shrink: 0;
}

.coaContactForm .coaCheckboxContainer input[type="checkbox"]:hover {
	border-color: rgba(255, 255, 255, 0.6);
}

.coaContactForm .coaCheckboxContainer input[type="checkbox"]:checked {
	background: #C41E7A;
	border-color: #C41E7A;
}

.coaContactForm .coaCheckboxContainer input[type="checkbox"]:checked::after {
	content: "";
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	width: 8px;
	height: 8px;
	background: #ffffff;
	border-radius: 50%;
}

.coaContactForm .coaCheckboxContainer span {
	font-size: 14px;
	color: rgba(255, 255, 255, 0.85);
	padding-top: 1px;
}

.coaContactForm .coaCheckboxContainer span a {
	color: #ffffff;
	text-decoration: underline;
	cursor: pointer;
}

.coaContactForm .coaCheckboxContainer span a:hover {
	color: rgba(255, 255, 255, 0.8);
}

/* Submit Section */
.coaContactForm .coaFormSubmitSection {
	text-align: center;
}

.coaContactForm .coaFormSubmitBtn {
	display: inline-block;
	padding: 14px 48px;
	background: #C41E7A;
	border: none;
	border-radius: 50px;
	color: #ffffff;
	font-family: inherit;
	font-size: 16px;
	font-weight: 600;
	cursor: pointer;
	transition: background-color 0.2s, transform 0.2s;
}

.coaContactForm .coaFormSubmitBtn:hover {
	background: #A31866;
}

.coaContactForm .coaFormSubmitBtn:active {
	transform: scale(0.98);
}

.coaContactForm .coaFormSubmitBtn:disabled {
	opacity: 0.6;
	cursor: not-allowed;
}

@media screen and (max-width: 600px) {
	.coaContactForm .coaFormSubmitBtn {
		display: block;
		width: 100%;
		padding: 16px 24px;
		font-size: 18px;
	}
}

/* Status Messages */
.coaContactForm .coaFormStatus {
	text-align: center;
	padding: 16px;
	border-radius: 8px;
	margin-top: 16px;
	display: none;
}

.coaContactForm .coaFormStatus.coaFormStatusSuccess {
	display: block;
	background: rgba(40, 167, 69, 0.2);
	border: 1px solid #28a745;
	color: #28a745;
}

.coaContactForm .coaFormStatus.coaFormStatusError {
	display: block;
	background: rgba(220, 53, 69, 0.2);
	border: 1px solid #dc3545;
	color: #dc3545;
}

.coaContactForm .coaFormStatus.coaFormStatusLoading {
	display: block;
	background: rgba(255, 255, 255, 0.1);
	border: 1px solid #1A5060;
	color: #ffffff;
}
