/* ==========================================================
   MEDIVOX - CONTACT PAGE STYLES
   About Page jaisa hi theme/colors match karte hain.
   Sab kuch ".mv-contact-root" ke andar scope hai, isliye yeh CSS
   sirf Contact Us page pe hi apply hogi, kahin aur nahi.
   ========================================================== */

.mv-contact-root {
	font-family: 'Poppins', Arial, sans-serif;
	color: #16305c;
}

.mv-contact-root * {
	box-sizing: border-box;
}

.mv-contact-root .mv-contact-container {
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 24px;
}

/* -----------------------------------------------------------
   01. BANNER (simple hero)
----------------------------------------------------------- */
.mv-contact-root .mv-contact-hero {
	position: relative;
	background-color: #223a5e;
	background-size: cover;
	background-position: center;
	border-radius: 16px;
	overflow: hidden;
	margin: 40px auto;
	max-width: 1200px;
	min-height: 320px;
	display: flex;
	align-items: center;
	justify-content: center;
}

.mv-contact-root .mv-contact-hero-overlay {
	position: absolute;
	inset: 0;
	background: rgba(10, 25, 50, 0.45);
}

.mv-contact-root .mv-contact-hero-content {
	position: relative;
	z-index: 2;
	text-align: center;
	color: #ffffff;
	padding: 50px 24px;
}

.mv-contact-root .mv-contact-hero-heading {
	font-size: 40px;
	font-weight: 700;
	line-height: 1.25;
	margin-bottom: 16px;
}

.mv-contact-root .mv-contact-hero-subtext {
	max-width: 640px;
	margin: 0 auto;
	font-size: 16px;
	line-height: 1.7;
	color: #e6ecf5;
}

/* -----------------------------------------------------------
   02. CONTACT INFO CARDS
----------------------------------------------------------- */
.mv-contact-root .mv-contact-info {
	padding: 20px 0 60px;
}

.mv-contact-root .mv-contact-info-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 24px;
}

.mv-contact-root .mv-contact-info-card {
	background: #ffffff;
	color: #16305c;
	border-radius: 10px;
	padding: 32px 28px;
	box-shadow: 0 10px 30px rgba(0,0,0,0.08);
	border: 1px solid #e9eef6;
	text-align: left;
}

.mv-contact-root .mv-contact-info-icon {
	width: 40px;
	height: 40px;
	object-fit: contain;
	margin-bottom: 18px;
}

.mv-contact-root .mv-contact-info-title {
	font-size: 18px;
	font-weight: 600;
	margin-bottom: 10px;
	color: #1f5fac;
}

.mv-contact-root .mv-contact-info-value {
	font-size: 14px;
	line-height: 1.7;
	color: #5a6b85;
	margin: 0;
	word-break: break-word;
}

/* -----------------------------------------------------------
   03. FORM & MAP
----------------------------------------------------------- */
.mv-contact-root .mv-contact-form-map {
	padding: 20px 0 80px;
}

.mv-contact-root .mv-contact-form-map-grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: 60px;
	align-items: stretch;
}

.mv-contact-root .mv-contact-form-label {
	font-size: 15px;
	font-weight: 500;
	color: #1f5fac;
	margin-bottom: 10px;
	text-align: center;
}

.mv-contact-root .mv-contact-form-heading {
    font-size: 32px;
    font-weight: 600;
    color: #16305c;
    margin-bottom: 24px;
    line-height: 1.35;
    text-align: center;
}


.mv-contact-root .mv-contact-form-wrap {
	background: #ffffff;
	border: 1px solid #e9eef6;
	border-radius: 12px;
	padding: 30px;
	box-shadow: 0 10px 30px rgba(0,0,0,0.06);
}

/* Contact Form 7 fields ko theme ke colors ke sath match karna */
.mv-contact-root .mv-contact-form-wrap .wpcf7-form p {
	margin-bottom: 18px;
}

.mv-contact-root .mv-contact-form-wrap .wpcf7-form label {
	display: block;
	font-size: 14px;
	font-weight: 500;
	color: #16305c;
	margin-bottom: 6px;
}

