/* ==================================================
   CONTACT PAGE HERO
================================================== */

.contact-page-hero {
	background: var(--black);
}

.contact-page-hero-image img {
	display: block;
	width: 100%;
	max-width: 350px;
	height: 225px;
	margin-inline: auto;
	object-fit: contain;
}

/* ==================================================
   CONTACT SECTION
================================================== */

.contact-section {
	background: var(--black);
}

.contact-row {
	align-items: stretch;
	row-gap: 30px;
}

.contact-row > [class*="col-"] {
	display: flex;
}

/* ==================================================
   CONTACT INFORMATION CARD
================================================== */

.contact-information-card {
	display: flex;
	flex-direction: column;
	width: 100%;
	min-height: 365px;
	padding: 43px 31px 38px;
	border: var(--border-primary);
	border-radius: var(--border-radius);
	background:
		radial-gradient(
			circle at 80% 10%,
			rgba(17, 219, 112, 0.045),
			transparent 32%
		),
		var(--black);
}

.contact-information-card h2 {
	margin-bottom: 9px;
	font-size: 27px;
	line-height: 35px;
}

.contact-information-intro {
	max-width: 270px;
	margin-bottom: 25px;
	font-size: 13px;
	line-height: 22px;
}

.contact-information-list {
	display: flex;
	flex-direction: column;
	gap: 20px;
/* 	margin-top: auto; */
}

.contact-information-item h3 {
	margin-bottom: 5px;
	font-family: var(--font-heading);
	font-size: 18px;
	font-weight: 500;
	line-height: 27px;
	color: var(--primary);
}

.contact-information-item a {
	display: inline-block;
	color: var(--white);
	font-family: var(--font-body);
	font-size: 14px;
	font-weight: 500;
	line-height: 24px;
	overflow-wrap: anywhere;
	transition: color 0.3s ease;
}

.contact-information-item a:hover {
	color: var(--primary);
}

.contact-information-item a:focus-visible {
	outline: 2px solid var(--primary);
	outline-offset: 4px;
	border-radius: 2px;
}

/* ==================================================
   CONTACT FORM CARD
================================================== */

.contact-form-card {
	width: 100%;
	min-height: 365px;
	padding: 29px 48px 31px;
	border-radius: var(--border-radius);
	background:
		linear-gradient(
			135deg,
			#11db70 0%,
			#08a953 100%
		);
	color: var(--black);
}

.contact-form-heading {
	margin-bottom: 17px;
	text-align: center;
}

.contact-form-heading h2 {
	margin-bottom: 2px;
	color: var(--black);
	font-size: 20px;
	line-height: 29px;
}

.contact-form-heading p {
	margin: 0;
	color: var(--black);
/* 	font-size: 12px; */
	line-height: 21px;
}

/* ==================================================
   FORMIDABLE FORM RESET
================================================== */

.contact-form-card .frm_forms,
.contact-form-card .frm_form_fields,
.contact-form-card .frm_fields_container {
	width: 100%;
}

.contact-form-card .frm_forms {
	margin: 0;
	color: var(--black);
}

.contact-form-card .frm_form_field {
	margin-bottom: 13px;
}

.contact-form-card fieldset {
	min-width: 0;
	margin: 0;
	padding: 0;
	border: 0;
}

.contact-form-card .frm_form_field > label,
.contact-form-card .frm_primary_label {
	display: block;
	margin: 0 0 5px;
	padding: 0;
	color: var(--black);
	font-family: var(--font-body);
	font-size: 14px;
	font-weight: 400;
	line-height: 18px;
}

.contact-form-card input:focus, .contact-form-card select:focus, .contact-form-card textarea:focus {
    border-color: var(--white) !important;
    background: #141414 !important;
    box-shadow: 0 0 0 3px rgba(17, 219, 112, 0.12) !important;
}

label#field_e3abv_label {
    opacity: 0;
    visibility: hidden;
}

.contact-form-card .frm_required {
	color: #8b0000;
}

/* ==================================================
   CONTACT FORM SUBMIT BUTTON SHINE
================================================== */

.frm_style_formidable-style.with_frm_style
.frm_submit button {
	position: relative;
	z-index: 1;
	overflow: hidden;
	isolation: isolate;
	background: #161616;
	border: 1px solid var(--primary);
	box-shadow: unset;
	margin-bottom: 0;
	color: var(--white);
	transition:
		color 0.3s ease,
		background-color 0.3s ease,
		border-color 0.3s ease,
		box-shadow 0.3s ease,
		transform 0.3s ease;
}

.frm_style_formidable-style.with_frm_style
.frm_submit button::before {
	content: "";
	position: absolute;
	top: 50%;
	left: -75%;
	z-index: -1;
	width: 45%;
	height: 220%;
	background: linear-gradient(
		90deg,
		transparent 0%,
		rgba(255, 255, 255, 0.08) 30%,
		rgba(255, 255, 255, 0.32) 50%,
		rgba(255, 255, 255, 0.08) 70%,
		transparent 100%
	);
	transform: translateY(-50%) skewX(-20deg);
	transition: left 0.75s ease;
	pointer-events: none;
}

