/* =============================================
   頁面共用樣式
   ============================================= */

/* 關於我們頁面 */
.about-section {
    background: var(--light-gray);
}

.about-content {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 80px;
    align-items: start;
}

.about-text h2 {
    font-size: 36px;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 8px;
}

.about-lead {
    font-size: 20px;
    color: var(--primary);
    font-weight: 500;
    margin-bottom: 24px;
}

.about-text p {
    font-size: 16px;
    color: var(--gray);
    line-height: 1.8;
    margin-bottom: 16px;
}

.about-vision {
    margin-top: 32px;
    padding: 24px;
    background: var(--white);
    border-radius: 16px;
    border-left: 4px solid var(--primary);
}

.about-vision h4 {
    font-size: 16px;
    color: var(--dark);
    margin-bottom: 8px;
}

.about-vision p {
    font-size: 15px;
    color: var(--gray);
    margin-bottom: 0;
}

.about-culture {
    margin-top: 24px;
}

.about-culture h4 {
    font-size: 16px;
    color: var(--dark);
    margin-bottom: 12px;
}

.culture-tags {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.culture-tag {
    padding: 8px 20px;
    background: var(--gradient);
    color: var(--white);
    font-size: 14px;
    font-weight: 500;
    border-radius: 50px;
}

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

.stat-item {
    padding: 40px 32px;
    background: var(--white);
    border-radius: 24px;
    text-align: center;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.06);
    transition: all 0.4s ease;
    border: 1px solid rgba(0, 0, 0, 0.04);
}

.stat-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 60px rgba(10, 186, 181, 0.15);
}

.stat-num {
    display: block;
    font-size: 56px;
    font-weight: 900;
    color: var(--primary);
    line-height: 1;
}

.stat-unit {
    font-size: 24px;
    font-weight: 700;
    color: var(--primary);
}

.stat-label {
    display: block;
    font-size: 15px;
    color: var(--gray);
    margin-top: 10px;
}

/* 產品頁面 */
.products-section {
    background: var(--dark);
    color: var(--white);
}

.products-section .section-header h2,
.products-section .section-header p {
    color: var(--white);
}

.products-section .section-header p {
    color: rgba(255, 255, 255, 0.6);
}

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

.product-card {
    padding: 44px 36px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 28px;
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
}

.product-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient);
    transform: scaleX(0);
    transition: transform 0.5s ease;
}

.product-card:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-12px);
    border-color: rgba(10, 186, 181, 0.4);
    box-shadow: 0 25px 80px rgba(10, 186, 181, 0.2);
}

.product-card:hover::before {
    transform: scaleX(1);
}

.product-main {
    background: linear-gradient(135deg, rgba(10, 186, 181, 0.25) 0%, rgba(10, 186, 181, 0.08) 100%);
    border-color: rgba(10, 186, 181, 0.4);
}

.product-badge {
    position: absolute;
    top: 24px;
    right: 24px;
    padding: 8px 18px;
    background: var(--secondary);
    color: var(--dark);
    font-size: 12px;
    font-weight: 700;
    border-radius: 50px;
}

.product-icon {
    font-size: 56px;
    margin-bottom: 24px;
}

.product-card h3 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 14px;
}

.product-highlight {
    color: var(--secondary);
    font-weight: 700;
    font-size: 16px;
    margin-bottom: 18px;
}

.product-card p {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.75);
    line-height: 1.8;
    margin-bottom: 24px;
}

.product-features {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.product-features li {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.85);
    padding-left: 24px;
    position: relative;
}

.product-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary-light);
    font-weight: bold;
}

/* 團隊頁面 */
.team-section {
    background: var(--white);
}

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

.team-card {
    padding: 48px 40px;
    background: var(--white);
    border-radius: 28px;
    text-align: center;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 1px solid rgba(0, 0, 0, 0.04);
}

.team-card:hover {
    transform: translateY(-14px);
    box-shadow: 0 30px 80px rgba(10, 186, 181, 0.15);
}

.team-avatar {
    width: 100%;
    max-width: 300px;
    height: auto;
    aspect-ratio: 16/9;
    object-fit: cover;
    border-radius: 20px;
    margin-bottom: 24px;
}

.team-card h3 {
    font-size: 24px;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 6px;
}

.team-role {
    display: block;
    font-size: 15px;
    color: var(--primary);
    font-weight: 600;
    margin-bottom: 18px;
}

.team-card p {
    font-size: 15px;
    color: var(--gray);
    line-height: 1.8;
}

