/* ===== 公證程序簡介 Section S ===== */
	.section-procedure {
		background-color: #FFFFFF;
		padding: 80px 0 90px;
	}

	/* 標題區 */
	.procedure-heading { margin-bottom: 10px; }
	.procedure-label {
		font-family: 'Cormorant Garamond', serif;
		font-size: 14px;
		letter-spacing: 0.18em;
		text-transform: uppercase;
		color: #C4933F;
		margin-bottom: 10px;
	}
	.procedure-title {
		font-family: 'Noto Sans TC', sans-serif;
		font-size: 36px;
		font-weight: 700;
		color: #2B4590;
		margin: 0 0 14px;
		line-height: 1.3;
		letter-spacing: 2px;
	}
	.procedure-gold-line {
		width: 44px;
		height: 3px;
		background: #C4933F;
		border-radius: 2px;
		margin: 0 auto 20px;
	}
	.procedure-subtitle {
		font-family: 'Noto Sans TC', sans-serif;
		font-size: 17px;
		color: #6B7280;
		max-width: 560px;
		margin: 0 auto;
		line-height: 1.8;
	}

	/* 步驟列 */
	.procedure-steps-row {
		display: flex;
		align-items: stretch;
	}
	.procedure-step {
		position: relative;
		display: flex;
		align-items: stretch;
	}

	/* 步驟卡片 */
	.step-card {
		background: #FFFFFF;
		border: 1px solid #E5E2DC;
		border-radius: 14px;
		padding: 36px 28px 32px;
		width: 100%;
		box-shadow: 0 4px 20px rgba(43,69,144,0.07);
		transition: transform 0.22s ease, box-shadow 0.22s ease;
		display: flex;
		flex-direction: column;
		align-items: center;
		text-align: center;
	}
	.step-card:hover {
		transform: translateY(-5px);
		box-shadow: 0 10px 32px rgba(43,69,144,0.13);
	}
	.step-card--featured {
		border-color: #E5E2DC;
		background: #FFFFFF;
	}
	.step-card--featured .step-number,
	.step-card--featured .step-title,
	.step-card--featured .step-desc {
		color: inherit;
	}
	.step-card--featured .step-number {
		color: #C4933F;
	}
	.step-card--featured .step-title {
		color: #2B4590;
	}
	.step-card--featured .step-desc {
		color: #6B7280;
	}
	.step-card--featured .step-icon-wrap {
		background: #F8F7F4;
		border-color: #E5E2DC;
	}
	.step-card--featured .step-icon {
		stroke: #2B4590;
	}

	/* 步驟號碼 */
	.step-number {
		font-family: 'Cormorant Garamond', serif;
		font-size: 50px;
		font-weight: 600;
		color: #C4933F;
		line-height: 1;
		margin-bottom: 16px;
	}

	/* 步驟圖示 */
	.step-icon-wrap {
		width: 60px;
		height: 60px;
		border-radius: 50%;
		background: #F8F7F4;
		border: 1.5px solid #E5E2DC;
		display: flex;
		align-items: center;
		justify-content: center;
		margin-bottom: 20px;
	}
	.step-icon {
		width: 26px;
		height: 26px;
		stroke: #2B4590;
	}

	/* 步驟文字 */
	.step-title {
		font-family: 'Noto Sans TC', sans-serif;
		font-size: 18px;
		font-weight: 700;
		color: #2B4590;
		margin-bottom: 12px;
		line-height: 1.4;
	}
	.step-desc {
		font-family: 'Noto Sans TC', sans-serif;
		font-size: 15px;
		color: #6B7280;
		line-height: 1.85;
		margin: 0;
	}

	/* 步驟箭頭 */
	.step-arrow {
		position: absolute;
		top: 50%;
		right: -10px;
		transform: translateY(-50%);
		z-index: 2;
		width: 22px;
		height: 22px;
		color: #C4933F;
	}
	.step-arrow svg {
		width: 22px;
		height: 22px;
		stroke: #C4933F;
	}

	/* 預約提示卡 */
	.procedure-appointment-card {
		background: #FFFFFF;
		border: 1.5px solid #E5E2DC;
		border-left: 4px solid #C4933F;
		border-radius: 14px;
		padding: 36px 40px;
		box-shadow: 0 4px 20px rgba(43,69,144,0.07);
		display: flex;
		align-items: flex-start;
		gap: 28px;
	}
	.appointment-icon-col {
		flex-shrink: 0;
		width: 56px;
		height: 56px;
		background: linear-gradient(135deg, #2B4590, #1E2E72);
		border-radius: 50%;
		display: flex;
		align-items: center;
		justify-content: center;
	}
	.appt-icon {
		width: 26px;
		height: 26px;
		stroke: #FFFFFF;
	}
	.appointment-content-col { flex: 1; }
	.appt-title {
		font-family: 'Noto Sans TC', sans-serif;
		font-size: 20px;
		font-weight: 700;
		color: #2B4590;
		margin: 0 0 10px;
	}
	.appt-desc {
		font-family: 'Noto Sans TC', sans-serif;
		font-size: 15px;
		color: #6B7280;
		line-height: 1.9;
		margin: 0 0 20px;
	}
	.appt-contacts {
		display: flex;
		flex-wrap: wrap;
		gap: 12px;
		justify-content: flex-end;
	}
	.appt-contact-item {
		display: inline-flex;
		align-items: center;
		gap: 8px;
		padding: 10px 20px;
		border-radius: 8px;
		font-family: 'Noto Sans TC', sans-serif;
		font-size: 14px;
		font-weight: 600;
		text-decoration: none;
		transition: all 0.2s ease;
		border: 1.5px solid #2B4590;
		color: #2B4590;
		background: transparent;
	}
	.appt-contact-item:first-child {
		background: #C4933F;
		border-color: #C4933F;
		color: #FFFFFF;
	}
	.appt-contact-item:first-child:hover {
		background: #b07e30;
		border-color: #b07e30;
		color: #FFFFFF;
		transform: translateY(-2px);
	}
	.appt-contact-item:last-child:hover {
		background: #2B4590;
		color: #FFFFFF;
		transform: translateY(-2px);
	}
	.appt-contact-item svg {
		width: 16px;
		height: 16px;
		flex-shrink: 0;
	}

	/* 響應式 */
	@media (max-width: 991px) {
		.procedure-steps-row { display: block; }
		.procedure-step { display: block; margin-bottom: 24px; }
		.step-arrow { display: none; }
		.procedure-appointment-card { flex-direction: column; align-items: flex-start; padding: 28px 24px; gap: 18px; }
	}
	@media (max-width: 767px) {
		.section-procedure { padding: 60px 0 70px; }
		.procedure-title { font-size: 28px; }
		.procedure-subtitle { font-size: 15px; }
		.step-card { padding: 28px 20px 24px; }
	}
	/* ===== 公證程序簡介 Section E ===== */


	/* ===== 本所公證人 Section S ===== */
	.section-notary-team {
		background: #F8F7F4;
		padding: 80px 0 90px;
	}

	/* 標題區 */
	.notary-team-heading { margin-bottom: 10px; }
	.notary-team-label {
		font-family: 'Cormorant Garamond', serif;
		font-size: 14px;
		letter-spacing: 0.18em;
		text-transform: uppercase;
		color: #C4933F;
		margin-bottom: 10px;
	}
	.notary-team-title {
		font-family: 'Noto Sans TC', sans-serif;
		font-size: 36px;
		font-weight: 700;
		color: #2B4590;
		margin: 0 0 14px;
		line-height: 1.3;
		letter-spacing: 2px;
	}
	.notary-team-gold-line {
		width: 44px;
		height: 3px;
		background: #C4933F;
		border-radius: 2px;
		margin: 0 auto 20px;
	}
	.notary-team-subtitle {
		font-family: 'Noto Sans TC', sans-serif;
		font-size: 16px;
		color: #6B7280;
		max-width: 780px;
		margin: 0 auto;
		line-height: 1.8;
	}

	/* 成員列表 */
	.notary-member-list {
		margin-top: 60px;
		display: flex;
		flex-direction: column;
		gap: 48px;
	}

	/* 成員卡片 */
	.notary-member-card {
		display: flex;
		align-items: flex-start;
		gap: 56px;
		background: #FFFFFF;
		border: 1px solid #E5E2DC;
		border-radius: 16px;
		padding: 44px 48px;
		box-shadow: 0 4px 24px rgba(43, 69, 144, 0.07);
		transition: box-shadow 0.3s ease, transform 0.3s ease;
		position: relative;
		overflow: hidden;
	}
	.notary-member-card::before {
		content: '';
		position: absolute;
		top: 0;
		right: 0;
		left: auto;
		width: 4px;
		height: 100%;
		background: linear-gradient(180deg, #C4933F 0%, #2B4590 100%);
		border-radius: 0 4px 4px 0;
	}
	.notary-member-card:hover {
		box-shadow: 0 12px 40px rgba(43, 69, 144, 0.13);
		transform: translateY(-4px);
	}
	.notary-member-card--reverse {
		flex-direction: row-reverse;
	}
	.notary-member-card--reverse::before {
		right: auto;
		left: 0;
		border-radius: 4px 0 0 4px;
	}

	/* 照片欄 */
	.notary-member-photo-col {
		flex: 0 0 30%;
		width: 30%;
		max-width: 30%;
	}
	.notary-member-photo-wrap {
		position: relative;
	}
	.notary-member-photo-link {
		display: block;
		border-radius: 12px;
		overflow: hidden;
		cursor: zoom-in;
		box-shadow: 0 8px 24px rgba(43, 69, 144, 0.15);
		transition: box-shadow 0.3s ease, transform 0.3s ease;
	}
	.notary-member-photo-link:hover {
		box-shadow: 0 12px 32px rgba(43, 69, 144, 0.25);
		transform: translateY(-2px);
	}
	.notary-member-photo {
		width: 100%;
		height: auto;
		object-fit: cover;
		object-position: top center;
		border-radius: 12px;
		display: block;
		transition: transform 0.4s ease;
	}
	.notary-member-photo-link:hover .notary-member-photo {
		transform: scale(1.03);
	}
	.notary-member-photo-badge {
		position: absolute;
		bottom: -14px;
		left: 50%;
		transform: translateX(-50%);
		background: linear-gradient(135deg, #2B4590, #1E2E72);
		color: #FFFFFF;
		border-radius: 20px;
		padding: 6px 14px;
		display: flex;
		align-items: center;
		gap: 5px;
		font-family: 'Noto Sans TC', sans-serif;
		font-size: 14px;
		font-weight: 600;
		white-space: nowrap;
		box-shadow: 0 4px 12px rgba(43, 69, 144, 0.3);
	}
	.notary-member-photo-badge svg {
		width: 13px;
		height: 13px;
		stroke: #C4933F;
		flex-shrink: 0;
	}

	/* 縮圖陣列（其他照片，點擊開啟 fancybox 大圖） */
	.notary-member-photo-thumbnails {
		display: grid;
		grid-template-columns: repeat(6, 1fr);
		gap: 6px;
		margin-top: 24px;
		padding: 0;
	}
	.notary-member-photo-thumbnail {
		position: relative;
		display: block;
		aspect-ratio: 1 / 1;
		overflow: hidden;
		border-radius: 8px;
		border: 1px solid #E5E2DC;
		background: #F8F7F4;
		cursor: zoom-in;
		transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
	}
	.notary-member-photo-thumbnail::after {
		content: '';
		position: absolute;
		inset: 0;
		background: linear-gradient(135deg, rgba(43, 69, 144, 0) 50%, rgba(196, 147, 63, 0.25) 100%);
		opacity: 0;
		transition: opacity 0.3s ease;
		pointer-events: none;
	}
	.notary-member-photo-thumbnail:hover {
		transform: translateY(-2px);
		box-shadow: 0 6px 16px rgba(43, 69, 144, 0.18);
		border-color: #C4933F;
	}
	.notary-member-photo-thumbnail:hover::after {
		opacity: 1;
	}
	.notary-member-photo-thumbnail-img {
		width: 100%;
		height: 100%;
		object-fit: cover;
		object-position: center;
		display: block;
		transition: transform 0.4s ease;
	}
	.notary-member-photo-thumbnail:hover .notary-member-photo-thumbnail-img {
		transform: scale(1.06);
	}

	/* 文字欄 */
	.notary-member-info-col {
		flex: 1;
		padding-top: 4px;
	}
	.notary-member-name-row {
		display: flex;
		align-items: center;
		flex-wrap: wrap;
		gap: 14px;
		margin-bottom: 14px;
	}
	.notary-member-name {
		font-family: 'Noto Sans TC', sans-serif;
		font-size: 28px;
		font-weight: 700;
		color: #2B4590;
		margin: 0;
		line-height: 1.2;
	}
	.notary-member-title-badge {
		display: inline-block;
		font-family: 'Noto Sans TC', sans-serif;
		font-size: 14px;
		font-weight: 500;
		color: #6B7280;
	}
	.notary-member-divider {
		width: 40px;
		height: 2px;
		background: #C4933F;
		border-radius: 1px;
		margin-bottom: 24px;
	}

	/* 詳細資訊區塊 */
	.notary-member-details {
		display: flex;
		flex-direction: column;
		gap: 18px;
	}

	/* 公證人簡介:硬實力段（資歷）與同理力段（軟性訴求）並列,共用基底,以左側金線區分 */
	.notary-detail-intro,
	.notary-detail-empathy {
		font-family: 'Noto Sans TC', sans-serif;
	}
	.notary-detail-intro > div:first-child,
	.notary-detail-empathy > div:first-child {
		font-size: 16px;
		font-weight: 700;
		color: #2B4590;
		letter-spacing: 0.04em;
		margin-bottom: 10px;
	}
	.notary-detail-intro p,
	.notary-detail-empathy p {
		font-size: 15px;
		line-height: 1.85;
		color: #2C2C2C;
		margin: 0 0 10px;
	}
	.notary-detail-intro p:last-child,
	.notary-detail-empathy p:last-child {
		margin-bottom: 0;
	}
	.notary-detail-empathy {
		position: relative;
		padding-left: 18px;
		margin-top: 4px;
	}
	.notary-detail-empathy::before {
		content: '';
		position: absolute;
		top: 6px;
		bottom: 6px;
		left: 0;
		width: 3px;
		border-radius: 2px;
		background: linear-gradient(to bottom, #C4933F 0%, rgba(196, 147, 63, 0.2) 100%);
	}

	@media (max-width: 767px) {
		.notary-detail-empathy { padding-left: 14px; }
		.notary-detail-intro > div:first-child,
		.notary-detail-empathy > div:first-child { font-size: 15px; }
		.notary-detail-intro p,
		.notary-detail-empathy p { font-size: 14.5px; line-height: 1.8; }
	}

	.notary-detail-label {
		display: flex;
		align-items: center;
		gap: 7px;
		font-family: 'Noto Sans TC', sans-serif;
		font-size: 13px;
		font-weight: 700;
		color: #2B4590;
		text-transform: uppercase;
		letter-spacing: 0.05em;
		margin-bottom: 7px;
	}
	.notary-detail-label svg {
		width: 15px;
		height: 15px;
		stroke: #C4933F;
		flex-shrink: 0;
	}
	.notary-detail-content {
		font-family: 'Noto Sans TC', sans-serif;
		font-size: 15px;
		color: #1E1E2E;
		line-height: 1.9;
		padding-left: 22px;
	}

	/* 響應式 */
	@media (max-width: 991px) {
		.notary-member-card,
		.notary-member-card--reverse {
			flex-direction: column;
			padding: 32px 28px 36px;
			gap: 32px;
		}
		.notary-member-card::before,
		.notary-member-card--reverse::before {
			top: 0; left: 0; right: 0;
			width: 100%; height: 4px;
			border-radius: 4px 4px 0 0;
		}
		.notary-member-photo-col {
			width: 100%;
			max-width: 100%;
			flex: 0 0 100%;
		}
		.notary-member-photo {
			width: 220px;
			height: auto;
			margin: 0 auto;
		}
		.notary-member-photo-thumbnails {
			grid-template-columns: repeat(4, 1fr);
			max-width: 360px;
			margin-left: auto;
			margin-right: auto;
		}
	}
	@media (max-width: 767px) {
		.section-notary-team { padding: 60px 0 70px; }
		.notary-team-title { font-size: 28px; }
		.notary-member-card { padding: 28px 20px 32px; }
		.notary-member-name { font-size: 24px; }
		.notary-member-photo-thumbnails {
			grid-template-columns: repeat(4, 1fr);
			max-width: 280px;
			gap: 6px;
		}
	}
	/* ===== 本所公證人 Section E ===== */

	/* ===== 服務項目 Section S ===== */
	.section-services {
		background: #F8F7F4;
		padding: 90px 0 100px;
	}
	.services-heading {
		margin-bottom: 56px;
	}
	.services-label {
		font-family: 'Cormorant Garamond', 'Noto Sans TC', serif;
		font-size: 13px;
		font-weight: 600;
		letter-spacing: 0.22em;
		color: #C4933F;
		margin-bottom: 12px;
		text-transform: uppercase;
	}
	.services-title {
		font-family: 'Noto Sans TC', sans-serif;
		font-size: 36px;
		font-weight: 700;
		color: #2B4590;
		margin: 0 0 16px;
		line-height: 1.3;
		letter-spacing: 2px;
	}
	.services-gold-line {
		width: 48px;
		height: 3px;
		background: #C4933F;
		margin: 0 auto 20px;
		border-radius: 2px;
	}
	.services-subtitle {
		font-family: 'Noto Sans TC', sans-serif;
		font-size: 16px;
		color: #6B7280;
		margin: 0;
		line-height: 1.8;
	}

	/* 卡片 */
	.services-grid {
		margin-bottom: 48px;
		/* flex 等高佈局：取代純 float，讓同排卡片自動等高、高度隨內容適中
		   （原本 float + .service-card{height:100%} 會抓到異常父高度，卡片被撐至 911px） */
		display: flex;
		flex-wrap: wrap;
	}
	.services-grid .col-md-4,
	.services-grid .col-sm-6 {
		margin-bottom: 28px;
		/* flex item 撐滿同排高度，使內部 .service-card height:100% 對齊同排最高卡 */
		display: flex;
	}
	.services-grid .col-md-4 > .service-card,
	.services-grid .col-sm-6 > .service-card {
		width: 100%;
	}
	.service-card {
		background: #FFFFFF;
		border: 1px solid #E5E2DC;
		border-radius: 12px;
		padding: 36px 28px 32px;
		height: 100%;
		transition: transform 0.25s ease, box-shadow 0.25s ease;
		box-shadow: 0 2px 12px rgba(43, 69, 144, 0.05);
	}
	.service-card:hover {
		transform: translateY(-5px);
		box-shadow: 0 8px 32px rgba(43, 69, 144, 0.13);
	}
	.service-card-icon {
		width: 60px;
		height: 60px;
		background: linear-gradient(135deg, #f0f3fb 0%, #e8edf8 100%);
		border-radius: 14px;
		display: flex;
		align-items: center;
		justify-content: center;
		margin-bottom: 20px;
		color: #2B4590;
		transition: background 0.25s ease, color 0.25s ease;
	}
	.service-card:hover .service-card-icon {
		background: linear-gradient(135deg, #2B4590 0%, #1A2E6B 100%);
		color: #C4933F;
	}
	.service-card-title {
		font-family: 'Noto Sans TC', sans-serif;
		font-size: 17px;
		font-weight: 700;
		color: #1E1E2E;
		margin: 0 0 12px;
		line-height: 1.5;
	}
	.service-card-desc {
		font-family: 'Noto Sans TC', sans-serif;
		font-size: 14px;
		color: #6B7280;
		line-height: 1.9;
		margin: 0;
	}

	/* 服務卡片內的相關服務頁連結（Phase C 服務落地頁入口） */
	.service-card-links {
		display: flex;
		flex-wrap: wrap;
		gap: 8px;
		margin-top: 16px;
	}
	.service-card-link {
		font-family: 'Noto Sans TC', sans-serif;
		font-size: 13px;
		font-weight: 600;
		color: #C4933F;
		border: 1px solid #E5D4B5;
		border-radius: 6px;
		padding: 5px 12px;
		text-decoration: none;
		transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
	}
	.service-card-link:hover,
	.service-card-link:focus {
		background: #2B4590;
		color: #FFFFFF;
		border-color: #2B4590;
		text-decoration: none;
	}

	/* 底部提示 */
	.services-footer-note {
		border-top: 1px solid #E5E2DC;
		padding-top: 40px;
		margin-top: 16px;
	}
	.services-footer-note p {
		font-family: 'Noto Sans TC', sans-serif;
		font-size: 15px;
		color: #6B7280;
		margin-bottom: 24px;
		line-height: 1.8;
	}
	.services-cta-btn {
		display: inline-block;
		font-family: 'Noto Sans TC', sans-serif;
		font-size: 15px;
		font-weight: 600;
		color: #FFFFFF;
		background: #2B4590;
		padding: 12px 36px;
		border-radius: 8px;
		text-decoration: none;
		letter-spacing: 0.05em;
		transition: background 0.2s ease, transform 0.2s ease;
	}
	.services-cta-btn:hover {
		background: #C4933F;
		color: #FFFFFF;
		text-decoration: none;
		transform: translateY(-2px);
	}

	@media (max-width: 991px) {
		.section-services { padding: 70px 0 80px; }
		.services-title { font-size: 30px; }
	}
	@media (max-width: 767px) {
		.section-services { padding: 60px 0 70px; }
		.services-title { font-size: 26px; }
		.service-card { padding: 28px 20px; }
	}
	/* ===== 服務項目 Section S ===== */

	/* ===== CTA / Contact Section S ===== */
	.section-contact-cta {
		position: relative;
		background: linear-gradient(145deg, #1A2D5A 0%, #2B4590 55%, #1E3070 100%);
		padding: 90px 0 100px;
		overflow: hidden;
	}

	/* 裝飾圓 */
	.cta-deco {
		position: absolute;
		pointer-events: none;
	}
	.cta-deco--circle-1 {
		width: 420px;
		height: 420px;
		border-radius: 50%;
		border: 1.5px solid rgba(196, 147, 63, 0.18);
		top: -140px;
		right: -100px;
	}
	.cta-deco--circle-2 {
		width: 260px;
		height: 260px;
		border-radius: 50%;
		background: rgba(196, 147, 63, 0.06);
		bottom: -80px;
		left: -60px;
	}
	.cta-deco--line {
		width: 1px;
		height: 100%;
		top: 0;
		left: 50%;
		background: linear-gradient(180deg, transparent 0%, rgba(196,147,63,0.15) 50%, transparent 100%);
	}

	/* 標題區 */
	.cta-label {
		font-family: 'Cormorant Garamond', serif;
		font-size: 13px;
		letter-spacing: 0.22em;
		color: #C4933F;
		margin-bottom: 12px;
	}
	.cta-title {
		font-family: 'Noto Sans TC', sans-serif;
		font-size: 36px;
		font-weight: 700;
		color: #FFFFFF;
		margin: 0 0 16px;
		line-height: 1.3;
		letter-spacing: 2px;
	}
	.cta-divider {
		width: 44px;
		height: 2px;
		background: #C4933F;
		margin: 0 auto 18px;
		border-radius: 2px;
	}
	.cta-subtitle {
		font-family: 'Noto Sans TC', sans-serif;
		font-size: 16px;
		color: rgba(255,255,255,0.7);
		max-width: 520px;
		margin: 0 auto 56px;
		line-height: 1.9;
	}

	/* 三欄資訊列 */
	.cta-info-row {
		display: flex;
		align-items: center;
		justify-content: center;
		gap: 0;
		flex-wrap: wrap;
	}
	.cta-info-item {
		flex: 1;
		min-width: 200px;
		max-width: 280px;
		padding: 0 24px;
		text-align: center;
	}
	.cta-info-divider {
		width: 1px;
		height: 80px;
		background: rgba(255,255,255,0.15);
		flex-shrink: 0;
	}
	.cta-info-icon-wrap {
		width: 52px;
		height: 52px;
		border-radius: 50%;
		background: rgba(196, 147, 63, 0.18);
		border: 1.5px solid rgba(196, 147, 63, 0.4);
		display: flex;
		align-items: center;
		justify-content: center;
		margin: 0 auto 14px;
		transition: background 0.25s ease;
	}
	.cta-info-item:hover .cta-info-icon-wrap {
		background: rgba(196, 147, 63, 0.35);
	}
	.cta-info-icon-wrap svg {
		width: 22px;
		height: 22px;
		stroke: #C4933F;
	}
	.cta-info-label {
		font-family: 'Noto Sans TC', sans-serif;
		font-size: 12px;
		font-weight: 700;
		letter-spacing: 0.12em;
		text-transform: uppercase;
		color: rgba(255,255,255,0.5);
		margin-bottom: 8px;
	}
	.cta-info-value {
		font-family: 'Noto Sans TC', sans-serif;
		font-size: 15px;
		color: rgba(255,255,255,0.92);
		line-height: 1.7;
		text-decoration: none;
		display: block;
		transition: color 0.2s ease;
	}
	a.cta-info-value:hover {
		color: #C4933F;
		text-decoration: none;
	}
	.cta-phone {
		font-family: 'Montserrat', 'Noto Sans TC', sans-serif;
		font-size: 22px;
		font-weight: 700;
		letter-spacing: 0.04em;
		color: #FFFFFF;
	}
	.cta-phone:hover {
		color: #C4933F;
	}

	/* RWD */
	@media (max-width: 767px) {
		.section-contact-cta { padding: 60px 0 70px; }
		.cta-title { font-size: 28px; }
		.cta-info-row { flex-direction: column; gap: 32px; }
		.cta-info-divider { display: none; }
		.cta-info-item { max-width: 100%; }
	}
	/* ===== CTA / Contact Section E ===== */


	/* ===== 本所簡介 Section S ===== */
	.section-about-intro {
		background-color: #FFFFFF;
		padding: 80px 0 100px;
	}

	.about-intro-row {
		display: flex;
		align-items: center;
		flex-wrap: wrap;
	}

	/* --- 文字欄 --- */
	.about-intro-text-col {
		padding-right: 52px;
	}

	.about-intro-label {
		font-family: 'Cormorant Garamond', serif;
		font-size: 14px;
		letter-spacing: 0.18em;
		text-transform: uppercase;
		color: #C4933F;
		margin-bottom: 10px;
	}

	.about-intro-title {
		font-family: 'Noto Sans TC', sans-serif;
		font-size: 34px;
		font-weight: 700;
		color: #2B4590;
		margin: 0 0 14px;
		line-height: 1.3;
		letter-spacing: 2px;
	}

	.about-intro-gold-line {
		width: 44px;
		height: 3px;
		background: #C4933F;
		border-radius: 2px;
		margin: 0 0 22px;
	}

	.about-intro-tagline {
		font-family: 'Noto Sans TC', sans-serif;
		font-size: 18px;
		font-weight: 600;
		color: #2B4590;
		margin: 0 0 18px;
		line-height: 1.6;
	}

	.about-intro-body {
		font-family: 'Noto Sans TC', sans-serif;
		font-size: 16px;
		color: #6B7280;
		line-height: 1.9;
		margin: 0 0 14px;
	}

	/* 服務項目條列 */
	.about-intro-service-label {
		font-family: 'Noto Sans TC', sans-serif;
		font-size: 16px;
		font-weight: 700;
		letter-spacing: 0.12em;
		text-transform: uppercase;
		color: #2B4590;
		margin: 22px 0 12px;
		display: flex;
		align-items: center;
		gap: 8px;
	}

	.about-intro-service-label::before {
		content: '';
		display: inline-block;
		width: 18px;
		height: 2px;
		background: #C4933F;
		border-radius: 1px;
		flex-shrink: 0;
	}

	.about-intro-service-list {
		list-style: none;
		margin: 0 0 28px;
		padding: 0;
		display: grid;
		grid-template-columns: 1fr 1fr;
		gap: 12px 24px;
	}

	.about-intro-service-list li {
		display: flex;
		flex-direction: column;
		padding-left: 14px;
		position: relative;
	}

	.about-intro-service-list li::before {
		content: '';
		position: absolute;
		left: 0;
		top: 7px;
		width: 6px;
		height: 6px;
		border-radius: 50%;
		background: #C4933F;
		flex-shrink: 0;
	}

	.svc-title {
		font-family: 'Noto Sans TC', sans-serif;
		font-size: 16px;
		font-weight: 700;
		color: #1E1E2E;
		line-height: 1.4;
	}

	.svc-sub {
		font-family: 'Noto Sans TC', sans-serif;
		font-size: 13px;
		color: #6B7280;
		line-height: 1.5;
		margin-top: 2px;
	}

	/* 資歷亮點清單 */
	.about-intro-creds {
		margin: 28px 0 38px;
		display: flex;
		flex-direction: column;
		gap: 18px;
	}

	.about-intro-cred-item {
		display: flex;
		align-items: center;
		gap: 16px;
	}

	.about-intro-cred-icon {
		flex-shrink: 0;
		width: 46px;
		height: 46px;
		border-radius: 10px;
		background: rgba(43, 69, 144, 0.06);
		display: flex;
		align-items: center;
		justify-content: center;
		color: #2B4590;
	}

	.about-intro-cred-icon svg {
		width: 22px;
		height: 22px;
	}

	.about-intro-cred-text {
		display: flex;
		flex-direction: column;
		gap: 3px;
	}

	.cred-strong {
		font-family: 'Noto Sans TC', sans-serif;
		font-size: 15px;
		font-weight: 700;
		color: #1E1E2E;
		line-height: 1.4;
	}

	.cred-note {
		font-family: 'Noto Sans TC', sans-serif;
		font-size: 13px;
		color: #6B7280;
		line-height: 1.5;
	}

	/* CTA 按鈕 */
	.about-intro-btn {
		display: inline-block;
		padding: 13px 34px;
		background: #C4933F;
		color: #FFFFFF;
		font-family: 'Noto Sans TC', sans-serif;
		font-size: 15px;
		font-weight: 600;
		border-radius: 8px;
		text-decoration: none;
		transition: background 0.2s ease, transform 0.2s ease;
	}

	.about-intro-btn:hover {
		background: #b07836;
		transform: scale(1.02);
		color: #FFFFFF;
		text-decoration: none;
	}

	/* --- 圖片欄 --- */
	.about-intro-photo-col {
		padding-left: 24px;
	}

	.about-intro-photo-wrap {
		position: relative;
	}

	.about-intro-photo {
		width: 100%;
		height: auto;
		border-radius: 16px;
		display: block;
		box-shadow: 0 8px 40px rgba(43, 69, 144, 0.14);
		transition: transform 0.5s ease, box-shadow 0.4s ease;
	}

	.about-intro-photo-link {
		position: relative;
		display: block;
		border-radius: 16px;
		overflow: hidden;
		cursor: zoom-in;
	}

	.about-intro-photo-link:hover .about-intro-photo {
		transform: scale(1.03);
		box-shadow: 0 12px 48px rgba(43, 69, 144, 0.22);
	}

	.about-intro-photo-zoom {
		position: absolute;
		top: 16px;
		right: 16px;
		width: 40px;
		height: 40px;
		display: inline-flex;
		align-items: center;
		justify-content: center;
		background: rgba(255, 255, 255, 0.92);
		color: #2B4590;
		border-radius: 50%;
		box-shadow: 0 4px 14px rgba(43, 69, 144, 0.18);
		opacity: 0;
		transform: translateY(-4px);
		transition: opacity 0.3s ease, transform 0.3s ease, background 0.3s ease, color 0.3s ease;
		pointer-events: none;
	}

	.about-intro-photo-zoom svg {
		width: 20px;
		height: 20px;
	}

	.about-intro-photo-link:hover .about-intro-photo-zoom,
	.about-intro-photo-link:focus-visible .about-intro-photo-zoom {
		opacity: 1;
		transform: translateY(0);
		background: #C4933F;
		color: #FFFFFF;
	}

	/* --- 縮圖列 --- */
	.about-intro-thumbs {
		margin-top: 36px;
		display: grid;
		grid-template-columns: repeat(6, 1fr);
		gap: 12px;
	}

	.about-intro-thumb {
		position: relative;
		display: block;
		border-radius: 10px;
		overflow: hidden;
		aspect-ratio: 1 / 1;
		box-shadow: 0 4px 14px rgba(43, 69, 144, 0.10);
		transition: transform 0.35s ease, box-shadow 0.35s ease;
		outline: 2px solid transparent;
		outline-offset: 2px;
	}

	.about-intro-thumb img {
		width: 100%;
		height: 100%;
		object-fit: cover;
		display: block;
		transition: transform 0.5s ease;
	}

	.about-intro-thumb:hover,
	.about-intro-thumb:focus-visible {
		transform: translateY(-3px);
		box-shadow: 0 8px 22px rgba(43, 69, 144, 0.20);
		outline-color: #C4933F;
	}

	.about-intro-thumb:hover img {
		transform: scale(1.06);
	}

	/* 浮動資歷徽章 */
	.about-intro-badge {
		position: absolute;
		bottom: -28px;
		left: -28px;
		background: #2B4590;
		color: #FFFFFF;
		border-radius: 14px;
		padding: 18px 22px;
		display: flex;
		align-items: center;
		gap: 12px;
		box-shadow: 0 8px 24px rgba(43, 69, 144, 0.28);
		pointer-events: none;
	}

	.about-badge-num {
		font-family: 'Cormorant Garamond', serif;
		font-size: 42px;
		font-weight: 600;
		line-height: 1;
		color: #C4933F;
	}

	.badge-plus {
		font-size: 28px;
	}

	.about-badge-text {
		font-family: 'Noto Sans TC', sans-serif;
		font-size: 13px;
		font-weight: 600;
		color: rgba(255, 255, 255, 0.9);
		line-height: 1.6;
	}

	/* RWD */
	@media (max-width: 991px) {
		.about-intro-text-col { padding-right: 24px; }
		.about-intro-photo-col { padding-left: 24px; }
	}

	@media (max-width: 767px) {
		.section-about-intro { padding: 56px 0 70px; }
		.about-intro-text-col {
			padding-right: 15px;
			margin-bottom: 64px;
		}
		.about-intro-photo-col { padding-left: 15px; }
		.about-intro-title { font-size: 26px; }
		.about-intro-tagline { font-size: 16px; }
		.about-intro-service-list { grid-template-columns: 1fr; gap: 10px; }
		.about-intro-badge {
			bottom: -20px;
			left: 16px;
			padding: 14px 18px;
		}
		.about-badge-num { font-size: 32px; }
		.about-intro-thumbs {
			margin-top: 28px;
			grid-template-columns: repeat(3, 1fr);
			gap: 8px;
		}
		.about-intro-thumb { border-radius: 8px; }
		.about-intro-photo-zoom {
			width: 34px;
			height: 34px;
			top: 12px;
			right: 12px;
		}
		.about-intro-photo-zoom svg { width: 16px; height: 16px; }
	}
	/* ===== 本所簡介 Section E ===== */


	/* ===== 右上社群 Icon（Header .attr-nav）hover 互動 ===== */
	.attr-nav .social-media-dark li {
		display: inline-block;
	}
	.attr-nav .social-media-dark li a {
		display: inline-flex;
		align-items: center;
		justify-content: center;
		color: #6B7280;
		transition: color 0.25s ease, transform 0.25s ease;
	}
	.attr-nav .social-media-dark li a:hover,
	.attr-nav .social-media-dark li a:focus {
		transform: translateY(-2px) scale(1.1);
	}
	/* Facebook 品牌色（用 !important 覆蓋 bootsnav 的 hover #f5af19） */
	.attr-nav .social-media-dark li a.fa-facebook:hover,
	.attr-nav .social-media-dark li a.fa-facebook:focus {
		color: #1877F2 !important;
	}
	/* LINE 品牌色 */
	.attr-nav .social-media-dark li a.fa-line:hover,
	.attr-nav .social-media-dark li a.fa-line:focus {
		color: #06C755 !important;
	}


	/* ===== 主選單 Navbar 項目 hover 互動 ===== */
	#navbar-menu ul.nav > li > a {
		position: relative;
		transition: color 0.25s ease;
	}
	/* 金色底線裝飾（預設隱藏，由中央向兩側展開至項目滿寬） */
	#navbar-menu ul.nav > li > a::after {
		content: '';
		position: absolute;
		left: 10px;
		right: 10px;
		bottom: 14px;
		height: 2px;
		border-radius: 2px;
		background: #C4933F;
		transform: scaleX(0);
		transform-origin: center;
		transition: transform 0.32s ease;
		pointer-events: none;
	}
	/* hover / focus / 展開中（含父層項目） */
	#navbar-menu ul.nav > li > a:hover,
	#navbar-menu ul.nav > li > a:focus,
	#navbar-menu ul.nav > li.active > a,
	#navbar-menu ul.nav > li.open > a {
		color: #2B4590 !important;
	}
	#navbar-menu ul.nav > li > a:hover::after,
	#navbar-menu ul.nav > li > a:focus::after,
	#navbar-menu ul.nav > li.active > a::after,
	#navbar-menu ul.nav > li.open > a::after {
		transform: scaleX(1);
	}

	/* 下拉子選單項目 hover 強化 */
	#navbar-menu ul.dropdown-menu > li > a {
		transition: background-color 0.2s ease, color 0.2s ease, padding-left 0.25s ease;
	}
	#navbar-menu ul.dropdown-menu > li > a:hover,
	#navbar-menu ul.dropdown-menu > li > a:focus {
		background: linear-gradient(90deg, rgba(196, 147, 63, 0.08), rgba(196, 147, 63, 0));
		color: #2B4590 !important;
		padding-left: 26px;
	}


/* ===== Modal：營業時間與地點 S ===== */
.map-modal-overlay {
	position: fixed;
	inset: 0;
	background: rgba(15, 23, 42, 0.6);
	-webkit-backdrop-filter: blur(4px);
	backdrop-filter: blur(4px);
	display: flex;
	align-items: center;
	justify-content: center;
	z-index: 9999;
	padding: 20px;
	opacity: 0;
	visibility: hidden;
	transition: opacity 0.3s ease, visibility 0.3s ease;
}
.map-modal-overlay.is-open {
	opacity: 1;
	visibility: visible;
}
.map-modal {
	position: relative;
	background: #FFFFFF;
	border-radius: 16px;
	box-shadow: 0 24px 64px rgba(26, 58, 107, 0.22);
	width: 100%;
	max-width: 1020px;
	max-height: 90vh;
	overflow-y: auto;
	transform: translateY(20px) scale(0.97);
	transition: transform 0.32s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.map-modal-overlay.is-open .map-modal {
	transform: translateY(0) scale(1);
}

/* 關閉按鈕 */
.map-modal-close {
	position: absolute;
	top: 14px;
	right: 14px;
	width: 36px;
	height: 36px;
	border: none;
	background: #F0F4F8;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	color: #64748B;
	transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
	z-index: 10;
	padding: 0;
	line-height: 1;
}
.map-modal-close:hover {
	background: #E2E8F0;
	color: #1A3A6B;
	transform: rotate(90deg);
}
.map-modal-close svg { width: 18px; height: 18px; display: block; }

/* Body 雙欄 */
.map-modal-body {
	display: flex;
	flex-direction: row;
	min-height: 380px;
}

/* 左欄：地圖 */
.map-modal-left {
	flex: 0 0 54%;
	display: flex;
	flex-direction: column;
	background: #FFFFFF;
	border-radius: 16px 0 0 16px;
	overflow: hidden;
}
.map-modal-img-wrap {
	flex: 1;
	overflow: hidden;
	position: relative;
	display: flex;
	align-items: flex-end;  /* 圖片靠下對齊 */
}
.map-modal-img-link {
	display: flex;
	align-items: flex-end;
	width: 100%;
	position: relative;
}
.map-modal-img {
	width: 100%;
	height: auto;           /* 自動高度，配合 align-items: flex-end 靠底 */
	max-height: 100%;
	object-fit: contain;
	object-position: center bottom;
	display: block;
	transition: transform 0.4s ease;
}
.map-modal-img-link:hover .map-modal-img { transform: scale(1.03); }

/* 放大提示圖示 */
.map-modal-img-zoom {
	position: absolute;
	bottom: 12px;
	right: 12px;
	width: 36px;
	height: 36px;
	background: rgba(255, 255, 255, 0.88);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	opacity: 0;
	transform: scale(0.8);
	transition: opacity 0.25s ease, transform 0.25s ease;
	pointer-events: none;
}
.map-modal-img-zoom svg { width: 18px; height: 18px; color: #1A3A6B; }
.map-modal-img-link:hover .map-modal-img-zoom {
	opacity: 1;
	transform: scale(1);
}

/* Google 導航按鈕 */
.map-modal-nav-btn {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	padding: 14px 20px;
	background: #1A3A6B;
	color: #FFFFFF;
	font-family: 'Noto Sans TC', sans-serif;
	font-size: 14px;
	font-weight: 600;
	text-decoration: none;
	letter-spacing: 0.03em;
	transition: background 0.25s ease;
}
.map-modal-nav-btn:hover,
.map-modal-nav-btn:focus {
	background: #2563EB;
	color: #FFFFFF;
	text-decoration: none;
}
.map-modal-nav-btn svg { width: 16px; height: 16px; flex-shrink: 0; }

/* 右欄：資訊 */
.map-modal-right {
	flex: 1;
	padding: 36px 32px 32px 32px;
	display: flex;
	flex-direction: column;
	gap: 28px;
}

/* 各區段標題 */
.map-modal-section-title {
	display: flex;
	align-items: center;
	gap: 8px;
	font-family: 'Noto Sans TC', sans-serif;
	font-size: 15px;
	font-weight: 700;
	color: #1A3A6B;
	margin-bottom: 14px;
	padding-bottom: 10px;
	border-bottom: 2px solid #E2E8F0;
}
.map-modal-section-title svg { width: 17px; height: 17px; flex-shrink: 0; color: #2563EB; }

/* 營業時間 */
.map-modal-hours { display: flex; flex-direction: column; gap: 10px; }
.hours-row--main {
	display: flex;
	align-items: center;
	justify-content: space-between;
	background: #F0F4F8;
	border-left: 4px solid #2563EB;
	border-radius: 0 8px 8px 0;
	padding: 12px 16px;
}
.hours-day {
	font-family: 'Noto Sans TC', sans-serif;
	font-size: 14px;
	font-weight: 600;
	color: #1E293B;
}
.hours-time {
	font-family: 'Montserrat', sans-serif;
	font-size: 15px;
	font-weight: 700;
	color: #2563EB;
	letter-spacing: 0.02em;
}
.hours-note {
	display: flex;
	align-items: flex-start;
	gap: 7px;
	font-family: 'Noto Sans TC', sans-serif;
	font-size: 13px;
	color: #64748B;
	line-height: 1.6;
	padding: 10px 14px;
	background: #FFFBEB;
	border: 1px solid #FDE68A;
	border-radius: 8px;
}
.hours-note svg { width: 15px; height: 15px; flex-shrink: 0; margin-top: 2px; color: #F59E0B; }

/* 聯絡資訊清單 */
.map-modal-contact-list {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	flex-direction: column;
	gap: 12px;
}
.map-modal-contact-list li {
	display: flex;
	align-items: flex-start;
	gap: 10px;
}
.contact-icon {
	flex-shrink: 0;
	width: 32px;
	height: 32px;
	background: #EFF6FF;
	border-radius: 8px;
	display: flex;
	align-items: center;
	justify-content: center;
}
.contact-icon svg { width: 15px; height: 15px; color: #2563EB; }
.contact-text {
	font-family: 'Noto Sans TC', sans-serif;
	font-size: 14px;
	color: #1E293B;
	line-height: 1.6;
	padding-top: 6px;
}
.contact-link {
	font-family: 'Noto Sans TC', sans-serif;
	font-size: 14px;
	color: #2563EB;
	text-decoration: none;
	padding-top: 6px;
	transition: color 0.2s ease;
}
.contact-link:hover { color: #1A3A6B; text-decoration: underline; }

/* RWD：手機版 */
@media (max-width: 640px) {
	.map-modal-body { flex-direction: column; }
	.map-modal-left { border-radius: 16px 16px 0 0; flex: none; min-height: 200px; }
	.map-modal-img-wrap { height: 180px; }
	.map-modal-right { padding: 24px 20px 24px 20px; }
	.hours-row--main { flex-direction: column; align-items: flex-start; gap: 4px; }
}

/* 停車場清單 */
.map-modal-parking-list {
	list-style: none;
	margin: 8px 0 0;
	padding: 0;
	display: flex;
	flex-direction: column;
	gap: 8px;
}
.map-modal-parking-list li {
	display: flex;
	flex-direction: column;
	gap: 2px;
}
.parking-name {
	font-size: 13px;
	font-weight: 700;
	color: #1E293B;
}
.parking-addr {
	font-size: 12.5px;
	color: #2563EB;
	text-decoration: none;
	line-height: 1.5;
}
.parking-addr:hover { text-decoration: underline; }

/* 預約說明區塊 */
.map-modal-appt-note {
	background: #F0F4F8;
	border-radius: 8px;
	padding: 14px 16px;
}
.map-modal-appt-text {
	font-size: 13.5px;
	color: #1E293B;
	line-height: 1.75;
	margin: 8px 0 6px;
}
.map-modal-appt-cta {
	font-size: 14px;
	font-weight: 700;
	color: #2563EB;
	margin: 0;
}
/* ===== Modal：營業時間與地點 E ===== */

/* ===== Google Maps iframe 容器(取代 main.php 內 inline style)===== */
.mapouter{
	position:relative;
	text-align:right;
	height:420px;
	width:100%;
}
.gmap_canvas{
	overflow:hidden;
	background:none !important;
	height:420px;
	width:100%;
}
.gmap_canvas iframe{
	display:block;
	width:100%;
	height:100%;
	border:0;
}
/* ===== Google Maps E ===== */

