/*side_icon*/
/* 側邊欄容器 */
.fixed-sidebar {
    position: fixed;
    right: 20px;
    bottom: 30px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    z-index: 9999;
}

/* 通用項目樣式 */
.sidebar-item {
    width: 55px;
    height: 55px;
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    color: white;
    font-size: 12px;
    font-weight: bold;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    transition: all 0.3s ease;
}

.sidebar-item:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 16px rgba(0,0,0,0.25);
}

/* 個別顏色設定 */
.item-line { background-color: #00c300; }
.item-phone { background-color: #007bff; }
.item-map { background-color: #ea4335; }
.item-top { 
    background-color: #333; 
    visibility: hidden; /* 預設隱藏，由 JS 控制顯示 */
    opacity: 0;
}

.item-top.show {
    visibility: visible;
    opacity: 1;
    text-align: center;
    padding-top: 15px;
}

.sidebar-item i {
    font-size: 20px;
    font-style: normal;
}

/* 手機版微調 */
@media (max-width: 768px) {
    .fixed-sidebar {
        right: 10px;
        bottom: 200px;
    }
    .sidebar-item {
        width: 50px;
        height: 50px;
    }
}


/*body*/
body{
font-family:"Noto Sans TC",sans-serif;
color:var(--text);
line-height:1.6;
}
:root{
--main:#9dac45;
--dark:#6f7d2f;
--light:#f6f8ee;
--text:#333;
}

 
/* 背景紋理 - 淺色網格 */
body {
background-color: #ffffff;
/* 灰色極細網格 */
background-image: linear-gradient(rgba(0, 0, 0, 0.03) 1px, transparent 1px),
linear-gradient(90deg, rgba(0, 0, 0, 0.03) 1px, transparent 1px);
background-size: 30px 30px;
}

.fcol.fcol-header{
  display:none;
}


.row [class^="col-"] {
  padding:10px;
}


body[data-type="fullpage"]:not(#managehome) #wrap > :not(:last-child) { margin-bottom: 0px; }



/*logo*/

 #logo img {
   padding: 0 16px 16px;
 }

@media only screen and (max-width: 767px) {
  #logo a img {
    margin: 0 auto;
  }
}


/*top*/
.navbar-nav > li > a {
    color: #fff;
}


.topnavbar .container {
  text-align: justify;
  font-size: 0;
  /*text-align: center;*/  
}

.topnavbar .container::after {
  content: "";
  display: inline-block;
  width: 100%;
}

.topnavbar {
  background-color: rgba(255,255,255,0.65);
  top:0px;
  position: relative;
  z-index:100;
  width:100%;
  padding: .6rem 0;
  height: 100px;
  box-shadow: 0 5px 5px rgba(44,44,44,0.15);
}


@media(max-width:600px){
   .topnavbar .container {
  text-align: center;
}
}


/*nav*/
#nav ul li a {
    white-space: nowrap;
    color: #333;
    line-height: 1.3;
    font-weight: normal;
    padding: 10px 18px;
    font-size: 100%;
    border-right: 1px #888 dotted;
    transition:all 0.5s;
}

#nav ul li a:hover{
    color: #9cae40;
}

#nav ul li a span{transition:all 0.5s;}

#nav ul li a:hover span{border-top:2px solid #9cae40;padding-top:5px;}


#nav ul li.current a  {
    color: #9cae40;  
}


#nav .subnav {
    position: absolute;
    top: 100%;
    max-width: 200px;
    background-color: #fff;
} 


#nav ul .subnav li a {
    background-color: rgba(156, 174, 65,0.85);
    color: #fff;
    text-align: left;
    width: 200px;
}

#nav ul li .subnav a span {
    display: inline-block;
    max-width: 200px;
    padding: 0px 10px;
    border-top:0px;
}

#nav ul li .subnav a span:hover  {
    display: inline-block;
    max-width: 200px;
    border-top: 0px solid;
    padding: 0px 10px;
    border-top:0px;
}

