:root{
    --color1: #3A4249;
    --color2: #C46F38;
    --color3: #F18774;
    --color4: #CE9C73;
    --color5: #F9E9BD;
    --color6: #EAA77E;
    --color7: #D8C3C1;
}
:root{
    --page-padding: 6rem;
}
@media (max-width: 1240.98px) {
    :root{
        --page-padding: 2rem;
    }
}
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
html {
    font-size: 62.5%;
    height: 100%;
    overflow-x: hidden;
    max-width: 100%;
}  
h1 {
    font-size: 3rem; 
}
body {
    font-size: 1.6rem; 
    margin: 0;
    box-sizing: border-box;
    font-family: "Belanosima", "Noto Sans TC",BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    line-height: 1.6;
    color: var(--color1);
    background-color: #F9F9F9;
    background-image: url("data:image/svg+xml,%3Csvg width='14.5' height='14.5' xmlns='http://www.w3.org/2000/svg'%3E%3Ccircle cx='9.25' cy='9.25' r='2' fill='%23EDEDED'/%3E%3C/svg%3E");
    letter-spacing: 0.1em;
    background-repeat: repeat;
    overflow-x: hidden;
    max-width: 100%;
}
header{
    position: fixed;
    overflow: visible;
    top: 0;
    left: 0;
    width: 100%;
    height: 140px;
    --header-height: 140px;
    max-height: 100%;
    z-index: 10001;
    isolation: isolate;
}
.header-container{
    display: flex;
    position: relative;
    padding: 0 var(--page-padding);
    justify-content: space-between;
    align-items: center;
    background-color: transparent;
    transition: opacity 0.3s ease-in-out;
    height: 100%;
    overflow: visible;
    z-index: 10001;
    font-family: "Noto Sans TC",BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}
.header-logo{
    display: flex;
    align-items: center;
    position: relative;
    z-index: 10001;
}
.header-logo img{
    width: 350px;
}
.header-nav{
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #fff;
    transition: opacity 0.3s ease-in-out;
    border-radius: 50px;
    overflow: hidden;
    padding: 8px 10px 8px 20px;
    box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.1);
    position: relative;
    z-index: 10001;
}
.menu-list{
    display: flex;
    justify-content: space-between;
    align-items: center;
    list-style: none;
}
.menu-list li{
    display: flex;
}
.menu-list li a{
    text-decoration: none;
    color: var(--color1);
    font-size: 2.4rem;
    font-weight: 600;
    padding: 0 25px;
    height: 100%;
    width: 100%;
    transition: all 0.3s ease;
}
.menu-list li a:hover{
    color: var(--color2);
}
.link-btn{
    background-color: var(--color2);
    color: #fff;
    font-size: 2.4rem;
    font-weight: 500;
    padding: 13px 32px;
    border-radius: 50px;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 100;
}
.link-btn:hover{
    transform: translateY(-2px);
    color: #fff!important;
}
.header-nav .link-btn{
    margin-left: 25px;
}
.hbg {
    margin-top: 4px;
    display: none;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    cursor: pointer;
    padding: 0;
    background: transparent;
    border: none;
}
.hbg-icon {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 17px;
}
.hbg-icon span {
    display: block;
    width: 100%;
    height: 3px;
    background-color: var(--color2);
    border-radius: 3px;
    transition: all 0.3s ease;
}

.hbg-icon.active span:nth-child(1) {
    transform: rotate(45deg);
    position: absolute;
    top: 50%;
    margin-top: -1.5px;
}

.hbg-icon.active span:nth-child(2) {
    opacity: 0;
}

.hbg-icon.active span:nth-child(3) {
    transform: rotate(-45deg);
    position: absolute;
    top: 50%;
    margin-top: -1.5px;
}

.hbg-icon.active {
    position: relative;
}
.hbg-text {
    font-size: 1.1rem;
    color: var(--color2);
    font-weight: 500;
    letter-spacing: 0.05em;
    line-height: 1;
}


@media (max-width: 1439.98px) {
    .header-logo img{
        width: 270px;
    }
    .header-nav{
        padding: 6px 8px 6px 14px;
    }
    .menu-list li a{
        font-size: 2.2rem;
    }
    .contact-btn{
        font-size: 2.2rem;
        padding: 10px 25px;
    }
}

@media (max-width: 1240px) {
    header{
        height: 100px;
        --header-height: 100px;
    }
    .hbg {
        display: flex;
        margin-left: 16px;
    }
    .menu-list {
        display: none;
    }
    .header-nav{
        gap: 20px;
    }
    .header-nav .link-btn {
        margin-left: 0;
    }
}
@media (max-width: 767.98px) {
    header{
        height: 80px;
        --header-height: 80px;
    }
    .header-logo img{
        width: 220px;
    }
    .header-nav{
        padding: 6px 8px 6px 14px;
    }
    .hbg-icon{    
        width: 28px;
        height: 17px;
    }
    .hbg-text {
        font-size: 0.9rem;
    }
    .link-btn{
        font-size: 1.8rem;
        padding: 8px 20px;
    }
}
@media (max-width: 480.98px) {
    header{
        height: 70px;
        --header-height: 70px;
    }
    .header-logo img{
        width: 200px;
    }
    .header-nav{
        padding: 8px 10px;
        border-radius: 8px;
    }
    .hbg{
        margin-top: 0;
        margin-left: 0;
    }
    .hbg-text {
        display: none;
    }
    .link-btn{
        font-size: 1.6rem;
        padding: 8px 20px;
    }
    .header-nav .link-btn {
        display: none;
    }
}

/* 手機版全屏菜單樣式 */
.mobile-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-color: #F9F9F9;
    z-index: 9998;
    transform: translateX(100%);
    transition: transform 0.3s ease-in-out;
    overflow-y: auto;
    display: none;
}

.mobile-menu-overlay.active {
    transform: translateX(0);
    display: block;
}

/* 手機版菜單導航 */
.mobile-menu-nav {
    padding: var(--header-height, 140px) var(--page-padding) 3rem;
    min-height: auto !important;
    height: auto !important;
    max-height: none !important;
    overflow: visible !important;
}

.mobile-menu-list {
    list-style: none;
    display: flex !important;
    flex-direction: column;
    gap: 0;
    width: 100% !important;
    min-height: auto !important;
    max-height: none !important;
    overflow: visible !important;
}

.mobile-menu-list li {
    display: block !important;
    width: 100% !important;
    visibility: visible !important;
    opacity: 1 !important;
    height: auto !important;
    max-height: none !important;
    overflow: visible !important;
}

.mobile-menu-item {
    display: flex;
    align-items: center;
    padding: 2.4rem 0;
    text-decoration: none;
    color: var(--color1);
    border-bottom: 1px solid rgba(58, 66, 73, 0.08);
    transition: all 0.3s ease;
    position: relative;
}

.mobile-menu-item:hover {
    color: var(--color2);
}

/* 手機版菜單中的 link-btn 樣式 */
.mobile-menu-list li .mobile-menu-link-btn {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    margin-top: 1.6rem;
    gap: 1rem;
    padding: 2rem 3.2rem;
    font-size: 2.4rem;
}

@media (max-width: 767.98px) {
    .mobile-menu-list li .mobile-menu-link-btn {
        font-size: 1.8rem;
        padding: 1.5rem 2rem;
    }
}

@media (max-width: 480.98px) {
    .mobile-menu-list li .mobile-menu-link-btn {
        padding: 1.5rem 2rem;
    }
}

.menu-bullet {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: var(--color1);
    margin-right: 2rem;
    flex-shrink: 0;
}

.menu-item-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
}

.menu-title {
    font-size: 2.4rem;
    font-weight: 600;
    color: inherit;
    line-height: 1.2;
}

.menu-subtitle {
    font-size: 1.4rem;
    color: #999;
    font-weight: 400;
    letter-spacing: 0.05em;
}

.menu-arrow-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 2px solid var(--color2);
    background-color: rgba(255, 255, 255, 1);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    flex-shrink: 0;
    position: relative;
    transition: all 0.3s ease;
    padding: 0;
    box-shadow: 0 0 4px 3px rgba(218, 181, 62, 0.5);
}

