.contact-wrapper {
	min-height: 80vh;
	background: var(--bg-main);
}

.card {
	border-radius: 1rem;
	box-shadow: var(--shadow-soft);
	border: 1px solid var(--border-subtle);
}

.icon-box {
	background: var(--bg-main) !important;
	color: var(--primary) !important;
	border-radius: 0.75rem;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 48px;
	height: 48px;
	margin-right: 1rem;
	font-size: 1.7rem;
	box-shadow: 0 2px 8px rgba(47,40,77,0.04);
}

.contact-info-label {
	color: var(--text-secondary);
	font-size: 0.95rem;
	margin-bottom: 0.1rem;
}

.contact-info-value {
	color: var(--primary);
	font-weight: 700;
	font-size: 1.05rem;
}

.footer-socials a {
	background: var(--primary);
	color: #fff;
	border-radius: 50%;
	width: 36px;
	height: 36px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	font-size: 1.2rem;
	margin-right: 6px;
	transition: background 0.2s, transform 0.2s;
}
.footer-socials a:hover {
	background: var(--accent);
	color: #fff;
	transform: translateY(-2px);
}

.custom-cf7-style .wpcf7-form-control {
	width: 100%;
	padding: 12px 15px;
	border: 1px solid var(--border-subtle);
	border-radius: 8px;
	margin-top: 5px;
	margin-bottom: 15px;
	transition: 0.3s;
	background: var(--bg-card);
	color: var(--text-primary);
}
.custom-cf7-style .wpcf7-form-control:focus {
	border-color: var(--accent);
	outline: none;
	box-shadow: 0 0 0 3px rgba(248, 125, 0, 0.08);
}
.custom-cf7-style .wpcf7-submit {
	background: var(--accent);
	color: #fff;
	border: none;
	padding: 12px 30px;
	border-radius: 8px;
	font-weight: 700;
	cursor: pointer;
	width: 100%;
	transition: background 0.2s;
}
.custom-cf7-style .wpcf7-submit:hover {
	background: var(--accent-light);
}
.wpcf7-spinner {
	position: absolute;
	display: none !important;
}
.wpcf7-not-valid-tip {
	font-size: 13px;
	color: var(--error);
}
.success-checkmark {
	animation: scaleIn 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
}
@keyframes scaleIn {
	0% { transform: scale(0); opacity: 0; }
	100% { transform: scale(1); opacity: 1; }
}
#contact-form-container {
	transition: opacity 0.4s ease;
}

@media (max-width: 991px) {
	.contact-wrapper { padding: 2rem 0; }
	.card { padding: 1.5rem !important; }
	.icon-box { width: 40px; height: 40px; font-size: 1.2rem; }
}
@media (max-width: 768px) {
	.col-lg-7 .card { padding: 30px 20px !important; }
	.contact-wrapper { padding: 1rem 0; }
}
