/* ===========================
   Contact Page Styles (Refined)
   =========================== */

/* Hero section */
.hero-small {
	padding: 80px 0;
	background: linear-gradient(
		180deg,
		rgba(16, 16, 16, 0.85),
		rgba(12, 12, 12, 0.95)
	);
	text-align: center;
}

.hero-small .hero-inner {
	max-width: 900px;
	margin: 0 auto;
}

.hero-small .hero-title {
	font-size: clamp(2.25rem, 4vw, 3.25rem);
	margin-bottom: 16px;
	color: #fff;
	font-weight: 700;
}

.hero-small .hero-sub {
	font-size: 1.2rem;
	color: var(--text-muted);
	line-height: 1.6;
	max-width: 600px;
	margin: 0 auto;
}

/* Section spacing */
.section.container {
	padding: 80px 0;
}

.section h2 {
	font-size: clamp(2rem, 2.5vw, 2.5rem);
	margin-bottom: 24px;
	color: #fff;
	font-weight: 600;
	text-align: center;
}

.section .lead {
	font-size: 1.125rem;
	color: var(--text-muted);
	max-width: 72ch;
	margin: 0 auto 32px auto;
	line-height: 1.7;
	text-align: center;
}

/* Contact Form */
.contact-form {
	max-width: 700px;
	margin: 0 auto;
}

.contact-form .form-group {
	margin-bottom: 24px;
	display: flex;
	flex-direction: column;
}

.contact-form label {
	margin-bottom: 8px;
	color: #fff;
	font-weight: 500;
	font-size: 1.05rem;
}

.contact-form input,
.contact-form textarea {
	padding: 14px 16px;
	border-radius: 10px;
	border: 1px solid #333;
	background-color: #111;
	color: #fff;
	font-size: 1rem;
	transition: all 0.3s ease;
}

.contact-form input:focus,
.contact-form textarea:focus {
	outline: none;
	border-color: var(--accent-color, #c8a76d);
	box-shadow: 0 0 8px var(--accent-color, #c8a76d);
}

.contact-form button {
	margin-top: 12px;
	padding: 16px 32px;
	font-size: 1.1rem;
	border-radius: 10px;
	cursor: pointer;
	background-color: var(--accent-color, #c8a76d);
	border: none;
	color: #111;
	font-weight: 600;
	transition: all 0.3s ease;
}

.contact-form button:hover {
	background-color: #fff;
	color: #111;
	transform: translateY(-2px);
}

/* Map placeholder */
.map-placeholder {
	margin-top: 40px;
	background-color: #111;
	color: var(--text-muted);
	text-align: center;
	padding: 60px 20px;
	border-radius: 14px;
	font-style: italic;
	font-size: 1.1rem;
}

/* CTA Section */
.contact-band {
	background: linear-gradient(
		135deg,
		rgba(200, 167, 109, 0.15),
		rgba(12, 12, 12, 0.9)
	);
	padding: 80px 20px;
	margin-top: 60px;
	border-radius: 16px;
	text-align: center;
	box-shadow: 0 6px 24px rgba(0, 0, 0, 0.45);
}

.contact-band h2 {
	font-size: clamp(2rem, 2.8vw, 2.25rem);
	margin-bottom: 16px;
	color: #fff;
}

.contact-band p {
	font-size: 1.15rem;
	color: var(--text-muted);
	margin-bottom: 32px;
	line-height: 1.65;
}

.contact-band a.btn-primary {
	padding: 18px 36px;
	font-size: 1.1rem;
	border-radius: 10px;
	transition: all 0.3s ease;
}

.contact-band a.btn-primary:hover {
	background-color: #fff;
	color: #111;
	transform: translateY(-2px);
}

/* Responsive */
@media (max-width: 980px) {
	.section.container {
		padding: 60px 20px;
	}
}

@media (max-width: 600px) {
	.section.container {
		padding: 40px 16px;
	}

	.contact-band {
		padding: 60px 16px;
	}

	.contact-form input,
	.contact-form textarea {
		font-size: 0.95rem;
	}
}

.map-placeholder {
	margin: 24px 0;
	display: flex;
	justify-content: center;
}

.social-icons {
	display: flex;
	justify-content: center;
	gap: 20px;
	margin-top: 24px;
}

.social-icons a {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 48px;
	height: 48px;
	background: rgba(200, 167, 109, 0.1);
	border-radius: 12px;
	transition: all 0.3s ease;
}

.social-icons a img {
	width: 24px;
	height: 24px;
	transition: all 0.3s ease;
}

.social-icons a:hover {
	background-color: var(--accent-color, #c8a76d);
}

.social-icons a:hover img {
	filter: brightness(0) saturate(100%) invert(1);
}

/* Responsive adjustments */
@media (max-width: 768px) {
	.social-icons {
		gap: 16px;
	}

	.social-icons a {
		width: 40px;
		height: 40px;
	}

	.social-icons a img {
		width: 20px;
		height: 20px;
	}
}

@media (max-width: 480px) {
	.social-icons {
		gap: 12px;
	}

	.social-icons a {
		width: 36px;
		height: 36px;
	}

	.social-icons a img {
		width: 18px;
		height: 18px;
	}
}
