/* Page: Liên hệ (Contact)
   File placed at: assets/css/pages/lien-he.css
*/

.pt-contact {
	background: #fff;
}

.ptc-container {
	max-width: 1180px;
	margin: 0 auto;
	padding: 0 16px;
}

/* HERO */
.ptc-hero {
	background: #f3efe6;
	border-bottom: 1px solid rgba(0,0,0,.06);
}

.ptc-hero-inner {
	padding: 44px 0 28px;
}

.ptc-title {
	margin: 0;
	font-weight: 800;
	letter-spacing: .2px;
	font-size: clamp(24px, 2.6vw, 36px);
}

.ptc-hero-cols {
	display: grid;
	grid-template-columns: 1fr;
	gap: 14px;
	margin-top: 12px;
}

.ptc-hero-col {
	background: rgba(255,255,255,.5);
	border: 1px solid rgba(0,0,0,.06);
	border-radius: 14px;
	padding: 14px 14px 12px;
}

.ptc-kicker {
	font-weight: 800;
	font-size: 13px;
	text-transform: uppercase;
	letter-spacing: .8px;
	opacity: .75;
	margin-bottom: 6px;
}

.ptc-hero-col p {
	margin: 0;
	line-height: 1.55;
	color: rgba(0,0,0,.82);
}

.ptc-hero-actions {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 10px;
	margin-top: 16px;
}

.ptc-pill {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	background: rgba(255,255,255,.65);
	border: 1px solid rgba(0,0,0,.08);
	border-radius: 999px;
	padding: 8px 12px;
}

.ptc-pill-label {
	opacity: .75;
}

.ptc-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	border-radius: 999px;
	padding: 10px 14px;
	border: 1px solid rgba(0,0,0,.12);
	background: #fff;
	color: rgba(0,0,0,.85);
	text-decoration: none;
	font-weight: 700;
	line-height: 1;
	transition: transform .06s ease, box-shadow .12s ease;
}

.ptc-btn:hover {
	transform: translateY(-1px);
	box-shadow: 0 10px 20px rgba(0,0,0,.06);
}

.ptc-btn:active {
	transform: translateY(0);
}

.ptc-btn-dark {
	background: #161616;
	color: #fff;
	border-color: #161616;
}

.ptc-btn-sm {
	padding: 8px 12px;
	font-weight: 800;
	font-size: 13px;
}

/* BODY */
.ptc-body {
	padding: 28px 0 52px;
}

.ptc-grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: 16px;
}

.ptc-card {
	background: #fff;
	border: 1px solid rgba(0,0,0,.08);
	border-radius: 18px;
	box-shadow: 0 14px 40px rgba(0,0,0,.04);
	overflow: hidden;
}

.ptc-card-head {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 10px;
	padding: 16px 16px 12px;
	border-bottom: 1px solid rgba(0,0,0,.06);
	background: rgba(243,239,230,.55);
}

.ptc-card-title {
	margin: 0;
	font-size: 16px;
	font-weight: 900;
	letter-spacing: .2px;
}

.ptc-card-badge {
	font-size: 12px;
	font-weight: 800;
	letter-spacing: .6px;
	text-transform: uppercase;
	padding: 6px 10px;
	border-radius: 999px;
	border: 1px solid rgba(0,0,0,.10);
	background: rgba(255,255,255,.6);
}

.ptc-card-body {
	padding: 14px 16px 16px;
}

.ptc-lead {
	margin: 0 0 10px;
	line-height: 1.6;
	color: rgba(0,0,0,.82);
}

.ptc-muted {
	opacity: .8;
}

.ptc-list {
	list-style: none;
	padding: 0;
	margin: 0;
	display: grid;
	gap: 8px;
}

.ptc-list li {
	display: flex;
	gap: 10px;
	align-items: flex-start;
	line-height: 1.55;
	color: rgba(0,0,0,.84);
}

.ptc-ico {
	width: 18px;
	min-width: 18px;
	text-align: center;
	opacity: .9;
}

.ptc-line-actions {
	justify-content: space-between;
	align-items: center;
}

.ptc-line-actions span {
	display: inline-flex;
	gap: 10px;
	align-items: center;
}

.ptc-note {
	margin-top: 12px;
	background: rgba(243,239,230,.55);
	border: 1px solid rgba(0,0,0,.06);
	border-radius: 14px;
	padding: 12px 12px;
	line-height: 1.6;
}

.ptc-note--muted {
	opacity: .88;
}

.ptc-actions {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	margin-top: 12px;
}

.ptc-map {
	margin-top: 10px;
	border: 1px dashed rgba(0,0,0,.18);
	border-radius: 14px;
	padding: 10px 12px;
}

.ptc-map summary {
	cursor: pointer;
	font-weight: 800;
}

.ptc-map-embed {
	margin-top: 10px;
	border-radius: 12px;
	overflow: hidden;
}

.ptc-map-embed iframe {
	width: 100% !important;
	max-width: 100%;
	border: 0 !important;
}

/* Form card spans full width */
.ptc-form {
	grid-column: 1 / -1;
}

.ptc-card--form .ptc-card-head {
	background: rgba(22,22,22,.04);
}

/* Fluent Forms tweaks (safe overrides) */
.pt-contact .ff-el-group {
	margin-bottom: 12px;
}

.pt-contact .ff-el-form-control {
	border-radius: 12px !important;
}

.pt-contact .ff-btn {
	border-radius: 12px !important;
}

/* Responsive: 2 columns on desktop */
@media (min-width: 900px) {
	.ptc-hero-cols {
		grid-template-columns: 1fr 1fr;
	}

	.ptc-grid {
		grid-template-columns: 1fr 1fr;
		gap: 18px;
	}
}
