
a{
    text-decoration: none;
}
.region-content .basic-page .content .basic-title-page h1{
    color: #ffffff !important;
}
.sub_title{
    font-size: 20px;
}

.mobile-display{
    display: none;
}
.desktop-display{
    display: block;
}

.light-green{
    color: #288719;
}
.medium-green{
    color: #006e18;
}
.dark-green{
    color: #004600;
}

/* two columns style */
.ghg-section,
.sustainable-living-content{
    display: flex;
    align-items: center;
    gap: 50px;
    flex-direction: row;
}
.ghg-text,
.ghg-image,
.sustainable-living-text,
.sustainable-living-image{
    width: 50%;
}

.ghg-image img{
    width: 100%;
    height: auto;
}
.sustainable-living-image img{
    width: 100%;
    object-fit: cover;
    object-position: center;
}


/* Net Zero Commitment Section */
.net-zero-content p{
    text-align: left;
}
.net-zero-img{
    margin: 80px auto;
    text-align: center;
}


/* Stats Section */
.stats-section {
    background: #e0f2cc;
}
.stats-section .section_title{
    text-align: center;
}

.stats-grid{
    display: flex;
    justify-content: space-between;
    flex-direction: row;
    gap: 15px;
    margin-top: 40px;
}
.stat-card{
    padding: 30px;
    flex: 1;
    height: 350px;
    display: flex;
    align-items: flex-start;
    flex-direction: column;
    justify-content: center;
}
.stat-number{
    font-size: 90px;
  color: #fff;
  line-height: 1;
}
.stat-number .percent{
    font-size: 24px;
    font-weight: 600;
}
.stat-text{
    font-size: 20px;
    font-weight: 500;
    margin: 0;
}

.stat-card.blue {
    background: #288719;
    color: #ffffff;
}

.stat-card.teal {
    background: #006e18;
    color: #ffffff;
}

.stat-card.green {
    background: #004600;
    color: #ffffff;
}

.stat-icon {
    margin-bottom: 20px;
    width: 120px;
}

.stat-number {
    margin-bottom: 10px;
}

/* Value Chain Section */
.value-chain-content p{
    text-align: left;
}
.value-chain-content .section_title{
    text-align: center;
}

.value-chain-img {
    text-align: center;
    margin: 80px auto;
    position: relative;
    width: 885px;
}

.value-chain-img img {
    width: 100%;
    height: auto;
}

.pulse-anime {
    position: absolute;
    border-radius: 100%;
    border: 3.5px solid;
    width: 34px;
    height: 34px;
    line-height: 24px;
    font-size: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    background-color: rgba(255, 255, 255, 0.9);
}

.pulse-anime:hover {
    transform: scale(1.1);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.pulse-anime.left {
    border-color: #006e18;
    color: #006e18;
    top: 25%;
    left: 14%;
}

.pulse-anime.right {
    border-color: #288719;
    color: #288719;
    top: 2%;
    right: 8%;
}

.pulse-anime.center {
    border-color: #004600;
    color: #004600;
    top: 64%;
    left: 54%;
    transform: translate(-50%, -50%);
}

.pulse-anime.center:hover {
    transform: translate(-50%, -50%) scale(1.1);
}

/* Tooltip*/
.tooltip-text {
    position: absolute;
    bottom: 100%;
    left: 50%;
    transform: translateX(-50%);
    background-color: rgba(0, 0, 0, 0.8);
    color: #ffffff;
    padding: 12px 16px;
    border-radius: 6px;
    font-size: 12px;
    /* #ffffff-space: pre-line; */
    text-align: left;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s, visibility 0.3s;
    z-index: 1000;
    pointer-events: none;
    min-width: 300px;
    line-height: 1.5;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}
.tooltip-text ul, 
.tooltip-text li{
    margin: 0;
    padding: 0 0 0 10px;
}

.tooltip-text::before {
    content: '';
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    border: 6px solid transparent;
    border-top-color: rgba(0, 0, 0, 0.8);
}

.pulse-anime:hover .tooltip-text {
    opacity: 1;
    visibility: visible;
}

/* 脈衝動畫效果 */
@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(29, 140, 61, 0.7);
    }
    70% {
        box-shadow: 0 0 0 10px rgba(29, 140, 61, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(29, 140, 61, 0);
    }
}

