/* About Page Styles */

/* 公司介紹區塊 */
.about-intro-section {
    padding: 80px 0;
    background: #ffffff;
}

.intro-block {
    margin-bottom: 100px;
}

.intro-block:last-child {
    margin-bottom: 0;
}

.intro-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.intro-content.reverse {
    grid-template-columns: 1fr 1fr;
}

.intro-content.reverse .intro-text {
    order: 2;
}

.intro-content.reverse .intro-image {
    order: 1;
}

.intro-text h2 {
    font-size: 36px;
    font-weight: 600;
    color: var(--primary-color);
    margin: 0 0 10px 0;
    line-height: 1.2;
}

.intro-subtitle {
    font-size: 20px;
    color: var(--light-text);
    margin: 0 0 24px 0;
    font-weight: 500;
}

.intro-description p{
    font-size: 16px;
    line-height: 1.8;
    color: var(--text-color);
    margin: 0 0 20px 0;
}

.intro-image {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.intro-image:hover {
    transform: translateY(-5px);
    box-shadow: 0 25px 70px rgba(0, 0, 0, 0.15);
}

.intro-image img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.5s ease;
}

.intro-image:hover img {
    transform: scale(1.05);
}

/* 特色列表 */
.feature-list {
    margin-top: 32px;
}

.feature-item {
    display: flex;
    gap: 20px;
    margin-bottom: 28px;
    align-items: flex-start;
}

.feature-item:last-child {
    margin-bottom: 0;
}

.feature-icon {
    width: 56px;
    height: 56px;
    border-radius: 12px;
    background: linear-gradient(135deg, var(--primary-gold) 0%, var(--gold-dark) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 4px 12px rgba(255, 207, 112, 0.3);
}

.feature-icon .layui-icon {
    font-size: 24px;
    color: #ffffff;
}

.feature-text h4 {
    font-size: 18px;
    font-weight: 600;
    color: var(--primary-color);
    margin: 0 0 8px 0;
}

.feature-text p {
    font-size: 15px;
    line-height: 1.6;
    color: var(--light-text);
    margin: 0;
}

/* 服務網格 */
.service-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    margin-top: 32px;
}

.service-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px 20px;
    background: #f8f9fa;
    border-radius: 12px;
    transition: all 0.3s ease;
    cursor: pointer;
}

.service-item:hover {
    background: var(--primary-gold);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255, 207, 112, 0.3);
}

.service-item .layui-icon {
    font-size: 24px;
    color: var(--primary-color);
}

.service-item:hover .layui-icon {
    color: #ffffff;
}

.service-item:hover .service-icon path {
    fill: #ffffff;
}

.service-item span {
    font-size: 16px;
    font-weight: 500;
    color: var(--primary-color);
}

.service-item:hover span {
    color: #ffffff;
}

/* 服務橫幅區塊 */
.service-banner-section {
    padding: 80px 0;
    background: var(--accent-color);
}

.service-banner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    background: var(--accent-color);
    border-radius: 20px;
    padding: 60px;
}

.banner-image {
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.banner-image img {
    width: 100%;
    height: auto;
    display: block;
}

.banner-content h2 {
    font-size: 36px;
    font-weight: 600;
    color: #ffffff;
    margin: 0 0 10px 0;
    line-height: 1.2;
}

.banner-subtitle {
    font-size: 20px;
    color: #f8f8f8;
    margin: 0 0 24px 0;
    font-weight: 500;
}

.banner-description p{
    font-size: 16px;
    line-height: 1.8;
    color: #e0e0e0;
    margin: 0 0 32px 0;
}

.banner-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
}

.banner-feature {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 16px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    transition: all 0.3s ease;
}

.banner-feature:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.4);
    transform: translateY(-2px);
}

.banner-feature .layui-icon {
    font-size: 20px;
    color: #ffcf70;
}

.banner-feature span {
    font-size: 15px;
    color: #ffffff;
    font-weight: 500;
}

/* 服務範圍區塊 */
.service-coverage-section {
    padding: 80px 0;
    background: #ffffff;
}

.coverage-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.coverage-map {
    position: relative;
}

.map-container {
    width: 100%;
    max-width: 100%;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    background: #ffffff;
}

.map-container svg,
.map-container img {
    width: 100%;
    height: auto;
    display: block;
}

.map-container img {
    object-fit: cover;
    border-radius: 16px;
}

.coverage-content h2 {
    font-size: 36px;
    font-weight: 600;
    color: var(--primary-color);
    margin: 0 0 24px 0;
    line-height: 1.2;
}

