.contact-page {
	overflow: hidden;
	background: #ffffff;
	color: var(--color-text);
}

.contact-page h1,
.contact-page h2,
.contact-page h3,
.contact-page p {
	margin-top: 0;
}

.contact-kicker {
	margin-bottom: 12px;
	color: var(--color-heading);
	font-size: 15px;
	font-weight: 800;
	text-transform: uppercase;
}

.contact-hero {
	width: 100%;
	background: #f4f9ff;
}

.contact-hero picture,
.contact-hero img {
	display: block;
	width: 100%;
}

.contact-hero img {
	height: auto;
}

.contact-overview {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 20px;
	padding: 26px 0 30px;
}

.contact-info-card {
	display: grid;
	grid-template-columns: 52px minmax(0, 1fr);
	align-items: center;
	gap: 16px;
	min-height: 82px;
	padding: 18px 20px;
	border: 1px solid #d6e3f2;
	border-radius: 8px;
	background: #ffffff;
	box-shadow: 0 8px 20px rgba(8, 54, 116, 0.05);
}

.contact-info-card > span {
	display: grid;
	width: 52px;
	height: 52px;
	place-items: center;
	border-radius: 50%;
	background: var(--color-brand);
	color: #ffffff;
	font-size: 24px;
	font-weight: 800;
}

.contact-info-card__icon img {
	width: 24px;
	height: 24px;
	object-fit: contain;
}

.contact-info-card small {
	display: block;
	margin-bottom: 4px;
	color: #174780;
	font-size: 14px;
	font-weight: 800;
	line-height: 1.2;
	text-transform: uppercase;
}

.contact-info-card strong {
	display: block;
	color: #174780;
	font-size: 14px;
	font-weight: 500;
	line-height: 1.25;
}

.contact-info-card p {
	margin: 4px 0 0;
	color: #52657c;
	font-size: 11px;
	line-height: 1.35;
}

.contact-info-card--address p {
	margin-top: 0;
	font-size: 11px;
	font-weight: 400;
	line-height: 1.45;
}

.contact-consult {
	display: grid;
	grid-template-columns: 0.72fr 1.28fr;
	gap: 44px;
	padding: 0 0 36px;
	align-items: stretch;
}

.contact-consult__intro {
	display: flex;
	flex-direction: column;
}

.contact-consult__intro h2 {
	color: var(--color-heading);
	font-size: 34px;
	font-weight: 800;
	line-height: 1.15;
	text-transform: uppercase;
}

.contact-consult__intro h2::after {
	display: block;
	width: 34px;
	height: 4px;
	margin-top: 18px;
	border-radius: 999px;
	background: var(--color-brand);
	content: "";
}

.contact-consult__intro p:not(.contact-kicker) {
	max-width: 420px;
	margin: 0 0 22px;
	color: #465b73;
	font-size: 16px;
	line-height: 1.55;
}

.contact-consult__intro img {
	width: 100%;
	flex: 1 1 auto;
	min-height: 0;
	border-radius: 8px;
	object-fit: cover;
}

.contact-form {
	align-self: start;
	padding: 28px;
	border: 1px solid #d5e3f1;
	border-radius: 8px;
	background: #ffffff;
	box-shadow: 0 10px 28px rgba(8, 52, 111, 0.05);
}

.contact-form__grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 20px 22px;
}

.contact-form label {
	display: grid;
	gap: 8px;
	color: #41546b;
	font-size: 13px;
	font-weight: 500;
}

.contact-form label > span {
	display: inline-flex;
	align-items: baseline;
	gap: 3px;
}

.contact-form em {
	color: #e04b5a;
	font-style: normal;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
	width: 100%;
	min-height: 48px;
	padding: 0 16px;
	border: 1px solid #d8e3ef;
	border-radius: 7px;
	background: #ffffff;
	color: #22344a;
	font: inherit;
	font-weight: 400;
	outline: none;
	transition: border-color 160ms ease, box-shadow 160ms ease;
}

.contact-select {
	position: relative;
}

.contact-select__native {
	position: absolute;
	width: 1px;
	height: 1px;
	opacity: 0;
	pointer-events: none;
}

.contact-select__button {
	position: relative;
	width: 100%;
	min-height: 48px;
	margin: 0;
	padding: 0 42px 0 16px;
	border: 1px solid #d8e3ef;
	border-radius: 7px;
	background: #ffffff;
	color: #22344a;
	cursor: pointer;
	font: inherit;
	font-weight: 400;
	text-align: left;
	transition: border-color 160ms ease, box-shadow 160ms ease;
}

