/* ========== CONTACT PAGE ==========
   Dedicated styles for contact.php */

/* Breadcrumb (same pattern as FAQ) */
.contact-breadcrumb {
	font-size: 14px;
	color: var(--color-gray-400);
	margin-bottom: 4px;
}

.contact-breadcrumb a {
	color: var(--color-gray-400);
	text-decoration: none;
}

.contact-breadcrumb a:hover {
	text-decoration: underline;
}

/* Banner */
.contact-banner {
	border-radius: 24px;
	overflow: hidden;
	margin-bottom: 24px;
}

.contact-banner img {
	width: 100%;
	display: block;
	object-fit: cover;
	max-height: 280px;
}

/* ---------- Company info bar ---------- */
.contact-info-bar {
	background: var(--color-gray-100);
	border-radius: 22px;
	padding: 32px 48px;
	margin-bottom: 32px;
}

.contact-info-bar__company {
	font-size: 20px;
	font-weight: 700;
	line-height: 1.4;
	margin-bottom: 12px;
}

.contact-info-bar__details {
	display: flex;
	flex-direction: column;
	gap: 2px;
}

.contact-info-bar__details span {
	font-size: 15px;
	line-height: 1.6;
	color: var(--color-gray-600);
}

/* ---------- Contact boxes ---------- */
.contact-boxes {
	display: flex;
	gap: 24px;
	margin-bottom: 48px;
}

.contact-box {
	flex: 1;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	text-align: center;
	border-radius: 22px;
	padding: 40px 32px;
	gap: 16px;
}

/* Green variant */
.contact-box--green {
	background: var(--color-green);
	color: #fff;
}

/* Light variant */
.contact-box--light {
	background: var(--color-gray-100);
	color: var(--color-text);
}

.contact-box__title {
	font-size: clamp(20px, 2vw, 24px);
	font-weight: 700;
	line-height: 1.25;
}

.contact-box__sub {
	font-size: clamp(18px, 1.6vw, 22px);
	font-weight: 500;
}

.contact-box--green .contact-box__sub {
	color: rgba(255, 255, 255, 0.9);
}

.contact-box--light .contact-box__sub {
	color: var(--color-gray-600);
}

.contact-box__btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	background: #000;
	color: #fff;
	border-radius: 30px;
	padding: 16px 40px;
	font-size: 15px;
	font-weight: 500;
	text-decoration: none;
	transition: opacity 0.2s;
}

.contact-box__btn:hover {
	opacity: 0.85;
}

/* ========== RESPONSIVE ========== */
@media (max-width: 992px) {
	.contact-boxes {
		flex-direction: column;
	}

	.contact-info-bar {
		padding: 24px 24px;
	}
}