.coverage-description p{
    font-size: 16px;
    line-height: 1.8;
    color: var(--text-color);
    margin: 0 0 40px 0;
}

.coverage-description strong {
    color: var(--primary-color);
    font-weight: 600;
}

.service-highlights {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.highlight-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 20px;
    background: #f8f9fa;
    border-radius: 12px;
    transition: all 0.3s ease;
}

.highlight-item:hover {
    background: var(--primary-gold);
    transform: translateX(8px);
}

.highlight-item .layui-icon {
    font-size: 32px;
    color: var(--primary-gold);
    flex-shrink: 0;
}

.highlight-item:hover .layui-icon {
    color: #ffffff;
}

.highlight-item:hover .range-icon path {
    fill: #ffffff;
}

.highlight-text h4 {
    font-size: 18px;
    font-weight: 600;
    color: var(--primary-color);
    margin: 0 0 8px 0;
}

.highlight-item:hover .highlight-text h4 {
    color: #ffffff;
}

.highlight-text p {
    font-size: 14px;
    line-height: 1.6;
    color: var(--light-text);
    margin: 0;
}

.highlight-item:hover .highlight-text p {
    color: rgba(255, 255, 255, 0.9);
}

/* 統計數據區塊 */
.stats-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #000000 0%, #1a1a1a 100%);
    position: relative;
    overflow: hidden;
}

.stats-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 20%, rgba(255, 207, 112, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 70% 80%, rgba(255, 207, 112, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.stats-header {
    text-align: center;
    margin-bottom: 60px;
    position: relative;
    z-index: 2;
}

.stats-header h2 {
    font-size: 36px;
    font-weight: 700;
    color: #ffffff;
    margin: 0 0 16px 0;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.stats-subtitle {
    font-size: 20px;
    color: #f8f8f8;
    margin: 0;
    font-weight: 400;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.stat-item {
    text-align: center;
    padding: 40px 20px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 20px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
}

.stat-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 207, 112, 0.1) 0%, transparent 50%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.stat-item:hover {
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(255, 207, 112, 0.3);
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3), 0 0 20px rgba(255, 207, 112, 0.2);
}

.stat-item:hover::before {
    opacity: 1;
}

.number-wrapper {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 4px;
    margin-bottom: 16px;
    flex-wrap: wrap;
}

.stat-number {
    font-size: 36px;
    font-weight: 800;
    color: #ffcf70;
    line-height: 1;
    text-shadow: 0 2px 8px rgba(255, 207, 112, 0.3);
    transition: all 0.3s ease;
}

.stat-item:hover .stat-number {
    text-shadow: 0 0 20px rgba(255, 207, 112, 0.6);
    transform: scale(1.05);
}

.plus-txt {
    font-size: 36px;
    font-weight: 700;
    color: #ffcf70;
    line-height: 1;
    margin-left: 2px;
}

.unit {
    font-size: 18px;
    font-weight: 600;
    color: #ffffff;
    opacity: 0.9;
    margin-left: 4px;
}

.stat-label {
    font-size: 16px;
    color: #ffffff;
    font-weight: 600;
    margin: 0;
    opacity: 0.95;
    transition: all 0.3s ease;
}

.stat-item:hover .stat-label {
    color: #ffcf70;
    opacity: 1;
}

/* 动画增强样式 */
.stats-animated .stat-item {
    animation: slideInUp 0.6s ease-out forwards;
}

.stats-animated .stat-item:nth-child(1) { animation-delay: 0.1s; }
.stats-animated .stat-item:nth-child(2) { animation-delay: 0.2s; }
.stats-animated .stat-item:nth-child(3) { animation-delay: 0.3s; }
.stats-animated .stat-item:nth-child(4) { animation-delay: 0.4s; }
.stats-animated .stat-item:nth-child(5) { animation-delay: 0.5s; }

@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* 数字动画完成效果 */
.stat-number.animate-complete {
    animation: numberPulse 0.6s ease-out;
}

@keyframes numberPulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.15); }
    100% { transform: scale(1); }
}

/* 客戶評價區塊 */
.testimonial-section {
    padding: 80px 0;
    background: #f8f9fa;
}

.testimonial-header {
    text-align: center;
    margin-bottom: 60px;
}

.testimonial-header h2 {
    font-size: 36px;
    font-weight: 600;
    color: var(--primary-color);
    margin: 0 0 16px 0;
}

.testimonial-subtitle {
    font-size: 20px;
    color: var(--light-text);
    margin: 0;
}