#nav li.has-subnav ul li a {
    color: #fff;
    width:200px;
    white-space: pre-line;
  }

#nav li.has-subnav ul li a:hover{
   color:#333;
}




/*-----------Banner---------*/
.swiper-container {
  height: auto !important;
}

#bodyinhome .swiper-wrapper,#bodyinhome .swiper-slide {
  height: 0 !important;
  padding-bottom: calc(800 / 1920 * 100%); /* 注意圖片高度與寬度要去掉單位 */
}

.swiper-slide {
  width: 100% !important;
}

#bodyinpage #banner{
  display:none;
}





/*--------------Index_1-------------*/
#bodyinhome .fcol.fcol-1{
  margin-top:3%;
}

.news-ticker{
    display:flex;
    width:100%;
    background:#fafafa;
    border-top:1px solid #e6e6e6;
    border-bottom:1px solid #e6e6e6;
    font-family:Arial, Helvetica, sans-serif;
}

.ticker-label{
    background:#9cac41;
    color:#fff;
    padding:12px 22px;
    font-weight:600;
    letter-spacing:2px;
    font-size:14px;
    white-space:nowrap;
}

.ticker-wrap{
    flex:1;
    overflow:hidden;
    position:relative;
}

.ticker-move{
    white-space:nowrap;
    padding:12px 0;
    color:#333;
    font-size:15px;
    letter-spacing:1px;
    animation:ticker 20s linear infinite;
}

@keyframes ticker{
    0%{
        transform:translateX(100%);
    }
    100%{
        transform:translateX(-100%);
    }
}



/*----------------Index_2-------------*/
#bodyinhome .fcol.fcol-2 {
  margin-top:5%;
}


#bodyinhome .fcol.fcol-2 .container {
  max-width:100%;
  width:100%;
  padding:0px;
}

#bodyinhome .fcol.fcol-2 .container > *{
   padding-left: 0;
  padding-right: 16px;
}


.hero{
    display:flex;
    align-items:center;
    justify-content: space-between;
    min-height:560px;
    background:transparent;
    margin-bottom:80px;
    flex-wrap:wrap;
    position:relative;
}

/* 右圖左文字 */
.hero-right-img{
    flex-direction: row-reverse;
}

/* Hero 圖片 */
.hero-img{
    flex:1 1 60%;
}
.hero-img img{
    width:100%;
    height:560px;
    object-fit:cover;
    display:block;
}

/* 卡片浮動 */
.hero-card{
    flex:1 1 15%;
    background:#fff;
    padding:45px;
    border-radius:18px;
    box-shadow:0 25px 60px rgba(0,0,0,0.12);
    position:relative;
    z-index:2;
    margin:0 20px;
}