.mobile-menu-item:hover .menu-arrow-btn {
    transform: scale(1.15);
}

.mobile-menu-item:hover .menu-arrow-btn:active {
    transform: scale(0.95);
}

.menu-arrow-btn .arrow-icon {
    display: inline-block;
    font-size: 18px;
    line-height: 1;
    color: var(--color2);
    transition: all 0.3s ease;
    font-weight: bold;
}

.menu-arrow-btn svg {
    width: 9px;
    height: 18px;
    transition: all 0.3s ease;
}

.menu-arrow-btn svg path {
    stroke: var(--color2);
    transition: stroke 0.3s ease;
}

/* 手機版菜單顯示控制 */
@media (min-width: 1241px) {
    .mobile-menu-overlay {
        display: none !important;
    }
}

@media (max-width: 1240px) {
    .mobile-menu-overlay {
        display: block;
    }
}

@media (max-width: 767.98px) {
    .mobile-menu-nav {
        padding: var(--header-height, 80px) var(--page-padding) 2rem;
    }
    
    .menu-title {
        font-size: 2rem;
    }
    
    .menu-subtitle {
        font-size: 1.2rem;
    }
    
    .menu-arrow-btn {
        width: 36px;
        height: 36px;
    }
    
    .menu-arrow-btn svg {
        width: 11px;
        height: 18px;
    }
}

@media (max-width: 480.98px) {
    .mobile-menu-nav {
        padding: var(--header-height, 70px) var(--page-padding) 1.5rem;
    }
    
    .mobile-menu-item {
        padding: 2rem 0;
    }
    
    .menu-title {
        font-size: 1.8rem;
    }
    
    .menu-subtitle {
        font-size: 1.1rem;
    }
    
    .menu-bullet {
        width: 6px;
        height: 6px;
        margin-right: 1.5rem;
    }
}

.main-container{
    min-height: 100px;
    overflow: hidden;
    overflow-x: hidden;
    box-sizing: border-box;
    max-width: 100%;
    width: 100%;
    position: relative;
}
footer{
    background-color: #3A4249;
    color: #fff;
    padding: var(--page-padding);
    position: relative;
}

/* Back to Top Button */
.back-to-top-wrapper {
    position: fixed;
    bottom: 60px;
    right: 60px;
    z-index: 1000;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.3s ease;
}