.mv-contact-root .mv-contact-form-wrap .wpcf7-form input[type="text"],
.mv-contact-root .mv-contact-form-wrap .wpcf7-form input[type="email"],
.mv-contact-root .mv-contact-form-wrap .wpcf7-form input[type="tel"],
.mv-contact-root .mv-contact-form-wrap .wpcf7-form input[type="url"],
.mv-contact-root .mv-contact-form-wrap .wpcf7-form select,
.mv-contact-root .mv-contact-form-wrap .wpcf7-form textarea {
	width: 100%;
	padding: 12px 16px;
	border: 1px solid #dbe3ef;
	border-radius: 8px;
	font-size: 14px;
	font-family: inherit;
	color: #16305c;
	background: #f7f9fc;
	transition: border-color 0.2s ease;
}

.mv-contact-root .mv-contact-form-wrap .wpcf7-form input:focus,
.mv-contact-root .mv-contact-form-wrap .wpcf7-form select:focus,
.mv-contact-root .mv-contact-form-wrap .wpcf7-form textarea:focus {
	outline: none;
	border-color: #1f5fac;
	background: #ffffff;
}

.mv-contact-root .mv-contact-form-wrap .wpcf7-form textarea {
	min-height: 130px;
	resize: vertical;
}

.mv-contact-root .mv-contact-form-wrap .wpcf7-submit {
	display: inline-block;
	padding: 14px 32px;
	border-radius: 30px;
	font-weight: 500;
	font-size: 15px;
	font-family: inherit;
	background: #16305c;
	color: #ffffff;
	border: 2px solid #16305c;
	cursor: pointer;
	transition: all 0.25s ease;
}

.mv-contact-root .mv-contact-form-wrap .wpcf7-submit:hover {
	background: transparent;
	color: #16305c;
}

.mv-contact-root .mv-contact-form-wrap .wpcf7-not-valid-tip {
	color: #d64545;
	font-size: 13px;
	margin-top: 4px;
}

.mv-contact-root .mv-contact-form-wrap .wpcf7-response-output {
	margin-top: 18px;
	border-radius: 8px;
	padding: 12px 16px;
	font-size: 14px;
}

.mv-contact-root .mv-contact-map-col {
	display: flex;
}

.mv-contact-root .mv-contact-map-wrap,
.mv-contact-root .mv-contact-map-placeholder {
	width: 100%;
	min-height: 400px;
	border-radius: 12px;
	overflow: hidden;
	background: #e8edf5;
}

.mv-contact-root .mv-contact-map-iframe {
	width: 100%;
	height: 100%;
	min-height: 400px;
	display: block;
	border: 0;
}

/* -----------------------------------------------------------
   SCROLL REVEAL (used by contact-script.js)
----------------------------------------------------------- */
.mv-contact-root .mv-contact-reveal {
	opacity: 0;
	transform: translateY(24px);
	transition: opacity 0.6s ease, transform 0.6s ease;
}

.mv-contact-root .mv-contact-reveal-visible {
	opacity: 1;
	transform: translateY(0);
}

/* -----------------------------------------------------------
   RESPONSIVE
----------------------------------------------------------- */
@media (max-width: 900px) {
	.mv-contact-root .mv-contact-info-grid {
		grid-template-columns: 1fr;
	}

	.mv-contact-root .mv-contact-form-map-grid {
		grid-template-columns: 1fr;
	}

	.mv-contact-root .mv-contact-hero-heading {
		font-size: 30px;
	}

	.mv-contact-root .mv-contact-map-wrap,
	.mv-contact-root .mv-contact-map-placeholder,
	.mv-contact-root .mv-contact-map-iframe {
		min-height: 320px;
	}
}

@media (max-width: 600px) {
	.mv-contact-root .mv-contact-hero {
		min-height: 260px;
		border-radius: 0;
	}

	.mv-contact-root .mv-contact-container {
		padding: 0 18px;
	}

	.mv-contact-root .mv-contact-form-wrap {
		padding: 22px;
	}
}