/**
 * Contact Block Styles
 */

.contact-block {
	width: 100%;
	margin: 0;
	padding: 0;
}

/* Top Section */
.contact-top-section {
	position: relative;
	width: 100%;
	min-height: 40vh;
	display: flex;
	align-items: center;
	justify-content: center;
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	overflow: hidden;
}

.contact-top-overlay {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: rgba(255, 255, 255, 0.3);
	backdrop-filter: blur(10px);
	-webkit-backdrop-filter: blur(10px);
	z-index: 1;
}

.contact-top-container {
	position: relative;
	z-index: 2;
	text-align: center;
	padding: 3rem 2rem;
	max-width: 1200px;
	margin: 0 auto;
	width: 100%;
}

.contact-top-title {
	font-family: "Poppins", Sans-serif;
	font-size: 3.5rem;
	font-weight: 700;
	color: #2c3e50;
	line-height: 1.2;
	margin: 0;
	text-align: center;
}

@media (max-width: 768px) {
	.contact-top-title {
		font-size: 2.5rem;
	}
}

/* Content Section */
.contact-content-section {
	background: #e8edf0;
	padding: 4rem 0;
	width: 100%;
}

.contact-container {
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 2rem;
}

.contact-tagline {
	font-family: "Poppins", Sans-serif;
	font-size: 2.5rem;
	font-weight: 700;
	color: #2c3e50;
	text-align: center;
	margin: 0 0 3rem;
	line-height: 1.3;
}

.contact-wrapper {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 4rem;
	align-items: start;
}

/* Left Column - Contact Info */
.contact-info-column {
	display: flex;
	flex-direction: column;
	gap: 2rem;
}

.contact-name-title {
	margin-bottom: 0.5rem;
}

.contact-name {
	font-family: "Poppins", Sans-serif;
	font-size: 1.5rem;
	font-weight: 700;
	color: #326281;
	margin: 0 0 0.5rem;
	line-height: 1.3;
}

.contact-title {
	font-family: "Poppins", Sans-serif;
	font-size: 1.125rem;
	font-weight: 400;
	color: #326281;
	margin: 0;
}

.contact-specializations {
	font-family: "Poppins", Sans-serif;
	font-size: 1rem;
	font-weight: 400;
	color: #326281;
	margin: 0;
	line-height: 1.6;
}

.contact-phone,
.contact-email {
	font-family: "Poppins", Sans-serif;
	font-size: 1rem;
	font-weight: 400;
	color: #2c3e50;
	display: flex;
	align-items: center;
	gap: 0.75rem;
	margin: 0;
}

.contact-phone a,
.contact-email a {
	color: #326281;
	text-decoration: none;
	transition: color 0.3s ease;
}

.contact-phone a:hover,
.contact-email a:hover {
	color: #2c3e50;
	text-decoration: underline;
}

.contact-icon {
	font-size: 1.25rem;
	line-height: 1;
}

.contact-services,
.contact-commitment {
	font-family: "Poppins", Sans-serif;
	font-size: 1rem;
	font-weight: 400;
	color: #2c3e50;
	line-height: 1.8;
	margin: 0;
}

.contact-services p,
.contact-commitment p {
	margin: 0 0 1rem;
}

.contact-services p:last-child,
.contact-commitment p:last-child {
	margin-bottom: 0;
}

/* Right Column - Contact Form */
.contact-form-column {
	background: transparent;
	border-radius: 8px;
	padding: 2.5rem;
}

.contact-form-wrapper {
	width: 100%;
}

.contact-form-placeholder {
	padding: 2rem;
	text-align: center;
	color: #666;
	font-family: "Poppins", Sans-serif;
}

/* Contact Form 7 Styling */
.contact-form-column .wpcf7 {
	margin: 0;
}

.contact-form-column .wpcf7-form {
	display: flex;
	flex-direction: column;
	gap: 1.5rem;
}

.contact-form-column .wpcf7-form p {
	margin: 0;
}

.contact-form-column .wpcf7-form label {
	font-family: "Poppins", Sans-serif;
	font-size: 1rem;
	font-weight: 500;
	color: #2c3e50;
	display: block;
	margin-bottom: 0.5rem;
}

.contact-form-column .wpcf7-form input[type="text"],
.contact-form-column .wpcf7-form input[type="email"],
.contact-form-column .wpcf7-form input[type="tel"],
.contact-form-column .wpcf7-form textarea {
	width: 100%;
	padding: 0.875rem 1rem;
	border: 1px solid #ddd;
	border-radius: 4px;
	font-family: "Poppins", Sans-serif;
	font-size: 1rem;
	color: #2c3e50;
	background: #fff;
	transition: border-color 0.3s ease;
	box-sizing: border-box;
}

.contact-form-column .wpcf7-form input[type="text"]:focus,
.contact-form-column .wpcf7-form input[type="email"]:focus,
.contact-form-column .wpcf7-form input[type="tel"]:focus,
.contact-form-column .wpcf7-form textarea:focus {
	outline: none;
	border-color: #326281;
}

.contact-form-column .wpcf7-form textarea {
	min-height: 120px;
	resize: vertical;
}

.contact-form-column .wpcf7-form input[type="submit"] {
	font-family: "Poppins", Sans-serif;
	font-size: 1.125rem;
	font-weight: 600;
	color: #fff;
	background: #326281;
	padding: 1rem 2.5rem;
	border: 2px solid #326281;
	border-radius: 30px;
	cursor: pointer;
	transition: all 0.3s ease;
	width: auto;
	display: inline-block;
}

.contact-form-column .wpcf7-form input[type="submit"]:hover {
	background: #2c3e50;
	border-color: #2c3e50;
	transform: translateY(-2px);
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.contact-form-column .wpcf7-form .wpcf7-not-valid-tip {
	font-family: "Poppins", Sans-serif;
	font-size: 0.875rem;
	color: #d32f2f;
	margin-top: 0.25rem;
	display: block;
}

.contact-form-column .wpcf7-form .wpcf7-validation-errors,
.contact-form-column .wpcf7-form .wpcf7-mail-sent-ok {
	font-family: "Poppins", Sans-serif;
	font-size: 0.9375rem;
	padding: 1rem;
	border-radius: 4px;
	margin: 1rem 0;
}

.contact-form-column .wpcf7-form .wpcf7-validation-errors {
	background: #ffebee;
	color: #d32f2f;
	border: 1px solid #ffcdd2;
}

.contact-form-column .wpcf7-form .wpcf7-mail-sent-ok {
	background: #e8f5e9;
	color: #2e7d32;
	border: 1px solid #c8e6c9;
}

/* Responsive */
@media (max-width: 768px) {
	.contact-content-section {
		padding: 3rem 0;
	}

	.contact-container {
		padding: 0 1.5rem;
	}

	.contact-tagline {
		font-size: 2rem;
		margin-bottom: 2rem;
	}

	.contact-wrapper {
		grid-template-columns: 1fr;
		gap: 2rem;
	}

	.contact-form-column {
		padding: 2rem 1.5rem;
	}

	.contact-name {
		font-size: 1.25rem;
	}
}

