:root{
  --main:#111827;
  --dark:#070b12;
  --gold:#c9a45c;
  --gold2:#f0d69b;
  --text:#f8fafc;
  --muted:#aeb7c6;
  --white:#fff;
  --bg:#f5f3ef;
  --container:1280px;
}

*{
  box-sizing:border-box;
}

body{
  margin:0;
  font-family:"Noto Sans TC","Microsoft JhengHei",Arial,sans-serif;
  color:#1f2937;
  background:var(--bg);
  line-height:1.5;
}

a{
  color:inherit;
  text-decoration:none;
}

img{
  max-width:100%;
  display:block;
}

.container{
  width:min(var(--container), calc(100% - 40px));
  margin:auto;
}

.header{
  position:fixed;
  top:0;
  left:0;
  width:100%;
  z-index:99;
  transition:.35s;
  color:#fff;
}

.header.active{
  background:rgba(7,11,18,.92);
  backdrop-filter:blur(12px);
  box-shadow:0 10px 30px rgba(0,0,0,.18);
}

.nav{
  height:82px;
  display:flex;
  align-items:center;
  justify-content:space-between;
}






.logo{
    display:flex;
    align-items:center;
    gap:16px;
    text-decoration:none;
}

.logo img{
    width:72px;
    height:auto;
    flex-shrink:0;
    display:block;
}

.logoTxt{
    display:flex;
    flex-direction:column;
    font-size:24px;
    font-weight:700;
  letter-spacing:.08em;
    line-height:1.15;
    color:#fff;
}

.logoTxt span{
    margin-top:6px;
  display:block;
  font-size:11px;
  color:var(--gold2);
  letter-spacing:.12em;
  font-weight:400;
}


@media(max-width:1200px){

    .logo{
        gap:10px;
    }

    .logo img{
        /*width:52px;*/
    }

    .logoTxt{
        font-size:20px;
    }

    .logoTxt span{
        font-size:10px;
        letter-spacing:1px;
    }

}

.menu{
  display:flex;
  gap:30px;
  font-size:15px;
}

.menu a{
  opacity:.9;
}

.menu a:hover{
  color:var(--gold2);
}

.menu a.active{
  color:var(--gold2);
}

.menuBtn{
  display:none;
  width:42px;
  height:42px;
  border:1px solid rgba(255,255,255,.35);
  border-radius:50%;
  align-items:center;
  justify-content:center;
  cursor:pointer;
}

.menuBtn span{
  width:18px;
  height:2px;
  background:#fff;
  position:relative;
}

.menuBtn span:before,
.menuBtn span:after{
  content:"";
  position:absolute;
  left:0;
  width:18px;
  height:2px;
  background:#fff;
}

.menuBtn span:before{top:-6px;}
.menuBtn span:after{top:6px;}

.hero{
  min-height:100vh;
  background:
    linear-gradient(110deg,rgba(7,11,18,.92),rgba(7,11,18,.58),rgba(7,11,18,.25)),
    url("../images/banner.jpg") center/cover no-repeat;
  color:#fff;
  display:flex;
  align-items:center;
  position:relative;
}

.hero:after{
  content:"";
  position:absolute;
  inset:auto 0 0 0;
  height:140px;
  background:linear-gradient(transparent,var(--bg));
}

.heroText{
  width:min(760px,100%);
  position:relative;
  z-index:2;
  padding-top:80px;
}

.heroText .tag{
  display:inline-flex;
  align-items:center;
  gap:10px;
  color:var(--gold2);
  letter-spacing:.18em;
  font-size:14px;
  margin-bottom:20px;
}

.heroText .tag:before{
  content:"";
  width:42px;
  height:1px;
  background:var(--gold2);
}

.heroText h1{
  font-size:clamp(42px,6vw,82px);
  line-height:1.12;
  margin:0 0 24px;
  letter-spacing:.04em;
}

