@import url('https://fonts.googleapis.com/css2?family=Noto+Sans:wght@100..900&family=Noto+Sans+SC:wght@100..900&family=Noto+Sans+TC:wght@100..900&display=swap');

/*=============== BASE ===============*/
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
/* 臨時擋住整頁水平滾動 */
html, body { overflow-x: hidden; }

body {
    line-height: 1.6;
    color: var(--sf-primary-blue);
    background-color: var(--sf-primary-yellow);
    font-family: "ITCAvantGardeStd-Md", "ITCAvantGardeStd-Bold", "ITCAvantGardeStd-Demi", "MyriadPro-Bold", "Noto Sans TC", "Noto Sans SC";
}

.show {
    display: block;
}
.noshow {
    display: none;
}

/* 導航欄樣式 */
.navbar {
    min-height: 120px;
    padding: 10px 0;
    margin:0 auto;
    z-index: 1020;
    display: flex;
    align-items: center;
    position: fixed;
    font-family:"MyriadPro-Bold", "Noto Sans TC", "Noto Sans SC";
    background-color: var(--sf-primary-yellow);
    width: 100%;
}

.nav-container {
    margin: 0 auto;
    display: flex;
    justify-content: space-around;
    align-items: center;
    width: 100%;
    height: 100%;
}

.nav-links {
    display: flex;
    align-items: center;
    width: 40%;
}

.nav-links a {
    color: var(--sf-primary-blue);
    text-decoration: none;
    font-weight: 800;
    font-size: 1.2rem;
    padding:8px 0;
}

.nav-links a.active,
.nav-links a:hover {
    color: var(--sf-primary-red);
    border-bottom: 1px solid var(--sf-primary-red);
}


/* Navigation Dropdown Menu Styles */
.nav-links {
    position: relative;
}

.nav-links ul {
    list-style: none;
    margin: auto;
    padding: 0;
    display: flex;
    gap: 30px;
}

.nav-links li {
    position: relative;
    display: inline-block;
}

.nav-links li a {
    display: block;
    position: relative;
    color: var(--sf-primary-blue);
    text-decoration: none;
    font-weight: 800;
    font-size: 1.2rem;
    padding: 8px 0;
}

/* Dropdown arrow indicator */
.nav-links li.menu-item-has-children > a::after {
    content: '▼';
    font-size: 0.7em;
    margin-left: 6px;
    transition: transform 0.3s ease;
}

.nav-links li.menu-item-has-children:hover > a::after {
    transform: rotate(180deg);
}

.nav-links-left {
    margin-right: 30px !important;
}
.nav-links-right {
    margin-left: 30px !important;
}

/* Sub-menu (dropdown) styles */
.nav-links .sub-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: white;
    border: 1px solid #e0e0e0;
    border-radius: 6px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    min-width: 200px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 1000;
    padding: 8px 0;
    display: flex !important;
    flex-direction: column;
    gap: 0;
}

.nav-links li:hover .sub-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.nav-links .sub-menu li {
    display: block;
    width: 100%;
}

.nav-links .sub-menu a {
    padding: 12px 20px !important;
    border-bottom: none !important;
    font-size: 1rem !important;
    font-weight: 600 !important;
    color: var(--sf-primary-blue) !important;
    white-space: nowrap;
    transition: all 0.3s ease;
}

.nav-links .sub-menu a:hover {
    background-color: var(--sf-primary-yellow);
    color: var(--sf-primary-blue);
    border-bottom: none !important;
}

/* Third level dropdown (if needed) */
.nav-links .sub-menu .sub-menu {
    top: 0;
    left: 100%;
    margin-left: 1px;
}

/* Right side navigation dropdown positioning */
.nav-links-right .sub-menu {
    left: auto;
    right: 0;
}

.nav-links-right .sub-menu .sub-menu {
    left: auto;
    right: 100%;
    margin-left: 0;
    margin-right: 1px;
}

.logo img {
    height: 80px;
	width: auto;
}
.logo.lang-en img {
    height: 50px;
	width: auto;
}

/* Language Switcher Styles */
.language-switcher {
    position: relative;
    margin-left: 20px;
}

.language-dropdown {
    position: relative;
    display: inline-block;
}

.language-toggle {
    background: none;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 12px;
    border-radius: 6px;
    transition: background-color 0.3s ease;
    color: var(--sf-primary-blue);
    font-family: inherit;
    font-size: 1rem;
    font-weight: 600;
}

.language-toggle:hover {
    background-color: rgba(0, 71, 157, 0.1);
}

.translation-icon {
    width: 20px;
    height: 20px;
    object-fit: contain;
}

.current-lang {
    font-size: 0.9rem;
}

.dropdown-arrow {
    font-size: 0.8rem;
    transition: transform 0.3s ease;
}

.language-dropdown.active .dropdown-arrow {
    transform: rotate(180deg);
}

.language-menu {
    position: absolute;
    top: 100%;
    right: 0;
    background: white;
    border: 1px solid #e0e0e0;
    border-radius: 6px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    list-style: none;
    min-width: 150px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 1001;
}

.language-dropdown:hover .language-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.navbar .language-switcher .language-menu {
    display: flex;
    flex-wrap: wrap;
    gap: 0px;
}
.language-menu li {
    border-bottom: 1px solid #f0f0f0;
    width: 100%;
    text-align: center;
}
.language-menu li:last-child {
    border-bottom: none;
}
.language-menu a {
    display: block;
    padding: 12px 16px;
    color: var(--sf-primary-blue);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    transition: all 0.3s ease;
}
.language-menu a:hover {
    background-color: var(--sf-primary-yellow);
    color: var(--sf-primary-blue);
}
.language-menu .current-language a {
    background-color: var(--sf-primary-blue);
    color: white;
}
.language-menu .current-language a:hover {
    background-color: var(--sf-primary-blue);
    color: white;
}

/* 主橫幅區域 - 根據 layout guide 調整 */
.hero-section {
    /*background: url('../images/bg_intro.webp') center/cover;*/
    height: 100%;
    width: 100%;
    margin: 0 auto;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    text-align: center;
    color: white;
    position: relative;
    z-index: 10;
}

/* Hero Slider Containers - Responsive */
.hero-slides-container {
    position: relative;
    width: 100%;
    overflow: hidden;
    margin-top:100px;
}

/* Desktop slider (1920x570) */
.hero-slides-desktop {
    display: block;
    max-height: 760px;
    height: 760px;
    margin-top: 120px;
}

/* Tablet slider (992x384) */
.hero-slides-tablet {
    display: none;
    max-height: 384px;
    height: 384px;
    margin-top: 100px;
}

/* Mobile slider (480x270) */
.hero-slides-mobile {
    display: none;
    max-height: 270px;
    height: 270px;
    margin-top: 0px;
}

/* Hero Slides - works for both images and videos */
.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transition: opacity 0.6s ease-in-out;
    pointer-events: none;
}

.hero-slide.active {
    opacity: 1;
    pointer-events: auto;
}

/* Legacy single image/video support */
.heroimage{
	height:85vh;
	object-fit:cover;
	width: 100%;
}

.herovideo {
    width: 100%;
}

.hero-content {
    position: absolute;
    z-index: 100;
    padding: 20px;
    left: 50%;
    transform: translateX(-50%);
    bottom: 1%;
}

.hero-content h1 {
    font-size: 3.5em;
    margin-bottom: 40px;
    font-weight: bold;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
}

.search-container {
    margin-bottom: 50px;
    border: 3px solid var(--sf-primary-yellow);
    background-color: var(--sf-primary-blue);
    border-radius: 20px;
    padding: 30px 30px;
    display: flex;
    flex-wrap: nowrap;
    justify-content: space-around;
    align-items: center;
}

.search-title {
    font-size: 3rem;
    font-weight: bold;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
}
.search-title h1{
		all: inherit;
	}


.search-box {
    margin: 0 auto;
    margin-right: 30px;
}

.search-input {
    flex: 1;
    padding: 15px 25px;
    color: var(--sf-primary-blue);
    border: 3px solid var(--sf-primary-yellow);
    border-radius: 30px;
    font-size:1.2rem;
}

.search-input::placeholder {
    color: var(--sf-primary-blue);
}

.search-btn {
    padding: 15px 25px;
    cursor: pointer;
}

/*
.search-btn:hover {
    background: #0052A3;
}*/

.hero-dots {
    display: none !important; /* Hidden by default, shown via specific classes */
    justify-content: center;
    gap: 10px;
}

/* Desktop dots - visible by default */
.hero-dots-desktop {
    display: flex;
}

/* Tablet dots - hidden by default */
.hero-dots-tablet {
    display: none;
}

/* Mobile dots - hidden by default */
.hero-dots-mobile {
    display: none;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: background 0.3s;
}

.dot.active {
    background: white;
}

/* 服務區域 */
.services-section {
    padding: 30px 20px;
    background-color: var(--sf-primary-yellow);
    text-align: center;
    z-index: 0;
    position: relative;
}
.services-bg {
    position: relative;
    z-index: 1; 
} 
.services-bg .right {
    position: absolute;
    z-index: 1; 
    top: -870px;
    right: -430px;
}
.services-bg .left {
    position: absolute;
    z-index: 1;
    top: -410px; 
    left: -600px;
}

.services-title {
    font-size: 2em;
    color: var(--sf-primary-blue);
    margin-bottom: 10px;
    font-weight: bold;
    position: relative;
    z-index: 10;
    font-family: 'ITCAvantGardeStd-Bold';
}