.frm_style_formidable-style.with_frm_style
.frm_submit button:hover::before,
.frm_style_formidable-style.with_frm_style
.frm_submit button:focus-visible::before {
	left: 135%;
}

.frm_style_formidable-style.with_frm_style
.frm_submit button:hover {
	background: #161616;
	border-color: var(--primary);
	color: var(--primary);
	box-shadow: var(--shadow-primary);
	transform: translateY(-2px);
}

.frm_style_formidable-style.with_frm_style
.frm_submit button:focus-visible {
	outline: 2px solid var(--primary);
	outline-offset: 3px;
}

.frm_style_formidable-style.with_frm_style
.frm_submit button:active {
	transform: translateY(0);
}

.with_frm_style .frm_form_fields > fieldset {
    padding: 0;
}

div#frm_field_438_container {
    margin: 0;
}

/* .frm_style_formidable-style.with_frm_style .frm_submit button:hover {
    background: #161616;
    border-color: var(--primary);
} */

/* ==================================================
   FORM INPUTS
================================================== */

.contact-form-card input[type="text"],
.contact-form-card input[type="email"],
.contact-form-card input[type="tel"],
.contact-form-card input[type="number"],
.contact-form-card input[type="url"],
.contact-form-card select,
.contact-form-card textarea {
	display: block;
	width: 100%;
	min-height: 40px;
	margin: 0;
	padding: 9px 13px;
	border: 1px solid transparent;
	border-radius: 8px;
	outline: 0;
	background: #171717;
	box-shadow: none;
	color: var(--white) !important;
	font-family: var(--font-body);
	font-size: 12px;
	font-weight: 400;
	line-height: 20px;
	transition:
		border-color 0.3s ease,
		background-color 0.3s ease,
		box-shadow 0.3s ease;
}

.contact-form-card textarea {
	height: 52px;
	min-height: 52px;
	max-height: 150px;
	resize: vertical;
}

.contact-form-card input::placeholder,
.contact-form-card textarea::placeholder {
	color: rgba(255, 255, 255, 0.45);
	opacity: 1;
}

.contact-form-card input:focus,
.contact-form-card select:focus,
.contact-form-card textarea:focus {
	border-color: var(--white);
	background: #101010;
	box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.14);
}

/* ==================================================
   NAME FIELD
================================================== */

.contact-form-card .frm_combo_inputs_container {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 18px;
}

.contact-form-card .frm_combo_inputs_container > div {
	min-width: 0;
}

.frm_style_formidable-style.with_frm_style div.frm_description {
	margin-top: 3px;
	color: rgba(0, 0, 0, 0.46);
	font-family: var(--font-body);
	font-size: 13px;
	line-height: 15px;
}

/* .frm_style_formidable-style.with_frm_style div.frm_description {
	color: rgba(0, 0, 0, 0.42);
} */

/* ==================================================
   PHONE AND EMAIL COLUMNS
================================================== */

/*
 * Formidable mein Phone aur Email fields ko:
 *
 * Phone: frm6 frm_first
 * Email: frm6
 *
 * CSS Layout Classes assign karein.
 */

.contact-form-card .frm_fields_container {
	display: grid;
	grid-template-columns: repeat(12, minmax(0, 1fr));
	column-gap: 18px;
}

.contact-form-card .frm_form_field,
.contact-form-card .frm_submit,
.contact-form-card .frm_error_style,
.contact-form-card .frm_message {
	grid-column: 1 / -1;
}

.contact-form-card .frm_form_field.frm6 {
	grid-column: span 6;
}

/* ==================================================
   SUBMIT BUTTON
================================================== */

.contact-form-card .frm_submit {
	margin: 0;
	padding: 0;
}

.contact-form-card .frm_submit button,
.contact-form-card .frm_submit input[type="submit"] {
	position: relative;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: auto;
	min-width: 78px;
	min-height: 40px;
	margin: 0;
	padding: 8px 17px;
	overflow: hidden;
	border: var(--border-primary);
	border-radius: 10px;
	background: #171717;
	box-shadow: none;
	color: var(--white);
	font-family: var(--font-body);
	font-size: 11px;
	font-weight: 500;
	line-height: 20px;
	cursor: pointer;
	transition:
		background-color 0.3s ease,
		color 0.3s ease,
		border-color 0.3s ease,
		transform 0.3s ease;
}

.contact-form-card .frm_submit button:hover,
.contact-form-card .frm_submit input[type="submit"]:hover {
	border-color: var(--black);
	background: var(--black);
	color: var(--primary);
	transform: translateY(-1px);
}

.contact-form-card .frm_submit button:active,
.contact-form-card .frm_submit input[type="submit"]:active {
	transform: translateY(1px);
}

/* ==================================================
   FORM VALIDATION
================================================== */

