/* Minified style.css */
:root {
    --brand-green: #8DB750;
    --brand-dark: #333333;
    --text-body: #444444;
    --text-muted: #888888;
    --bg-light: #f9f9f9
}

body {
    font-family: "Microsoft JhengHei", sans-serif;
    background-color: #fff;
    color: var(--text-body)
}

a {
    text-decoration: none;
    color: inherit;
    transition: color .3s
}

img {
    max-width: 100%;
    height: auto
}

.text-brand-green {
    color: var(--brand-green) !important
}

.bg-brand-green {
    background-color: var(--brand-green) !important
}

.btn-black-rect,
.btn-submit-black {
    display: inline-block;
    background-color: #000;
    color: #fff;
    padding: 12px 60px;
    border-radius: 0;
    font-weight: 700;
    text-decoration: none;
    border: none;
    transition: all .3s
}

.btn-black-rect:hover,
.btn-submit-black:hover {
    background-color: var(--brand-green);
    color: #fff
}

.btn-contact-green,
.hero-btn {
    display: inline-block;
    background-color: var(--brand-green);
    color: #fff;
    padding: 12px 35px;
    font-weight: 700;
    text-decoration: none;
    border-radius: 50px;
    transition: all .3s;
    border: none
}

.btn-contact-green:hover,
.hero-btn:hover {
    background-color: var(--brand-dark);
    color: #fff
}

.btn-white-rect {
    display: inline-block;
    background-color: #fff;
    color: #333;
    padding: 10px 40px;
    font-size: .9rem;
    text-decoration: none;
    font-weight: 700;
    letter-spacing: 1px;
    transition: all .3s
}

.btn-white-rect:hover {
    background-color: #f0f0f0;
    color: #000;
    transform: translateY(-2px)
}

.top-bar {
    background-color: var(--brand-green);
    color: #fff;
    text-align: center;
    font-size: .85rem;
    padding: 8px 0;
    letter-spacing: 1px
}

.main-header {
    background: #fff;
    padding: 10px 0;
    border-bottom: 1px solid #eee;
    position: relative;
    z-index: 1000
}

.header-content {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    width: 100%;
    min-height: 50px
}

.header-left {
    display: flex;
    align-items: center;
    justify-content: flex-start
}

.header-center {
    display: flex;
    justify-content: center;
    align-items: center
}

.header-center img {
    display: block
}

.header-right {
    display: flex;
    align-items: center;
    justify-content: flex-end
}

.header-nav {
    display: flex;
    flex-wrap: nowrap;
    align-items: center;
    padding-left: 0;
    margin-bottom: 0
}

.header-nav .nav-item {
    margin-right: 15px;
    position: relative;
    white-space: nowrap;
    font-weight: 500;
    color: #333;
    font-size: .95rem
}

.header-nav .nav-link {
    padding: 8px 10px !important;
    color: #333
}

.header-nav .nav-link:hover {
    color: var(--brand-green)
}

.dropdown-menu {
    border: none;
    box-shadow: 0 5px 15px rgba(0, 0, 0, .1);
    margin-top: 15px
}

.dropdown-header {
    font-size: .95rem;
    font-weight: 800;
    margin-bottom: 10px;
    padding-left: 20px;
    color: var(--brand-green)
}

.dropdown-item {
    padding: 8px 20px;
    color: #555;
    font-size: .95rem
}

.dropdown-item:hover {
    background-color: #f8f9fa;
    color: var(--brand-green);
    padding-left: 25px
}

.dropdown-menu-2col {
    min-width: 500px !important;
    padding: 0
}

.dropdown-menu-normal {
    min-width: 180px;
    padding: 10px 0
}

.header-icons .icon-link {
    color: #333;
    font-size: 1.2rem;
    margin-left: 15px;
    position: relative;
    cursor: pointer;
    background: 0 0;
    border: none;
    padding: 0
}

.header-icons .icon-link:hover {
    color: var(--brand-green)
}

.badge-counter {
    position: absolute;
    top: -5px;
    right: -8px;
    background-color: #000;
    color: #fff;
    font-size: .6rem;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center
}

#searchBar {
    display: none;
    width: 100%;
    background-color: #f8f9fa;
    border-top: 1px solid #eee;
    padding: 15px 0
}

@media (max-width:991px) {
    .header-nav {
        display: none
    }

    .mobile-toggle {
        display: block;
        font-size: 1.5rem;
        cursor: pointer;
        position: relative;
        z-index: 10002;
        background: 0 0;
        border: none;
        padding: 5px;
        color: #333
    }

    .header-left,
    .header-right {
        flex: auto
    }

    .header-center {
        width: 100%
    }

    .dropdown-menu-2col,
    .dropdown-menu-normal {
        min-width: 100% !important;
        box-shadow: none;
        border-left: 2px solid var(--brand-green);
        padding: 10px;
        background-color: #fcfcfc
    }
}