@keyframes pulse-blue {
    0% {
        box-shadow: 0 0 0 0 rgba(2, 142, 204, 0.7);
    }
    70% {
        box-shadow: 0 0 0 10px rgba(2, 142, 204, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(2, 142, 204, 0);
    }
}

@keyframes pulse-dark-green {
    0% {
        box-shadow: 0 0 0 0 rgba(0, 73, 30, 0.7);
    }
    70% {
        box-shadow: 0 0 0 10px rgba(0, 73, 30, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(0, 73, 30, 0);
    }
}

.pulse-anime.left {
    animation: pulse 2s infinite;
}

.pulse-anime.right {
    animation: pulse-blue 2s infinite;
}

.pulse-anime.center {
    animation: pulse-dark-green 2s infinite;
}

/* mobile display */
.synergy-box{
    padding: 1em 0 0 0;
}
.synergy-box ul{
    padding-left: 40px !important;
    margin-top: 1em;
}
.synergy-box.border-light-green{
    border-top: solid 1px #288719;
}
.synergy-box.border-medium-green{
    border-top: solid 1px #006e18;
}
.synergy-box.border-dark-green{
    border-top: solid 1px #004600;
}
.synergy-box .block-title{
    display: flex;
    align-items: center;
}
.synergy-box .block-title>div{
    padding: 10px;
}

.synergy-box .block-title .text01{
    margin: 3px 0;
    font-size: 18px;
    line-height: 1;
}
.synergy-box .block-title .text02{
    margin: 3px 0;
    font-size: 24px;
    font-weight: 600;
    line-height: 1.2;

}
.synergy-box .block-title .text03{
    margin: 3px 0;
    font-size: 15px;
    line-height: 1;
    color: #404040;
}

/* Initiatives Section */
.initiatives-section {
    background: #e0f2cc;
}

.initiatives-logos {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
    margin: 30px 0 10px 0;
    flex-wrap: wrap;
}

.logo-item {
    padding: 20px;
}

/* GHG Emissions Section */
.chart-content{
    width: 60%;
}
.ghg-image{
    display: flex;
    justify-content: center;
}

/* Energy Management Section */
.energy-section {
    background: #efefef;
}

.d-flex{
    display: flex;
}
.energy-content .border-line-dotted{
    border-bottom: 2px dotted #000;
    width: 100%;
}
.energy-content .col{
    flex: 1 0 0;
}
.energy-content .border-header .col{
    width: 100%;
    color: #ffffff;
    font-size: 24px;
    padding: 10px 0;
    text-align: center;
}
.energy-content .border-header .col:first-child{
    border-radius: 20px 0 0 20px;
}
.energy-content .border-header .col:last-child{
    border-radius: 0 20px 20px 0;
}
.energy-content .col.bg-color2024{
    background: #278719;
    padding: 5px 0;
}
.energy-content .col.bg-color2027{
    background: #006e18;
    padding: 5px 0;
}
.energy-content .col.bg-color2030{
    background: #004600;
    padding: 5px 0;
}
.green-design-timeline{
    text-align: right;
}
.green-design-canvas{
    margin-top: 40px;
}
.green-design-canvas ul{
    padding-left: 20px;
    margin: 0;
}
.green-design-canvas ul li{
    list-style-type:disc;
    text-align: left;
    padding-top: 20px;
    padding-bottom: 20px;
}
.green-design-canvas .years{
    text-align: left;
    font-size: 30px;
    margin-top: 5px;
    font-weight: 600;
}
.green-design-canvas .years .text1{
    color: #278719;
}
.green-design-canvas .years .text2{
    color: #006e18;
}
.green-design-canvas .years .text3{
    color: #004600;
}
.green-design-timeline{
    margin-top: 2%;
}
.green-design-timeline .col img{
    width: 18%;
}


/* Product Sustainability Section */
.product-sustainability-section,
.supply-chain-section {
    padding: 100px 0;
    background-size: cover;
    background-repeat: no-repeat;
}
.product-sustainability-section .container_wrap{
    display: flex;
    justify-content: flex-start;
}
.supply-chain-section .container_wrap{
    display: flex;
    justify-content: flex-end;
}
.product-sustainability-content,
.supply-chain-content {
    width: 42%;
    text-align: left;
}
.product-sustainability-section{
    min-height: 500px;
    background-image:url('/sites/zyxel/files/library/assets/esg/environmental_protection/02_Product_sustainability_1920x975.jpg');
    background-position: bottom;
    display: flex;
    align-items: center;
}
/* Supply Chain Section */
.supply-chain-section {
    min-height: 500px;
    background-image: url('/sites/zyxel/files/library/assets/esg/environmental_protection/03_Supply_chain_1920x975.jpg');
    background-position: center;
    color: #ffffff;
    display: flex;
    align-items: center;
}
.supply-chain-content .btn{
    font-weight: bold;
}

/* Sustainable Living Section */


/* Responsive Design */
@media screen and (max-width: 992px){
    .value-chain-img{
        width: 600px;
    }
    .pulse-anime:hover .tooltip-text{
        min-width: 250px;
    }
    .stat-card{
        padding: 15px;
    }
    .stat-number{
        font-size: 80px;
    }
    .stat-icon{
        width: 100px;
    }
    .stat-text{
        font-size: 18px;
    }
}
@media screen and (max-width: 800px){
    .value-chain-img{
        width: 600px;
    }
    .pulse-anime:hover .tooltip-text{
        min-width: 200px;
    }
}
@media (max-width: 768px) {
    /* section padding */
    section.section{
        padding-top: 30px;
        padding-bottom: 30px;
    }
    .stats-grid{
        margin-top: 20px;
        gap: 20px;
        flex-direction: column;
    }
    .stat-card{
        padding: 20px;
    }
    .stat-icon{
        margin-bottom: 10px;
    }
    
    .sustainable-living-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .mobile-display{
        display: block;
        margin: 40px 0 20px 0;
    }
    .desktop-display{
        display: none;
    }
    .value-chain-content .section_title{
        text-align: left;
    }
    .ghg-section, 
    .sustainable-living-content{
        flex-direction: column;
    }
    .ghg-text, .ghg-image, .sustainable-living-text, .sustainable-living-image{
        width: 100%;
    }
    .green-design-timeline .col img{
        width: 25%;
    }
    .product-sustainability-content, .supply-chain-content{
        width: 100%;
    }
    .product-sustainability-section{
        min-height: 300px;
        background-image: url('/sites/zyxel/files/library/assets/esg/environmental_protection/02_Product_sustainability_768x810.jpg');
    }
    .supply-chain-section{
        min-height: 400px;
        background-image: url('/sites/zyxel/files/library/assets/esg/environmental_protection/03_Supply_chain_768x810.jpg');
    }

}
@media screen and (max-width: 640px){
    .supply-chain-section{
        align-items: flex-start;
    }
}

@media (max-width: 480px) {
    .stat-number {
        font-size: 48px;
    }
    .green-design-timeline .col img{
        width: 40%;
    }
    .logo-item{
        padding: 5px;
    }
    .logo-item img{
        max-width: 80%;
    }
    .green-design-canvas{
        overflow-x: scroll;
    }
    .energy-content .border-header .col{
        font-size: 16px;
    }
}
