/* CSS Document */

.navbar-light .navbar-nav .nav-link {
	padding-top: 35px !important;
	padding-right: 0 !important;
	padding-bottom: 20px !important;
	padding-left: 0 !important;
}
@media (min-width: 992px) {
	.navbar-light {
		position: absolute !important;
	}
}

/* 共用容器 */
.container {
	width: 100%;
	max-width: 1140px;
	margin: 0 auto;
	padding-left: 15px;
	padding-right: 15px;
	box-sizing: border-box;
}

body {
	margin: 0;
}

*,
*::before,
*::after {
	box-sizing: border-box;
}

/*--------------------------------------------------------------
# Mobile Nav (Hamburger)
--------------------------------------------------------------*/
.mobile-nav-toggle {
	display: none;
	appearance: none;
	border: 0;
	background: transparent;
	padding: 8px;
	margin: 0;
	cursor: pointer;
	color: #444;
	z-index: 10001;
}

.mobile-nav-toggle .hamburger {
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	width: 26px;
	height: 18px;
}

.mobile-nav-toggle .hamburger span {
	display: block;
	width: 100%;
	height: 2px;
	border-radius: 2px;
	background: currentColor;
	transition: transform 0.25s ease, opacity 0.25s ease;
}

.mobile-nav-active .mobile-nav-toggle .hamburger span:nth-child(1) {
	transform: translateY(8px) rotate(45deg);
}

.mobile-nav-active .mobile-nav-toggle .hamburger span:nth-child(2) {
	opacity: 0;
}

.mobile-nav-active .mobile-nav-toggle .hamburger span:nth-child(3) {
	transform: translateY(-8px) rotate(-45deg);
}

.mobile-dock {
	display: none;
}

@media (max-width: 991px) {
	.mobile-nav-toggle {
		display: inline-flex;
		align-items: center;
		justify-content: center;
		margin-left: auto;
	}

	.header .branding {
		min-height: 60px;
		padding: 6px 0;
		position: relative;
		z-index: 10000;
	}

	.header .logo img {
		max-height: 44px;
	}

	.header .navmenu {
		display: block;
		position: fixed;
		inset: 0;
		z-index: 9998;
		background: rgba(33, 37, 41, 0.72);
		opacity: 0;
		visibility: hidden;
		pointer-events: none;
		transition: opacity 0.25s ease, visibility 0.25s ease;
	}

	.mobile-nav-active .header .navmenu {
		opacity: 1;
		visibility: visible;
		pointer-events: auto;
	}

	.mobile-nav-active .header .navmenu > ul {
		display: block !important;
		position: relative;
		inset: auto;
	}

	.header .navmenu ul {
		list-style: none;
		margin: 72px 16px 24px;
		padding: 12px 0;
		background: #fff;
		border-radius: 8px;
		box-shadow: 0 10px 30px rgba(0, 0, 0, 0.18);
		max-height: calc(100vh - 110px);
		overflow-y: auto;
	}

	.header .navmenu a,
	.header .navmenu a:focus {
		display: flex;
		align-items: center;
		gap: 8px;
		padding: 14px 20px;
		font-size: 16px;
		font-weight: 500;
		color: #444;
		white-space: nowrap;
	}

	.header .navmenu a:hover,
	.header .navmenu .active,
	.header .navmenu .active:focus {
		color: var(--accent-color, #ee7471);
	}

	.header .navmenu .cta-btn,
	.header .navmenu .cta-btn:focus {
		display: inline-flex;
		width: calc(100% - 40px);
		margin: 8px 20px 12px !important;
		justify-content: center;
		padding: 12px 16px !important;
		color: #fff !important;
	}

	.header .navmenu .nav-chevron {
		margin-left: auto;
	}

	.mobile-nav-active .mobile-nav-toggle {
		position: relative;
		z-index: 10002;
		color: #444;
		top: auto;
		right: auto;
		font-size: inherit;
	}

	.mobile-nav-active {
		overflow: hidden;
	}

	.mobile-dock {
		display: flex;
		position: fixed;
		left: 0;
		right: 0;
		bottom: 0;
		z-index: 99990;
		height: 50px;
	}

	.mobile-dock a {
		flex: 1;
		display: flex;
		align-items: center;
		justify-content: center;
		font-size: 18px;
		font-weight: 700;
		color: #fff;
		text-decoration: none;
	}

	.mobile-dock-line {
		background: #00b55a;
	}

	.mobile-dock-phone {
		background: #f90;
	}

	.scroll-top {
		bottom: 66px;
	}

	.site-footer {
		padding-bottom: 70px;
	}
}

@media (min-width: 992px) {
	.mobile-nav-toggle,
	.mobile-dock {
		display: none !important;
	}
}

/*--------------------------------------------------------------
# Hero Banner Carousel
--------------------------------------------------------------*/
.hero-banner {
	padding: 0;
	background-color: #eec3c2;
}

.hero-banner .carousel {
	position: relative;
	width: 100%;
	overflow: hidden;
	height: 32vw;
	max-height: 720px;
	min-height: 200px;
	background-color: #eec3c2;
}

.hero-banner .carousel-track {
	display: flex;
	height: 100%;
	transition: transform 0.6s ease;
	will-change: transform;
}

.hero-banner .carousel-slide {
	flex: 0 0 100%;
	width: 100%;
	height: 100%;
}

.hero-banner .carousel-slide img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
}