.services-title.lang-en {
    font-size: 2em;
}
.services-title h2{
	all: inherit;
}

.services-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    position: relative;
    z-index: 10;
}

.service-item {

}

.service-item-img {
    background: white;
    border-radius: 25px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s, box-shadow 0.3s;
    aspect-ratio: 3/4; /* 符合 layout guide 的 3:4 比例 */
}


.service-item-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    box-sizing: border-box;
}

.service-item-img video {
   min-height: 420px;
   margin-top: -10px;
}

.service-item-txt {
    padding: 20px 30px;
    color: #fff;
    background-color: var(--sf-primary-blue);
    font-size: 1.2rem;
    font-weight: bold;
    border-radius: 80px;
    margin-top: 10px;
}
/*
.service-item-txt:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
}*/

/* 為什麼選擇我們區域 */
.why-section {
    padding-top: 30px;
    text-align: center;
    color: white;
    position: relative;
    *z-index: 1;

}

.why-section h2 {
    font-size: 2em;
    color: var(--sf-primary-yellow);
    font-weight: bold;
	padding: 30px 0px 0px 0px;
    font-family: 'ITCAvantGardeStd-Bold';
    position: relative;
    z-index: 10;
}
.why-section h3 {
    font-size: 2em;
    color: var(--sf-primary-yellow);
    font-weight: bold;
	padding: 30px 0px 0px 0px;
    font-family: 'ITCAvantGardeStd-Bold';
    position: relative;
    z-index: 10;
}

.why-content {
    margin: 0 auto;
    margin-top: 40px;
    position: relative;
    z-index: 20;
}

