/* service_style.css */

/* --- Page Header 特殊設定 --- */
/* 因為服務頁不需要 Typed.js 特效，這裡稍微調整 Hero 高度 */
.hero {
    min-height: 80vh; /* 比首頁稍微矮一點 */
}

.hero-subtitle {
    margin-top: 20px;
    font-size: 1.2rem;
    line-height: 1.8;
}

.highlight-text {
    color: var(--accent-color);
    font-weight: 600;
}

body.light-mode .highlight-text {
    color: var(--accent-text-light);
}

/* --- Process Section (流程) --- */
.process-container {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-top: 40px;
}

.process-step {
    display: flex;
    gap: 30px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: 25px;
    border-radius: 12px;
    align-items: center;
    transition: all 0.3s ease, background 0.4s ease, border-color 0.4s ease;
}

.process-step:hover {
    background: rgba(255, 255, 255, 0.04);
    transform: translateX(10px);
    border-left: 4px solid var(--accent-color);
    box-shadow: 0 10px 30px -10px rgba(0, 0, 0, 0.3);
}

.step-number {
    font-size: 1.2rem;
    font-weight: 800;
    color: #000;
    background: var(--accent-color);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.step-content h3 { color: var(--text-primary); margin-bottom: 5px; font-size: 1.2rem; transition: color 0.4s ease; }
.step-content p { color: var(--text-secondary); font-size: 0.95rem; margin: 0; transition: color 0.4s ease; }

/* --- Pricing List (條列式價目表) --- */
.pricing-list-container {
    margin-top: 40px;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.price-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: rgba(255, 255, 255, 0.02);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    padding: 30px;
    border-radius: 8px;
    transition: all 0.3s ease, background 0.4s ease, border-color 0.4s ease;
}

.price-row:hover {
    background: rgba(57, 197, 187, 0.05);
    border-color: var(--accent-color);
    transform: translateY(-5px);
}

.price-info {
    flex: 1;
    padding-right: 20px;
}

.price-info h3 {
    font-size: 1.3rem;
    color: var(--text-primary);
    margin-bottom: 8px;
    transition: color 0.4s ease;
}

.price-info p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    transition: color 0.4s ease;
}

.badge-included {
    display: inline-block;
    font-size: 0.75rem;
    background: rgba(255,255,255,0.1);
    padding: 2px 8px;
    border-radius: 4px;
    margin-top: 8px;
    color: #aaa;
}

.price-amount {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--accent-color);
    text-align: right;
    min-width: 150px;
    font-family: 'Inter', sans-serif;
    transition: color 0.4s ease;
}

body.light-mode .price-amount {
    color: var(--accent-text-light);
}

.price-amount .unit {
    font-size: 0.9rem;
    color: var(--text-secondary);
    font-weight: 400;
}

/* --- Notes Section (升級版樣式) --- */
.notes-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); 
    gap: 30px;
    margin-top: 40px;
}

.note-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: 35px;
    border-radius: 16px;
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.4s ease, background 0.4s ease;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    position: relative;
    overflow: hidden;
}

.note-card:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.04);
    border-color: rgba(57, 197, 187, 0.5);
    box-shadow: 0 10px 30px -10px rgba(0, 0, 0, 0.5);
}

.note-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, var(--accent-color), transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.note-card:hover::before { opacity: 1; }

.note-icon {
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    color: var(--text-secondary);
    transition: all 0.3s ease;
}

.note-icon svg { width: 24px; height: 24px; }

.note-card:hover .note-icon {
    background: var(--accent-color);
    color: #000;
    transform: scale(1.1);
}

.note-card h4 {
    font-size: 1.2rem;
    color: var(--text-primary);
    margin-bottom: 12px;
    font-weight: 600;
    transition: color 0.4s ease;
}

.note-card p {
    font-size: 0.95rem;
    color: var(--text-secondary);
    line-height: 1.6;
    transition: color 0.4s ease;
}

/* --- 淺色主題樣式 --- */
body.light-mode .process-step {
    background: rgba(0, 0, 0, 0.02);
    border: 1px solid rgba(0, 0, 0, 0.05);
}

body.light-mode .process-step:hover {
    background: rgba(0, 0, 0, 0.04);
    box-shadow: 0 10px 30px -10px rgba(0, 0, 0, 0.1);
}

body.light-mode .price-row {
    background: rgba(0, 0, 0, 0.02);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

body.light-mode .price-row:hover {
    background: rgba(57, 197, 187, 0.08);
    box-shadow: 0 5px 15px -5px rgba(0, 0, 0, 0.1);
}

body.light-mode .badge-included {
    background: rgba(0, 0, 0, 0.08);
    color: #666;
}

body.light-mode .note-card {
    background: rgba(0, 0, 0, 0.02);
    border: 1px solid rgba(0, 0, 0, 0.05);
}

body.light-mode .note-card:hover {
    background: rgba(0, 0, 0, 0.04);
    box-shadow: 0 10px 30px -10px rgba(0, 0, 0, 0.15);
}

body.light-mode .note-icon {
    background: rgba(0, 0, 0, 0.05);
}

body.light-mode .note-card:hover .note-icon {
    background: var(--accent-color);
    color: #000;
}

body.light-mode .note-card:hover .note-icon {
    background: var(--accent-text-light);
}

/* --- RWD 響應式 --- */
@media screen and (max-width: 768px) {
    .price-row {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
    }

    .price-amount {
        text-align: left;
        font-size: 1.5rem;
    }

    .price-info { padding-right: 0; }
}