@media (min-width:992px) {
    .mobile-toggle {
        display: none
    }
}

.breadcrumb-section {
    background-color: #f8f8f8;
    padding: 10px 0;
    text-align: center;
    font-size: .9rem;
    color: #888;
    margin-bottom: 30px
}

.breadcrumb-section span {
    margin: 0 8px;
    color: #ccc
}

.breadcrumb-section a:hover {
    color: var(--brand-green)
}

footer {
    background-color: #f9f9f9;
    padding: 60px 0 30px 0;
    color: #444;
    margin-top: auto
}

footer h5 {
    font-weight: 700;
    margin-bottom: 20px;
    font-size: 1.1rem;
    color: #000
}

footer ul {
    padding-left: 0;
    list-style: none
}

footer a:hover {
    color: var(--brand-green)
}

.qr-box {
    background: #fff;
    padding: 10px;
    display: inline-block;
    border: 1px solid #eee;
    margin-bottom: 15px
}

.line-float-wrapper {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 9999;
    display: flex;
    flex-direction: column;
    align-items: center;
    cursor: pointer;
    animation: slideInUp 1s ease-out
}

.line-tooltip {
    background-color: #fff;
    color: #333;
    padding: 8px 15px;
    border-radius: 50px;
    font-size: .9rem;
    font-weight: 700;
    box-shadow: 0 4px 10px rgba(0, 0, 0, .2);
    margin-bottom: 12px;
    position: relative;
    white-space: nowrap
}

.line-tooltip::after {
    content: '';
    position: absolute;
    bottom: -6px;
    left: 50%;
    transform: translateX(-50%);
    border-width: 6px 6px 0;
    border-style: solid;
    border-color: #fff transparent transparent transparent
}

.line-icon-btn {
    width: 60px;
    height: 60px;
    background-color: #00B900;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(0, 185, 0, .4);
    position: relative;
    transition: transform .3s
}

.line-float-wrapper:hover .line-icon-btn {
    animation: none;
    transform: scale(1.1)
}

.line-icon-btn i {
    font-size: 2rem;
    color: #fff;
    z-index: 2
}

.line-icon-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 50%;
    border: 2px solid #00B900;
    z-index: 1
}

.line-modal-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, .6);
    z-index: 10000;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(2px)
}

.line-modal-box {
    background-color: #fff;
    width: 90%;
    max-width: 400px;
    border-radius: 12px;
    padding: 35px 30px;
    text-align: center;
    position: relative;
    box-shadow: 0 20px 40px rgba(0, 0, 0, .4);
    animation: zoomIn .3s cubic-bezier(.175, .885, .32, 1.275)
}

.line-close-btn {
    position: absolute;
    top: 10px;
    right: 15px;
    font-size: 2rem;
    color: #aaa;
    cursor: pointer;
    border: none;
    background: 0 0;
    line-height: 1;
    transition: color .3s
}

.line-close-btn:hover {
    color: #333
}

.line-modal-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 15px
}

.line-modal-text {
    font-size: .95rem;
    color: #666;
    line-height: 1.6;
    margin-bottom: 20px;
    text-align: left
}

.line-modal-qr {
    width: 200px;
    height: 200px;
    margin-bottom: 25px;
    border: 1px solid #eee;
    padding: 5px;
    border-radius: 8px
}

.line-join-link {
    display: inline-block;
    font-size: 1.2rem;
    font-weight: 700;
    color: #fff;
    background-color: #00B900;
    text-decoration: none;
    padding: 10px 40px;
    border-radius: 50px;
    box-shadow: 0 4px 10px rgba(0, 185, 0, .3);
    transition: all .3s
}

.line-join-link:hover {
    background-color: #009900;
    transform: translateY(-3px);
    box-shadow: 0 6px 15px rgba(0, 185, 0, .4)
}

@keyframes slideInUp {
    from {
        transform: translateY(100px);
        opacity: 0
    }

    to {
        transform: translateY(0);
        opacity: 1
    }
}

@keyframes floatBob {

    0%,
    100% {
        transform: translateY(0)
    }

    50% {
        transform: translateY(-8px)
    }
}

@keyframes wiggle {

    0%,
    90% {
        transform: rotate(0deg)
    }

    91% {
        transform: rotate(-10deg)
    }

    93% {
        transform: rotate(10deg)
    }

    95% {
        transform: rotate(-10deg)
    }

    97% {
        transform: rotate(10deg)
    }

    100% {
        transform: rotate(0deg)
    }
}

@keyframes ripple {
    0% {
        transform: scale(1);
        opacity: .6
    }

    100% {
        transform: scale(1.6);
        opacity: 0
    }
}

@keyframes zoomIn {
    from {
        transform: scale(.5);
        opacity: 0
    }

    to {
        transform: scale(1);
        opacity: 1
    }
}