/* 門店頁面 */
.stores-section {
    background: linear-gradient(180deg, #0D1B2A 0%, #1B263B 100%);
    color: var(--white);
}

.stores-section .section-header h2,
.stores-section .section-header p {
    color: var(--white);
}

.hongkong-banner {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    margin-bottom: 30px;
}

.hongkong-image {
    width: 100%;
    height: 300px;
    object-fit: cover;
    object-position: top;
    display: block;
}

.hongkong-overlay {
    background: linear-gradient(135deg, rgba(0, 168, 107, 0.1) 0%, rgba(0, 0, 0, 0.3) 100%);
    border-radius: 24px;
    padding: 30px 40px;
    margin-bottom: 40px;
}

.hongkong-overlay p {
    font-size: 18px;
    color: var(--white);
    line-height: 1.8;
    text-align: left;
}

.hongkong-line1 {
    margin-bottom: 8px;
}

.hongkong-overlay strong {
    color: var(--secondary);
    font-size: 28px;
}

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

.store-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 28px;
    padding: 36px 28px;
    text-align: center;
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
}

.store-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary), var(--secondary));
}

.store-card:hover {
    transform: translateY(-12px);
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(10, 186, 181, 0.4);
    box-shadow: 0 30px 80px rgba(10, 186, 181, 0.25);
}

.store-badge {
    display: inline-block;
    padding: 8px 20px;
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    color: var(--white);
    font-size: 13px;
    font-weight: 700;
    border-radius: 50px;
    margin-bottom: 24px;
}

.store-icon {
    font-size: 56px;
    margin-bottom: 20px;
}

.store-card h3 {
    font-size: 22px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 14px;
}

.store-address {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.75);
    line-height: 1.7;
    margin-bottom: 18px;
}

.store-status {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 15px;
    color: var(--primary-light);
    font-weight: 600;
    padding: 10px 24px;
    background: rgba(10, 186, 181, 0.2);
    border-radius: 50px;
}

.status-dot {
    width: 10px;
    height: 10px;
    background: var(--primary-light);
    border-radius: 50%;
    animation: blink 2s infinite;
}

@keyframes blink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.3; }
}

/* 新聞頁面 */
.news-section {
    background: var(--white);
}

.news-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: 36px;
}

.news-card {
    background: var(--white);
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.08);
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.news-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 70px rgba(10, 186, 181, 0.12);
}

.news-main {
    grid-row: span 2;
}

.news-image {
    height: 220px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 70px;
}

.news-main .news-image {
    height: 320px;
}

.news-content {
    padding: 28px;
}

.news-date {
    font-size: 14px;
    color: var(--primary);
    font-weight: 600;
}

.news-content h3 {
    font-size: 20px;
    font-weight: 700;
    color: var(--dark);
    margin: 10px 0 14px;
    line-height: 1.4;
}

.news-main .news-content h3 {
    font-size: 26px;
}

.news-content p {
    font-size: 15px;
    color: var(--gray);
    line-height: 1.8;
    margin-bottom: 18px;
}

.news-link {
    font-size: 15px;
    color: var(--primary);
    font-weight: 600;
}

/* 聯繫頁面 */
.contact-section {
    background: var(--dark);
    color: var(--white);
}

.contact-section .section-header h2 {
    color: var(--white);
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 60px;
}

.contact-item {
    display: flex;
    gap: 20px;
    padding: 24px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    margin-bottom: 20px;
    transition: all 0.3s ease;
}

.contact-item:hover {
    background: rgba(255, 255, 255, 0.1);
}

.contact-icon {
    font-size: 32px;
}

.contact-text h4 {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 4px;
    font-weight: 400;
}

.contact-value {
    font-size: 18px;
    color: var(--white);
    font-weight: 500;
}

a.contact-value:hover {
    color: var(--primary-light);
}

.contact-form-wrapper {
    padding: 40px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 24px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.contact-form-wrapper h3 {
    font-size: 24px;
    margin-bottom: 30px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 16px 20px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 12px;
    color: var(--white);
    font-size: 15px;
    font-family: inherit;
    transition: all 0.3s ease;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: rgba(255, 255, 255, 0.4);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
    background: rgba(255, 255, 255, 0.12);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.btn-block {
    width: 100%;
}

/* 響應式 */
@media (max-width: 1024px) {
    .about-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

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

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

    .news-main {
        grid-row: auto;
    }

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

@media (max-width: 768px) {
    .about-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .about-text h2 {
        font-size: 28px;
    }

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

    .stat-num {
        font-size: 36px;
    }

    .products-grid,
    .team-grid,
    .stores-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .product-card,
    .team-card,
    .store-card {
        padding: 24px 20px;
    }

    .product-card h3,
    .team-card h3,
    .store-card h3 {
        font-size: 18px;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .contact-form-wrapper {
        padding: 24px;
    }

    .hongkong-image {
        height: 200px;
    }

    .hongkong-overlay {
        padding: 20px;
    }

    .hongkong-overlay p {
        font-size: 15px;
    }

    .hongkong-overlay strong {
        font-size: 22px;
    }
}