.contact-select__button::after {
	position: absolute;
	top: 50%;
	right: 16px;
	width: 8px;
	height: 8px;
	border-right: 2px solid #0e2a4a;
	border-bottom: 2px solid #0e2a4a;
	content: "";
	transform: translateY(-62%) rotate(45deg);
	transition: transform 160ms ease;
}

.contact-select.is-open .contact-select__button,
.contact-select__button:focus-visible {
	border-color: var(--color-brand);
	box-shadow: 0 0 0 3px rgba(6, 74, 167, 0.12);
	outline: none;
}

.contact-select.is-open .contact-select__button::after {
	transform: translateY(-25%) rotate(225deg);
}

.contact-select__menu {
	position: absolute;
	z-index: 12;
	top: calc(100% + 6px);
	right: 0;
	left: 0;
	overflow: hidden;
	border: 1px solid #cbd8e8;
	border-radius: 7px;
	background: #ffffff;
	box-shadow: 0 14px 30px rgba(10, 42, 84, 0.14);
	opacity: 0;
	pointer-events: none;
	transform: translateY(-6px);
	transition: opacity 140ms ease, transform 140ms ease;
}

.contact-select.is-open .contact-select__menu {
	opacity: 1;
	pointer-events: auto;
	transform: translateY(0);
}

.contact-select__option {
	display: block;
	width: 100%;
	min-height: 38px;
	margin: 0;
	padding: 9px 16px;
	border: 0;
	background: #ffffff;
	color: #22344a;
	cursor: pointer;
	font: inherit;
	font-size: 13px;
	line-height: 1.35;
	text-align: left;
}

.contact-select__option:hover,
.contact-select__option:focus-visible {
	background: #edf6ff;
	color: var(--color-heading);
	outline: none;
}

.contact-select__option[aria-selected="true"] {
	background: var(--color-brand);
	color: #ffffff;
}

.contact-form textarea {
	min-height: 98px;
	padding-top: 14px;
	resize: vertical;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
	border-color: var(--color-brand);
	box-shadow: 0 0 0 3px rgba(6, 74, 167, 0.1);
}

.contact-form__message {
	margin-top: 20px;
}