.why-image {
    position: relative;
    overflow: hidden;
    border: 20px solid #fff;
    border-radius: 50px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.why-image img {
    width: 100%;
    border-radius: 30px 30px 65px 65px;
    object-fit: cover;
}

.image-title {
    position: relative;
    z-index: 10;
    background: var(--sf-primary-yellow);
    padding: 5px 30px;
    color:var(--sf-primary-blue);
    font-size:2rem;
    font-weight: 900;

}
.image-overlay {
    position: relative;
    z-index: 2;
    background: var(--sf-primary-yellow);
    overflow: hidden;
    width: 100%;
    height: 250px;
}

.image-overlay h3 {
    font-size: 2em;
    color: var(--sf-primary-blue);
    font-weight: bold;
}

.why-section-bg {
    display: block;
    position: absolute;
    z-index: 2;
    top: 0;
    left: 50%;
    transform: translate(-50%, 0%);
    width: 100%;
}

.why-section-bg img {
    width: 100%;
    min-height: 600px;
}

.why-section-bg-l {
    display: none;
    position: absolute;
    z-index: 2;
    top: 0;
    left: 50%;
    transform: translate(-50%, 0%);
    width: 100%;
}

.why-section-bg-l img {
    width: 100%;
    min-height: 600px;
}

/*why-section slider*/

.swiper.gallery-wp .swiper-slide .slide-description {
	padding: 30px 0;
    font-size: 2rem;
    font-family: 'ITCAvantGardeStd-Bold';
    display: none;
}



/* 地點區域 */
.location-section {
    padding: 150px 0px;
    text-align: center;
    position: relative;
    z-index: 101;
}

.location-section h2 {
    font-size: 2.5em;
    color: var(--sf-primary-blue);
    margin-bottom: 40px;
    font-weight: bold;
	padding: 30px 0;
    font-family: 'ITCAvantGardeStd-Bold';
}
.location-section h3 {
    font-size: 2.5em;
    color: var(--sf-primary-blue);
    margin-bottom: 40px;
    font-weight: bold;
	padding: 30px 0;
    font-family: 'ITCAvantGardeStd-Bold';
}

.location-container {
    width: 100%;
    max-width: 1280px;
    margin:0 auto;
    overflow: hidden;
    text-align: center;

}

.location-bg {
    background: url('../images/location_item_2.png');
    background-repeat: no-repeat;
    background-position: 30% 50%; /* 初始位置，只顯示左側的紅色 */
    transition: background-position 0.5s ease-in-out; /* 設定背景移動的動畫 */
    animation-direction: normal; 
    width: 100%;
    min-height: 500px;
}

.location-bg:hover {
  background-position: 45% 50%; /* 滑鼠懸停時移動到右側，顯示藍色 */
}

.location-bg img {

}


.location-tabs {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-bottom: 50px;
    flex-wrap: wrap;
}

.location-tab {
    background: var(--sf-primary-blue);
    color: white;
    border: none;
    padding: 12px 25px;
    border-radius: 25px;
    cursor: pointer;
    font-weight: 500;
    transition: all 0.3s;
}

.location-tab.active {
    background: #004499;
    transform: scale(1.05);
}

.location-tab:hover {
    background: #004499;
}

.location-circles {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 40px;
    flex-wrap: wrap;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.location-circle {
    width: 100px;
    height: 100px;
    background: var(--sf-primary-blue);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 14px;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s;
    border: 4px solid white;
}

.location-circle:hover {
    background: #004499;
    transform: scale(1.1);
}

.location-nav {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.nav-arrow {
    background: var(--sf-primary-blue);
    color: white;
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 20px;
    transition: background 0.3s;
}

.nav-arrow:hover {
    background: #004499;
}

/* 客戶評價區域 */
.wocs-section {
    background: var(--sf-primary-yellow);
    text-align: center;
    color: white;
    position: relative;
    z-index: 0;
    width: 100%;
    margin: 0 auto;
    min-height: 780px;
}

.wocs-section .wocs-title {
    font-size: 2.5em;
    color: var(--sf-primary-yellow);
    font-weight: bold;
    position: relative;
    z-index: 2;
	padding-top: 30px;
    font-family: 'ITCAvantGardeStd-Bold';
}

.wocs-container {
    /*max-width: 800px;*/
    margin: 0 auto;
    margin-top: 80px;
    position: relative;
    z-index: 10;
}
.wocs-container .testimonial-nav {
    padding: 50px 0;
}

.wocs {
    background-image: url('../images/chatbox_bg.png'); /* Replace with your image */
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
    color: #333;
    padding: 30px;
    position: relative;
    flex: 1;
    max-width:460px;
    min-height: 400px;
}

.wocs-date {
    font-size: 12px;
    color: #666;
    margin-bottom: 15px;
    position: absolute;
    top: 110px;
    right: 50px;
}

.wocs-content h4 {
    color: var(--sf-primary-blue);
    font-size: 1.2em;
    margin-bottom: 10px;
    font-weight: bold;
    position: absolute;
    top: 100px;
    left: 40px;
}

.wocs-content p {
    font-size: 13px;
    line-height: 26px;
    color: #555;
    position: relative;
    top: 114px;
    left: 25px;
    max-width: 200px;
    text-align: left;
}

.quote-mark {
    font-size: 4em;
    color: #FF69B4;
    position: absolute;
    font-weight: bold;
}

.quote-mark.left {
    top: -10px;
    left: 15px;
}

.quote-mark.right {
    bottom: -30px;
    right: 15px;
}

.wocs-nav {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    position: relative;
    z-index: 2;
    padding: 30px 0;
}

.wocs-arrow {
    background: var(--sf-primary-yellow);
    color: var(--sf-primary-blue);
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 20px;
    font-weight: bold;
    transition: all 0.3s;
}

.wocs-arrow:hover {
    background: var(--sf-primary-yellow);
    transform: scale(1.1);
}

.more-review {
    color: var(--sf-primary-yellow);
    border: none;
    padding: 12px 25px;
    cursor: pointer;
    font-size: 1rem;
    font-weight: bold;
}

.more-review:hover {
    font-size: 1.2rem;
}

.wocs-bg {
    background-image: url(../images/wocs-bg.png);
    background-position: center;
    background-repeat: no-repeat;
    background-size: 1280px 800px;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
	pointer-events: none;
}
.wocs-bg img {
    min-height: 780px;
    object-fit: cover;
}
.wocs-main-bg {
    background-image: url(../images/bg_wocs_c.png);
    background-position: center;
    background-repeat: no-repeat;
    background-size: 1280px 690px;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
	pointer-events: none;
}
.wocs-main-bg img {
    min-height: 780px;
    object-fit: cover;
}

/* --- 頁面統一样式  --- */
.page-hero{
    width:100%;
    background: url('../images/bg_intro.webp') top/cover;
    position: relative;
    margin:0 auto;
    margin-top: 110px;
}
.page-hero-content {
    width:100%;
    min-height: 300px;
    position: relative;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
}
.page-hero-overlay {
    width:100%;
    min-height: 300px;
    background: #555;
    opacity: 0.5;
    position: absolute;
    top:0;
    left:0;
    z-index: 2;
}

.page-hero-content h1 {
    font-size: 30px;
    font-family: ITCAvantGardeStd-Bold;
    color: #fff;
    z-index: 10;
}

.page-main,
.page-main-wrap {
    width:100%;
    position: relative;
    margin:0 auto;
    overflow: hidden;
}
.page-main-wrap {
    z-index: 10;
    min-height: 700px;
}
.page-main-title {
    text-align: center;
    position: relative;
    z-index: 2;
}
.page-main-title h1,
.page-main-title h2 {
    padding: 30px 0;
    font-size: 2rem;
    font-family: 'ITCAvantGardeStd-Bold';
}
.page-main-desc {
    font-size: 12px;
    color:#000;
}
.page-main-container {
    width: 100%;
    min-height: 600px;
    position: relative;
    z-index: 1;
}

.page-main-bg {
    background-image: url('../images/bg_item_6.png'); /* Replace with your image */
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0; /* Places this element on the default stacking layer */
}
/*20250924 Wing Edited For Custom page template content container
.custom-page-content{
    padding-right:8%; 
    padding-left:8%;
}*/
.page-main-bg-new{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;/* Places this element on the default stacking layer */
}
.page-main-bg-new img{
    width: 100%;
    height: auto;
    display: block;
}

.page-movers-bg {
    background-image: url('../images/bg_movers.png'); /* Replace with your image */
    background-position: top center;
    background-repeat: no-repeat;
    background-size: 2560px 4020px;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0; /* Places this element on the default stacking layer */
}

.movers-main-title {
    text-align: center;
    position: relative;
    z-index: 2;
}
.movers-main-title h2 {
    padding: 30px 0;
    font-size: 3rem;
    font-family: 'ITCAvantGardeStd-Bold';
}

.movers-main-container {
    width: 100%;
    min-height: 600px;
    position: relative;
    z-index: 1;
    padding-top: 20px;
}


.movers-s1 {
    display: flex;
    flex-wrap: nowrap;
    justify-content: center;
    gap: 60px;
    padding: 100px 50px 30px 50px;
    position: relative;
}
.movers-s1-right {
    width: 100%;
    max-width: 46%;
    position: relative;
    z-index: 5;
}
.movers-s1-left {
    width: 100%;
    max-width: 42%;
    text-align: end;
    position: relative;
    z-index: 5;
}
.movers-s1-right h3 {
    font-size: 3rem;
    font-family: 'ITCAvantGardeStd-Bold';
    text-align: center;
    line-height: 4rem;
    padding-bottom: 30px;
    color: var(--sf-primary-yellow);
}
.movers-s1-right p {
    color: #fff;
    padding: 10px 0;
    text-align: justify;
    font-family: 'ITCAvantGardeStd-Md';
    font-size: 2rem;
    line-height: 2.5rem;
}
.movers-s1-right.lang-en p {
    font-size: 1.2rem;
    line-height: 1.5rem;
}
.movers-s1-left img {
    width: 100%;
}
.movers-s1-btnset {
    display: flex;
    flex-wrap: nowrap;
    align-items: center;
    min-height: 140px;
    gap: 30px;
}
.movers-s1-btnset a {
    text-decoration: none;
}
.movers-s1-btnset img {
    width: 300px;
}

.movers-s2 {
    margin: 50px 0;
    text-align: center;
    position: relative;
}
.movers-s2-title {
    color: var(--sf-primary-blue);
    font-family: 'ITCAvantGardeStd-Bold';
    font-size: 3rem;
    padding: 30px 0;
}
.movers-s2-process {
    
}
.movers-s2-process img {
    width: 900px;
}
.movers-s3 {
    margin: 50px 0;
    text-align: center;
    position: relative;
    /*min-height: 1080px; Cancel min-height, change to padding-bottom*/
	padding-bottom:100px;
}
.movers-s3-title {
    color: var(--sf-primary-yellow);
    font-family: 'ITCAvantGardeStd-Bold';
    font-size: 4rem;
    padding: 30px 0;
    position: relative;
    z-index: 5;
}
.movers-s3-cards {
    display: flex;
    gap: 20px;
    flex-wrap: nowrap;
    justify-content: space-evenly;
    align-items: center;
    margin-top: 50px;
    position: relative;
    z-index: 5;
}
.movers-s3-cardswrap {
    max-width: 300px;
    overflow: hidden;
}
.movers-s3-cardsimg {
    background-color: #333;
    width: 100%;
    height: 320px;
    border-radius: 30px;
    overflow: hidden;
}
.movers-s3-cardsimg img {
   width: 100%;
   height:100%;
}
.movers-s3-cardstxt {
    background-color: var(--sf-primary-yellow);
    color: var(--sf-primary-blue);
    width: 100%;
    height: 100px;
    margin-top: 20px;
    border-radius: 30px;
    font-size: 18px;
    font-family: 'ITCAvantGardeStd-Bold';
    line-height: 22px;
    display: flex;
    flex-wrap: nowrap;
    align-items: center;
    justify-content: center;
}
.movers-s3-ca {
    border: 1px solid var(--sf-primary-yellow);
    max-width: 1024px;
    margin: 0 auto;
    margin-top: 50px;
    border-radius: 20px;
    padding: 20px;
    position: relative;
    z-index: 5;
}
.movers-s3-catitle {
    color: var(--sf-primary-yellow);
    font-size: 24px;
    font-family: 'ITCAvantGardeStd-Bold';
}
.movers-s3-catxt {
    color: #fff;
    text-align: left;
    width: 90%;
    margin: 0 auto;
}
.movers-s3-catxt p {
    font-size: 18px;
    font-family: 'ITCAvantGardeStd-Bold';
}
.movers-s3-catxt ul {
    padding: 0 15px;
}
.movers-s3-catxt li {
    font-size: 15px;
}
.movers-s4 {
    margin: 50px 0;
    text-align: center;
    position: relative;
}
.movers-s4-title {
    color: var(--sf-primary-blue);
    font-family: 'ITCAvantGardeStd-Bold';
    font-size: 40px;
    padding-top: 30px;
    line-height: 45px;
}
.movers-s4-txt {
    color: var(--sf-primary-blue);
    font-size: 20px;
    padding: 10px 0 30px 0;
    font-family: 'ITCAvantGardeStd-Md';
    font-weight: 600;
    line-height: 24px;
}
.movers-s5 {
    margin: 50px 0;
    text-align: center;
    position: relative;
}
.movers-s5-title {
    color: var(--sf-primary-yellow);
    font-family: 'ITCAvantGardeStd-Bold';
    font-size: 40px;
    padding: 30px 0;
}
.movers-s6 {
    margin: 50px 0;
    position: relative;
}
.movers-s6-wrap {
    border: 1px solid var(--sf-primary-blue);
    max-width: 1024px;
    margin: 0 auto;
    margin-top: 50px;
    border-radius: 20px;
    padding: 20px;  
}
.movers-s6-btnset {
    display: flex;
    flex-wrap: nowrap;
    align-items: flex-end;
    min-height: 60px;
    gap: 30px;
    justify-content: center;
}
.movers-s6-btnset a {
    text-decoration: none;
}
.movers-s6-btnset img {
    width: 160px;
}
.movers-s1-bg,
.movers-s1-bg-l,
.movers-s3-bg,
.movers-s5-bg,
.movers-s3-bg-m,
.movers-s3-bg-l,
.movers-main-bg{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;/* Places this element on the default stacking layer */
}
.movers-s1-bg img,
.movers-s1-bg-l img,
.movers-s3-bg img,
.movers-s5-bg img,
.movers-s3-bg-m img,
.movers-s3-bg-l img,
.movers-main-bg img{
    width: 100%;
    height: auto;
    display: block;
}
.movers-s3-bg-m img{
	height:100%;
}
.movers-s3-bg img {
    height: 100%;
}

.movers-s1-bg,
.movers-s3-bg {
    display: block;
}
.movers-s1-bg,
.movers-s3-bg,
.movers-s5-bg {
    display: none;
}
.movers-s1-bg-l,
.movers-s3-bg-m,
.movers-s3-bg-l {
    display: none;
}

/* --- End頁面統一样式  --- */

/* --------- FAQ Page --------- */
.faq-page  .faq-list {
    /* Reset the counter on the parent <ol> */
    counter-reset: item; 
    /* Remove default markers */
    list-style-type: none; 
    margin: 0;
    padding-left: 0;
}

.faq-page  .faq-list li::before {
    /* Increment the counter for each list item */
    counter-increment: item;
    /* Use the counter() function to display the number and add characters */
    content: "Q" counter(item) "."; 
    /* Optional: Add styling to the generated content */
    font-weight: bold;
    color: #007bff; /* Example color */
    margin: 0;
    padding: 0;
    margin-top: 8px;
}

.faq-page  .faq-list li {
    display: grid;
    grid-template-columns: auto 1fr;
    column-gap: 5px;
    align-items: start;
}

.faq-page  .faq-list li .faqans {
    grid-column: 2;
    margin: 0.25rem 0;
}
/* --------- End of FAQ Page --------- */

.form-container {
    padding: 20px;
    width:80%;
    margin:0 auto;
    border: 1px solid #fff;
    border-radius: 20px;
}

/* --------- Footer --------- */
/* 頁腳 */
.footer {
    width:100%;
    margin:0 auto;
    background: var(--sf-primary-blue);
    color: white;
    padding: 0;
    position: relative;
    z-index: 1;
}

.footer-container {
    width: 100%;
    margin: 0 auto;
    padding-bottom: 80px;
}

.footer-title {
    color:#fff;
    font-size: 2em;
    font-weight: 700;
    margin: 0 auto;
    padding: 20px 30px;
}

/* FAQ Accordion Styles */
.faq-toggle {
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    transition: all 0.3s ease;
    user-select: none;
}

.faq-toggle:hover {
    opacity: 0.8;
}

.faq-title {
    flex: 1;
}

.faq-toggle-icon {
    font-size: 1.5em;
    font-weight: bold;
    transition: transform 0.3s ease;
    margin-left: 10px;
}

.faq-toggle-icon.active {
    transform: rotate(45deg);
}

.faq-content {
    overflow-y: auto;
    transition: all 0.3s ease;
    position: fixed;
    top: 3%;
    left: 50%;
    transform: translateX(-50%);
    background-color: var(--sf-primary-blue);
    z-index: 999999;
    width: 90%;
    height: 80%;
    padding: 30px;
    scrollbar-width: none; /* Firefox */
    -ms-overflow-style: none;  /* Internet Explorer 10+ */
}

.faq-content::-webkit-scrollbar {
    display: none; /* Chrome, Safari, Opera */
}


.faq-content.show {
    display: block !important;
}

.faq-accordion {
    margin-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.3);
}

.faq-item {
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    padding: 15px 0;
    transition: all 0.3s ease;
    user-select: none;
}

.faq-question:hover {
    background-color: rgba(255, 255, 255, 0.05);
    padding-left: 10px;
}

.faq-question-title {
    flex: 1;
    margin: 0;
    color: #fff;
    font-size: 1rem;
    font-weight: 600;
}

.faq-item-toggle {
    font-size: 1.2em;
    font-weight: bold;
    transition: transform 0.3s ease;
    margin-left: 10px;
    min-width: 20px;
    text-align: center;
}

.faq-item-toggle.active {
    transform: rotate(45deg);
}

.faq-answer {
    overflow: hidden;
    transition: max-height 0.3s ease;
    max-height: 0;
}

.faq-answer.show {
    max-height: 500px;
    display: block !important;
}

.faq-answer-content {
    padding: 0 0 15px 0;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
    font-size: 0.9rem;
}

.faq-answer-content p {
    margin-bottom: 10px;
}

.faq-answer-content p:last-child {
    margin-bottom: 0;
}

.faq-placeholder {
    margin-top: 20px;
    padding: 20px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 5px;
    text-align: center;
}

.faq-placeholder p {
    color: rgba(255, 255, 255, 0.8);
    margin: 0;
    font-size: 0.9rem;
}
.footer-content {
    width: 100%;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 10px;
    color: #fff;
    padding: 0px 30px 30px 30px;
}

.footer-nav {
    width: 100%;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 10px;
    color: #fff;
    padding: 0px 30px 30px 30px;
}
.footer-menu {
    width: 100%;
    margin: 0 auto;
    font-size: 12px;
    color: #fff;
    text-align: center;
}
.footer-menu a {
    color: #fff;
    text-decoration: none;
}
.footer-menu a:hover {
    color: #fff;
    text-decoration: underline;
}
.footer-copyright {
    width: 100%;
    margin: 0 auto;
    font-size: 12px;
    color: #fff;
    text-align: center;
    padding: 0px 30px 30px 30px;
}

/* *** End of Footer *** */

/* --------- Languages selector --------- */
.wpml-ls-legacy-list-horizontal.wpml-ls-statics-footer {
    margin-bottom: 30px;
    position: fixed;
    top: 40px;
    right: 20px;
    z-index: 99999;
}
.wpml-ls-legacy-list-horizontal.wpml-ls-statics-footer>ul {
    text-align: right;
    display: flex;
    gap: 5px;
}
.wpml-ls-legacy-list-horizontal li>a {
    display: block;
    text-decoration: none;
    padding: 5px 10px 6px;
    line-height: 1;
    font-size: 0pt;
    border-radius: 50px;
}
/* *** End of Lang selector *** */

.socials {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    flex-wrap: wrap;
    align-content: center;
}

.footer-section hr {
    width: 120px;
    margin: 10px 0;
}

.footer-section h3,
.footer-section h4 {
    color: var(--sf-primary-yellow);
    margin-bottom: 20px;
    font-size: 1.2rem;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    font-family: 'ITCAvantGardeStd-Md';
    font-size: 11px;
    padding-top: 8px;
    color: #fff;
    cursor: pointer;
}

.footer-section ul li:hover {
    color: var(--sf-primary-yellow);
}

.footer a {
	color: #fff;
}

.footer-faq {
	display: none;
    /*position: fixed;*/
    z-index: 99991;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-color: var(--sf-primary-blue);
}
.footer-faq-title {
    color: #fff;
    font-size: 2em;
    font-weight: 700;
}
.footer-faq .faq-close {
    font-size: 3em;
    font-weight: bold;
    transition: transform 0.3s ease;
    margin-left: 10px;
}

.social-apps,
.social-icons {
    display: flex;
    gap: 15px;
}

.social-icons i {
    font-family: 'ITCAvantGardeStd-Md';
    font-size: 1rem;
    color: #ccc;
    cursor: pointer;
}

.social-icons i:hover {
    color: var(--sf-primary-yellow);
}

.social-icons img {
    height: 36px;
}
.social-apps img {
    height: 36px;
}

.footer-bottom {
    text-align: center;
    margin-top: 100px;
    padding-top: 20px;
    position: fixed;
    z-index: 99999;
    background-color: var(--sf-primary-yellow);
    bottom: 0;
    left: 0;
    width: 100%;
}

.contact-icons {
    display: flex;
    gap: 20px;
    position: absolute;
    margin: 0 auto;
    text-align: center;
    bottom: -3px;
    left: 50%;
    transform: translate(-50%, 5%);
}

.contact-icons i {
    font-size: 2em;
    color: var(--sf-primary-yellow);
    cursor: pointer;
    transition: all 0.3s;
}

.contact-icons i:hover {
    color: var(--sf-primary-yellow);
    transform: scale(1.2);
}
.contact-icons span { width: 100px; }
.contact-icons span img { width: 100%; }


/*--- About page ---*/
.about-main-bg {
    background-image: url('../images/bg_about.png'); /* Replace with your image */
    background-position: top;
    background-repeat: no-repeat;
    background-size: cover;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0; /* Places this element on the default stacking layer */
}

.aboutus {
    display: flex;
    flex-wrap: nowrap;
    justify-content: space-between;
    gap: 30px;
    padding: 0 20px 30px 20px;
}
.aboutus-m {
    display: none;
    padding: 0 50px 30px 50px;
}

.aboutus-left {
    width: 100%;
    max-width: 48%;
}
.aboutus-right {
    width: 100%;
    max-width: 46%;
    text-align: end;
}

.aboutus-left h3 {
    font-size: 1.5rem;
    font-family: 'ITCAvantGardeStd-Demi';
}

.aboutus-left p {
    color: var(--sf-primary-blue);
    padding:10px 0;
    text-align: justify;
    font-family: 'ITCAvantGardeStd-Md';
    font-size: 1.1rem;
}

.aboutus-right img {
    width: 100%;
}

/* --- */

.aboutvalues {
    position: relative;
    max-width: 1280px;
    min-height: 600px;
    margin:0 auto;
}

.aboutvalues-title {
    position: relative;
    z-index: 1;
    padding: 80px 0 20px 0;
    font-size: 2rem;
    font-family: 'ITCAvantGardeStd-Bold';
    text-align: center;
    color:var(--sf-primary-yellow);
}

.aboutvalues-container {
    display: flex;
    flex-wrap: nowrap;
    justify-content: space-between;
    gap: 50px;
    position: relative;
    z-index: 1;
    max-width: 960px;
    margin: 0 auto;
    padding: 0px 20px 50px 80px;
}
.aboutvalues-container-m {
    flex-wrap: nowrap;
    justify-content: space-between;
    gap: 50px;
    position: relative;
    z-index: 1;
    margin: 0 auto;
    padding: 0px 20px 50px 80px;
    display: none;
}

.aboutvalues-left {
    width: 100%;
    max-width: 500px;
}
.aboutvalues-right {
    width: 100%;
    max-width: 400px;
    text-align: end;
    position: relative;
}
.aboutvalues-m {
    width: 100%;
    max-width: 100%;
}

.aboutvalues-right p {
    font-size: 7rem;
    color: var(--sf-primary-yellow);
    text-align: center;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    font-family: 'ITCAvantGardeStd-Demi';
}

.aboutvalues-left h3 {
    font-size: 1.5rem;
    font-family: 'ITCAvantGardeStd-Demi';
}

.aboutvalues-left p {
    color: #fff;
    padding:10px 0;
    text-align: justify;
    font-family: 'ITCAvantGardeStd-Md';
    font-size: 14px;
}
.aboutvalues-left br {
    display: none;
}
.aboutvalues-left p br {
    display: block;
}

.aboutvalues-m h3 {
    font-size: 1.5rem;
    font-family: 'ITCAvantGardeStd-Demi';
}

.aboutvalues-m p {
    color: #fff;
    padding:0 0 10px 0;
    text-align: justify;
    font-family: 'ITCAvantGardeStd-Md';
    font-size: 12px;
}
.aboutvalues-m.lang-en p {
    font-size: 11px;
}

.aboutvalues-fast {
    width: 100%;
}
.aboutvalues-fast p {
    color: var(--sf-primary-yellow);
    padding:20px 0 10px 0;
    text-align: center;
    font-family: 'ITCAVANTGARDESTD-BOLD';
    font-size: 4rem;
    line-height: 4rem;
}

.aboutvalues-bg {
    background-image: url('../images/bg_item_about.png'); /* Replace with your image */
    background-repeat: no-repeat;
    background-position: center;
    background-size: 1024px auto;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0; /* Places this element on the default stacking layer */
}

.aboutvalues-bg-h {
    display: none;
    background-image: url('../images/bg_item_7_h.png'); /* Replace with your image */
    background-repeat: no-repeat;
    background-position: center;
    background-size: 400px 480px;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0; /* Places this element on the default stacking layer */
}

.aboutvalues a {
    color:#fff;
    text-decoration: none;
}

.aboutmilestone {
    width: 100%;
    height: 100%;
    min-height: 800px;
    position: relative;
}

.aboutmilestone-title {
    position: relative;
    z-index: 1;
    padding: 50px 0 10px 0;
    font-size: 2rem;
    font-family: 'ITCAvantGardeStd-Bold';
    text-align: center;
    color:var(--sf-primary-blue);
}

.aboutmilestone-main {
    position: relative;
    z-index: 1;
    padding: 0px 80px;
    background-image: url('../images/about_milestion_bgl.png'); /* Replace with your image */
    background-size: contain;
    background-repeat: no-repeat;
    background-position: top 50px left 210px;
    width: 960px;
    max-height: 700px;
    overflow-y: overlay;
    overflow-x: hidden;
    margin: 0 auto;
}
    .aboutmilestone-main::-webkit-scrollbar {
        width: 7px;
    }

    .aboutmilestone-main::-webkit-scrollbar-button {
        background: transparent;
        border-radius: 4px;
    }

    .aboutmilestone-main::-webkit-scrollbar-track-piece {
       background: transparent;
    }

    .aboutmilestone-main::-webkit-scrollbar-thumb {
        border-radius: 4px;
        background-color: rgba(0, 0, 0, 0.4);
        border: 1px solid slategrey;
    }

    .aboutmilestone-main::-webkit-scrollbar-track {
        box-shadow: transparent;
    }


.aboutmilestone-btns {
    position: absolute;
    top: 220PX;
    left: 150px;
	z-index:20;
	cursor: pointer;
}
.aboutmilestone-btns .btnup {
    padding: 10px 0;
}
.aboutmilestone-btns .btndown {
    padding: 10px 0;
}

.aboutmilestone-footer {
    width: 100%;
    padding-top: 80px;
}

.aboutmilestone-footer-item {
    width: 260px;
    height: 31px;
    text-align: center;
}

.aboutmilestone-container {
    display: flex;
    flex-wrap: nowrap;
    justify-content: start;
    gap: 30px;
    padding: 25px 0;
}
.aboutmilestone-left {
    width: 260px;

}
.aboutmilestone-left .mil-item-img {
    width: 260px;
    height: 260px;
}

.aboutmilestone-left .mil-item-img img {
    width: 100%;
    border-radius: 150px;
}

.aboutmilestone-right {
    position: relative;
    z-index: 1;
}

.aboutmilestone-right .mil-item-txt {
    height: auto;
    display: flex;
    flex-wrap: nowrap;
    justify-content: flex-start;
	flex-direction:column;
}
.mil-item-txt .mil-item-text-year {
    color: var(--sf-primary-blue);
    font-size: 3rem;
    font-family: "ITCAvantGardeStd-Bold";
	display:flex;
	justify-content:flex-start;
	flex-direction:row;
}
.mil-item-txt .mil-item-text-text {
    font-size: 1rem;
    font-family: "ITCAvantGardeStd-Md";
}

/*--- End of About page ---*/


/*--- 頁面統一寬度 ---*/
.footer-container {
    max-width: 1280px;
}
/*--- End頁面統一寬度 ---*/

/* Single Promotion Post Details Styles */
.post-details {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    margin-bottom: 40px;
    padding: 20px;
    position: relative;
    z-index: 10;
}

.post-left {
    display: flex; /* Make the container a flex container */
    justify-content: center; /* Centers content horizontally */
    align-items: center; /* Centers content vertically */
    min-width: 490px;
    max-width: 490px;
    height: 490px;
    border: 20px solid #fff;
    border-radius: 30px;
    overflow: hidden;
}


.post-left img{
    height:450px;
}


/*
.post-left .post-thumbnail {
    width: 100%;
    height: auto;
    border-radius: 30px;
    border-style: solid;
    border-width: 20px;
    border-color: white;
}
*/


.post-right {
    flex: 2;
    min-width: 300px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.post-right .post-content {
    font-size: 16px;
    line-height: 1.8;
    color: #333;
    font-family: 'ITCAvantGardeStd-Md', Arial, sans-serif;
}

.post-right .post-content h1,
.post-right .post-content h2,
.post-right .post-content h3 {
    color: var(--sf-primary-blue);
    margin-bottom: 15px;
    font-family: 'ITCAvantGardeStd-Bold', Arial, sans-serif;
}

.post-right .post-content h1 {
    font-size: 2.2em;
    margin-bottom: 20px;
}

.post-right .post-content h2 {
    font-size: 1.8em;
}

.post-right .post-content h3 {
    font-size: 1.4em;
}

.post-right .post-content p {
    margin-bottom: 15px;
    text-align: justify;
}

.post-right .post-content ul,
.post-right .post-content ol {
    margin-bottom: 15px;
    padding-left: 25px;
}

.post-right .post-content li {
    margin-bottom: 8px;
}

.post-right .post-content a {
    color: var(--sf-primary-red);
    text-decoration: none;
    font-weight: bold;
    transition: color 0.3s ease;
}

.post-right .post-content a:hover {
    color: var(--sf-primary-blue);
    text-decoration: underline;
}


/* ==========================================================================
   Join us Styles
   ========================================================================== */
.joblist {
    max-width: 100%;
    background-color: var(--sf-primary-blue);
    margin: 0 auto;
    padding: 5%;
    margin-bottom: 50px;
}
.jobcards {
    width: 100%;
    min-height: 460px;
    background-color: var(--sf-primary-yellow);
    position: relative;
    border-radius: 20px;
}
.jobcard-icon {
    position: absolute;
    top: -30px;
    left: -20px;
}
.jobtitle {
    padding: 20px;
    border-bottom: 2px solid var(--sf-primary-pink);
    text-align: center;
    font-size: 1.5rem;
    font-family: ITCAvantGardeStd-Bold;
}
.jobdesc {
display: flex;
    justify-content: space-around;
    align-items: flex-start;
    gap: 5%;
    padding: 3%;
}

.jobcards .jobres-title {
    width: 100%;
    font-size: 1.2rem;
    font-family: ITCAvantGardeStd-Bold;
    text-align: center;
    padding: 10px;
}
.jobcards .jobres-title span {
    background-color: #fff;
    padding: 10px 30px;
    border-radius: 20px;
}
.jobcards .jobres-title ul {
    padding: 20px;
}

.jobdesc .jobinfo {
    padding: 10px;
    text-align: justify;
    width: 480px;
}

.jobdesc .jobinfo .jobres,
.jobdesc .jobinfo .jobben {
    padding: 10px;
}
.jobdesc .jobreq {
    padding: 10px;
    text-align: justify;
}
/* End of Join us  ========================================================= */

/* ==========================================================================
   Get Price Styles
   ========================================================================== */
.getprice .contact-form-section {

}


.getprice .contact-form-section .btn-primary {
    border-style: hidden;
    height: auto;
    width: auto;
    color: white;
    background: #FF0056;
    padding: 10px 30px;
    border-radius: 150px;
}

/* End of Join us  ========================================================= */

/* ==========================================================================
   Responsive Styles
   ========================================================================== */

/* ========== RESPONSIVE HERO SLIDER BREAKPOINT: 992px ========== */
@media (max-width: 992px) {
    .hero-slides-desktop {
        display: none;
    }
    
    .hero-slides-tablet {
        display: block;
    }
    
    .hero-dots-desktop {
        display: none;
    }
    
    .hero-dots-tablet {
        display: flex;
    }
}

@media screen and (max-width: 1199px) { /*Previously 992*/
    /* --------- BASE --------- */
    .page-hero {
        margin-top: 100px;
        overflow: hidden;
    }
    .page-hero-content {
        min-height: 200px;
    }
	

    /* --------- Home page --------- */

    .why-section-bg {
        display: none;
    }

    .why-section-bg-l {
        display: block;
    }

    .why-content {
        margin-top: 20px;
    }

    /* --------- About page --------- */
    .aboutus-left p {
        font-size: 1rem;
    }
    .aboutvalues .aboutvalues-bg {
        background-size: 992px 460px;
    }
    .aboutmilestone-btns {
        position: absolute;
        top: 350PX;
        left: 50px;
        z-index: 20;
        cursor: pointer;
    }
    .aboutmilestone-title {
        font-size: 3rem;
        margin-top: 30px;
    }
    .aboutmilestone-main {
        padding: 0px 50px 0px 130px;
        background-position: top 50px left 230px;
    }
    .aboutmilestone-left {
        width: 200px;
    }
    .aboutmilestone-left .mil-item-img {
        width: 200px;
        height: 200px;
    }
    .aboutmilestone-right .mil-item-txt {
        height: 220px;
    }
    .mil-item-txt .mil-item-text-year {
        font-size: 2.5rem;
        padding-top: 10px;
    }

    /* --------- Mover page --------- */
    .movers-s1 {
        gap: 50px;
        padding: 60px 50px 30px 50px;
    }
    .movers-s1-right {
        max-width: 46%;
    }
    .movers-s1-right h3 {
        font-size: 1.5rem;
        line-height: 2rem;
        padding-bottom: 10px;
    }
    .movers-s1-right p {
        padding: 5px 0;
        font-size: 1rem !important;
        line-height: 1.5rem;
    }
    .movers-s1-btnset {
        min-height: 80px;
    }
    .movers-s1-btnset img {
        width: 160px;
    }

    .movers-s2 {
        margin: 60px 0;
    }
    .movers-s3 {
        padding-top: 40px;
    }
    .movers-s3-title {
        padding: 10px 0;
    }
    .movers-s3-cards {
        gap: 10px;
        margin-top: 30px;
    }
    .movers-s3-cardswrap {
        max-width: 200px;
    }
    .movers-s3-cardsimg {
        width: 100%;
		height:320px;
    }
    .movers-s3-bg {
        display: none;
    }
    .movers-s3-bg-m {
        display: block;
    }
    .movers-s3-ca {
        max-width: 780px;
    }
    .movers-s3-catitle {
        font-size: 1.8rem;
        padding-bottom: 10px;
    }
    .movers-s3-catxt p {
        font-size: 1.2rem;
    }
    .movers-s3-catxt li {
        font-size: 1rem;
    }
    .movers-s3-catxt li br {
        display: none;
    }

    .movers-s4 {
        margin: 120px 0 50px 0;
    }
    .movers-s4-title {
        color: var(--sf-primary-blue);
        font-family: 'ITCAvantGardeStd-Bold';
        font-size: 3rem;
        padding-top: 30px;
        line-height: 3rem;
    }
    .movers-s4-txt {
        color: var(--sf-primary-blue);
        font-size: 1.3rem;
        padding: 20px 0;
        font-family: 'ITCAvantGardeStd-Md';
        font-weight: 600;
        line-height: 2rem;
    }
    .movers-s5-bg {
        top: -160px;
    }
    .movers-s6-wrap {
        max-width: 780px;
    }

    .navbar {
        display: none;
    }

    .header-mobile {
        display: flex;
        align-items: center;
        width: 100%;
        min-height: 100px;
        position: fixed;
        z-index: 999;
        background-color: var(--sf-primary-yellow);
    }
    .header-mobile.open {
        position: relative;
        z-index: unset;
    }
    .header-mobile .menu-toggle {
        background: transparent;
        border: 0;
        color: #00479D;
        cursor: pointer;
        position: absolute;
        right: 20px;
        top: 20px;
        z-index: 99991;
        font-size: 2.5rem;
        font-family: 'ITCAvantGardeStd-Bold';
    }
    .header-mobile .menu-toggle.open {
        position: fixed;
    }

    .header-mobile .logo {
        min-width: 300px;
        margin: 0 auto;
        text-align: center;
    }

    .nav-mobile {
        display: none;
        position: fixed;
        right: 0;
        top: 0;
        width: 80%;
        height: 100%;
        background-color: #FFC804;
        z-index: 9999;
        padding: 100px 50px;
        border-radius: 20px 0 0 20px;
    }
    .nav-mobile.open {
        display: block;
    }

    .nav-mobile .logo {
        padding: 50px 0;
        border-bottom: 2px solid #00479D;
    }
    .nav-mobile .logo img {
        height: auto;
        width: 80%;
    }
    
    .nav-mobile .nav-links {
        flex-direction: column;
        width: 100%;
        align-items: start;
        justify-content: center;
        padding: 20px 0;
        gap: 3%;
    }

    .nav-mobile .nav-links ul {
        list-style: none;
        margin: 0;
        padding: 0;
        display: flex;
        gap: 3%;
        flex-direction: column;
    }

    .nav-mobile .nav-links a {
        color: #00479D;
        text-decoration: none;
        font-weight: 800;
        font-size: 1.5rem;
        font-family: 'ITCAvantGardeStd-Bold';
    }

    .nav-mobile .navbar.open .nav-links {
        display: flex;
    }

    .lang-mobile {
        display: flex;
        width: 100%;
        justify-content: space-evenly;
        padding: 20px 0;
        gap: 3%;
        align-items: center;
    }
    .lang-mobile a {
        color: #FFF;
        background-color: #FF0056;
        padding: 1% 8%;
        text-decoration: none;
        font-weight: 800;
        font-size: 1.5rem;
        font-family: 'ITCAvantGardeStd-Bold';
    }


    .services-container {
        max-width: 100%;
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        gap: 20px;
    }
    

}

@media (max-width: 768px) {
    .post-details {
        flex-direction: column;
        gap: 20px;
        padding: 15px;
        margin-bottom: 30px;
    }
    
    .post-left,
    .post-right {
        min-width: 100%;
        max-width: 100%;
        flex: none;
    }
    
    .post-right .post-content {
        font-size: 14px;
        line-height: 1.6;
    }
    
    .post-right .post-content h1 {
        font-size: 1.8em;
    }
    
    .post-right .post-content h2 {
        font-size: 1.5em;
    }
    
    .post-right .post-content h3 {
        font-size: 1.2em;
    }

    .nav-container {
        flex-direction: column;
        gap: 15px;
    }
    
    /* Language Switcher Mobile Styles */
    .language-switcher {
        margin-left: 0;
        margin-top: 10px;
    }
    
    .language-toggle {
        padding: 6px 10px;
        font-size: 0.9rem;
    }
    
    .current-lang {
        font-size: 0.8rem;
    }
    
    .translation-icon {
        width: 16px;
        height: 16px;
    }
    
    .language-menu {
        right: auto;
        left: 0;
        min-width: 120px;
    }
    
    .language-menu a {
        padding: 10px 12px;
        font-size: 0.8rem;
    }
    
    .hero-section {
       /* min-height: 1350px;  Mobile-friendly 4:5 ratio */
        aspect-ratio: unset;
        max-height: none;
        margin-top: 100px;
    }
    
    .hero-content h1 {
        font-size: 1.2em;
    }
    
    .search-box {
        flex-direction: column;
        border-radius: 15px;
    }
    
    .search-input {
        border-bottom: 1px solid #ddd;
    }
    
    .search-input:last-of-type {
        border-bottom: none;
    }
    
    .search-btn {
        border-radius: 0 0 15px 15px;
    }
    
    .services-container {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        gap: 20px;
    }
    
    .service-item {
        /*min-width: 240px;*/
    }
    
    .service-item img {
        height: 100%; /* 適合手機的尺寸 */
    }
    
    .location-circles {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
    
    .location-circle {
        width: 80px;
        height: 80px;
        font-size: 12px;
    }

    .location-section {
        padding: 10px 0px;
    }
    
    .wocs-container {
        flex-direction: column;
    }
	    

    .footer-title {
        font-size: 1.5em;
        padding: 15px 20px;
    }
    
    .faq-toggle-icon {
        font-size: 1.3em;
    }
    
    .faq-content {
        max-height: 85%;
        height: 90%;
        top: 10%;
    }
    
    .faq-question {
        padding: 12px 0;
    }
    
    .faq-question-title {
        font-size: 0.9rem;
    }
    
    .faq-item-toggle {
        font-size: 1.1em;
    }
    
    .faq-answer-content {
        font-size: 0.8rem;
        padding: 0 0 12px 0;
    }
}

/* ========== RESPONSIVE HERO SLIDER BREAKPOINT: 480px ========== */
@media (max-width: 480px) {
    .hero-slides-tablet {
        display: none;
    }
    
    .hero-slides-mobile {
        display: block;
    }
    
    .hero-dots-tablet {
        display: none;
    }
    
    .hero-dots-mobile {
        display: flex;
    }
}

@media (max-width: 480px) {
    .nav-links {
        gap: 15px;
    }
    
    .nav-links a {
        padding: 6px 12px;
        font-size: 14px;
    }

    .logo.lang-en img {
        height: 35px;
        width: auto;
    }

    .page-main-title h1,
    .page-main-title h2 {
        padding: 20px 0;
        font-size: 2rem;
    }
    .page-main-title h1.lang-en,
    .page-main-title h2.lang-en {
        font-size: 1.5rem;
    }

    .page-hero-content {
        min-height: 160px;
    }
    .page-hero-content h1 {
        font-size: 1.5rem;
    }

    .post-details {
        padding: 10px;
        gap: 15px;
    }
    
    .post-right .post-content {
        font-size: 13px;
    }
    
    .post-right .post-content h1 {
        font-size: 1.6em;
        margin-bottom: 15px;
    }

    .hero-section {

        padding: 0px 0 80px 0;
        align-items: flex-start;
        aspect-ratio: unset;
    }
    .hero-section .search-title {
        font-size: 1.5rem;
        display: none;
    }

    .hero-section .search-container {
        display: flex;
        flex-wrap: nowrap;
        width: 100%;
        align-items: center;
        justify-content: space-evenly;
        padding: 0;
        padding-left: 10px;
        margin-bottom: 0; 
        border: 5px solid var(--sf-primary-yellow);
        background-color: var(--sf-primary-blue);
        border-radius: 15px;
    }
    .hero-section .search-container .search-box {
         margin: 0 5px;
    }
    .hero-section .search-container .search-box .search-input {
        width: 130px;
        font-size: 1rem;
    }

    .hero-content {
        padding: 0;
        bottom: unset;
        top: 300px;
    }
    .hero-content h1 {
        font-size: 2em;
    }

    .heroimage {
        height: unset;
    }
    
    .services-section {
        padding: 10px 20px;
        margin-top: 120px;
    }

    .services-section h2 {
        font-size: 2em;
    }
    
    .services-container {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .service-item img {
        height: 100%;
    }

    .why-section {
        padding-top: 0px;
        margin-top: 100px;
    }

    .why-section .page-main-wrap {
        min-height: 460px;
    }

    .why-section h2 {
        font-size: 1.5em;
        padding: 20px 0px 0px 0px;
    }
    .why-section h3 {
        font-size: 1.5em;
        padding: 20px 0px 0px 0px;
    }
    .why-section .why-content {
        margin-top: 0px;
    }

    .why-section .swiper.gallery-wp {
        padding: 10px 0;
    }
    .why-section .why-section-bg-l img {
        min-height: 480px;
    }
        
    .location-section {
        padding: 20px 0px;
    }
    .location-section h2 {
        margin: 0;
        padding: 0;
    }
    .location-section h3 {
        margin: 0;
        padding: 0;
    }

    .wocs-section {
        min-height: 360px;
        margin-top: 30px;
    }
    .wocs-section .wocs-title {
        font-size: 1.5em;
        padding-top: 20px;
    }
    .wocs-section .wocs-title.lang-en {
        font-size: 1em;
    }
    .wocs-section .wocs-container {
       margin-top: 0;
    }
    .wocs-section .testimonial-nav {
        padding: 0;
    }
    .wocs-section .wocs-bg {
        background-size: 420px 330px;
    }

    .aboutus {
        display: none;
    }
    .aboutus-m {
        display: block;
        padding: 0 10px 10px 10px;
    }
    .aboutus-right, 
    .aboutus-left {
        max-width: 100%;
    }
    .aboutvalues {
        max-width: 420px;
        min-height: 500px;
    }
    .aboutus br,
    .aboutvalues br {
        display: none;
    }
    .aboutus-left p {
        color: var(--sf-primary-blue);
    }

    .aboutvalues-title {
        position: relative;
        z-index: 1;
        padding: 40px 0 0 0;
        font-size: 1.5rem;
        font-family: 'ITCAvantGardeStd-Bold';
        text-align: center;
        color: var(--sf-primary-yellow);
        margin-top: 20px;
    }
    .aboutvalues .aboutvalues-bg {
        background-size: contain;
    }
    .aboutvalues-container {
        display: none;
    }
    .aboutvalues-container-m {
        display: flex;
        gap: 10px;
        position: relative;
        z-index: 1;
        margin: 0 auto;
        padding: 0px 20px 10px 20px;
        flex-wrap: wrap;
    }
    .aboutvalues-left p {
        color: #fff;
        padding: 5px 0;
        text-align: justify;
        font-family: 'ITCAvantGardeStd-Md';
        font-size: 5px;
    }
    .aboutvalues-right p {
        font-size: 3rem;
        color: var(--sf-primary-yellow);
        text-align: center;
        position: absolute;
        right: 1%;
        top: 38%;
        transform: translateY(-50%);
        font-family: 'ITCAvantGardeStd-Demi';
        width: 100%;
    }

    .aboutmilestone .aboutmilestone-btns {
        position: absolute;
        top: 350PX;
        left: 30px;
        z-index: 20;
        cursor: pointer;
    }
    .aboutmilestone .aboutmilestone-btns img {
        width: 32px;
        height: auto;
    }

    .aboutmilestone .aboutmilestone-main {
        position: relative;
        z-index: 1;
        padding: 0px 10px 0 30px;
        background-image: url(../images/about_milestion_bgl.png);
        background-size: contain;
        background-repeat: no-repeat;
        background-position: top 50px left 120px;
        width: auto;
        max-height: 700px;
        overflow-y: overlay;
        overflow-x: hidden;
        margin: 0 auto;
    }
    .aboutmilestone .aboutmilestone-container {
        display: flex;
        justify-content: space-around;
        gap: 0px;
        padding: 10px 0;
        flex-direction: column;
        align-items: flex-end;
    }
    .aboutmilestone .aboutmilestone-left {
        width: 100%;
    }
    .aboutmilestone .aboutmilestone-left .mil-item-img {
        width: 180px;
        height: 100%;
    }
    .aboutmilestone .aboutmilestone-right {
        width: 70%;
    }
    .aboutmilestone .aboutmilestone-right .mil-item-txt {
        height: auto;
        display: flex;
        flex-wrap: nowrap;
        justify-content: flex-start;
        flex-direction: column;
    }
    .aboutmilestone .mil-item-txt .mil-item-text-year {
        color: var(--sf-primary-blue);
        font-size: 1.2rem;
        font-family: "ITCAvantGardeStd-Bold";
        display: flex;
        justify-content: flex-start;
        flex-direction: row;
    }
    .aboutmilestone .mil-item-txt .mil-item-text-text {
        font-size: 1rem;
        font-family: "ITCAvantGardeStd-Md";
    }
    .aboutvalues-bg {
        display: none;
    }
    .aboutvalues-bg-h {
        display: block;
    }

    .movers-main-title h2 {
        padding: 30px 0 10px 0;
        font-size: 2rem;
        font-family: 'ITCAvantGardeStd-Bold';
    }
    .movers-main-container {
        padding-top: 10px;
    }
    .movers-s1 {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 10px;
        padding: 50px 20px 10px 20px;
        position: relative;
    }
    .movers-s1-left {
        width: 100%;
        max-width: 100%;
        text-align: center;
        position: relative;
        z-index: 5;
    }
    .movers-s1-right {
        width: 100%;
        max-width: 100%;
        position: relative;
        z-index: 5;
    }
    .movers-s1-right h3 {
        font-size: 1.5rem;
        line-height: 1.7rem;
        padding-bottom: 10px;
    }
    .movers-s1-right p {
        padding: 5px 0;
        font-size: 0.9rem;
        line-height: 1.2rem;
    }
    .movers-s1-btnset {
        display: flex;
        flex-wrap: nowrap;
        align-items: center;
        min-height: 80px;
        gap: 20px;
        justify-content: center;
    }
    .movers-s1-btnset img {
        width: 150px;
    }

    .movers-s1-bg {
        display: none;
    }
    .movers-s1-bg-l {
        display: block;
    }
    .movers-s1-bg-l img {
        width: 100%;
        height: 850px;
        display: block;
    }
    .movers-s1-bg-l img.lang-en  {
        width: 100%;
        height: 930px;
        display: block;
    }

    .movers-s2 {
        margin: 30px 0;
    }
    .movers-s2-title {
        font-size: 2rem;
        font-weight: 700;
    }
    .movers-s2-title.lang-en {
        font-size: 2rem;
        width: 80%;
        margin: 0 auto;
        line-height: 2.5rem;
    }

    .movers-s2-process img {
        width: 95%;
    }

    .movers-s3 {
        padding-top: 20px;
    }
    .movers-s3-title {
        padding: 10px 0;
        font-size: 2rem;
    }
    .movers-s3-cards {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        align-items: center;
        position: relative;
        z-index: 5;
        gap: 15px;
        margin-top: 10px;
    }
    .movers-s3-cardswrap {
        max-width: 160px;
    }
    .movers-s3-cardsimg {
        width: 100%;
        height: 224px;
    }
    .movers-s3-cardstxt {
        background-color: var(--sf-primary-yellow);
        color: var(--sf-primary-blue);
        width: 100%;
        height: 60px;
        margin-top: 5px;
        border-radius: 15px;
        font-size: 15px;
        font-family: 'ITCAvantGardeStd-Bold';
        line-height: 20px;
        display: flex;
        flex-wrap: nowrap;
        justify-content: center;
        align-items: center;
    }
    .movers-s3-cardstxt.lang-en {
        font-size: 11px;
    }

    .movers-s3-ca {
        max-width: 360px;
    }
    .movers-s3-catitle {
        font-size: 1.5rem;
        padding-bottom: 10px;
    }
    .movers-s3-catxt p {
        font-size: 0.8rem;
    }
    .movers-s3-catxt li {
        font-size: 0.7rem;
    }
    .movers-s3-bg,
    .movers-s3-bg-m {
        display: none;
    }
    .movers-s3-bg-l {
        display: block;
    }
    .movers-s3-bg-l img {
        width: 100%;
        height: 1060px;
        display: block;
    }
    .movers-s4 {
        margin: 120px 0 10px 0;
        position: relative;
        z-index: 5;
    }
    .movers-s4-title {
        color: var(--sf-primary-blue);
        font-family: 'ITCAvantGardeStd-Bold';
        font-size: 2rem;
        padding-top: 30px;
        line-height: 2.5rem;
        font-weight: 700;
    }
    .movers-s4-txt {
        color: var(--sf-primary-blue);
        font-size: 1.3rem;
        padding: 20px 0;
        font-family: 'ITCAvantGardeStd-Md';
        font-weight: 700;
        line-height: 1.8rem;
    }
    .movers-s4-title.lang-en {
        font-size: 1.5rem;
        line-height: 2rem;
    }
    .movers-s4-txt.lang-en {
        font-size: 1.3rem;
        line-height: 1.7rem;
    }

    .movers-s5 {
        margin: 20px 0;
        text-align: center;
        position: relative;
    }
    .movers-s5-bg {
        top: -100px;
    }
    .movers-s5-bg img {
        height: 260px;
    }

    .movers-s6 {
        margin: 10px 0 50px 0;
        position: relative;
    }
    .movers-s6-wrap {
        max-width: 96%;
    }
    .movers-s6-txt.lang-en br{
        display: none;
    }
    .movers-s6-btnset {
        gap: 20px;
    }
    .movers-s6-btnset img {
        width: 140px;
    }

    /* --------- Media Release --------- */
    .mediarelease .category-btn {
        font-size: 1rem;
    }
    .mediarelease .btnyear {
        padding: 10px;
        border-top: 1.5px solid #fff;
        width: 90%;
        margin: 0 auto;
        display: flex;
        gap: 10px;
        font-size: 20px;
        flex-wrap: wrap;
        align-items: center;
        justify-content: center;
    }


    /* --------- Join us --------- */
    /*
    .page-main-title h1,
    .page-main-title h2 {
        font-size: 1rem;
    }*/

    .joblist {
        font-size: 0.9rem;
        line-height: 1.2rem;
        padding-top: 50px;
    }

    .jobcard-icon {
        position: absolute;
        top: -20px;
        left: -10px;
    }
    .jobcard-icon img {
        width: 64px;
    }

    .jobtitle {
        font-size: 1rem;
        padding-top: 60px;
    }

    .jobdesc {
        display: flex;
        justify-content: space-around;
        align-items: flex-start;
        gap: 5%;
        padding: 3%;
        flex-wrap: wrap;
    }

    .jobdesc .jobreq {
        padding: 20px;
    }

    .jobcards .jobres-title {
        margin-bottom: 20px;
    }


    /* --------- Footer --------- */
    .footer .socials {
        display: flex;
        align-items: center;
        justify-content: center;
        flex-wrap: wrap;
        align-content: center;
        margin-top: 20px;
    }
}

/* --------------------------------------------------------------------------------- */
/* --------- Desktop --------- */
@media screen and (min-width:1025px) {
    .header-mobile,
    .nav-mobile {
        display: none;
    }
}
@media screen and (min-width:1200px) {
    .aboutus-left p {
        font-size: 1.5rem;
    }
    .aboutus-left.lang-en p {
        font-size: 1.1rem;
    }
    .aboutvalues-bg.lang-en {
        background-size: 1024px 600px;
    }

    .movers-s1 {
        padding: 100px 50px 30px 50px;
    }
    .movers-s1-right h3 {
        font-size: 2rem;
        line-height: 2rem;
        padding-bottom: 10px;
    }
    .movers-s1-right p {
        font-size: 1.5rem;
        line-height: 1.8rem;
    }
    .movers-s1-right.lang-en p {
        font-size: 1.2rem;
        line-height: 1.5rem;
    }
    .movers-s1-btnset {
        min-height: 100px;
    }
    .movers-s1-btnset img {
        width: 180px;
    }
    
    .movers-s2 {
        margin: 30px 0;
    }
    .movers-s3 {
        padding-top: 20px;
        min-height: 900px;
        margin: 30px 0;
    }
    .movers-s3-title {
        padding: 10px 0;
    }
    .movers-s3-cards {
        gap: 10px;
        margin-top: 10px;
    }
    .movers-s3-cardswrap {
        max-width: 220px;
    }
    .movers-s3-cardsimg {
        width: 100%;
		height:320px;
    }
    .movers-s3-ca {
        max-width: 930px;
        padding: 10px 10px 20px 10px;
    }
    .movers-s4 {
        margin: 20px 0 50px 0;
    }
    .movers-s4-title {
        font-size: 4rem;
        line-height: 4rem;
    }
    .movers-s4-txt {
        font-size: 2.5rem;
        padding: 30px 0 30px 0;
        line-height: 3rem;
    }

    .why-section-bg img {
        min-height: 1180px;
    }

    .location-section {
        padding: 80px 0px;
    }
    .location-section h2 {
        padding: 0px 0px 30px 0px;
    }
    .location-section h3 {
        padding: 0px 0px 30px 0px;
    }

    .wocs-section {
        min-height: 700px;
    }
    .wocs-bg {
        background-size: 1280px 700px;
        background-position: top 120px right 35%;
    }
    .wocs-main-bg {
        background-size: 1180px 690px;
    }    
    
}

@media screen and (min-width:1400px) {
    /*
    .movers-s1 {
        padding: 80px 50px 30px 50px;
    }
    .movers-s1-right h3 {
        font-size: 2rem;
        line-height: 3rem;
    }
    .movers-s1-right p {
        font-size: 1.5rem;
        line-height: 1.8rem;
    }
    .movers-s1-right.lang-en p {
        font-size: 1.2rem;
        line-height: 1.5rem;
    }
    .movers-s1-btnset {
        min-height: 120px;
    }
    .movers-s1-btnset img {
        width: 220px;
    }
    .movers-s2 {
        margin: 30px 0;
    }
    .movers-s3 {
        padding-top: 40px;
        min-height: 1080px;
    }
    .movers-s3-title {
        padding: 10px 0;
    }
    .movers-s3-cards {
        gap: 10px;
    }
    .movers-s3-cardswrap {
        max-width: 260px;
    }
    .movers-s3-cardsimg {
        width: 100%;
		height:320px;
    }
    .movers-s3-ca {
        max-width: 1024px;
        margin-top: 80px;
        padding: 20px;
    }
    .movers-s4 {
        margin: 100px 0 50px 0;
    }
    */

    .why-section-bg img {
        min-height: 1180px;
    }

    .location-section {
        padding: 80px 0px;
    }
    .location-section h2 {
        padding: 0px 0px 30px 0px;
    }
    .location-section h3 {
        padding: 0px 0px 30px 0px;
    }

    .wocs-bg {
        background-size: 1440px 780px;
        background-position: top 50px right 35%
    }  
    
}

@media screen and (min-width:1600px) {
    .page-main-title h1,
    .page-main-title h2 {
        font-size: 3rem;
    }
    .aboutvalues .aboutvalues-bg {
    
    }

/*
    .movers-s1 {
        padding: 90px 50px 30px 50px;
    }
    .movers-s1-right h3 {
        font-size: 2rem;
        line-height: 3rem;
    }
    .movers-s1-right p {
        font-size: 1.5rem;
        line-height: 2rem;
    }
    .movers-s1-right.lang-en p {
        font-size: 1.2rem;
        line-height: 1.5rem;
    }
    .movers-s1-btnset img {
        width: 200px;
    }
    .movers-s2 {
        margin: 30px 0;
    }
    .movers-s3 {
        padding-top: 50px;
    }
    .movers-s3-cards {
        margin-top: 50px;
    }
    .movers-s3-ca {
        margin-top: 80px;
    }   
    .movers-s4 {
        margin: 220px 0 50px 0;
    }
 */   
    .location-section h2 {
        padding: 80px 0 30px 0;
    }
    .location-section h3 {
        padding: 80px 0 30px 0;
    }
    .wocs-section {
        min-height: 700px;
    }

}

@media screen and (min-width:1720px) {

    .location-section h2 {
        padding: 80px 0 30px 0;
    }
    .location-section h3 {
        padding: 80px 0 30px 0;
    }
    .wocs-bg {
        background-size: 1720px 850px;
    }


}

@media screen and (min-width:1900px) {
/*
    .movers-s1 {
        padding: 80px 50px 30px 50px;
    }
    .movers-s1-right h3 {
        font-size: 2.5rem;
        line-height: 3rem;
    }
    .movers-s1-right p {
        font-size: 1.5rem;
        line-height: 2rem;
    }
    .movers-s1-right.lang-en p {
        font-size: 1.2rem;
        line-height: 1.5rem;
    }
    .movers-s1-btnset img {
        width: 200px;
    }
    .movers-s2 {
        margin: 80px 0;
    }
    .movers-s3 {
        padding-top: 30px;
    }
    .movers-s3-cards {
        margin-top: 50px;
    } 


    .movers-s4 {
        margin: 220px 0 50px 0;
    }
    .movers-s4-title {
        font-size: 4rem;
        line-height: 4rem;
    }
    .movers-s4-txt {
        color: var(--sf-primary-blue);
        font-size: 2rem;
        padding: 50px 0;
        font-family: 'ITCAvantGardeStd-Md';
        font-weight: 600;
        line-height: 2.5rem;
    }
    .movers-s5-bg {
        top: -460px;
    }
*/
    .location-section {
        margin-top: 100px;
    }
    .location-section h2 {
        padding: 80px 0 30px 0;
    }
    .location-section h3 {
        padding: 80px 0 30px 0;
    }

}

@media screen and (min-width:2000px) {

    .why-section {
        margin-top: 100px;
    }

    .location-section {
        margin-top: 200px;
    }

    .wocs-bg {
        background-size: 1920px 1060px;
        background-position: top -150px right 65%;
    }
}


/* 高解析度顯示器支援 (Retina Ready) */
@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
    .service-item img {
        image-rendering: -webkit-optimize-contrast;
        image-rendering: crisp-edges;
    }
    
    .hero-section {
        background-size: cover;
        background-repeat: no-repeat;
    }
}

/* 寬螢幕支援 */
@media (min-width: 1280px) {
    .hero-section {
        max-width: 100%;
    }
    
    .page-main-wrap,
    .nav-container,
    .services-container,
    .footer-container {
        max-width: 1280px;
    }
}


/* ==========================================================================
   Scroll Animation Effects (Optimized)
   ========================================================================== */

/* 準備動畫的元素 - 初始隱藏狀態 */
.animate-prepare {
    opacity: 0;
    transform: translateY(50px);
    transition: opacity 0.6s ease, transform 0.6s ease;
    will-change: transform, opacity;
}

/* 進入視窗後的動畫狀態 */
.animate-in {
    opacity: 1 !important;
    transform: translateY(0) !important;
    will-change: auto; /* 動畫完成後移除 will-change */
}

/* 防止動畫元素影響頁面佈局 */
@media (prefers-reduced-motion: reduce) {
    .animate-prepare,
    .animate-in {
        opacity: 1 !important;
        transform: none !important;
        transition: none !important;
    }
}