.hero-banner .carousel-btn {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	z-index: 3;
	width: 48px;
	height: 48px;
	border: 0;
	border-radius: 50%;
	padding: 0;
	cursor: pointer;
	color: #fff;
	background: rgba(80, 80, 80, 0.35);
	display: flex;
	align-items: center;
	justify-content: center;
	transition: background 0.3s, opacity 0.3s;
	opacity: 0.75;
}

.hero-banner .carousel-btn:hover {
	background: rgba(238, 116, 113, 0.9);
	opacity: 1;
}

.hero-banner .carousel-btn svg {
	width: 28px;
	height: 28px;
}

.hero-banner .carousel-prev {
	left: 18px;
}

.hero-banner .carousel-next {
	right: 18px;
}

.hero-banner .carousel-dots {
	position: absolute;
	left: 50%;
	bottom: 18px;
	transform: translateX(-50%);
	z-index: 3;
	display: flex;
	align-items: center;
	gap: 10px;
}

.hero-banner .carousel-dots button {
	width: 12px;
	height: 12px;
	padding: 0;
	border: 0;
	border-radius: 50%;
	cursor: pointer;
	background: rgba(255, 255, 255, 0.85);
	transition: background 0.3s, transform 0.3s;
}

.hero-banner .carousel-dots button.is-active {
	background: var(--accent-color, #ee7471);
	transform: scale(1.1);
}

@media (max-width: 767px) {
	.hero-banner .carousel-btn {
		width: 36px;
		height: 36px;
	}

	.hero-banner .carousel-btn svg {
		width: 22px;
		height: 22px;
	}

	.hero-banner .carousel-prev {
		left: 8px;
	}

	.hero-banner .carousel-next {
		right: 8px;
	}

	.hero-banner .carousel-dots {
		bottom: 12px;
		gap: 8px;
	}

	.hero-banner .carousel-dots button {
		width: 9px;
		height: 9px;
	}
}

/*--------------------------------------------------------------
# Services Section
--------------------------------------------------------------*/
.services-section {
	padding: 70px 0 80px;
	background-color: #f7f7f7;
}

.services-heading {
	text-align: center;
	margin-bottom: 40px;
}

.services-heading h2 {
	margin: 0 0 10px;
	font-size: 32px;
	font-weight: 700;
	color: #555;
}

.services-heading p {
	margin: 0;
	font-size: 16px;
	color: #777;
}

.services-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 24px;
}

.service-card {
	background: #fff;
	border-radius: 8px;
	overflow: hidden;
	box-shadow: 0 2px 14px rgba(0, 0, 0, 0.08);
	transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.service-card:hover {
	transform: translateY(-4px);
	box-shadow: 0 8px 22px rgba(0, 0, 0, 0.12);
}

.service-card-media {
	aspect-ratio: 1 / 1;
	background: #f3b4b2;
	display: flex;
	align-items: center;
	justify-content: center;
	overflow: hidden;
}

.service-card-media img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.service-card-body {
	padding: 18px 16px 20px;
	background: #fff;
}

.service-card-body h3 {
	margin: 0 0 8px;
	font-size: 18px;
	font-weight: 700;
	color: #333;
}

.service-card-body p {
	margin: 0;
	font-size: 14px;
	line-height: 1.6;
	color: #888;
}

.stats-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 24px;
	margin-top: 40px;
}

.stat-card {
	display: flex;
	align-items: center;
	gap: 16px;
	padding: 22px 20px;
	background: #fff;
	border-radius: 8px;
	box-shadow: 0 2px 14px rgba(0, 0, 0, 0.08);
}