.contact-form > button[type="submit"] {
	width: 100%;
	min-height: 48px;
	margin-top: 20px;
	border: 0;
	border-radius: 7px;
	background: linear-gradient(180deg, #0758c6 0%, #003f9d 100%);
	color: #ffffff;
	cursor: pointer;
	font-size: 16px;
	font-weight: 600;
	text-transform: uppercase;
}

.contact-form__note {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	margin: 28px 0 0;
	color: #61738a;
	font-size: 13px;
	line-height: 1.45;
	text-align: center;
	margin-top: 20px !important;
}

.contact-form__note img {
	width: 15px;
	height: 15px;
	object-fit: contain;
}

.contact-branches {
	padding: 0 0 34px;
}

.contact-branches h2,
.contact-quick h2,
.contact-faq h2 {
	margin-bottom: 18px;
	color: var(--color-heading);
	font-size: 26px;
	font-weight: 700;
	text-transform: uppercase;
}

.contact-branches__layout {
	display: grid;
	grid-template-columns: 1.08fr 0.92fr;
	gap: 18px;
}

.contact-map {
	position: relative;
	min-height: 360px;
	overflow: hidden;
	border: 1px solid #d5e3f1;
	border-radius: 8px;
	background-color: #eaf5ff;
}

.contact-map span {
	position: absolute;
	display: grid;
	width: 42px;
	height: 42px;
	place-items: center;
	border: 4px solid #ffffff;
	border-radius: 50%;
	background: var(--color-brand);
	box-shadow: 0 8px 18px rgba(0, 54, 130, 0.25);
	color: #ffffff;
	transform: translate(-50%, -50%);
}

.contact-map span::before {
	width: 8px;
	height: 8px;
	border: 1px solid #ffffff;
	border-radius: 50%;
	content: "";
}

.contact-map iframe {
	display: block;
	width: 100%;
	height: 100%;
	min-height: 360px;
	border: 0;
}

.contact-branch-list {
	display: grid;
	border: 1px solid #d5e3f1;
	border-radius: 8px;
	background: #ffffff;
	box-shadow: 0 10px 24px rgba(8, 52, 111, 0.05);
	overflow: hidden;
}

.contact-branch-list a {
	position: relative;
	display: grid;
	grid-template-columns: 82px minmax(0, 1fr) 18px;
	align-items: center;
	gap: 16px;
	padding: 14px 20px;
	border-bottom: 1px solid #e5edf6;
	color: inherit;
	text-decoration: none;
}

.contact-branch-list a:hover,
.contact-branch-list a:focus-visible,
.contact-branch-list a.is-active {
	background: #f3f8ff;
}

.contact-branch-list a::after {
	color: #174780;
	font-size: 24px;
	content: "›";
}

.contact-branch-list img {
	width: 82px;
	height: 58px;
	border-radius: 6px;
	object-fit: cover;
}

.contact-branch-list strong {
	display: inline;
	margin: 0 8px 5px 0;
	color: #174780;
	font-size: 16px;
	font-weight: 500;
}

.contact-branch-list small {
	display: flex;
	align-items: center;
	gap: 6px;
	color: #51657e;
	font-size: 12px;
	line-height: 1.35;
}

.contact-branch-list small img {
	flex: 0 0 auto;
	width: 13px;
	height: 13px;
	object-fit: contain;
}

.contact-branch-list__distance {
	display: inline-flex !important;
	align-items: center;
	justify-content: center;
	width: fit-content;
	gap: 6px;
	margin: 0 0 5px;
	padding: 4px 9px;
	border-radius: 6px;
	background: #eaf3ff;
	box-shadow: inset 0 0 0 1px rgba(44, 117, 255, 0.08);
	color: #0d5be1 !important;
	font-size: 12px !important;
	font-weight: 500;
	line-height: 14px !important;
	vertical-align: middle;
	white-space: nowrap;
}

.contact-branch-list__distance img {
	flex: 0 0 auto;
	width: 13px;
	height: 13px;
	margin: 0;
	object-fit: contain;
	transform: translateY(0.5px);
}

.contact-branch-list__heading {
	display: flex;
	align-items: center;
	gap: 10px;
	min-height: 46px;
	padding: 0 20px;
	background: linear-gradient(180deg, #0758c6 0%, #003f9d 100%);
	color: #ffffff;
	font-size: 16px;
	font-weight: 800;
	text-transform: uppercase;
}

.contact-branch-list__heading::before {
	display: block;
	width: 18px;
	height: 18px;
	background: url("https://vn1.vdrive.vn/cdn.diemnhangroup.com/seoulcenterclinic.vn/2026/05/black-placeholder-variant.png") center / contain no-repeat;
	filter: brightness(0) invert(1);
	content: "";
}

.contact-branch-list__all {
	display: grid;
	grid-template-columns: 1fr auto !important;
	justify-content: center;
	align-items: center;
	min-height: 48px;
	margin: 12px;
	padding: 0 20px !important;
	border: 1px solid #bfd1e7 !important;
	border-radius: 7px;
	background: #ffffff;
	color: #174780 !important;
	cursor: pointer;
	font: inherit;
	font-size: 14px;
	font-weight: 800;
	text-align: center;
}

.contact-branch-list__all::after {
	display: none;
}

.contact-branch-list__all b {
	margin-left: auto;
	font-size: 18px;
	font-weight: 800;
	transition: transform 160ms ease;
}

.contact-branch-list__all:hover b,
.contact-branch-list__all:focus-visible b {
	transform: translateX(3px);
}

.contact-quick {
	padding-bottom: 28px;
}

.contact-quick h2,
.contact-faq h2 {
	text-align: center;
}

.contact-quick__grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 22px;
}

.contact-quick__grid a {
	display: grid;
	grid-template-columns: 70px minmax(0, 1fr);
	align-items: center;
	min-height: 104px;
	padding: 20px 24px;
	border: 1px solid #d7e4f2;
	border-radius: 8px;
	color: inherit;
	text-decoration: none;
}

.contact-quick__grid span {
	grid-row: span 2;
	display: grid;
	width: 58px;
	height: 58px;
	place-items: center;
	border-radius: 50%;
	background: var(--color-brand);
	color: #ffffff;
	font-size: 17px;
	font-weight: 800;
}

.contact-quick__grid span img {
	width: 32px;
	height: 32px;
	object-fit: contain;
}

.contact-quick__grid strong {
	color: #174780;
	font-size: 16px;
	font-weight: 500;
	line-height: 1.55;
}

.contact-quick__grid small {
	color: #5b6f86;
	font-size: 12px;
}

.contact-faq {
	padding: 22px 0 32px;
}

.contact-faq__grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 22px;
}