.back-to-top-wrapper.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.back-to-top-btn {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: none;
    background-color: rgba(255, 255, 255, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 0;
    box-shadow: 0 0 4px 3px rgba(218, 181, 62, 0.5);
}

.back-to-top-wrapper.show .back-to-top-btn:hover {
    transform: scale(1.15);
    background-color: var(--color2);
}

.back-to-top-btn:active {
    transform: scale(0.95);
}

.back-to-top-btn img {
    width: 13.5px;
    height: 27px;
    transition: all 0.3s ease;
    transform: rotate(-90deg);
}

.back-to-top-wrapper.show .back-to-top-btn:hover img {
    filter: brightness(0) invert(1);
}

.back-to-top-text {
    font-size: 1.2rem;
    color: var(--color1);
    font-weight: 500;
    letter-spacing: 0.1em;
    white-space: nowrap;
    transition: color 0.3s ease;
}

.back-to-top-wrapper.show:hover .back-to-top-text {
    color: var(--color2);
}

@media (max-width: 767.98px) {
    .back-to-top-wrapper {
        bottom: 20px;
        right: 20px;
        gap: 6px;
    }
    
    .back-to-top-btn {
        width: 36px;
        height: 36px;
    }
    
    .back-to-top-btn img {
        width: 11px;
        height: 18px;
    }
    
    .back-to-top-text {
        font-size: 1rem;
    }
}

.footer-container {
    margin: 0 auto;
}

.footer-main {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 6rem;
    margin-bottom: 3rem;
}

.footer-left {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
}

.footer-logo-section {
    display: flex;
    align-items: center;
}

.footer-logo {
    display: flex;
    align-items: center;
}

.footer-logo img {
    height: 60px;
    width: auto;
    object-fit: contain;
}

.footer-contact {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.footer-contact-row {
    display: flex;
    align-items: center;
    gap: 2.5rem;
    flex-wrap: wrap;
}

.footer-contact-item {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    color: #fff;
    font-size: 1.8rem;
    line-height: 1.6;
}

.footer-contact-item .material-icons {
    flex-shrink: 0;
    font-size: 1.8rem;
    color: #fff;
}

.footer-contact-text {
    color: #fff;
    line-height: 1.6;
}

.footer-contact-text-en {
    font-size: 1.6rem;
    color: #fff;
    line-height: 1.5;
}

.footer-right {
    display: flex;
    flex: 1;
    justify-content: space-between;
    align-items: flex-start;
    gap: 4rem;
}

.footer-menu {
    display: flex;
    justify-content: flex-end;
    flex-direction: column;
    gap: 1.5rem;
    border-left: 2px solid var(--color2);
    padding: 0 4rem;
}

.footer-title {
    font-size: 2rem;
    color: #fff;
    font-weight: 400;
}

.footer-nav {
    display: flex;
    gap: 2rem 6rem;
    flex-wrap: wrap;
    align-items: center;
}

.footer-nav a {
    color: #fff;
    text-decoration: none;
    font-size: 1.8rem;
    white-space: nowrap;
    transition: color 0.3s ease;
}

.footer-nav a:hover {
    color: var(--color2);
}

.footer-social {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    color: #fff;
    font-size: 1.8rem;
}

.footer-social .material-icons {
    flex-shrink: 0;
    font-size: 1.8rem;
    color: #fff;
}

.footer-cta {
    display: flex;
    align-items: flex-start;
    flex-shrink: 0;
}

.footer-btn {
    white-space: nowrap;
}

.footer-divider {
    width: 100%;
    height: 2px;
    background-color: var(--color2);
    margin: 6rem 0 2rem;
}

.footer-copyright {
    font-size: 1.2rem;
    color: #fff;
}

@media (max-width: 1240.98px) {
    .footer-main {
        gap: 4rem;
        margin-bottom: 0;
    }
    
    .footer-right {
        gap: 3rem;
    }
    .footer-menu {
        padding: 2rem 0 0;
        border-left: none;
        border-top: 2px solid var(--color2);
    }
    .footer-divider{
        margin: 4rem 0 2rem;
    }
}

@media (max-width: 1024.98px) {
    .footer-main {
        flex-direction: column;
    }
    
    .footer-left {
        width: 100%;
    }
    
    .footer-right {
        width: 100%;
        justify-content: flex-start;
        gap: 4rem;
    }
}

@media (max-width: 767.98px) {
    footer {
        padding: var(--page-padding);
    }
    
    .footer-main {
        gap: 2.5rem;
    }
    
    .footer-logo img {
        height: 50px;
    }
    
    .footer-right {
        flex-direction: column;
        gap: 2rem;
        align-items: flex-start;
    }
    
    .footer-nav {
        gap: 2rem 4rem;
    }
    
    .footer-cta {
        width: 100%;
    }
    
    .footer-btn {
        width: 100%;
        text-align: center;
    }
}
.line {
    position: absolute;
    z-index: 90;
    display: block;
    width: 12px;
    height: 250px;
    overflow: hidden;
    border-radius: 20px;
    transform: rotate(45deg);
}
.line::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: block;
    border-radius: 2px;
    animation: scroll_line 2.5s cubic-bezier(0.6, 0, 0.3, 1) infinite;
    transform: translateY(100%);
}
.line.delay::before {
    animation-delay: 2s;
}
.line.or::before {
    background: #F18774;
}
.line.br::before {
    background: #E5BFA7;
}
.hero .line-1{
    top: 77%;
    left: 60%;
}
.hero .line-2{
    top: 82%;
    left: 52%;
    height: 200px;
    width: 10px;
}
.hero .line-3{
    top: 20%;
    left: 17%;
    height: 220px;
}
.hero .line-4{
    top: 27%;
    left: 10%;
    height: 200px;
    width: 8px;
}
@keyframes scroll_line {
    0% {
        transform: translateY(100%);
    }
    100% {
        transform: translateY(-100%);
    }
}

.index-banner-container{
    position: relative;
    height: 100%;
}
.circle-gradient{
    position: absolute;
    width: 875px;
    height: 875px;
    border-radius: 50%;
    aspect-ratio: 1 / 1;
    background: radial-gradient(circle, #FDFAE3 0%, #FDFAE3 50%, rgba(253, 250, 227, 0.2) 70%, rgba(253, 250, 227, 0) 100%);
    top: -300px;
    right: 200px;
    z-index: 0;
    max-width: 75%;
}
@media (max-width: 1439.98px) {
    .circle-gradient{
        right: 0;
    }
}
.hero-wrap{
    margin-left: auto;
    margin-right: -200px;
    margin-top: -160px;
    position: relative;
    max-width: 60vw;
    width: fit-content;
    z-index: 1;
    width: 1200px;
    height: 1200px;
}
.hero-image{
    width: 1200px;
    height: 1200px;
    object-fit: cover;
    clip-path: circle(50%);
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
    transition: opacity 1.5s ease-in-out;
}
.hero-image.active{
    opacity: 1;
}
.hero-text-container{
    position: absolute;
    top: 23%;
    left: 17vw;
    bottom: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: auto;
}
.hero-text{
    z-index: 200;
}
.hero-text-container h1{
    position: relative;
    z-index: 10;
    font-size: 6.4rem;
    font-weight: 800;
    line-height: 1.8;
    white-space: nowrap;
    margin-top: 50px;
    margin-bottom: 50px;
}
.hero-text-container h1 span{
    color: var(--color2);
}
.hero-text-container p{
    font-size: 2.4rem;
    line-height: 1.8;
    font-weight: 400;
    letter-spacing: 0.15em;
    white-space: normal;
    overflow-wrap: break-word;
    word-wrap: break-word;
    word-break: break-word;
    max-width: 100%;
    margin-bottom: 100px;
}
.link-btn-box{
    display: flex;
}
.hero-deco-img{
    position: absolute;
    top: 34%;
    left: -480px;
    z-index: 2;
    aspect-ratio: 1 / 1;
    width: auto;
    max-width: 100%;
}
.hero-deco-img img{
    width: 100%;
    height: auto;
    object-fit: cover;
    display: block;
}
.deco-svg{
    position: absolute;
    top: 50%;
    left: -500px;
    z-index: -1;
    overflow: visible;
    width: 1200px;
    height: 600px;
}
.deco-svg svg{
    width: 1200px;
    height: 600px;
    overflow: visible;
    display: block;
    margin: 0 auto;
}
.water-drop-shape {
    transform-origin: center center;
    animation: waterDropMorph 8s ease-in-out infinite;
}
.deco-svg.hun path {
    transform-origin: center center;
    animation: waterDropMorph 8s ease-in-out infinite;
}
@keyframes waterDropMorph {
    0%, 100% {
        transform: scale(1) scaleX(1) scaleY(1);
    }
    33% {
        transform: scale(1.03) scaleX(1.02) scaleY(0.99);
    }
    66% {
        transform: scale(0.97) scaleX(0.98) scaleY(1.01);
    }
}
@media (max-width: 1240.98px) {
    .hero .line-1{
        top: 70%;
        left: unset;
        right: 10%;
    }
    .hero .line-2{
        top: 75%;
        left: unset;
        right: 17%;
    }
    .hero .line-3{
        top: 10%;
        left: 40%;
    }
    .hero .line-4{
        top: 15%;
        left: 30%;
    }
    .hero-wrap{
        max-width: 70vw;
        width: 70vw;
        height: 70vw;
        aspect-ratio: 1 / 1;
        margin-left: auto;
        margin-right: -80px;
        margin-top: -80px;
    }
    .hero-image{
        width: 100%;
        height: 100%;
        object-fit: cover;
        position: absolute;
        top: 0;
        left: 0;
    }
    .hero-text-container{
        position: static;
        margin-left: 30px;
        margin-right: auto;
        justify-content: flex-start;
    }
    .hero-text{
        position: relative;
        top: -180px;
    }
    .hero-deco-img{
        top: 20%;
        left: 0;
        width: 35vw;
        max-width: 800px;
    }
    .hero-deco-img img{
        width: 100%;
        object-fit: cover;
    }
    .hero-text-container h1{
        margin-top: -25px;
        font-size: 4.8rem;
        line-height: 1.6;
        margin-bottom: 20px;
    }
    .hero-text-container p{
        margin-bottom: 30px;
        font-size: 2rem;
        line-height: 1.8;
    }
    .circle-gradient{
        top: 200px;
        right: -200px;
        width: 70vw;
        height: 70vw;
    }
    .deco-svg{
        top: 50%;
        left: -400px;
    }
    .deco-svg svg{
        width: 900px;
        height: 450px;
    }
}

@media (max-width: 890.98px) {
    .hero-text-container h1{
        margin-top: 50px;
    }
}
@media (max-width: 767.98px) {
    .line{
        width: 10px;
        height: 100px;
    }
    .hero .line-1{
        right: 10%;
        top: 72%;
    }
    .hero .line-2{
        width: 8px;
        height: 100px;
        right: 24%;
    }
    .hero .line-3{
        height: 150px;
        top: 30%;
        right: 25%;
        left: unset;
    }
    .hero .line-4{
        top: 35%;
        left: unset;
        right: 20%;
        width: 8px;
        height: 100px;
    }
    .hero-wrap{
        max-width: 75vw;
        width: 75vw;
        height: 75vw;
    }
    .hero-image{
        width: 100%;
        height: 100%;
        position: absolute;
        top: 0;
        left: 0;
    }
    .hero-deco-img{
        width: 40vw;
        top: 20%;
    }
    .hero-text-container h1{
        margin-top: 110px;
        font-size: 3.2rem;
    }
    .hero-text-container p{
        font-size: 1.8rem;
    }
    .deco-svg svg{
        width: 600px;
        height: 300px;
    }
}
@media (max-width: 480.98px) {
    .hero-text-container{
        margin-top: 100px;
        margin-left: unset;
        padding: 0 var(--page-padding);
    }
    .hero-wrap{
        margin-top: -60px;
        max-width: 90vw;
        width: 90vw;
        height: 90vw;
    }
    .hero-image{
        width: 100%;
        height: 100%;
        position: absolute;
        top: 0;
        left: 0;
    }
    .hero-deco-img{
        width: 50vw;
        max-width: 200px;
        top: 25%;
    }
    .deco-svg{
        top: 60%;
        left: -500px;
    }
    .deco-svg svg{
        width: 500px;
        height: 250px;
    }
}
.section-wrap{
    margin-top: 200px;
    min-height: 200px;
    width: 100%;
    max-width: 100%;
    position: relative;
}
.section-title-wrap-inner{
    display: flex;
    flex-direction: column;
    z-index: 100;
}
.section-wrap.about-us{
    margin-top: 300px;
}

.section-title-wrap{
    width: calc(100% - 34vw);
    display: flex;
    justify-content: space-between;
    margin-left: auto;
    margin-right: auto;
    z-index: 100;
}
.section-title-en{
    font-size: 5rem;
    letter-spacing: 0.05em;
    font-weight: 500;
}
.section-title-box{
    padding-left: 12px;
    display: flex;
    align-items: center;
    gap: 16px;
}
.title-dot{
    width: 8px;
    height: 8px;
    background-color: var(--color2);
    border-radius: 50%;
}
.section-title{
    font-size: 2.4rem;
    font-weight: 600;
    letter-spacing: 0.15em;
}
.puzzle-section{
    display: flex;
    flex-direction: column;
    padding: 60px 0;
    justify-content: center;
}
.puzzle-item-wrap{
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0 var(--page-padding);
    z-index: 100;
}
.puzzle-item{
    position: relative;
    opacity: 0;
    transform: translateX(-50px);
    transition: opacity 0.8s ease-out var(--animation-delay, 0s), 
                transform 0.8s ease-out var(--animation-delay, 0s);
}
.puzzle-item.animate-in{
    opacity: 1;
    transform: translateY(0);
}
.puzzle-item:first-child{
    margin-right: -40px;
}
.puzzle-item:last-child{
    margin-left: -40px;
}
.puzzle-item.center{
    margin-top: -40px;
}
.puzzle-item img{
    display: block;
    width: 100%;
    height: auto;
}
.puzzle-text-box{
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-56%, -50%);
    color: var(--color1);
    font-size: 2.4rem;
    font-weight: 600;
    text-align: center;
    z-index: 10;
    pointer-events: none;
    display: flex;
    flex-direction: column;
    gap: 8px;
    width: 100%;
}
.puzzle-icon{
    width: 140px;
    height: 140px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-left: auto;
    margin-right: auto;
}
.puzzle-icon-cross{
    width: 14px;
    height: 14px;
    display: block;
    margin-left: auto;
    margin-right: auto;
}
.puzzle-text-box p{
    font-size: 1.8rem;
    letter-spacing: 0.2em;
}
.center .puzzle-text-box{
    transform: translate(-50%, -43%);
}
.center .puzzle-icon img{
    width: 110px;
    height: 110px;
}
.puzzle-item:last-child .puzzle-text-box{
    transform: translate(-43%, -50%);
}
.puzzle-item:last-child .puzzle-icon img{
    width: 110px;
    height: 110px;
}
.puzzle-item-wrap.btn{
    align-items: flex-start;
}
.puzzle-item.btn .puzzle-text-box{
    transform: translate(-50%, -65%);
}
.puzzle-item.btn:first-child .puzzle-icon img{
    width: 110px;
    height: 110px;
}
.puzzle-item.btn:last-child{
    margin-left: 2px;
}
.puzzle-item.btn:last-child .puzzle-text-box{
    transform: translate(-45%, -57%);
}
.puzzle-item.btn:last-child .puzzle-icon img{
    width: 100px;
    height: 100px;
}
@media (max-width: 1240.98px) {
    .section-wrap.about-us{
        margin-top: 50px;
    }
    .section-title-wrap{
        width: 100%;
        padding: 0 var(--page-padding);
    }
}
@media (min-width: 767.98px) {
    .puzzle-item > img:nth-child(2){
        display: none;
    }
}
@media (max-width: 767.98px) {
    .section-wrap.about-us{
        margin-top: -50px;
    }
    .section-title-en{
        font-size: 3.2rem;
    }
    .section-title{
        font-size: 2rem;
    }
    .puzzle-item-wrap{
        flex-direction: column;
    }
    .puzzle-item > img:first-child{
        display: none;
    }
    .puzzle-icon{
        display: flex !important;
    }
    .puzzle-icon img{
        display: block !important;
        width: 100% !important;
        height: auto !important;
    }
    .puzzle-item{
        transform: translateY(50px);
    }
    .puzzle-item-wrap.btn{
        align-items: center;
    }

    .puzzle-item:first-child{
        margin-right: -37px;
    }
    .puzzle-item.center{
        margin-top: -44px;
        margin-left: -34px;
    }
    .puzzle-item:last-child{
        margin-top: -44px;
        margin-left: 0;
    }
    .puzzle-item.btn:first-child{
        margin-top: -44px;
        margin-left: -3px;
    }
    .puzzle-item.btn:last-child{
        margin-top: -44px;
        margin-left: -37px;
    }
    .puzzle-icon,
    .puzzle-icon img{
        width: 100px !important;
        height: 100px !important;
    }
    .puzzle-text-box{
        transform: translate(-56%, -58%);
    }
    .center .puzzle-text-box{
        transform: translate(-44%, -50%);
    }
    .puzzle-item:last-child .puzzle-text-box{
        transform: translate(-50%, -50%);
    }
    .puzzle-item.btn .puzzle-text-box{
        transform: translate(-55%, -50%);
    }
    .puzzle-item.btn:last-child .puzzle-text-box{
        transform: translate(-44%, -46%);
    }
}
.about-us .link-btn-box{
    display: flex;
    justify-content: center;
    margin-top: 40px;
}
.deco-img{
    position: absolute;
    z-index: 100;
    width: auto;
    max-width: 100%;
}
.deco-img img{
    width: 100%;
    height: auto;
    object-fit: cover;
    display: block;
}
.deco-img.about1{
    max-width: 300px;
    right: 2%;
    top: -40px;
}
.deco-img.about2{
    left: 6%;
    bottom: -20px;
}
.deco-circle{
    position: absolute;
    z-index: -1;
    width: 624px;
    height: 624px;
    border-radius: 50%;
    background: radial-gradient(circle, #FFF3EC 0%, #E5BFA7 100%);
}
.deco-circle.a1{
    left: -300px;
    background: radial-gradient(circle, #FFF3EC 0%, #E5BFA7 100%);
}
.deco-circle.a2{
    right: -300px;
    bottom: -140px;
    background: radial-gradient(circle, #FFF3EC 0%, #E5BFA7 100%);
}
.deco-svg.asvg1{
    max-width: 450px;
    top: 300px;
    left: unset;
    right: -20px;
    z-index: -3;
}
.deco-svg.hun svg{
    width: 100%;
    height: 100%;
}
.deco-svg.asvg2{
    max-width: 500px;
    top: 280px;
    left: 30px;
    z-index: -3;
}
.line-5{
    top: 0;
    right: 350px;
    height: 180px;
}
.line.ye::before{
    animation: scroll_line 3.5s cubic-bezier(0.6, 0, 0.3, 1) infinite;
    background: var(--color5);
}
.line-6{
    top: 0;
    right: 450px;
    height: 260px;
}
.line-7{
    bottom: 0;
    right: 240px;
    height: 220px;
    width: 10px;
}
.line-8{
    bottom: -10px;
    right: 300px;
    height: 220px;
    width: 10px;
}
@media (max-width: 1439.98px) {
    .deco-img.about1{
        max-width: 280px;
        right: 0;
    }
    .deco-img.about2{
        left: 0;
        max-width: 320px;
        top: unset;
        bottom: 0;
    }
    .deco-circle.a1{
        width: 400px;
        height: 400px;
        left: -200px;
    }
    .deco-circle.a2{
        width: 400px;
        height: 400px;
        right: -200px;
        bottom: 0;
    }
    .deco-svg.asvg1{
        max-width: 350px;
        right: -30px;
        top: unset;
        bottom: 90px;
    }
    .deco-svg.asvg2{
        max-width: 350px;
        top: 120px;
        left: -50px;
    }
}
@media (max-width: 1240.98px) {
    .deco-img.about2{
        bottom: -40px;
    }
}
@media (max-width: 767.98px) {
    .deco-img.about1{
        max-width: 180px;
        top: 0;
        right: 0;
    }
    .deco-img.about2{
        z-index: 0;
        bottom: 0;
        max-width: 280px;
    }
    .deco-svg.asvg1{
        max-width: 400px;
        top: unset;
        bottom: 70px;
        right: 90px;
        opacity: 0.8;
    }
    .deco-svg.asvg2{
        left: 0px;
        opacity: 0.8;
    }
    .deco-circle.a2{
        bottom: 0;
    }
    .line-5{
        top: 600px;
        right: unset;
        left: 80px;
    }
    .line-6{
        top: 600px;
        right: unset;
        left: 100px;
    }
    .line-7{
        bottom: 640px;
        right: 160px;
    }
    .line-8{
        bottom: 660px;
        right: 80px;
    }
}
@media (max-width: 480.98px) {
    .puzzle-section{
        padding: 120px 0 40px;
    }
    .deco-img.about1{
        top: 80px;
        right: 10px;
        max-width: 150px;
    }
    .deco-img.about2{
        bottom: -100px;
        max-width: 280px;
    }
    .deco-circle.a1{
        width: 300px;
        height: 300px;
        left: -150px;
    }
    .deco-svg.asvg2{
        max-width: 300px;
        left: unset;
        right: -80px;
    }
    .deco-circle.a2{
        width: 300px;
        height: 300px;
        bottom: 0;
        right: -150px;
    }
    .deco-svg.asvg1{
        max-width: 300px;
        right: unset;
        left: -80px;
    }
}
.section-wrap.flow{
    padding-bottom: 60px;
}
.flow-section{
    width: calc(100% - 34vw);
    display: flex;
    justify-content: space-between;
    padding: 80px 280px 0 0;
    gap: 40px;
    margin-left: auto;
    margin-right: auto;
}
.deco-bg{
    position: absolute;
    top: -80px;
    left: 100px;
    max-width: 1200px;
    z-index: -2;
}
.deco-bg img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.flow-wrap{
    display: flex;
    flex-direction: column;
}
.flow-wrap.right{
    margin-top: 72px;
}
.flow-item{
    display: flex;
    align-items: center;
    gap: 20px;
    opacity: 0;
    transform: translateY(-50px);
    transition: opacity 0.8s ease-out var(--animation-delay, 0s), 
                transform 0.8s ease-out var(--animation-delay, 0s);
}
.flow-item.animate-in{
    opacity: 1;
    transform: translateY(0);
}
.flow-num{
    font-size: 4.8rem;
    letter-spacing: 0.05em;
    color: #fff;
    width: 84px;
    height: 84px;
    aspect-ratio: 1 / 1;
    background-color: var(--color6);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}
.flow-item:not(.right):not(:last-child) .flow-num::after{
    content: '';
    position: absolute;
    width: 4px;
    background-color: var(--color6);
    height: 150px;
    transform: rotate(-40deg);
    bottom: -100px;
    left: 66px;
    opacity: 0;
    transition: opacity 0.9s ease-out var(--line-delay, 0s);
}
.flow-item.animate-in:not(.right):not(:last-child) .flow-num::after{
    opacity: 1;
}
.flow-item.right:not(:last-child) .flow-num::after{
    content: '';
    position: absolute;
    width: 4px;
    background-color: var(--color6);
    height: 150px;
    transform: rotate(40deg);
    bottom: -100px;
    left: 14px;
    z-index: -1;
    opacity: 0;
    border-radius: 20px;
    transition: opacity 0.9s ease-out var(--line-delay, 0s);
}
.flow-item.animate-in.right:not(:last-child) .flow-num::after{
    opacity: 1;
}
.flow-num.light-orange{
    background-color: var(--color3);
}
.flow-num.dark-orange{
    background-color: var(--color2);
}
.flow-num.yellow-orange{
    background-color: #E0C27C;
}
.flow-num.grey{
    background-color: #959da4;
}
.flow-text{
    font-size: 2.4rem;
    white-space: nowrap;
    letter-spacing: 0.15em;
    color: var(--color1);
    font-weight: 600;
    padding-bottom: 8px;
    border-bottom: 2px dashed var(--color2);
}
.flow-item.right{
    margin: 72px 0 72px 72px;
}
.deco-img-circle{
    position: absolute;
    bottom: 0;
    right: 40px;
    width: 530px;
    height: 530px;
    aspect-ratio: 1 / 1;
    border-radius: 50%;
    overflow: hidden;
    z-index: -1;
}
.deco-img-circle img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.deco-circle{
    position: absolute;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    background: #E5BFA7;
}
.deco-circle.f1{
    bottom: 40px;
    right: -260px;
    z-index: -3;
}
.deco-circle.f2{
    width: 350px;
    height: 350px;
    top: 220px;
    left: 20px;
    z-index: -3;
}
.flow .circle-gradient{
    width: 700px;
    height: 700px;
    z-index: -4;
    top: 0;
    right: unset;
    left: 25%;
}
.line-9{
    top: -40px;
    right: 80px;
    height: 140px;
}
.line-10{
    top: -20px;
    right: 200px;
    height: 220px;
}
@media (max-width: 1550.98px) {
    .section-wrap.flow{
        padding-bottom: 200px;
    }
    .deco-img-circle{
        width: 450px;
        height: 450px;
    }
}
@media (max-width: 1240.98px) {
    .section-wrap.flow{
        margin-top: 100px;
    }
    .flow-section{
        width: calc(100% - var(--page-padding));
        margin-left: unset;
        margin-right: unset;
        justify-content: flex-start;
        padding: 60px var(--page-padding) 0;
    }
    .flow-num{
        font-size: 3.6rem;
        width: 60px;
        height: 60px;
    }
    .flow-text{
        font-size: 2rem;
    }
    .flow-item:not(.right):not(:last-child) .flow-num::after{
        bottom: -80px;
        left: 60px;
        height: 100px;
    }
    .flow-item.right{
        margin: 48px 0 48px 48px;
    }
    .flow-item.right:not(:last-child) .flow-num::after{
        bottom: -80px;
        left: 6px;
        height: 100px;
    }
    .deco-bg{
        max-width: 1000px;
        top: 100px;
        left: -60px;
    }
    .deco-circle.f2{
        width: 300px;
        height: 300px;
        top: unset;
        bottom: 100px;
    }
    .deco-img-circle{
        width: 380px;
        height: 380px;
    }
}
@media (max-width: 995.98px) {
    .flow-section{
        width: 100%;
        gap: 0;
    }
    .flow-num{
        font-size: 3.2rem;
        width: 54px;
        height: 54px;
    }
    .flow-text{
        font-size: 2rem;
        gap: 10px;
    }
    .flow-item:not(.right):not(:last-child) .flow-num::after{
        bottom: -60px;
        left: 48px;
        height: 80px;
    }
    .flow-item.right{
        margin: 48px 0 48px 48px;
    }
    .flow-item.right:not(:last-child) .flow-num::after{
        bottom: -60px;
        left: 6px;
        height: 80px;
    }
    .deco-bg{
        top: 110px;
        max-width: 1300px;
        left: -60px;
    }
    .deco-circle.f2{
        display: none;
    }
    .deco-circle.f1{
        width: 200px;
        height: 200px;
        bottom: 0;
        right: 0px;
    }
    .flow .circle-gradient{
        width: 500px;
        height: 500px;
        top: 100px
    }
    .deco-img-circle{
        width: 300px;
        height: 300px;
    }
    .line-9{
        height: 100px;
    }
    .line-10{
        height: 130px;
    }
}
@media (max-width: 560.98px) {
    .section-wrap.flow{
        margin-top: 200px;
        padding-bottom: 350px;
    }
    .flow-section{
        flex-direction: column;
    }
    .flow-wrap.right{
        margin-top: 0;
        margin-left: auto;
    }
    .deco-img-circle{
        right: unest;
        left: 20px;
    }
    .deco-circle.f1{
        right: unset;
        left: 150px;
    }
    .deco-circle.f2{
        display: block;
        width: 200px;
        height: 200px;
        top: 400px;
        left: -70px;
    }
    .deco-bg{
        width: 700px;
        top: 200px;
        left: -100px;
    }
    .flow .circle-gradient{
        width: 500px;
        height: 500px;
        top: 200px;
        left: 10%;
    }
    .line-9{
        right: 40px;
    }
    .line-10{
        right: 120px;
    }
}

/* Product Carousel */
.category-tag-wrap{
    margin-top: auto;
}
.category-tag-box{
    position: relative;
    padding-left: 24px;
    transition: opacity 0.3s ease-in-out;
}
.category-tag-box::before{
    content: '';
    position: absolute;
    left: 0;
    top: 3px;
    height: 85%;
    width: 4px;
    background-color: var(--color2);
    transition: opacity 0.3s ease-in-out;
}
.category-tag{
    font-size: 2.2rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    transition: opacity 0.3s ease-in-out;
}
.category-tag-en{
    font-size: 2rem;
    color: var(--color7);
    transition: opacity 0.3s ease-in-out;
}
.product-carousel-box{
    width: 100%;
    padding: 60px var(--page-padding) 100px;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    overflow: hidden;
}
.carousel-container{
    position: relative;
    width: 100%;
    max-width: 1800px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    overflow: visible;
}
.carousel-wrapper{
    width: 100%;
    overflow: visible;
    position: relative;
    padding: 0;
}
.carousel-track{
    display: flex;
    transition: transform 0.5s ease-in-out;
    gap: 30px;
    justify-content: center;
    align-items: center;
    width: fit-content;
    margin: 0 auto;
}
.carousel-slide{
    flex: 0 0 auto;
    width: 1200px;
    transform: scale(0.85);
    transition: all 0.5s ease-in-out;
    pointer-events: none;
    position: relative;
}
.carousel-slide.active{
    opacity: 1;
    transform: scale(1);
    pointer-events: auto;
    z-index: 2;
}
.carousel-card{
    display: block;
    background-color: #fff;
    border-radius: 62px;
    overflow: hidden;
    box-shadow: 4px 4px 20px rgba(0, 0, 0, 0.1);
    position: relative;
    text-decoration: none;
    color: inherit;
}
.carousel-card img{
    width: 100%;
    height: 637px;
    object-fit: cover;
    display: block;
    transition: transform 0.3s ease-in-out;
}
.carousel-card:hover img{
    transform: scale(1.05);
}
.carousel-text{
    position: absolute;
    bottom: -1px;
    left: 0;
    right: 0;
    padding: 40px 30px;
    font-size: 2.2rem;
    color: var(--color1);
    text-align: center;
    font-weight: 600;
    letter-spacing: 0.2em;
    background-color: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(4px);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.5s ease-in-out, visibility 0.5s ease-in-out;
}
.carousel-slide.active .carousel-text{
    opacity: 1;
    visibility: visible;
}
.carousel-buttons-container{
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 1200px;
    height: 0;
    z-index: 10;
    pointer-events: none;
}
.carousel-btn{
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 78px;
    height: 78px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 1);
    border: 4px solid var(--color2);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
    transition: all 0.3s ease;
    box-shadow: 0 0 4px 3px rgba(218, 181, 62, 0.5);
    pointer-events: auto;
}
.carousel-btn span{
    font-size: 2.4rem;
    color: var(--color2);
    font-weight: bold;
    line-height: 1;
    transition: color 0.3s ease;
}
.carousel-btn svg{
    transition: stroke 0.3s ease;
}
.carousel-btn svg path{
    stroke: var(--color2);
    transition: stroke 0.3s ease;
}
.carousel-btn-prev{
    left: 0;
    transform: translate(-50%, -50%);
}
.carousel-btn-prev:hover{
    transform: translate(-50%, -50%) scale(1.15);
}
.carousel-btn-prev:active{
    transform: translate(-50%, -50%) scale(0.95);
}
.carousel-btn-next{
    right: 0;
    transform: translate(50%, -50%);
}
.carousel-btn-next:hover{
    transform: translate(50%, -50%) scale(1.15);
}
.carousel-btn-next:active{
    transform: translate(50%, -50%) scale(0.95);
}
.carousel-pagination{
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 12px;
    margin-top: 30px;
}
.pagination-dot{
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: #D8D4D3;
    cursor: pointer;
    transition: all 0.3s ease;
}
.pagination-dot.active{
    background-color: var(--color2);
    width: 16px;
    height: 16px;
}
.pagination-dot:hover{
    background-color: var(--color4);
}

@media (max-width: 1439.98px) {
    .carousel-container{
        max-width: 1600px;
    }
    .carousel-slide{
        width: 1000px;
    }
    .carousel-card img{
        height: 530px;
    }
    .carousel-buttons-container{
        width: 1000px;
    }
}

@media (max-width: 1240.98px) {
    .carousel-container{
        max-width: 1400px;
    }
    .carousel-slide{
        width: 800px;
    }
    .carousel-card img{
        height: 500px;
    }
    .carousel-track{
        gap: 20px;
    }
    .carousel-buttons-container{
        width: 800px;
    }
    .carousel-text{
        font-size: 1.8rem;
        padding: 20px;
    }
}

@media (max-width: 995.98px) {
    .carousel-container{
        max-width: 1200px;
    }
    .carousel-slide{
        width: 600px;
    }
    .carousel-card{
        border-radius: 40px;
    }
    .carousel-card img{
        height: 400px;
    }
    .carousel-buttons-container{
        width: 600px;
    }
    .carousel-text{
        font-size: 1.6rem;
        padding: 16px;
    }

    .carousel-btn{
        width: 60px;
        height: 60px;
    }
    .carousel-btn svg{
        width: 18px;
        height: 18px;
    }
    .carousel-btn span{
        font-size: 2rem;
    }
}


@media (max-width: 660.98px) {
    .product-carousel-box{
        padding: 20px var(--page-padding);
    }
    .category-tag-box{
        padding-left: 16px;
    }
    .category-tag-box::before{
        width: 3px;
    }
    .category-tag{
        font-size: 1.6rem;
    }
    .category-tag-en{
        font-size: 1.4rem;
    }
    .section-title-wrap{
        flex-direction: column;
        gap: 20px;
    }
    .carousel-container{
        padding: 0 10px;
    }
    .carousel-slide{
        width: 360px;
        max-width: 100%;
    }
    .carousel-card{
        border-radius: 30px;
    }
    .carousel-card img{
        height: 300px;
    }
    .carousel-buttons-container{
        display: none;
        width: 360px;
        max-width: 100%;
    }
    .carousel-text{
        padding: 12px 15px;
    }
    .carousel-btn span{
        font-size: 1.4rem;
    }
}

.deco-svg.psvg1{
    max-width: 500px;
    top: -120px;
    left: unset;
    right: 60px;   
}
.circle-gradient.flow1{
    z-index: -2;
    width: 700px;
    height: 700px;
    top: 50px;
    right: unset;
    left: 220px;
    z-index: -4;
}
.circle-gradient.flow2{
    width: 600px;
    height: 600px;
    top: unset;
    bottom: 0;
    right: 200px;
    z-index: -4;
}
.line-11{
    top: unset;
    bottom: 0;
    right: unset;
    left: 700px;
    height: 200px;
    z-index: -1;
}
.line-12{
    top: unset;
    bottom: 50px;
    right: unset;
    left: 620px;
    height: 150px;
    z-index: -1;
    width: 10px;
}
.line-13{
    top: -80px;
    width: 8px;
    left: 80px;
    height: 180px;
}
.line-14{
    top: -140px;
    width: 10px;
    left: 20px;
    height: 200px;
    z-index: -1;
}
.deco-circle.p1{
    top: 20px;
    left: -200px;
}
@media (max-width: 1550.98px) {
    .circle-gradient.flow1{
        left: 120px;
        width: 500px;
        height: 500px;
    }
    .circle-gradient.flow2{
        width: 400px;
        height: 400px;
        right: 120px;
    }
    .line-11{
        left: unset;
        right: 260px;
        width: 10px;
    }
    .line-12{
        left: unset;
        right: 280px;
        width: 8px;
    }
    .line-13{
        width: 8px;
    }
    .line-14{
        width: 10px;
    }
}
@media (max-width: 1240.98px) {
    .deco-svg.psvg1{
        max-width: 400px;
        right: -60px;
    }
    .circle-gradient.flow1{
        width: 400px;
        height: 400px;
        left: 60px;
    }
    .circle-gradient.flow2{
        width: 300px;
        height: 300px;
        bottom: 120px;
        right: 60px;
    }
    .line-11{
        height: 120px;
        right: 260px;
        bottom: 60px;
    }
    .line-12{
        bottom: 80px;
        height: 90px;
        right: 220px;
    }
    .line-13{
        height: 120px;
    }
    .line-14{
        height: 140px;
        right: 160px;
    }
}
@media (max-width: 767.98px) {
    .deco-svg.psvg1{
        max-width: 350px;
        top: -150px;
        right: -100px;
    }
    .circle-gradient.flow1{
        left: 0;
        top: 50px;
    }
    .circle-gradient.flow2{
        width: 250px;
        right: 0;
        bottom: 150px;
    }
    .pagination-dot.active{
        width: 12px;
        height: 12px;
    }
    .pagination-dot{
        width: 10px;
        height: 10px;
    }
    .line-11{
        bottom: 200px;
        right: 140px;
    }
    .line-12{
        bottom: 190px;
        right: 120px;
    }
    .line-13{
        left: 50px;
        top: -100px;
    }
}
@media (max-width: 660.98px) {
    .deco-svg.psvg1{
        max-width: 300px;
        top: -200px;
        right: -50px;
    }
    .circle-gradient.flow1{
        width: 300px;
        height: 300px;
        left: 0;
        top: 50px;
        display: none;
    }
    .circle-gradient.flow2{
        width: 200px;
        height: 200px;
        bottom: 250px;
        right: 0;
    }
    .line-11{
        bottom: 240px;
        right: 20px;
    }
    .line-12{
        bottom: 240px;
        right: 0px;
    }
}
.line-15{
    right: 700px;
    top: 50px;
    height: 200px;
}
.line-16{
    right: 800px;
    top: 80px;
    width: 8px;
    height: 200px;
    z-index: -12;
}
.section-wrap.case{
    margin-top: 50px;
}
.deco-svg.csvg{
    max-width: 270px;
    bottom: 0;
    left: 40px;
}
.deco-svg.csvg svg{
    width: 100%;
    height: 100%;
}
/* Case Carousel */
.case-carousel-box{
    width: 100%;
    padding: 60px var(--page-padding) 100px;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
}
.case-carousel-container{
    position: relative;
    width: 100%;
    max-width: 1800px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    overflow: visible;
}
.case-carousel-wrapper{
    width: 100%;
    overflow: visible;
    position: relative;
    padding: 0;
}
.case-carousel-track{
    display: flex;
    transition: transform 0.5s ease-in-out;
    gap: 200px;
    align-items: center;
    width: fit-content;
}
.case-carousel-slide{
    flex: 0 0 auto;
    width: 637px;
    transition: opacity 0.5s ease-in-out, width 0.5s ease-in-out;
    pointer-events: none;
    position: relative;
}
.case-carousel-slide:not(.active){
    width: 550px;
}
.case-carousel-slide.active{
    width: 960px;
    opacity: 1;
    pointer-events: auto;
    z-index: 2;
}
.case-carousel-card{
    display: flex;
    align-items: center;
    gap: 40px;
    width: 100%;
    transition: all 0.5s ease-in-out;
}
.case-carousel-slide:not(.active) .case-carousel-card{
    justify-content: flex-start;
}
.case-carousel-image{
    display: block;
    flex: 0 0 auto;
    width: 637px;
    height: 637px;
    border-radius: 50%;
    overflow: visible;
    position: relative;
    text-decoration: none;
    color: inherit;
}
.case-carousel-image img{
    transition: transform 0.3s ease-in-out;
}
.case-carousel-image:hover img{
    transform: scale(1.02);
}
.case-carousel-slide.active .case-carousel-image::before{
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 937px;
    height: 937px;
    border-radius: 50%;
    background: radial-gradient(circle, #71C6C0 0%,#ECEDDA 50%, #ECEDDA20 64%, #ffffff00 100%);
    z-index: -10;
}
.case-carousel-slide:not(.active) .case-carousel-image{
    width: 550px;
    height: 550px;
    overflow: hidden;
}
.case-carousel-image img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    position: relative;
    z-index: 1;
    border-radius: 50%;
}
.case-carousel-text{
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding-left: 20px;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.5s ease-in-out, visibility 0.5s ease-in-out;
}
.case-carousel-slide.active .case-carousel-text{
    opacity: 1;
    visibility: visible;
}
.case-category-title{
    margin-bottom: 30px;
}
.case-category-zh{
    font-size: 2.2rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    color: var(--color1);
    position: relative;
    padding-left: 24px;
    margin-bottom: 8px;
}
.case-category-zh::before{
    content: '';
    position: absolute;
    left: 0;
    top: 3px;
    height: 85%;
    width: 4px;
    background-color: var(--color2);
}
.case-category-en{
    font-size: 2rem;
    color: var(--color7);
    font-weight: 400;
}
.case-category-items{
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.case-category-item{
    font-size: 1.8rem;
    color: var(--color1);
    font-weight: 600;
    letter-spacing: 0.2em;
}
.case-carousel-buttons-container{
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 1200px;
    height: 0;
    z-index: 10;
    pointer-events: none;
}
.case-carousel-btn{
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 78px;
    height: 78px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 1);
    border: 4px solid var(--color2);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
    transition: all 0.3s ease;
    box-shadow: 0 0 4px 3px rgba(218, 181, 62, 0.5);
    pointer-events: auto;
}
.case-carousel-btn svg{
    transition: stroke 0.3s ease;
}
.case-carousel-btn svg path{
    stroke: var(--color2);
    transition: stroke 0.3s ease;
}
.case-carousel-btn-prev{
    left: 0;
    transform: translate(-50%, -50%);
}
.case-carousel-btn-prev:hover{
    transform: translate(-50%, -50%) scale(1.15);
}
.case-carousel-btn-prev:active{
    transform: translate(-50%, -50%) scale(0.95);
}
.case-carousel-btn-next{
    right: 0;
    transform: translate(50%, -50%);
}
.case-carousel-btn-next:hover{
    transform: translate(50%, -50%) scale(1.15);
}
.case-carousel-btn-next:active{
    transform: translate(50%, -50%) scale(0.95);
}
.case-carousel-pagination{
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 12px;
    margin-top: 40px;
    z-index: 10;
}
.case-pagination-dot{
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: #D8D4D3;
    cursor: pointer;
    transition: all 0.3s ease;
}
.case-pagination-dot.active{
    background-color: var(--color2);
    width: 16px;
    height: 16px;
}
.case-pagination-dot:hover{
    background-color: var(--color4);
}

@media (max-width: 1439.98px) {
    .case-carousel-container{
        max-width: 1600px;
    }
    .case-carousel-slide{
        width: 530px;
    }
    .case-carousel-slide:not(.active){
        width: 450px;
    }
    .case-carousel-slide.active{
        width: 760px;
    }
    .case-carousel-image{
        width: 530px;
        height: 530px;
    }
    .case-carousel-slide.active .case-carousel-image::before{
        width: 800px;
        height: 800px;
    }
    .case-carousel-slide:not(.active) .case-carousel-image{
        width: 450px;
        height: 450px;
    }
    .case-carousel-buttons-container{
        width: 1000px;
    }
    .line-15{
        right: 400px;
        height: 150px;
    }
    .line-16{
        right: 500px;
        height: 150px;
    }
}

@media (max-width: 1240.98px) {
    .case-carousel-container{
        max-width: 1400px;
    }
    .case-carousel-slide{
        width: 400px;
    }
    .case-carousel-slide:not(.active){
        width: 330px;
    }
    .case-carousel-slide.active{
        width: 700px;
    }
    .case-carousel-image{
        width: 400px;
        height: 400px;
    }
    .case-carousel-slide.active .case-carousel-image::before{
        width: 600px;
        height: 600px;
    }
    .case-carousel-slide:not(.active) .case-carousel-image{
        width: 330px;
        height: 330px;
    }
    .case-carousel-track{
        gap: 160px;
    }
    .case-carousel-buttons-container{
        width: 800px;
    }
    .case-category-zh{
        font-size: 2rem;
    }
    .case-category-en{
        font-size: 1.8rem;
    }
    .case-category-item{
        font-size: 1.6rem;
        font-weight: 500;
    }
    .line-15{
        top: 0;
        right: 400px;
        height: 150px;
    }
    .line-16{
        top: 40px;
        height: 130px;
    }
    .deco-svg.csvg{
        top: unset;
        bottom: -100px;
    }
}

@media (max-width: 995.98px) {
    .case-carousel-container{
        max-width: 1200px;
    }
    .case-carousel-track{
        gap: 80px;
    }
    .case-carousel-slide{
        width: 300px;
    }
    .case-carousel-slide:not(.active){
        width: 230px;
    }
    .case-carousel-slide.active{
        width: 520px;
    }
    .case-carousel-image{
        width: 300px;
        height: 300px;
    }
    .case-carousel-slide.active .case-carousel-image{
        width: 300px;
        height: 300px;
    }
    .case-carousel-slide.active .case-carousel-image::before{
        width: 450px;
        height: 450px;
    }
    .case-carousel-slide:not(.active) .case-carousel-image{
        width: 230px;
        height: 230px;
    }
    .case-carousel-card{
        gap: 30px;
    }
    .case-carousel-btn{
        width: 60px;
        height: 60px;
    }
    .case-carousel-btn svg{
        width: 18px;
        height: 18px;
    }
    .line-15{
        right: 180px;
    }
    .line-16{
        right: 260px;
    }
}

@media (max-width: 660.98px) {
    .case-carousel-box{
        padding: 20px var(--page-padding);
    }
    .case-carousel-container{
        padding: 0 10px;
    }
    .case-carousel-slide{
        width: 300px;
        max-width: 100%;
    }
    .case-carousel-slide:not(.active){
        width: 230px;
    }
    .case-carousel-slide.active{
        width: 300px;
        max-width: 100%;
    }
    .case-carousel-card{
        flex-direction: column;
        gap: 40px;
        align-items: center;
    }
    .case-carousel-image{
        width: 300px;
        height: 300px;
    }
    .case-category-title{
        margin-bottom: 10px;
    }
    .case-carousel-slide.active .case-carousel-image::before{
        width: 450px;
        height: 450px;
    }
    .case-carousel-slide:not(.active) .case-carousel-image{
        width: 230px;
        height: 230px;
    }
    .case-carousel-text{
        padding-left: 0;
        text-align: center;
        align-items: center;
    }
    .case-category-zh{
        padding-left: 16px;
        padding-right: 16px;
        white-space: nowrap;
    }
    .case-category-zh::after{
        content: '';
        position: absolute;
        right: 0;
        top: 3px;
        height: 85%;
        width: 3px;
        background-color: var(--color2);
    }
    .case-category-zh::before{
        width: 3px;
    }
    .case-carousel-buttons-container{
        display: none;
        width: 360px;
        max-width: 100%;
    }
    .case-pagination-dot.active{
        width: 12px;
        height: 12px;
    }
    .case-pagination-dot{
        width: 10px;
        height: 10px;
    }
    .line-15{
        top: -20px;
        right: 100px;
        height: 120px;
    }
    .line-16{
        right: 160px;
        top: 0px;
        height: 90px;
    }
    .deco-svg.csvg{
        bottom: -200px;
        left: -10px;
        max-width: 200px;
    }
}

.section-wrap.contact{
    margin-top: 250px;
    margin-bottom: 400px;
    position: relative;
}
.contact-text{
    font-size: 2.4rem;
    color: var(--color1);
    font-weight: 400;
    line-height: 1.7;
    letter-spacing: 0.15em;
    margin-top: 40px;
    max-width: 560px;
}
.contact .link-btn-box{
    margin-top: 76px;
}
.contact .deco-bg{
    position: absolute;
    top: -160px;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    max-width: 1500px;
    z-index: -1;
}
.circle-gradient.red{
    background: radial-gradient(circle, #EBBC9F 0%, #EBBC9F 40%, rgba(253, 250, 227, 0.2) 60%, rgba(253, 250, 227, 0) 100%);
    z-index: -2;
    max-width: 680px;
    max-height: 680px;
    top: unset;
    bottom: -400px;
    right: 0;
}
.deco-circle.c1{
    width: 600px;
    height: 600px;
    left: -120px;
    top:200px;
    z-index: -3;
}
.deco-circle.c2{
    width: 400px;
    height: 400px;
    right: 35%;
    top: -70px;
    z-index: -3;
}
.line-17{
    left: unset;
    right: 600px;
    top: -200px;
    height: 200px;
}
.line-18{
    left: unset;
    right: 750px;
    top: -100px;
    height: 150px;
    width: 8px;
}
.line-19{
    left: 660px;
    top: unset;
    bottom: -350px;
    height: 200px;
    width: 8px;
}
.line-20{
    left: 660px;
    top: unset;
    bottom: -450px;
}
.deco-svg.csvg1{
    right: -200px;
    top: -300px;
}
.deco-svg.csvg.contact{
    left: unset;
    right: 200px;
    bottom: unset;
    top: 550px;
    z-index: -1;
    rotate: 180deg;
}
@media (max-width: 1439.98px) {
    .contact .deco-bg{
        width: 150%;
    }
    .deco-circle.c1{
        width: 500px;
        height: 500px;
        left: -160px;
        top: 250px;
    }
    .deco-circle.c2{
        right: 30%;
        width: 300px;
        height: 300px;
    }
    .circle-gradient.red{
        max-width: 500px;
        max-height: 500px;
        bottom: -350px;
        right: -150px;
    }
    .line-17{
        right: 300px;
        top: -180px;
    }
    .line-18{
        right: 450px;
        top: -120px;
    }
    .deco-svg.csvg1{
        max-width: 400px;
        top: -350px;
    }
    .deco-svg.csvg.contact{
        top: 400px;
    }
}
@media (max-width: 767.98px) {
    .section-wrap.contact{
        margin-top: 150px;
    }
    .contact .deco-bg{
        top: 100px;
        left: 30%;
    }
    .contact-text{
        font-size: 2rem;
        max-width: 100%;
    }
    .deco-circle.c1{
        display: none;
    }
    .deco-circle.c2{
        top: unset;
        bottom: -300px;
        left: -120px;
    }
    .circle-gradient.red{
        bottom: -300px;
    }
    .line-17{
        height: 140px;
        right: 200px;
        top: -100px;
    }
    .line-18{
        height: 110px;
        right: 260px;
        top: -100px;
    }
    .line-19{
        height: 140px;
        bottom: -360px;
        left: 160px;
    }
    .line-20{
        height: 110px;
        left: 100px;
        bottom: -360px;
    }
    .deco-svg.csvg1{
        max-width: 300px;
        top: -300px;
        right: -130px;
    }
}
@media (max-width: 480.98px) {
    .contact .deco-bg{
        top: 200px;
        left: -150px;
        transform: unset;
    }
    .deco-circle.c2{
        width: 200px;
        height: 200px;
        bottom: -200px;
        left: -80px;
    }

    .circle-gradient.red{
        bottom: -250px;
    }
    .line-17{
        right: 50px;
        top: -80px;
    }
    .line-18{
        right: 80px;
        top: -70px;
    }
    .line-19{
        left: 120px;
        bottom: -230px;
    }
    .line-20{
        left: 140px;
        bottom: -230px;
    }
    .deco-svg.csvg1{
        max-width: 250px;
    }
    .deco-svg.csvg.contact{
        top: 300px;
    }
}

/* Brand Grid Section */
.section-wrap.brand {
    margin-top: 0;
    padding: 6rem var(--page-padding) 16rem;
    position: relative;
}

.brand-grid {
    display: grid;
    grid-template-columns: repeat(6, 220px);
    gap: 20px;
    justify-content: center;
    align-items: center;
    width: 100%;
}

.brand-item {
    width: 220px;
    height: 74px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 4px;
    box-sizing: border-box;
    cursor: default;
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease-out var(--animation-delay, 0s), 
                transform 0.6s ease-out var(--animation-delay, 0s);
}
.brand-item.animate-in{
    opacity: 1;
    transform: translateY(0);
}

.brand-item img {
    max-width: 100%;
    max-height: 74%;
    height: auto;
    width: auto;
    object-fit: contain;
    transition: filter 0.3s ease;
}

/* Responsive: 5 columns */
@media (max-width: 1419.98px) {
    .brand-grid {
        grid-template-columns: repeat(5, 220px);
    }
}

/* Responsive: 4 columns */
@media (max-width: 1179.98px) {
    .brand-grid {
        grid-template-columns: repeat(4, 220px);
    }
}

/* Responsive: 3 columns */
@media (max-width: 939.98px) {
    .brand-grid {
        gap: 15px;
        grid-template-columns: repeat(4, 180px);
    }
    .brand-item{
        width: 180px;
        height: 61px;
    }
}

/* Responsive: 2 columns */
@media (max-width: 767.98px) {
    .brand-grid {
        grid-template-columns: repeat(4, 150px);
        gap: 15px;
    }
    .brand-item{
        width: 150px;
        height: 50px;
    }
}

/* Responsive: 1 column */
@media (max-width: 620.98px) {
    .brand-grid {
        grid-template-columns: repeat(3, 120px);
        gap: 8px;
    }
    .brand-item{
        width: 120px;
        height: 40px;
    }
    .section-wrap.brand {
        padding: 0 var(--page-padding) 10rem;
    }
}
@media (max-width: 350.98px) {
    .brand-grid {
        grid-template-columns: repeat(2, 150px);
        gap: 8px;
    }
    .brand-item{
        width: 150px;
        height: 50px;
    }
}