.heroText p{
  font-size:19px;
  color:#e5e7eb;
  max-width:660px;
}

.heroBtns{
  display:flex;
  gap:16px;
  flex-wrap:wrap;
  margin-top:34px;
}

.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-width:160px;
  height:52px;
  border-radius:100px;
  padding:0 28px;
  font-weight:500;
  transition:.3s;
}

.btn.gold{
  background:linear-gradient(135deg,var(--gold),var(--gold2));
  color:#111;
}

.btn.line{
  border:1px solid rgba(255,255,255,.45);
  color:#fff;
}

.btn:hover{
  transform:translateY(-3px);
}

.quickInfo{
  position:absolute;
  right:6vw;
  bottom:8vw;
  z-index:3;
  display:grid;
  grid-template-columns:repeat(3,1fr);
  background:rgba(255,255,255,.1);
  border:1px solid rgba(255,255,255,.16);
  backdrop-filter:blur(14px);
  border-radius:24px;
  overflow:hidden;
}

.quickInfo div{
  padding:24px 30px;
  min-width:150px;
  border-right:1px solid rgba(255,255,255,.14);
}

.quickInfo div:last-child{
  border-right:0;
}

.quickInfo strong{
  display:block;
  font-size:28px;
  color:var(--gold2);
  line-height:1.2;
}

.quickInfo span{
  font-size:13px;
  color:#e5e7eb;
}

.section{
  padding:110px 0;
}

.titleBox{
  margin-bottom:48px;
}

.titleBox.center{
  text-align:center;
}

.titleBox .en{
  color:var(--gold);
  letter-spacing:.18em;
  text-transform:uppercase;
  font-size:13px;
  margin-bottom:8px;
}

.titleBox h2{
  font-size:clamp(30px,4vw,48px);
  line-height:1.25;
  margin:0;
  color:var(--main);
}

.titleBox p{
  color:#6b7280;
  margin-top:14px;
}

.aboutGrid{
  display:grid;
  grid-template-columns:1fr 1.05fr;
  gap:70px;
  align-items:center;
}

.aboutImg{
  border-radius:34px;
  overflow:hidden;
  min-height:520px;
  background:url("../images/index.jpg") center/cover no-repeat;
  box-shadow:0 28px 70px rgba(0,0,0,.18);
}

.aboutText .lead{
  font-size:21px;
  color:#111827;
  font-weight:600;
}

.motto{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:14px;
  margin-top:34px;
}

.motto div{
  background:#fff;
  border-radius:20px;
  padding:24px 18px;
  text-align:center;
  box-shadow:0 14px 36px rgba(17,24,39,.08);
}

.motto strong{
  display:block;
  color:var(--gold);
  font-size:28px;
}

.service{
  background:var(--dark);
  color:#fff;
  position:relative;
  overflow:hidden;
}

.service .titleBox h2{
  color:#fff;
}

.service .titleBox p{
  color:var(--muted);
}

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

.serviceItem{
  padding:38px 34px;
  border-radius:28px;
  background:linear-gradient(180deg,rgba(255,255,255,.09),rgba(255,255,255,.035));
  border:1px solid rgba(255,255,255,.09);
  transition:.35s;
}

.serviceItem:hover{
  transform:translateY(-8px);
  border-color:rgba(240,214,155,.45);
}

.icon{
  width:58px;
  height:58px;
  border-radius:18px;
  background:rgba(201,164,92,.16);
  display:flex;
  align-items:center;
  justify-content:center;
  color:var(--gold2);
  font-size:28px;
  margin-bottom:24px;
}

.serviceItem h3{
  font-size:23px;
  margin:0 0 12px;
}

.serviceItem p{
  color:#cbd5e1;
  margin:0;
}


.serviceItem{
    border-radius:24px;
    padding:50px 35px;
    text-align:center;
    transition:.4s;
    box-shadow:0 10px 30px rgba(0,0,0,.06);
}