.contact-form-card .frm_error {
	margin-top: 4px;
	color: #8b0000;
	font-family: var(--font-body);
	font-size: 10px;
	line-height: 17px;
}

.contact-form-card .frm_error_style {
	margin: 0 0 15px;
	padding: 10px 13px;
	border: 1px solid #8b0000;
	border-radius: 8px;
	background: rgba(139, 0, 0, 0.12);
	color: #650000;
	font-size: 11px;
	line-height: 19px;
}

.contact-form-card .frm_message {
	margin: 0;
	padding: 13px 15px;
	border: 1px solid rgba(0, 0, 0, 0.45);
	border-radius: 8px;
	background: rgba(0, 0, 0, 0.1);
	color: var(--black);
	font-size: 12px;
	line-height: 21px;
}

/* ==================================================
   LARGE DESKTOP
================================================== */

@media (max-width: 1199px) {

	.contact-information-card {
		padding-right: 27px;
		padding-left: 27px;
	}

	.contact-form-card {
		padding-right: 38px;
		padding-left: 38px;
	}

}

/* ==================================================
   TABLET
================================================== */

@media (max-width: 991px) {

	.contact-page-hero-image img {
		max-width: 390px;
		height: auto;
	}

	.contact-row > [class*="col-"] {
		width: 100%;
	}

	.contact-information-card,
	.contact-form-card {
		min	min-height: 0;
	}

	.contact-information-card {
		padding: 35px;
	}

	.contact-information-intro {
		max-width: 520px;
	}

	.contact-information-list {
		align-items: flex-start;
		flex-direction: row;
		gap: 70px;
		margin-top: 0;
	}

	.contact-form-card {
		padding: 35px 40px;
	}

}

/* ==================================================
   MOBILE
================================================== */

@media (max-width: 767px) {

	.contact-information-card,
	.contact-form-card {
		padding: 30px 25px;
		border-radius: 18px;
	}

	.contact-information-card h2 {
		font-size: 24px;
		line-height: 32px;
	}

	.contact-information-list {
		flex-direction: column;
		gap: 18px;
	}

	.contact-form-heading {
		margin-bottom: 20px;
	}

	.contact-form-card .frm_fields_container {
		display: block;
	}

	.contact-form-card .frm_form_field.frm6 {
		width: 100%;
	}

	.contact-form-card .frm_combo_inputs_container {
		grid-template-columns: 1fr;
		gap: 12px;
	}

	.contact-form-card .frm_form_field {
		margin-bottom: 14px;
	}

	.contact-form-card textarea {
		height: 90px;
		min-height: 90px;
	}

}

/* ==================================================
   SMALL MOBILE
================================================== */

@media (max-width: 575px) {

	.contact-row {
		row-gap: 20px;
	}

	.contact-information-card,
	.contact-form-card {
		padding: 26px 20px;
		border-radius: 15px;
	}

	.contact-information-card h2 {
		font-size: 22px;
		line-height: 30px;
	}

	.contact-information-intro {
		font-size: 13px;
		line-height: 22px;
	}

	.contact-information-item h3 {
		font-size: 17px;
		line-height: 26px;
	}

	.contact-information-item a {
		font-size: 13px;
		line-height: 23px;
	}

	.contact-form-heading h2 {
		font-size: 19px;
		line-height: 28px;
	}

	.contact-form-card input[type="text"],
	.contact-form-card input[type="email"],
	.contact-form-card input[type="tel"],
	.contact-form-card input[type="number"],
	.contact-form-card input[type="url"],
	.contact-form-card select,
	.contact-form-card textarea {
		font-size: 16px;
	}

	.contact-form-card .frm_submit button,
	.contact-form-card .frm_submit input[type="submit"] {
		width: 100%;
	}

}

/* ==================================================
   BRIEF FORM — BROWSER AUTOFILL FIX
================================================== */

.contact-form-card input:-webkit-autofill,
.contact-form-card input:-webkit-autofill:hover,
.contact-form-card input:-webkit-autofill:focus,
.contact-form-card textarea:-webkit-autofill,
.contact-form-card textarea:-webkit-autofill:hover,
.contact-form-card textarea:-webkit-autofill:focus,
.contact-form-card select:-webkit-autofill,
.contact-form-card select:-webkit-autofill:hover,
.contact-form-cardt select:-webkit-autofill:focus {
	-webkit-text-fill-color: var(--white) !important;
	caret-color: var(--white) !important;

	-webkit-box-shadow:
		0 0 0 1000px #171717 inset !important;

	box-shadow:
		0 0 0 1000px #171717 inset !important;

	border: 1px solid rgba(17, 219, 112, 0.45) !important;
	background-color: #171717 !important;

	transition:
		background-color 9999s ease-out 0s !important;
}

/* Firefox / modern autofill support */
.contact-form-card input:autofill,
.contact-form-card textarea:autofill,
.contact-form-card select:autofill {
	color: var(--white) !important;
	caret-color: var(--white) !important;
	background: #171717 !important;
}