/* Contacts Page Styles */

.contacts-page .btn-primary{
	width: 100%;
}
.contacts-page {
	padding: 60px 20px;
}

.wpcf7-textarea {
	height: 185px;
}

.contacts-container {
    display: flex;
	max-width: 1200px;
	margin: 0 auto;
	gap: 40px;
}

/* Header Section */
.contacts-header {
	text-align: center;
	margin-bottom: 60px;
	animation: fadeInDown 0.8s ease-out;
	flex-grow: 1;
}

.contacts-title {
	font-size: 3rem;
	font-weight: 400;
	font-family: "Parkinsans";
	color: var(--text-dark);
	margin-bottom: 16px;
}

.contacts-subtitle {
	font-size: 1.25rem;
	color: var(--text-dark);
	max-width: 600px;
	margin: 0 auto;
	line-height: 1.6;
	opacity: 0.8;
}

/* Contact Cards Grid */
.contacts-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
	gap: 30px;
	margin-bottom: 60px;
}

.contact-card {
	background: white;
	border-radius: 20px;
	padding: 40px 30px;
	text-align: center;
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
	transition: all 0.3s ease;
	animation: fadeInUp 0.8s ease-out;
	animation-fill-mode: both;
	position: relative;
	overflow: hidden;
}

.contact-card::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 5px;
	background: var(--gradient-primary);
	transform: scaleX(0);
	transition: transform 0.3s ease;
}

.contact-card:nth-child(1) {
	animation-delay: 0.1s;
}

.contact-card:nth-child(2) {
	animation-delay: 0.2s;
}

.contact-card:nth-child(3) {
	animation-delay: 0.3s;
}

.contact-card:hover {
	transform: translateY(-10px);
	box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.contact-icon {
	width: 80px;
	height: 80px;
	margin: 0 auto 24px;
	background: var(--gradient-primary);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: all 0.3s ease;
}

.contact-card:hover .contact-icon {
	transform: scale(1.1) rotate(5deg);
}

.contact-icon i {
	font-size: 2rem;
	color: white;
}

.contact-card-title {
	font-size: 1.5rem;
	font-weight: 600;
	font-family: "Nunito";
	color: var(--text-dark);
	margin-bottom: 20px;
}

.contact-content {
	font-size: 1.125rem;
	font-family: "Nunito";
	color: var(--text-dark);
	opacity: 0.8;
	line-height: 1.8;
}

.location-item {
	margin: 8px 0;
	padding: 8px 0;
	border-bottom: 1px solid #e2e8f0;
}

.location-item:last-child {
.contact-link {
	color: var(--primary-color);
	text-decoration: none;
	font-weight: 500;
	transition: all 0.3s ease;
	display: inline-block;
	position: relative;
}

.contact-link::after {
	content: '';
	position: absolute;
	bottom: -4px;
	left: 0;
	width: 0;
	height: 2px;
	background: var(--gradient-primary);
	transition: width 0.3s ease;
}

.contact-link:hover {
	color: var(--primary-color);
	opacity: 0.8;
}
.contact-link:hover {
	color: #764ba2;
}

.contact-link:hover::after {
	width: 100%;
}
/* Call to Action Section */
.contacts-cta {
	background: var(--gradient-primary);
	border-radius: 20px;
	padding: 60px 40px;
	text-align: center;
	box-shadow: 0 20px 40px rgba(1, 139, 170, 0.3);
	animation: fadeInUp 0.8s ease-out 0.4s;
	animation-fill-mode: both;
}



.cta-content {
	max-width: 700px;
	margin: 0 auto;
}

.cta-title {
	font-size: 2.5rem;
	font-weight: 400;
	font-family: "Parkinsans";
	color: var(--white-color);
	margin-bottom: 20px;
}

.cta-text {
	font-size: 1.25rem;
	font-family: "Nunito";
	color: var(--white-color);
	opacity: 0.95;
	margin-bottom: 40px;
	line-height: 1.6;
}

.cta-buttons {
	display: flex;
	gap: 20px;
	justify-content: center;
}
.contacts-cta .btn {
	padding: 16px 32px;
	border-radius: 4px;
	font-size: 1.125rem;
	font-weight: 600;
	font-family: "Nunito";
	text-decoration: none;
	display: inline-flex;
	align-items: center;
	gap: 10px;
	transition: all 0.3s ease;
	border: 2px solid transparent;
	position: relative;
	overflow: hidden;
}

.contacts-cta .btn::before {
	content: '';
	position: absolute;
	top: 50%;
	left: 50%;
	width: 0;
	height: 0;
	border-radius: 50%;
	transform: translate(-50%, -50%);
	transition: width 0.6s ease, height 0.6s ease;
}

.contacts-cta .btn-primary {
	background: var(--white-color);
	color: var(--primary-color);
}

.contacts-cta .btn-primary::before {
	background-color: rgba(255, 255, 255, 0.2);
}

.contacts-cta .btn-primary:hover::before {
	width: 300px;
	height: 300px;
}

.contacts-cta .btn-primary:hover {
	transform: translateY(-2px);
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.contacts-cta .btn-secondary {
	background: transparent;
	color: var(--white-color);
	box-shadow: inset 0 0 0 2px var(--white-color);
}

.contacts-cta .btn-secondary::before {
	background-color: var(--white-color);
	z-index: -1;
}

.contacts-cta .btn-secondary:hover::before {
	width: 300px;
	height: 300px;
}

.contacts-cta .btn-secondary:hover {
	transform: translateY(-2px);
	box-shadow: inset 0 0 0 2px var(--white-color), 0 4px 12px rgba(0, 0, 0, 0.15);
	color: var(--primary-color);
}

.contacts-cta .btn i {
	font-size: 1rem;
}
.btn i {
	font-size: 1rem;
}

/* Animations */
@keyframes fadeInDown {
	from {
		opacity: 0;
		transform: translateY(-30px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

@keyframes fadeInUp {
	from {
		opacity: 0;
		transform: translateY(30px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

/* Responsive Design */
@media (max-width: 768px) {
	.contacts-page {
		padding: 40px 16px;
	}

	.contacts-title {
		font-size: 2rem;
	}

	.contacts-subtitle {
		font-size: 1rem;
	}

	.contacts-grid {
		grid-template-columns: 1fr;
		gap: 20px;
	}

	.contact-card {
		padding: 30px 20px;
	}

	.contacts-cta {
		padding: 40px 24px;
	}

	.cta-title {
		font-size: 1.75rem;
	}

	.cta-text {
		font-size: 1rem;
	}

	.cta-buttons {
		flex-direction: column;
		gap: 16px;
	}

	.btn {
		width: 100%;
		justify-content: center;
	}
}

@media (max-width: 480px) {
	.contacts-title {
		font-size: 1.75rem;
	}

	.contact-icon {
		width: 60px;
		height: 60px;
	}

	.contact-icon i {
		font-size: 1.5rem;
	}

	.contact-card-title {
		font-size: 1.25rem;
	}

	.contact-content {
		font-size: 1rem;
	}
}