.serviceItem:hover{
    transform:translateY(-8px);
}

.serviceItem .icon{
    width:90px;
    height:90px;
    margin:0 auto 25px;
    display:flex;
    align-items:center;
    justify-content:center;
    border-radius:50%;
    background: none;
    /*border:1px solid rgba(201,164,92,.15);*/
}

.serviceItem .icon img{
    width:90px;
    height:90px;
    object-fit:contain;
    display:block;
}


.routes{
  background:#fff;
}

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

.routeCard{
  min-height:250px;
  border-radius:26px;
  overflow:hidden;
  position:relative;
  background:center/cover no-repeat;
}

.routeCard:nth-child(1){background-image:url("../images/route01.jpg");}
.routeCard:nth-child(2){background-image:url("../images/route02.jpg");}
.routeCard:nth-child(3){background-image:url("../images/route03.jpg");}
.routeCard:nth-child(4){background-image:url("../images/route04.jpg");}

.routeCard:before{
  content:"";
  position:absolute;
  inset:0;
  background:linear-gradient(transparent,rgba(0,0,0,.78));
}

.routeCard .txt{
  position:absolute;
  left:24px;
  right:24px;
  bottom:22px;
  color:#fff;
}

.routeCard h3{
  margin:0 0 6px;
  font-size:22px;
}

.routeCard p{
  margin:0;
  color:#e5e7eb;
  font-size:14px;
}

.carBox{
  display:grid;
  grid-template-columns:1.05fr .95fr;
  gap:60px;
  align-items:center;
}

.carPhoto{
  min-height:430px;
  border-radius:34px;
  background:url("../images/car.jpg") center/cover no-repeat;
  box-shadow:0 26px 60px rgba(0,0,0,.16);
}

.checkList{
  display:grid;
  gap:15px;
  margin-top:28px;
}

.checkList div{
  background:#fff;
  padding:17px 22px;
  border-radius:18px;
  box-shadow:0 10px 28px rgba(17,24,39,.07);
}

.checkList div:before{
  content:"✓";
  color:var(--gold);
  font-weight:bold;
  margin-right:10px;
}

.process{
  background:#eee9df;
}

.processList{
  display:grid;
  grid-template-columns:repeat(5,1fr);
  gap:18px;
  counter-reset:num;
}

.processItem{
  background:#fff;
  border-radius:24px;
  padding:30px 22px;
  position:relative;
  box-shadow:0 12px 32px rgba(17,24,39,.07);
}

.processItem:before{
  counter-increment:num;
  content:"0" counter(num);
  display:block;
  color:var(--gold);
  font-size:30px;
  font-weight:700;
  margin-bottom:12px;
}

.processItem h3{
  margin:0 0 8px;
  font-size:21px;
}

.processItem p{
  color:#6b7280;
  margin:0;
  font-size:15px;
}

.cta{
  background:
    linear-gradient(rgba(7,11,18,.84),rgba(7,11,18,.84)),
    url("../images/cta.jpg") center/cover no-repeat;
  color:#fff;
  text-align:center;
}

.cta h2{
  font-size:clamp(32px,5vw,54px);
  margin:0 0 16px;
}

.cta p{
  color:#d1d5db;
  max-width:680px;
  margin:0 auto 32px;
}
/*
.footer{
  background:#05070b;
  color:#fff;
  padding:44px 0;
}

.footerGrid{
  display:flex;
  justify-content:space-between;
  gap:30px;
  flex-wrap:wrap;
}

.footer small{
  color:#94a3b8;
}
*/

.footer{
    background:#05070b;
    color:#fff;
    padding:70px 0 30px;
}

.footerGrid{
    display:grid;
    grid-template-columns:1.4fr 1fr;
    gap:80px;
    padding-bottom:40px;
    border-bottom:1px solid rgba(255,255,255,.08);
}

.footerLogo{
    font-size:27px;
    font-weight:700;
    color:#fff;
    margin-bottom:25px;
    line-height:1.2;
}

