/* --- CONTACT PAGE STYLES --- */
.contact-card {
	background: #ffffff;
	border-radius: var(--card-radius);
	border: 1px solid var(--border-color);
	padding: 2.5rem;
	box-shadow: 0 10px 30px -10px rgba(0,0,0,0.04);
}

.info-item {
	display: flex;
	align-items: center;
	gap: 15px;
	margin-bottom: 25px;
}

.info-icon {
	width: 50px;
	height: 50px;
	background-color: #fff1f2;
	color: var(--primary-red);
	border-radius: 12px;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 1.4rem;
	flex-shrink: 0;
}

.info-text h6 {
	margin-bottom: 2px;
	font-weight: 700;
	color: var(--dark-text);
}

.info-text p {
	margin-bottom: 0;
	color: var(--text-gray);
	font-size: 0.9rem;
}

.form-label {
	font-weight: 600;
	font-size: 0.9rem;
	color: var(--dark-text);
}

.form-control-custom {
	border: 1px solid #e2e8f0;
	border-radius: 8px;
	padding: 12px 15px;
	font-size: 0.95rem;
	transition: all 0.2s;
	background-color: #f8fafc;
}

.form-control-custom:focus {
	background-color: #fff;
	border-color: var(--primary-red);
	box-shadow: 0 0 0 4px rgba(225, 29, 72, 0.05);
	outline: none;
}

.btn-send {
	background-color: var(--primary-red);
	color: white;
	border: none;
	padding: 12px 30px;
	border-radius: 8px;
	font-weight: 700;
	transition: all 0.3s;
	width: 100%;
}

.btn-send:hover {
	background-color: #be123c;
	transform: translateY(-2px);
	box-shadow: 0 10px 15px -3px rgba(225, 29, 72, 0.2);
}

.section-title {
	font-weight: 800;
	letter-spacing: -0.5px;
	margin-bottom: 1.5rem;
	position: relative;
}

.section-title::after {
	content: '';
	display: block;
	width: 40px;
	height: 4px;
	background: var(--primary-red);
	border-radius: 2px;
	margin-top: 10px;
}

/* Social Links */
.social-circle {
	width: 40px;
	height: 40px;
	background: #f1f5f9;
	color: var(--dark-text);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	text-decoration: none;
	transition: all 0.2s;
}

.social-circle:hover {
	background: var(--primary-red);
	color: white;
	transform: scale(1.1);
}

@media (max-width: 768px) {
	.contact-card { padding: 1.5rem; }
	body { padding-top: 90px; }
}