.stat-icon {
	width: 42px;
	height: 42px;
	flex-shrink: 0;
	color: var(--accent-color, #ee7471);
}

.stat-icon svg {
	width: 100%;
	height: 100%;
	display: block;
}

.stat-content {
	display: flex;
	flex-direction: column;
	gap: 4px;
	min-width: 0;
}

.stat-number {
	font-size: 32px;
	font-weight: 700;
	line-height: 1;
	color: #444;
}

.stat-label {
	font-size: 14px;
	color: #888;
}

.scroll-top {
	position: fixed;
	visibility: hidden;
	opacity: 0;
	right: 16px;
	bottom: 24px;
	z-index: 99999;
	width: 40px;
	height: 40px;
	border-radius: 4px;
	background-color: var(--accent-color, #ee7471);
	color: #fff;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: opacity 0.3s, visibility 0.3s, background 0.3s;
}

.scroll-top svg {
	width: 22px;
	height: 22px;
}

.scroll-top:hover {
	background-color: color-mix(in srgb, var(--accent-color, #ee7471), transparent 15%);
	color: #fff;
}

.scroll-top.active {
	visibility: visible;
	opacity: 1;
}

/*--------------------------------------------------------------
# About Section
--------------------------------------------------------------*/
.about-section {
	padding: 70px 0 80px;
	background-color: #fff;
}

.about-heading {
	text-align: center;
	margin-bottom: 48px;
}

.about-heading h2 {
	margin: 0 0 14px;
	font-size: 32px;
	font-weight: 700;
	color: #555;
}

.about-heading h2::after {
	content: "";
	display: block;
	width: 50px;
	height: 3px;
	margin: 14px auto 0;
	background: var(--accent-color, #ee7471);
}

.about-heading p {
	margin: 0;
	font-size: 16px;
	color: #777;
}

.about-content {
	display: grid;
	grid-template-columns: 1fr 1.1fr;
	gap: 40px;
	align-items: center;
}

.about-media img {
	display: block;
	width: 100%;
	height: auto;
}

.about-eyebrow {
	margin: 0 0 10px;
	font-size: 22px;
	font-weight: 700;
	letter-spacing: 0.02em;
	color: #555;
}

.about-text h3 {
	margin: 0 0 16px;
	font-size: 24px;
	font-weight: 700;
	line-height: 1.45;
	color: #444;
}

.about-desc {
	margin: 0 0 28px;
	font-size: 15px;
	line-height: 1.8;
	color: #777;
}

.about-text h4 {
	margin: 0 0 16px;
	font-size: 18px;
	font-weight: 700;
	color: #444;
}

.about-guarantees {
	list-style: none;
	margin: 0;
	padding: 0;
}

.about-guarantees li {
	position: relative;
	padding: 6px 0 6px 28px;
	font-size: 15px;
	line-height: 1.6;
	color: #666;
}

.about-guarantees li::before {
	content: "";
	position: absolute;
	left: 0;
	top: 11px;
	width: 16px;
	height: 16px;
	background-color: var(--accent-color, #ee7471);
	mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='black' d='M9 16.17L4.83 12l-1.42 1.41L9 19 21 7l-1.41-1.41z'/%3E%3C/svg%3E") center / contain no-repeat;
	-webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='black' d='M9 16.17L4.83 12l-1.42 1.41L9 19 21 7l-1.41-1.41z'/%3E%3C/svg%3E") center / contain no-repeat;
}

@media (max-width: 1199px) {
	.services-grid,
	.stats-grid {
		grid-template-columns: repeat(2, 1fr);
	}
}

@media (max-width: 991px) {
	.about-content {
		grid-template-columns: 1fr;
		gap: 28px;
	}

	.about-media {
		max-width: 520px;
		margin: 0 auto;
	}
}

@media (max-width: 575px) {
	.services-section,
	.about-section {
		padding: 48px 0 56px;
	}

	.services-heading h2,
	.about-heading h2 {
		font-size: 26px;
	}

	.services-grid,
	.stats-grid {
		grid-template-columns: 1fr;
		gap: 16px;
	}

	.stats-grid {
		margin-top: 24px;
	}

	.stat-number {
		font-size: 28px;
	}

	.about-eyebrow {
		font-size: 18px;
	}

	.about-text h3 {
		font-size: 20px;
	}
}

/*--------------------------------------------------------------
# Contact Banner
--------------------------------------------------------------*/
.contact-banner {
	position: relative;
	display: flex;
	align-items: center;
	justify-content: flex-start;
	height: 40vw;
	max-height: 720px;
	min-height: 260px;
	padding: 0 5%;
	background-color: #e4736f;
	background-image: url("../images/imagebanner.svg");
	background-repeat: no-repeat;
	background-position: left center;
	background-size: cover;
}

.contact-banner-actions {
	display: flex;
	align-items: center;
	gap: 3%;
	width: 40%;
	max-width: 520px;
}

.contact-banner-btn {
	flex: 1 1 0;
	display: block;
	line-height: 0;
	transition: transform 0.2s ease, opacity 0.2s ease;
}

.contact-banner-btn img {
	display: block;
	width: 100%;
	height: auto;
}

.contact-banner-btn:hover {
	transform: translateY(-3px);
	opacity: 0.95;
}

@media (max-width: 991px) {
	.contact-banner {
		height: 55vw;
		background-position: 70% center;
	}

	.contact-banner-actions {
		width: 48%;
	}
}

@media (max-width: 575px) {
	.contact-banner {
		height: auto;
		min-height: 0;
		padding: 24px 4% 55%;
		align-items: flex-start;
		background-position: 90% top;
		background-size: auto 70%;
	}

	.contact-banner-actions {
		width: 100%;
		max-width: none;
		gap: 12px;
	}

	.contact-banner-btn {
		flex: 1 1 45%;
	}
}

/*--------------------------------------------------------------
# Site Footer
--------------------------------------------------------------*/
.site-footer {
	background-color: #f7f8f8;
	color: #555;
	padding-top: 50px;
}

.site-footer .footer-grid {
	display: grid;
	grid-template-columns: 1.2fr 0.9fr 1fr 1.6fr;
	gap: 32px;
}

.site-footer .footer-brand {
	display: inline-block;
	margin-bottom: 16px;
	font-size: 26px;
	font-weight: 700;
	color: #444;
	letter-spacing: 0.02em;
}

.site-footer .footer-contact p {
	margin: 0 0 4px;
	font-size: 14px;
	line-height: 1.7;
	color: #666;
}

.site-footer .footer-contact a {
	color: #666;
}

.site-footer .footer-contact a:hover {
	color: var(--accent-color, #ee7471);
}

.site-footer .footer-social {
	display: flex;
	gap: 10px;
	margin-top: 18px;
}

.site-footer .footer-social a {
	width: 40px;
	height: 40px;
	border-radius: 50%;
	border: 1px solid #c9c9c9;
	color: #777;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: 0.25s;
}

.site-footer .footer-social a svg {
	width: 18px;
	height: 18px;
}

.site-footer .footer-social a:hover {
	color: var(--accent-color, #ee7471);
	border-color: var(--accent-color, #ee7471);
}

.site-footer .footer-links h4,
.site-footer .footer-notice h4 {
	margin: 0 0 16px;
	font-size: 16px;
	font-weight: 700;
	color: #444;
}

.site-footer .footer-links ul {
	list-style: none;
	margin: 0;
	padding: 0;
}

.site-footer .footer-links li {
	margin-bottom: 10px;
}

.site-footer .footer-links a {
	font-size: 14px;
	color: #777;
}

.site-footer .footer-links a:hover {
	color: var(--accent-color, #ee7471);
}

.site-footer .footer-notice p {
	margin: 0;
	font-size: 13px;
	line-height: 1.75;
	color: #777;
}

.site-footer .footer-keywords {
	margin-top: 28px;
	padding-top: 20px;
	border-top: 1px solid rgba(0, 0, 0, 0.08);
	font-size: 13px;
	line-height: 1.9;
	color: #888;
}

.site-footer .footer-keywords a {
	color: #777;
}

.site-footer .footer-keywords a:hover {
	color: var(--accent-color, #ee7471);
}

.site-footer .footer-copy {
	margin-top: 18px;
	padding: 22px 15px 28px;
	border-top: 1px solid rgba(0, 0, 0, 0.08);
	text-align: center;
}

.site-footer .footer-copy p {
	margin: 0;
	font-size: 14px;
	color: #666;
}

.site-footer .footer-copy a {
	color: var(--accent-color, #ee7471);
}

@media (max-width: 991px) {
	.site-footer .footer-grid {
		grid-template-columns: 1fr 1fr;
	}
}

@media (max-width: 575px) {
	.site-footer {
		padding-top: 36px;
		padding-bottom: 56px;
	}

	.site-footer .footer-grid {
		grid-template-columns: 1fr;
		gap: 28px;
	}
}