/* 卡片右上角裝飾 */
.card-deco{
    position:absolute;
    top:0;
    right:0;
    width:50px;
    height:50px;
    background:linear-gradient(135deg,#2f9c95,#8dc63f);
    clip-path:polygon(100% 0,0 0,100% 100%);
}

/* 標題 */
.hero-card h2{
    font-size:26px;
    color:#222;
    margin-bottom:10px;
}

/* 底線 */
.hero-line{
    width:70px;
    height:3px;
    background:#2f9c95;
    margin:15px 0 25px;
}

/* 文字 */
.hero-card p{
    font-size:15px;
    color:#555;
    line-height:1.9;
    margin-bottom:18px;
}

/* 光澤按鈕 */
.hero-btn{
    position:relative;
    display:inline-block;
    padding:12px 30px;
    background:#2f9c95;
    color:#fff;
    text-decoration:none;
    border-radius:30px;
    font-size:14px;
    letter-spacing:1px;
    overflow:hidden;
    transition:.3s;
}
.hero-btn::before{
    content:"";
    position:absolute;
    top:0;
    left:-75%;
    width:50%;
    height:100%;
    background:rgba(255,255,255,0.25);
    transform:skewX(-20deg);
    transition:.5s;
}
.hero-btn:hover::before{
    left:125%;
}
.hero-btn:hover{
    background:#257d77;
}

/* 背景點點 */
#bodyinhome .fcol.fcol-2 .hero::after{
    content:"";
    position:absolute;
    left:3%;
    bottom:40px;
    width:220px;
    height:160px;
    background-image:radial-gradient(#dcdcdc 2px, transparent 2px);
    background-size:14px 14px;
    opacity:.6;
}

.hero::after{
    content:"";
    position:absolute;
    right:3%;
    bottom:40px;
    width:220px;
    height:160px;
    background-image:radial-gradient(#dcdcdc 2px, transparent 2px);
    background-size:14px 14px;
    opacity:.6;
}

/* RWD 手機版 */
@media(max-width:900px){
    .hero, .hero-right-img{
        flex-direction:column;
        min-height:auto;
    }
    .hero-img{
        width:100%;
    }
    .hero-img img{
        height:320px;
    }
    .hero-card{
        margin: -60px auto 40px auto;
        max-width:90%;
        padding:30px;
    }
}


.hero-card.hero-card-right{left:8%; }
.hero-card.hero-card-left{ right:8%; left:auto; }

@media(max-width:767px){
 .hero-card.hero-card-right{left:0%;} 
 .hero-card.hero-card-left{ right:0%; left:auto;
 }
}



/* 初始狀態 */
.reveal{
    opacity:0;
    transform:translateY(60px);
    transition: all .9s ease;
}

/* 出現後 */
.reveal.active{
    opacity:1;
    transform:translateY(0);
}

/* 圖片動畫 */
.hero-img{
    transition:all 1s ease;
}

/* 卡片動畫 */
.hero-card{
    transition:all 1s ease .2s;
}




/*----------------Index_3-------------*/

#bodyinhome .fcol.fcol-3{
  background:#efefef;
  position: relative;
  overflow: hidden;
}



#bodyinhome .fcol.fcol-3::before {
    content: "";
    display: block;
    position: absolute;
    right: 0;
    bottom: 0;
    width: 550px;  /* 調整人物顯示寬度 */
    height: 100%;  /* 調整人物顯示高度 */
    background: url(https://static.iyp.tw/409906/files/c54006f7-1d85-47f2-97fe-a086207dfbf0.svg) no-repeat ;
    /*transform:scale(0.8);*/
    opacity:0.5;
    background-size: contain;
    z-index: 1;    /* 確保在底色之上 */
    pointer-events: none; /* 避免擋住文字點擊 */
}




/*----------------Index_4-------------*/
#bodyinhome .fcol.fcol-4 {
  margin-top:5%;
}


#bodyinhome .fcol.fcol-4 .container {
  max-width:100%;
  width:100%;
  padding:0px;
}

#bodyinhome .fcol.fcol-4 .container > *{
  padding-left: 0;
  padding-right: 16px;
}




/*----------------Index_5-------------*/
#bodyinhome .fcol.fcol-5{
  position: relative;
  overflow: hidden;
}


#bodyinhome .fcol.fcol-5::before {
    content: "";
    display: block;
    position: absolute;
    left: 0;
    bottom: 0;
    width: 550px;  /* 調整人物顯示寬度 */
    height: 100%;  /* 調整人物顯示高度 */
    background: url(https://static.iyp.tw/409906/files/1bf6f4bf-45ac-47ef-a570-6c6a0cc5026b.svg) no-repeat ;
    transform:scale(0.8);
    opacity:0.5;
    background-size: contain;
    z-index: 1;    /* 確保在底色之上 */
    pointer-events: none; /* 避免擋住文字點擊 */
}


@media(max-width:767px){
  #bodyinhome .fcol.fcol-5::before {
    transform:scale(0.6);
    opacity:0.1;
  }
}

/* 問題 */
.faq-item summary{
padding:18px 20px 18px 60px;
font-weight:bold;
cursor:pointer;
position:relative;
list-style:none;
}

/* 移除箭頭 */
summary::-webkit-details-marker{
display:none;
}