.footerLogo span{
    display:block;
    font-size:12px;
    letter-spacing:3px;
    color:#c9a45c;
    margin-top:8px;
}

.footerInfo p{
    color:rgba(255,255,255,.7);
    line-height:1.5;
    margin-bottom:10px;
}

.footerContact h3{
    font-size:22px;
    margin-bottom:25px;
    color:#c9a45c;
}

.footerContact ul{
    list-style:none;
    margin:0;
    padding:0;
}

.footerContact li{
    margin-bottom:10px;
    color:rgba(255,255,255,.8);
    line-height:1.5;
}

.footerContact strong{
    color:#fff;
    font-weight:600;
}

.footerContact ul li a{
    color:inherit;
    text-decoration:none;
    transition:.3s;
}

.footerContact ul li a:hover{
    color:#c9a45c;
}

.footerLegal{
    margin-top:35px;
    padding-top:10px;
}

.footerLegal p{
    color:rgba(255,255,255,.55);
    font-size:14px;
    line-height:1.5;
    margin-bottom:8px;
}

.copyright{
    margin-top:25px;
    padding-top:25px;
    border-top:1px solid rgba(255,255,255,.06);
    text-align:center;
    color:rgba(255,255,255,.45);
    font-size:13px;
}

@media(max-width:768px){

    .footer{
        padding:50px 0 25px;
    }

    .footerGrid{
        grid-template-columns:1fr;
        gap:40px;
    }

    .footerLogo{
        font-size:24px;
    }

    .footerContact h3{
        font-size:20px;
    }

}

.floatBtns{
  position:fixed;
  right:22px;
  bottom:22px;
  z-index:80;
  display:grid;
  gap:10px;
}

.floatBtns a{
  width:54px;
  height:54px;
  border-radius:50%;
  background:var(--gold);
  color:#111;
  display:flex;
  align-items:center;
  justify-content:center;
  font-weight:700;
  box-shadow:0 12px 30px rgba(0,0,0,.22);
}

.fadeUp{
  opacity:0;
  transform:translateY(35px);
  transition:.75s;
}

.fadeUp.show{
  opacity:1;
  transform:translateY(0);
}

@media(max-width:1024px){
  .quickInfo{
    position:relative;
    right:auto;
    bottom:auto;
    margin-top:44px;
  }

  .aboutGrid,
  .carBox{
    grid-template-columns:1fr;
  }

  .serviceList{
    grid-template-columns:repeat(2,1fr);
  }

  .routeGrid{
    grid-template-columns:repeat(2,1fr);
  }

  .processList{
    grid-template-columns:repeat(2,1fr);
  }
}




@media(max-width:1024px){


  .nav{
    height:70px;
  }

  .menuBtn{
    display:flex;
  }

  .menu{
    position:fixed;
    top:70px;
    left:0;
    width:100%;
    background:rgba(7,11,18,.96);
    flex-direction:column;
    gap:0;
    padding:20px;
    display:none;
  }

}


@media(max-width:768px){


  .nav{
    height:70px;
  }

  .menuBtn{
    display:flex;
  }

  .menu{
    position:fixed;
    top:70px;
    left:0;
    width:100%;
    background:rgba(7,11,18,.96);
    flex-direction:column;
    gap:0;
    padding:20px;
    display:none;
  }

  .menu.open{
    display:flex;
  }

  .menu a{
    padding:14px 0;
    border-bottom:1px solid rgba(255,255,255,.08);
  }

  .hero{
    min-height:auto;
    padding:80px 0 80px;
  }

  .heroText{
  padding-top:40px;
}

  .heroText p{
    font-size:17px;
  }

  .quickInfo{
    grid-template-columns:1fr;
    display: none;
  }

  .heroBtns {
    padding-bottom: 30px;
  }

  .quickInfo div{
    border-right:0;
    border-bottom:1px solid rgba(255,255,255,.14);
  }

  .section{
    padding:72px 0;
  }

  .serviceList,
  .routeGrid,
  .processList,
  .motto{
    grid-template-columns:1fr;
  }

  .aboutImg,
  .carPhoto{
    min-height:320px;
  }
}