.testimonial-carousel {
    max-width: 1100px;
    margin: 0 auto;
}

.testimonial-card {
    background: #ffffff;
    padding: 32px;
    border-radius: 16px;
    text-align: left;
    border: 1px solid #f0f2f7;
    transition: all 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-4px);
}

.testimonial-top {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 16px;
}

.testimonial-logo {
    width: 32px;
    height: 32px;
    flex-shrink: 0;
}

.testimonial-logo svg {
    width: 100%;
    height: 100%;
}

.testimonial-rating {
    display: flex;
    gap: 2px;
}

.testimonial-rating .layui-icon {
    font-size: 16px;
    color: var(--primary-gold);
}

.testimonial-title {
    font-size: 20px;
    font-weight: 600;
    color: var(--primary-color);
    margin: 0 0 12px 0;
    line-height: 1.3;
}

.testimonial-text {
    font-size: 15px;
    line-height: 1.7;
    color: var(--text-color);
    margin: 0;
}

/* Swiper 樣式 */
.testimonialSwiper .swiper-pagination {
    position: relative;
    margin-top: 40px;
}

.testimonialSwiper .swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    background: var(--primary-gold);
    opacity: 0.3;
}

.testimonialSwiper .swiper-pagination-bullet-active {
    opacity: 1;
}

/* 響應式設計 */
@media (max-width: 1024px) {
    .intro-content,
    .intro-content.reverse,
    .service-banner {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .intro-content.reverse .intro-text,
    .intro-content.reverse .intro-image {
        order: initial;
    }

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

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

    .stats-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 25px;
    }
    
    .stat-item {
        padding: 35px 15px;
    }
    
    .stat-number {
        font-size: 44px;
    }
    
    .plus-txt {
        font-size: 30px;
    }
    
    .unit {
        font-size: 18px;
    }
}

@media (max-width: 768px) {
    .about-intro-section,
    .service-banner-section,
    .service-coverage-section,
    .stats-section,
    .testimonial-section {
        padding: 60px 0;
    }

    .intro-text h2,
    .banner-content h2,
    .coverage-header h2,
    .stats-header h2,
    .testimonial-header h2 {
        font-size: 32px;
    }

    .intro-subtitle,
    .banner-subtitle,
    .coverage-subtitle,
    .stats-subtitle,
    .testimonial-subtitle {
        font-size: 18px;
    }

    .service-banner {
        padding: 40px 30px;
    }

    .service-grid {
        grid-template-columns: 1fr;
    }

    .banner-features {
        grid-template-columns: 1fr;
    }

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

    .coverage-content h2 {
        font-size: 32px;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .stat-item {
        padding: 30px 15px;
    }

    .stat-number {
        font-size: 40px;
    }
    
    .plus-txt {
        font-size: 28px;
    }
    
    .unit {
        font-size: 16px;
    }

    .stat-label {
        font-size: 15px;
    }

    .coverage-description {
        font-size: 15px;
    }

    .highlight-item {
        padding: 16px;
    }

    .highlight-item .layui-icon {
        font-size: 28px;
    }

    .highlight-text h4 {
        font-size: 16px;
    }

    .highlight-text p {
        font-size: 13px;
    }

    .testimonial-card {
        padding: 24px 20px;
    }

    .testimonial-title {
        font-size: 18px;
    }

    .testimonial-text {
        font-size: 14px;
    }

    .testimonial-logo {
        width: 28px;
        height: 28px;
    }

    .testimonial-rating .layui-icon {
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .intro-text h2,
    .banner-content h2,
    .coverage-content h2,
    .stats-header h2,
    .testimonial-header h2 {
        font-size: 28px;
    }

    .service-banner {
        padding: 30px 20px;
    }

    .intro-block {
        margin-bottom: 60px;
    }

    .coverage-layout {
        gap: 30px;
    }

    .coverage-content h2 {
        font-size: 28px;
    }

    .coverage-description {
        font-size: 14px;
    }

    .stats-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .stat-item {
        padding: 25px 15px;
    }

    .stat-number {
        font-size: 36px;
    }
    
    .plus-txt {
        font-size: 24px;
    }
    
    .unit {
        font-size: 14px;
    }

    .stat-label {
        font-size: 14px;
    }

    .highlight-item {
        padding: 14px;
    }

    .highlight-item .layui-icon {
        font-size: 24px;
    }

    .highlight-text h4 {
        font-size: 15px;
    }

    .highlight-text p {
        font-size: 12px;
    }
}