/* Q icon */
.faq-item summary:before{
content:"Q";
position:absolute;
left:18px;
top:14px;
width:28px;
height:28px;
border-radius:50%;
background:#c5a46d;
color:#fff;
display:flex;
align-items:center;
justify-content:center;
font-size:14px;
font-weight:bold;
}

/* + icon */
.faq-item summary:after{
content:"+";
position:absolute;
right:20px;
font-size:22px;
color:#c5a46d;
transition:.3s;
}

.faq-item[open] summary:after{
content:"−";
}

/* 答案 */
.faq-item p{
padding:0 20px 18px 60px;
color:#666;
line-height:1.8;
}

/* 手機 */
@media(max-width:768px){

.faq-grid{
grid-template-columns:1fr;
}
}









/*--------h1------------*/
.h1title h1{
  display:none;
}



/*--------side------------*/
#side ul li a {
    color: #555;
    display: block;
    padding: 10px 20px;
    transition: .3s;
    border-bottom: 1px dashed #555;
}  


#side ul li a:hover {
  background:rgba(165,180,83,0.85);
  color:#fff;
}



/*--------About------------*/

/* 共用區塊 */
.section{
padding:80px 0px;
max-width:1200px;
margin:auto;
}

h2.about-title{
text-align:center;
font-size:32px;
font-weight:700;
margin-bottom:40px;
color:var(--dark);
position:relative;
}

.about-title:after{
content:"";
width:60px;
height:3px;
background:var(--main);
display:block;
margin:12px auto 0;
}