.contact-faq details {
	position: relative;
	min-height: 112px;
	padding: 18px 18px 18px 60px;
	border: 1px solid #d7e4f2;
	border-radius: 8px;
	background: #ffffff;
}

.contact-faq details::before,
.contact-faq details::after {
	position: absolute;
	left: 20px;
	display: grid;
	width: 28px;
	height: 28px;
	place-items: center;
	border-radius: 50%;
	color: #ffffff;
	font-size: 15px;
	font-weight: 800;
}

.contact-faq details::before {
	top: 17px;
	background: #174780;
	content: "Q";
}

.contact-faq details::after {
	top: 56px;
	background: #6da3e9;
	content: "A";
}

.contact-faq summary {
	position: relative;
	margin-bottom: 12px;
	padding-right: 18px;
	color: #174780;
	cursor: pointer;
	font-size: 13px;
	font-weight: 800;
	line-height: 1.35;
	list-style: none;
}

.contact-faq summary::-webkit-details-marker {
	display: none;
}

.contact-faq summary::after {
	position: absolute;
	top: 0;
	right: 0;
	content: "⌄";
}

.contact-faq p {
	margin: 0;
	color: #53677f;
	font-size: 12px;
	line-height: 1.55;
}

@media (max-width: 1100px) {
	.contact-overview,
	.contact-quick__grid,
	.contact-faq__grid {
		grid-template-columns: repeat(2, 1fr);
	}

	.contact-consult,
	.contact-branches__layout {
		grid-template-columns: 1fr;
	}
}

@media (max-width: 768px) {
	.contact-consult__intro h2,
	.contact-branches h2,
	.contact-quick h2,
	.contact-faq h2 {
		font-size: 22px;
	}

	.contact-overview,
	.contact-form__grid,
	.contact-faq__grid {
		grid-template-columns: 1fr;
	}

	.contact-overview {
		gap: 12px;
		padding: 18px 0 22px;
	}

	.contact-info-card {
		grid-template-columns: 50px minmax(0, 1fr);
		gap: 14px;
		min-height: 78px;
		padding: 14px 18px;
	}

	.contact-info-card > span {
		width: 45px;
		height: 45px;
	}

	.contact-info-card__icon img {
		width: 23px;
		height: 23px;
	}

	.contact-quick {
		padding-bottom: 20px;
	}

	.contact-quick h2 {
		margin-bottom: 14px;
	}

	.contact-quick__grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
		gap: 12px;
	}

	.contact-quick__grid a {
		display: flex;
		align-items: center;
		justify-content: flex-start;
		flex-direction: column;
		min-height: 138px;
		padding: 16px 10px 14px;
		text-align: center;
	}

	.contact-quick__grid span {
		grid-row: auto;
		width: 50px;
		height: 50px;
		margin-bottom: 10px;
		font-size: 14px;
	}

	.contact-quick__grid span img {
		width: 26px;
		height: 26px;
	}

	.contact-quick__grid strong {
		font-size: 14px;
		line-height: 1.28;
		word-break: break-word;
	}

	.contact-quick__grid small {
		margin-top: 4px;
		font-size: 11px;
		line-height: 1.3;
	}

	.contact-faq {
		padding: 14px 0 24px;
	}

	.contact-faq h2 {
		margin-bottom: 14px;
	}

	.contact-faq__grid {
		gap: 12px;
	}

	.contact-faq details {
		min-height: 0;
		padding: 14px 14px 14px 52px;
	}

	.contact-faq details::before,
	.contact-faq details::after {
		left: 16px;
		width: 26px;
		height: 26px;
		font-size: 14px;
	}

	.contact-faq details::before {
		top: 14px;
	}

	.contact-faq details::after {
		top: 48px;
	}

	.contact-faq summary {
		margin-bottom: 8px;
		font-size: 12px;
		line-height: 1.35;
	}

	.contact-faq p {
		font-size: 12px;
		line-height: 1.45;
	}

	.contact-consult {
		gap: 26px;
	}

	.contact-consult__intro img {
		min-height: 220px;
	}

	.contact-form {
		padding: 20px;
	}

	.contact-map {
		min-height: 300px;
	}

	.contact-branch-list a {
		grid-template-columns: 72px minmax(0, 1fr) 14px;
		padding: 12px 14px;
	}

	.contact-branch-list img {
		width: 72px;
		height: 54px;
	}

	.contact-form__note {
		align-items: normal;
	}

}

@media (max-width: 480px) {
	.contact-quick__grid a {
		min-height: 128px;
	}
}