.inBanner{
    height:420px;
    background:
    linear-gradient(rgba(7,11,18,.65),rgba(7,11,18,.65)),
    url(../images/inbanner.jpg) center/cover;
    display:flex;
    align-items:center;
    color:#fff;
}

.bannerTxt{
    text-align:center;
}

.bannerTxt span{
    color:#c9a45c;
    letter-spacing:4px;
}

.bannerTxt h1{
    font-size:56px;
    margin:15px 0;
}

.bannerTxt p{
    color:#d1d5db;
}

@media(max-width:768px){

 .inBanner{
        height:300px;
    }

    .bannerTxt h1{
        font-size:27px;
        margin:5px 0;
    }

    .bannerTxt p{
     margin:5px 0;
}

}




.ctaBox{
    text-align:center;
    color:#fff;
}

.ctaBox h2{
    font-size:48px;
    margin-bottom:20px;
}

.ctaBox p{
    max-width:700px;
    margin:auto;
    margin-bottom:35px;
    color:#d1d5db;
}











.reviewSection{
    background:#f8fafc;
}

.reviewGrid{

    display:grid;

    grid-template-columns:repeat(4,1fr);

    gap:25px;

    margin-top:60px;

}

.reviewItem{

    border-radius:16px;

    overflow:hidden;

    cursor:pointer;

    box-shadow:0 10px 30px rgba(0,0,0,.08);

    transition:.35s;

    background:#fff;

}

.reviewItem:hover{

    transform:translateY(-8px);

}

.reviewItem img{

    width:100%;

    display:block;

    transition:.4s;

}

.reviewItem:hover img{

    transform:scale(1.05);

}



.reviewLightbox{

    position:fixed;

    inset:0;

    background:rgba(0,0,0,.9);

    display:flex;

    justify-content:center;

    align-items:center;

    opacity:0;

    visibility:hidden;

    transition:.3s;

    z-index:99999;

}

.reviewLightbox.active{

    opacity:1;

    visibility:visible;

}

.reviewLightbox img{

    max-width:90%;

    max-height:88vh;

    border-radius:12px;

}



.reviewClose{

    position:absolute;

    top:25px;

    right:35px;

    color:#fff;

    font-size:52px;

    cursor:pointer;

    line-height:1;

}

.reviewPrev,

.reviewNext{

    position:absolute;

    top:50%;

    transform:translateY(-50%);

    width:60px;

    height:60px;

    border:none;

    border-radius:50%;

    background:rgba(255,255,255,.15);

    color:#fff;

    font-size:28px;

    cursor:pointer;

    transition:.3s;

}

.reviewPrev:hover,

.reviewNext:hover{

    background:#c9a45c;

}

.reviewPrev{

    left:35px;

}

.reviewNext{

    right:35px;

}



@media(max-width:991px){

    .reviewGrid{

        grid-template-columns:repeat(2,1fr);

    }

}



@media(max-width:767px){

    .reviewGrid{

        grid-template-columns:1fr;

        gap:18px;

    }

}





.reviewMore{
    text-align:center;
    margin-top:50px;
}

.reviewBtn{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    gap:10px;
    padding:16px 38px;
    border-radius:50px;
    background:#c9a45c;
    color:#fff;
    font-size:16px;
    font-weight:600;
    text-decoration:none;
    transition:.35s;
    box-shadow:0 12px 30px rgba(0,0,0,.12);
}

.reviewBtn::after{
    content:"→";
    transition:.3s;
}

.reviewBtn:hover{
    background:#111827;
    transform:translateY(-3px);
}

.reviewBtn:hover::after{
    transform:translateX(6px);
}