/* Banner */
.page-banner{
background:linear-gradient(rgba(0,0,0,0.35),rgba(0,0,0,0.35)),
url(https://static.iyp.tw/409906/files/54554482-a68c-4702-b965-ae4fe6dbced1.jpg);
background-size:cover;
background-position:center;
color:#fff;
padding:120px 20px;
text-align:center;
margin-top: -15px;  
}

.page-banner h1{
font-size:42px;
letter-spacing:2px;
}


/* 關於我們 */
.about-box{
max-width:900px;
margin:auto;
text-align:center;
font-size:18px;
}

/* 服務項目 */
.section{
max-width:1100px;
margin:auto;
padding:40px 20px;
}

.about-title{
text-align:center;
font-size:28px;
margin-bottom:40px;
}

.service-grid{
display:flex;
gap:30px;
flex-wrap:wrap;
justify-content:center;
}

.service-card{
width:300px;
background:#fff;
border-radius:10px;
overflow:hidden;
box-shadow:0 8px 20px rgba(0,0,0,0.08);
transition:all .35s ease;
z-index: 2;  
}

.service-card a{
text-decoration:none;
color:inherit;
display:block;
}

.service-img{
overflow:hidden;
}

.service-img img{
width:100%;
display:block;
transition:transform .4s ease;
}

.service-card h3{
text-align:center;
padding:18px;
font-size:18px;
font-weight:600;
}

/* hover效果 */

.service-card:hover{
transform:translateY(-8px);
box-shadow:0 18px 35px rgba(0,0,0,0.15);
}

.service-card:hover img{
transform:scale(1.08);
}

/* 手機版 */

@media (max-width:768px){

.service-grid{
flex-direction:column;
align-items:center;
}

.service-card{
width:90%;
}
}

/* 申辦流程 */
.service-grid2{
display:grid;
grid-template-columns:repeat(3,1fr);
gap:30px;
}

.service-box{
text-align:center;
padding:40px 25px;
background:#fff;
border-radius:10px;
box-shadow:0 8px 20px rgba(0,0,0,0.06);
transition:.3s;
}

.service-box:hover{
transform:translateY(-8px);
}

.service-icon{
width:70px;
height:70px;
margin:auto;
border-radius:50%;
background:#9dac45;
display:flex;
align-items:center;
justify-content:center;
font-size:30px;
color:#fff;
margin-bottom:20px;
}

.service-box h3{
color:#6f7d2f;
margin-bottom:10px;
}

.loan-flow{
display:flex;
align-items:center;
justify-content:center;
flex-wrap:wrap;
gap:10px;
}

.flow-item{
text-align:center;
}

.flow-circle{
width:70px;
height:70px;
border-radius:50%;
background:#9dac45;
color:#fff;
display:flex;
align-items:center;
justify-content:center;
font-size:22px;
font-weight:bold;
margin:auto;
margin-bottom:10px;
}

.flow-item p{
font-weight:600;
color:#444;
font-size: 18px; 
}

.flow-arrow{
font-size:28px;
color:#9dac45;
margin:0 10px;
}

/* 團隊 */
.team-grid{
display:grid;
grid-template-columns:repeat(5,1fr);
gap:20px;
}

.team-card{
background:#fff;
border-radius:10px;
box-shadow:0 4px 15px rgba(0,0,0,0.08);
text-align:center;
padding-bottom:20px;
}

.team-card img{
width:100%;
height:220px;
object-fit:cover;
border-radius:10px 10px 0 0;
}

.team-name{
font-weight:700;
margin-top:12px;
font-size:18px;
}

.team-text{
font-size:14px;
padding:0 15px;
margin:10px 0;
}

.team-contact a{
display:inline-block;
margin:4px;
text-decoration:none;
padding:6px 10px;
border-radius:4px;
font-size:13px;
}

.line{
background:#06C755;
color:#fff;
}

.phone{
background:var(--main);
color:#fff;
}

/* 手機 */
@media(max-width:900px){

.service-grid{
grid-template-columns:1fr;
}

.team-grid{
grid-template-columns:1fr 1fr;
}

.flow{
flex-direction:column;
}
}





/*----------Second-mortgage---------------*/
.loan-intro{
max-width:900px;
margin:auto;
font-size:17px;
line-height:1.6;
color:#444;
}


/*card*/
.loan-info-grid{
display:grid;
grid-template-columns:repeat(3,1fr);
gap:30px;
}

.loan-info-grid2{
display:grid;
grid-template-columns:repeat(2,1fr);
gap:30px;
}

.loan-info{
background:#fff;
padding:30px;
border-radius:10px;
text-align:center;
box-shadow:0 6px 18px rgba(0,0,0,0.06);
}

.info-icon{
font-size:34px;
margin-bottom:15px;
color:#9dac45;
}

.loan-info h3{
color:#6f7d2f;
margin-bottom:10px;
}


@media(max-width:480px){
.loan-info-grid{
display:grid;
grid-template-columns:repeat(1,1fr);
gap:30px;
 }
}

@media(max-width:480px){
.loan-info-grid2{
display:grid;
grid-template-columns:repeat(1,1fr);
gap:30px;
 }
}

/*card2*/
.loan-step-grid{
display:grid;
grid-template-columns:repeat(5,1fr);
gap:20px;
}

.loan-step{
background:#efefef;
padding:25px 12px;
border-radius:10px;
text-align:center;
}

.step-number{
width:45px;
height:45px;
border-radius:50%;
background:#9dac45;
color:#fff;
display:flex;
align-items:center;
justify-content:center;
font-weight:bold;
margin:auto;
margin-bottom:10px;
}

.loan-step h3{
color:#6f7d2f;
margin-bottom:10px;
}

@media(max-width:768px){
.loan-step-grid{
display:grid;
grid-template-columns:repeat(3,1fr);
gap:20px;
 }
}

@media(max-width:600px){
.loan-step-grid{
display:grid;
grid-template-columns:repeat(2,1fr);
gap:20px;
 }
}

@media(max-width:368px){
.loan-step-grid{
display:grid;
grid-template-columns:repeat(1,1fr);
gap:20px;
 }
}



/*------------Second-mortgage---------*/
/* Banner */
.page2-banner{
background:linear-gradient(rgba(0,0,0,0.35),rgba(0,0,0,0.35)),
url(https://static.iyp.tw/409906/files/89a3b1f2-b280-4463-b6e7-03bceee189d4.jpg);
background-size:cover;
background-position:center;
color:#fff;
padding:120px 20px;
text-align:center;
margin-top: -15px;  
}

.page2-banner h1{
font-size:42px;
letter-spacing:2px;
}





/*------------Land-loan---------*/
/* Banner */
.page3-banner{
background:linear-gradient(rgba(0,0,0,0.35),rgba(0,0,0,0.35)),
url(https://static.iyp.tw/409906/files/e57a0dfd-e0d2-4698-abce-1f17bec7a6f4.jpg);
background-size:cover;
background-position:center;
color:#fff;
padding:120px 20px;
text-align:center;
margin-top: -15px;    
}

.page3-banner h1{
font-size:42px;
letter-spacing:2px;
}




/*------------Shared-ownership-loan---------*/
/* Banner */
.page4-banner{
background:linear-gradient(rgba(0,0,0,0.35),rgba(0,0,0,0.35)),
url(https://static.iyp.tw/409906/files/4c4d0e77-d211-4016-8c6d-0a05acd32cdd.jpg);
background-size:cover;
background-position:center;
color:#fff;
padding:120px 20px;
text-align:center;
margin-top: -15px;    
}

.page4-banner h1{
font-size:42px;
letter-spacing:2px;
}



/*------------Service---------*/
/* Banner */
.page5-banner{
background:linear-gradient(rgba(0,0,0,0.35),rgba(0,0,0,0.35)),
url(https://static.iyp.tw/409906/files/6e8db530-5b8a-462b-ab40-5b80b131cd9b.jpg);
background-size:cover;
background-position:center;
color:#fff;
padding:120px 20px;
text-align:center;
margin-top: -15px;    
}

.page5-banner h1{
font-size:42px;
letter-spacing:2px;
}



.loan-page{
max-width:1100px;
margin:auto;
font-family:Arial, Helvetica, sans-serif;
color:#333;
line-height:1.8;
}

.loan-page h2{
font-size:30px;
margin-bottom:10px;
}

.loan-page h3{
border-left:4px solid #c5a46d;
padding-left:12px;
margin-bottom:20px;
}

.loan-intro{
color:#666;
margin-bottom:40px;
}

/* 卡片系統 */

.grid-3{
display:grid;
grid-template-columns:repeat(3,1fr);
gap:25px;
}

.grid-4{
display:grid;
grid-template-columns:repeat(4,1fr);
gap:25px;
text-align:center;
}

.grid-5{
display:grid;
grid-template-columns:repeat(5,1fr);
gap:20px;
text-align:center;
}

.card{
background:#fafafa;
border:1px solid #eee;
padding:25px;
text-align:center;
}

.card h4{
margin-bottom:10px;
}

.card p{
font-size:14px;
color:#666;
}

.step-number{
font-size:28px;
color:#fff;
font-weight:bold;
margin-bottom:10px;
}

.check-icon{
font-size:26px;
margin-bottom:8px;
color:#c5a46d;
}

/* CTA */

.loan-cta{
max-width:1000px;
margin:60px auto;
text-align:center;
background:#faf7f1;
padding:40px;
border:1px solid #eee;
}

.loan-btn{
display:inline-block;
padding:14px 30px;
background:#c5a46d;
color:white;
text-decoration:none;
border-radius:4px;
font-size:16px;
}

/* RWD */

@media (max-width:900px){

.grid-3{
grid-template-columns:repeat(2,1fr);
}

.grid-4{
grid-template-columns:repeat(2,1fr);
}

.grid-5{
grid-template-columns:repeat(3,1fr);
}
}

@media (max-width:600px){
.grid-3,
.grid-4,
.grid-5{
grid-template-columns:1fr;
}
}




/*----------------news----------*/
#bodyinpage.rwd-collapse.viewmode.news.news  .fcol.fcol-2 {
  display:none;
}

@media(max-width:768px){
#news-header .col-md-8{
  flex:0 0 100%;
  max-width: 100%;
 }
}


/*---------------Q&A-------------*/
.faq-section{
max-width:1100px;
margin:80px auto;
padding:0 20px;
font-family:Arial,Helvetica,sans-serif;
}

/* 標題 */
.faq-title{
font-size:30px;
margin-bottom:40px;
text-align:center;
position:relative;
}

.faq-title:after{
content:"";
width:60px;
height:3px;
background:#c5a46d;
display:block;
margin:15px auto 0;
}

/* 兩欄 */
.faq-grid{
display:grid;
grid-template-columns:1fr 1fr;
gap:18px;
}

/* 卡片 */
.faq-item{
border:1px solid #eee;
border-radius:10px;
background:#fff;
transition:.3s;
overflow:hidden;
}

.faq-item:hover{
box-shadow:0 10px 25px rgba(0,0,0,0.08);
}



/*---------------Contact-------------*/
.contact-section{
background:#f5f5f5;
padding:70px 20px;
font-family:Arial, Helvetica, sans-serif;
}

.contact-title{
text-align:center;
font-size:34px;
color:#6d7f2b;
margin-bottom:10px;
}

.contact-line{
width:70px;
height:3px;
background:#6d7f2b;
margin:15px auto 50px;
}

.contact-wrapper{
max-width:1000px;
margin:auto;
display:flex;
gap:60px;
align-items:flex-start;
flex-wrap:wrap;
}

/* 左邊 */
.contact-left{
flex:0.5;
min-width:200px;
}

/* QR卡片 */
.contact-qr-card{
background:#fff;
padding:25px;
border-radius:10px;
box-shadow:0 10px 25px rgba(0,0,0,0.08);
text-align:center;
transition:all .3s ease;
margin-bottom:30px;
}

.contact-qr-card:hover{
transform:translateY(-5px);
box-shadow:0 18px 35px rgba(0,0,0,0.15);
}

.contact-qr-card img{
width:160px;
display:block;
margin:auto;
}

.qr-text{
margin:10px 0 15px;
font-size:14px;
color:#666;
}

/* LINE按鈕 */
.line-btn{
display:inline-block;
background:#06c755;
color:#fff;
padding:10px 20px;
border-radius:25px;
text-decoration:none;
font-size:15px;
transition:all .3s;
}

.line-btn:hover{
background:#05b34b;
}

/* 聯絡資訊 */
.contact-info{
font-size:17px;
line-height:1.6;
}

.info-item{
display:flex;
align-items:center;
margin-bottom:10px;
}

.info-item a{
text-decoration:none;
color:#333;
}

.info-item a:hover{
color:#6d7f2b;
}

.icon{
font-size:20px;
margin-right:10px;
}

/* 右邊：地圖 */
.contact-right{
flex:1;
min-width:300px;
border-radius:10px;
overflow:hidden;
box-shadow:0 10px 25px rgba(0,0,0,0.08);
}

/* 手機版 */
@media (max-width:768px){
.contact-wrapper{
flex-direction:column;
text-align:center;
gap:30px;
}

.contact-left, .contact-right{
width:100%;
}
.contact-info .info-item{
justify-content:center;
}
}


/*footer*/
#footer{
  border-top:6px solid #92ab30;
  color: #fff;
}

#foot-nav{
  display:none;
}

.contact-info p {
  margin: 5px 0;
}

.social-icons a {
  margin-left: 10px;
}

/*icon*/
.contact-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
  border-top: 1px solid #d2b79a; /* Milk tea color border */
  background-color:transparent; /* Light milk tea color */
}

.contact-info {
  max-width: 60%;
}

.contact-info p {
  margin: 5px 0;
}


.fa-brands, .fab {
  font-weight: 400;
  color: #fff;
  font-size: 1.6rem;
}

hr {
  border: 0;
  border-top: 1px solid #d2b79a; /* Light milk tea color for the separator */
  margin: 20px 0;
}

.social-icons a {
  margin-left: 15px;
  font-size:24px;
}

.social-icons img {
  width: 30px;
  height: 30px;
  transition: transform 0.3s;
}

.social-icons img:hover {
  transform: scale(1.1); /* Slight zoom effect on hover */
}




