/* ============================================================
   程師父風水命理 - master-koonching.com
   assets/css/style.css — 統一前台樣式表
   從所有現有頁面提取並整合，100% 還原原有設計
   ============================================================ */

/* ============================================================
   CSS 變量
   ============================================================ */
:root {
    --gold:          #D4AF37;
    --gold-light:    #F4E4BC;
    --gold-dark:     #B8960C;
    --black:         #0A0A0A;
    --black-light:   #1A1A1A;
    --black-lighter: #2A2A2A;
    --white:         #FFFFFF;
    --success:       #28A745;
    --error:         #DC3545;
}

/* ============================================================
   Reset & Base
   ============================================================ */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Noto Serif TC', serif;
    background-color: var(--black);
    color: var(--white);
    line-height: 1.8;
    overflow-x: hidden;
}

img {
    max-width: 100%;
    height: auto;
}

a {
    color: inherit;
    text-decoration: none;
}

/* ============================================================
   Header & Navigation
   ============================================================ */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: linear-gradient(180deg, rgba(0,0,0,0.95) 0%, rgba(0,0,0,0.8) 100%);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--gold);
    transition: all 0.3s ease;
}

header.scrolled {
    background: rgba(0,0,0,0.98);
    box-shadow: 0 2px 20px rgba(212, 175, 55, 0.2);
}

nav {
    max-width: 1200px;
    margin: 0 auto;
    padding: 15px 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--gold);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo i {
    font-size: 1.5rem;
}

.logo span {
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 50%, var(--gold) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 40px;
}

.nav-links a {
    color: var(--white);
    text-decoration: none;
    font-size: 1rem;
    font-weight: 500;
    position: relative;
    padding: 5px 0;
    transition: color 0.3s ease;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gold);
    transition: width 0.3s ease;
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--gold);
}

.nav-links a:hover::after,
.nav-links a.active::after {
    width: 100%;
}

.mobile-menu-btn {
    display: none;
    font-size: 1.5rem;
    color: var(--gold);
    cursor: pointer;
    background: none;
    border: none;
}

/* ============================================================
   Hero Carousel (首頁)
   ============================================================ */
.hero {
    position: relative;
    height: 100vh;
    min-height: 600px;
    overflow: hidden;
}

.carousel {
    position: relative;
    width: 100%;
    height: 100%;
}

.carousel-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

.carousel-slide.active {
    opacity: 1;
}

.carousel-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.carousel-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0.4) 50%, rgba(0,0,0,0.7) 100%);
}

.hero-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    z-index: 10;
    width: 90%;
    max-width: 800px;
}

.hero-subtitle {
    font-size: 1.2rem;
    color: var(--gold);
    letter-spacing: 8px;
    margin-bottom: 20px;
    opacity: 0;
    animation: fadeInUp 1s ease 0.3s forwards;
}

.hero-title {
    font-size: 4rem;
    font-weight: 700;
    margin-bottom: 20px;
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 50%, var(--gold) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    opacity: 0;
    animation: fadeInUp 1s ease 0.5s forwards;
}

.hero-desc {
    font-size: 1.3rem;
    color: var(--white);
    margin-bottom: 40px;
    opacity: 0;
    animation: fadeInUp 1s ease 0.7s forwards;
}

.hero-btn {
    display: inline-block;
    padding: 15px 50px;
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
    color: var(--black);
    text-decoration: none;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 50px;
    transition: all 0.3s ease;
    opacity: 0;
    animation: fadeInUp 1s ease 0.9s forwards;
    box-shadow: 0 5px 30px rgba(212, 175, 55, 0.3);
}

.hero-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 40px rgba(212, 175, 55, 0.5);
}

.carousel-nav {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 15px;
    z-index: 10;
}

.carousel-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255,255,255,0.3);
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid var(--gold);
}

.carousel-dot.active {
    background: var(--gold);
    transform: scale(1.2);
}

/* ============================================================
   Page Hero (內頁頂部橫幅)
   ============================================================ */
.page-hero {
    padding: 180px 30px 100px;
    text-align: center;
    background: linear-gradient(135deg, var(--black) 0%, var(--black-light) 50%, var(--black) 100%);
    position: relative;
    overflow: hidden;
}

.page-hero::before {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 30rem;
    color: rgba(212, 175, 55, 0.03);
    pointer-events: none;
    /* content 由各頁面自定義 data-char 屬性設定 */
}

.page-hero h1 {
    font-size: 3rem;
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 50%, var(--gold) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 15px;
    position: relative;
    z-index: 1;
}

.page-hero p {
    font-size: 1.2rem;
    color: rgba(255,255,255,0.7);
    position: relative;
    z-index: 1;
}

/* 各頁面背景大字 */
.page-hero[data-char]::before { content: attr(data-char); }

/* page-hero sub-elements (CMS templates) */
.page-hero-content { position: relative; z-index: 1; }
.page-title  { font-size: 3rem; background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 50%, var(--gold) 100%); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; margin-bottom: 15px; }
.page-subtitle { font-size: 1.2rem; color: rgba(255,255,255,0.7); }

/* CMS content wrapper */
.cms-content { padding: 60px 30px; }
.cms-page-content { background: var(--black); }

/* ============================================================
   Breadcrumb
   ============================================================ */
.breadcrumb {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 20px;
    position: relative;
    z-index: 1;
}

.breadcrumb a {
    color: rgba(255,255,255,0.6);
    text-decoration: none;
    transition: color 0.3s ease;
}

.breadcrumb a:hover {
    color: var(--gold);
}

.breadcrumb span {
    color: var(--gold);
}

/* ============================================================
   Section Headers (通用)
   ============================================================ */
.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header h2 {
    font-size: 2.5rem;
    color: var(--gold);
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
}

.section-header h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: var(--gold);
}

.section-header p {
    color: rgba(255,255,255,0.7);
    font-size: 1.1rem;
    margin-top: 20px;
}

/* ============================================================
   首頁 - 簡介區
   ============================================================ */
.intro {
    padding: 100px 30px;
    background: linear-gradient(180deg, var(--black) 0%, var(--black-light) 100%);
    position: relative;
    overflow: hidden;
}

.intro::before {
    content: '易';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 40rem;
    color: rgba(212, 175, 55, 0.03);
    pointer-events: none;
}

.intro-content {
    max-width: 1000px;
    margin: 0 auto;
    text-align: center;
}

.intro-text {
    font-size: 1.2rem;
    color: rgba(255,255,255,0.85);
    line-height: 2;
    margin-bottom: 40px;
}

.intro-features {
    display: flex;
    justify-content: center;
    gap: 50px;
    flex-wrap: wrap;
}

.intro-feature {
    text-align: center;
}

.intro-feature .number {
    font-size: 3rem;
    font-weight: 700;
    color: var(--gold);
    display: block;
}

.intro-feature .label {
    color: rgba(255,255,255,0.7);
}

/* ============================================================
   首頁 - 服務卡片
   ============================================================ */
.services {
    padding: 100px 30px;
    background: var(--black-light);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.service-card {
    background: linear-gradient(145deg, var(--black-lighter) 0%, var(--black) 100%);
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 15px;
    padding: 40px 30px;
    text-align: center;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
    transform: translateX(-100%);
    transition: transform 0.5s ease;
}

.service-card:hover {
    transform: translateY(-10px);
    border-color: var(--gold);
    box-shadow: 0 20px 60px rgba(212, 175, 55, 0.15);
}

.service-card:hover::before {
    transform: translateX(100%);
}

.service-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 25px;
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--black);
    transition: transform 0.3s ease;
}

.service-card:hover .service-icon {
    transform: rotateY(180deg);
}

.service-card h3 {
    font-size: 1.4rem;
    color: var(--gold);
    margin-bottom: 15px;
}

.service-card p {
    color: rgba(255,255,255,0.7);
    font-size: 0.95rem;
    line-height: 1.8;
}

/* ============================================================
   CTA 區域
   ============================================================ */
.cta {
    padding: 80px 30px;
    background: linear-gradient(135deg, var(--black) 0%, var(--black-light) 50%, var(--black) 100%);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta::before,
.cta::after {
    content: '☯';
    position: absolute;
    font-size: 15rem;
    color: rgba(212, 175, 55, 0.05);
    pointer-events: none;
}

.cta::before { top: -50px; left: -50px; }
.cta::after  { bottom: -50px; right: -50px; }

.cta-content {
    position: relative;
    z-index: 1;
}

.cta h2 {
    font-size: 2.5rem;
    color: var(--gold);
    margin-bottom: 20px;
}

.cta p {
    font-size: 1.2rem;
    color: rgba(255,255,255,0.8);
    margin-bottom: 30px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 15px 40px;
    border-radius: 50px;
    text-decoration: none;
    font-size: 1.1rem;
    font-weight: 600;
    transition: all 0.3s ease;
}

.cta-btn.primary {
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
    color: var(--black);
}

.cta-btn.secondary {
    background: transparent;
    border: 2px solid var(--gold);
    color: var(--gold);
}

.cta-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.3);
}

/* ============================================================
   關於頁面 - 師父簡介
   ============================================================ */
.master-profile {
    padding: 100px 30px;
    background: var(--black-light);
}

.profile-container {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 350px 1fr;
    gap: 60px;
    align-items: start;
}

.profile-image {
    position: relative;
}

.profile-image-wrapper {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    border: 3px solid var(--gold);
    box-shadow: 0 20px 60px rgba(212, 175, 55, 0.2);
}

.profile-image-wrapper::before {
    content: '';
    position: absolute;
    top: -5px; left: -5px; right: -5px; bottom: -5px;
    border: 2px solid rgba(212, 175, 55, 0.3);
    border-radius: 20px;
    z-index: -1;
}

.profile-image img {
    width: 100%;
    height: 450px;
    object-fit: cover;
    display: block;
}

.profile-placeholder {
    width: 100%;
    height: 450px;
    background: linear-gradient(135deg, var(--black-lighter) 0%, var(--black) 100%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: var(--gold);
}

.profile-placeholder i    { font-size: 5rem; margin-bottom: 20px; opacity: 0.5; }
.profile-placeholder span { font-size: 1.5rem; opacity: 0.7; }

.profile-badge {
    position: absolute;
    bottom: -20px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
    color: var(--black);
    padding: 10px 30px;
    border-radius: 30px;
    font-weight: 600;
    font-size: 1rem;
    white-space: nowrap;
    box-shadow: 0 5px 20px rgba(212, 175, 55, 0.4);
}

.profile-content h2    { font-size: 2.2rem; color: var(--gold); margin-bottom: 10px; }
.profile-content .title {
    font-size: 1.1rem;
    color: rgba(255,255,255,0.6);
    margin-bottom: 25px;
    padding-bottom: 25px;
    border-bottom: 1px solid rgba(212, 175, 55, 0.2);
}

.profile-content p {
    font-size: 1.05rem;
    color: rgba(255,255,255,0.85);
    line-height: 2;
    margin-bottom: 20px;
}

.expertise-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 30px;
}

.expertise-tag {
    background: rgba(212, 175, 55, 0.1);
    border: 1px solid var(--gold);
    color: var(--gold);
    padding: 8px 20px;
    border-radius: 25px;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.expertise-tag:hover {
    background: var(--gold);
    color: var(--black);
}

/* ============================================================
   關於頁面 - 服務理念
   ============================================================ */
.philosophy {
    padding: 100px 30px;
    background: var(--black);
    position: relative;
    overflow: hidden;
}

.philosophy::before {
    content: '☯';
    position: absolute;
    top: 50%;
    right: -100px;
    transform: translateY(-50%);
    font-size: 25rem;
    color: rgba(212, 175, 55, 0.03);
    pointer-events: none;
}

.philosophy-grid {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
}

.philosophy-card {
    background: linear-gradient(145deg, var(--black-lighter) 0%, var(--black-light) 100%);
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 15px;
    padding: 40px 30px;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.philosophy-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0;
    width: 4px;
    height: 0;
    background: var(--gold);
    transition: height 0.4s ease;
}

.philosophy-card:hover {
    transform: translateY(-5px);
    border-color: var(--gold);
    box-shadow: 0 15px 50px rgba(212, 175, 55, 0.15);
}

.philosophy-card:hover::before { height: 100%; }

.philosophy-card .icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--black);
    margin-bottom: 20px;
}

.philosophy-card h3 { font-size: 1.3rem; color: var(--gold); margin-bottom: 15px; }
.philosophy-card p  { color: rgba(255,255,255,0.75); font-size: 0.95rem; line-height: 1.9; }

/* ============================================================
   關於頁面 - 專業範疇
   ============================================================ */
.expertise {
    padding: 100px 30px;
    background: var(--black-light);
}

.expertise-container { max-width: 1100px; margin: 0 auto; }

.expertise-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
}

.expertise-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    background: rgba(0,0,0,0.3);
    padding: 25px;
    border-radius: 12px;
    border: 1px solid rgba(212, 175, 55, 0.1);
    transition: all 0.3s ease;
}

.expertise-item:hover {
    border-color: var(--gold);
    background: rgba(212, 175, 55, 0.05);
}

.expertise-item .number {
    width: 45px; height: 45px; min-width: 45px;
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--black);
}

.expertise-item-content h4 { color: var(--gold); font-size: 1.15rem; margin-bottom: 8px; }
.expertise-item-content p  { color: rgba(255,255,255,0.7); font-size: 0.9rem; line-height: 1.7; }

/* ============================================================
   關於頁面 - 價值觀
   ============================================================ */
.values {
    padding: 100px 30px;
    background: linear-gradient(135deg, var(--black) 0%, var(--black-light) 50%, var(--black) 100%);
}

.values-container { max-width: 900px; margin: 0 auto; }

.values-quote {
    text-align: center;
    padding: 50px;
    background: rgba(212, 175, 55, 0.05);
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 20px;
    position: relative;
}

.values-quote::before {
    content: '"';
    font-size: 8rem;
    color: rgba(212, 175, 55, 0.15);
    position: absolute;
    top: -20px;
    left: 30px;
    font-family: Georgia, serif;
    line-height: 1;
}

.values-quote blockquote {
    font-size: 1.5rem;
    color: var(--white);
    font-style: italic;
    line-height: 1.8;
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
}

.values-quote cite { color: var(--gold); font-size: 1.1rem; }

.values-list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 50px;
}

.value-item { text-align: center; padding: 30px 20px; }
.value-item .icon { font-size: 2.5rem; color: var(--gold); margin-bottom: 15px; }
.value-item h4 { color: var(--white); font-size: 1.2rem; margin-bottom: 10px; }
.value-item p  { color: rgba(255,255,255,0.6); font-size: 0.9rem; }

/* ============================================================
   服務頁面 - 概覽
   ============================================================ */
.services-overview {
    padding: 80px 30px;
    background: var(--black-light);
}

.overview-container {
    max-width: 1100px;
    margin: 0 auto;
    text-align: center;
}

.overview-text {
    font-size: 1.15rem;
    color: rgba(255,255,255,0.8);
    line-height: 2;
    max-width: 800px;
    margin: 0 auto 50px;
}

.service-nav {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 15px;
}

.service-nav-btn {
    padding: 12px 30px;
    background: transparent;
    border: 2px solid var(--gold);
    color: var(--gold);
    border-radius: 30px;
    font-size: 1rem;
    font-family: 'Noto Serif TC', serif;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.service-nav-btn:hover,
.service-nav-btn.active {
    background: var(--gold);
    color: var(--black);
}

/* ============================================================
   服務頁面 - 詳細服務
   ============================================================ */
.service-section {
    padding: 100px 30px;
    position: relative;
    overflow: hidden;
}

.service-section:nth-child(odd)  { background: var(--black); }
.service-section:nth-child(even) { background: var(--black-light); }

.service-container {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.service-section:nth-child(even) .service-container             { direction: rtl; }
.service-section:nth-child(even) .service-container > *         { direction: ltr; }

.service-image { position: relative; }

.service-icon-large {
    width: 100%;
    height: 350px;
    background: linear-gradient(145deg, var(--black-lighter) 0%, var(--black) 100%);
    border: 2px solid rgba(212, 175, 55, 0.3);
    border-radius: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.service-icon-large::before {
    content: '';
    position: absolute;
    top: -50%; left: -50%;
    width: 200%; height: 200%;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.1) 0%, transparent 70%);
    animation: rotate 20s linear infinite;
}

.service-icon-large i {
    font-size: 6rem;
    color: var(--gold);
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
}

.service-icon-large .label {
    font-size: 1.5rem;
    color: var(--gold);
    position: relative;
    z-index: 1;
}

.service-number {
    position: absolute;
    top: -20px; left: -20px;
    width: 60px; height: 60px;
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--black);
    box-shadow: 0 5px 20px rgba(212, 175, 55, 0.4);
}

.service-content h2 {
    font-size: 2.2rem;
    color: var(--gold);
    margin-bottom: 20px;
    position: relative;
    display: inline-block;
}

.service-content h2::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 60px;
    height: 3px;
    background: var(--gold);
}

.service-content .desc {
    font-size: 1.05rem;
    color: rgba(255,255,255,0.8);
    line-height: 1.9;
    margin-bottom: 25px;
}

.service-features { list-style: none; margin-bottom: 30px; }

.service-features li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 12px;
    color: rgba(255,255,255,0.75);
    font-size: 0.95rem;
}

.service-features li i { color: var(--gold); margin-top: 5px; min-width: 16px; }

.service-suitable {
    background: rgba(212, 175, 55, 0.08);
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 12px;
    padding: 20px;
    margin-bottom: 25px;
}

.service-suitable h4 {
    color: var(--gold);
    font-size: 1rem;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.service-suitable-tags { display: flex; flex-wrap: wrap; gap: 8px; }

.service-suitable-tags span {
    background: rgba(212, 175, 55, 0.15);
    color: var(--gold-light);
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.85rem;
}

.service-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 30px;
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
    color: var(--black);
    text-decoration: none;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 30px;
    transition: all 0.3s ease;
}

.service-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.4);
}

/* ============================================================
   服務頁面 - 諮詢流程
   ============================================================ */
.process {
    padding: 100px 30px;
    background: linear-gradient(135deg, var(--black) 0%, var(--black-light) 50%, var(--black) 100%);
}

.process-steps {
    max-width: 900px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.process-step { text-align: center; position: relative; }

.process-step::after {
    content: '';
    position: absolute;
    top: 35px; right: -15px;
    width: 30px; height: 2px;
    background: var(--gold);
}

.process-step:last-child::after { display: none; }

.process-step .step-number {
    width: 70px; height: 70px;
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--black);
    margin: 0 auto 20px;
    position: relative;
    z-index: 1;
}

.process-step h4 { color: var(--gold); font-size: 1.1rem; margin-bottom: 10px; }
.process-step p  { color: rgba(255,255,255,0.65); font-size: 0.9rem; }

/* ============================================================
   服務頁面 - FAQ
   ============================================================ */
.faq { padding: 100px 30px; background: var(--black-light); }
.faq-container { max-width: 800px; margin: 0 auto; }

.faq-item {
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 12px;
    margin-bottom: 15px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover { border-color: var(--gold); }

.faq-question {
    width: 100%;
    padding: 20px 25px;
    background: rgba(0,0,0,0.3);
    border: none;
    color: var(--white);
    font-size: 1.05rem;
    font-family: 'Noto Serif TC', serif;
    text-align: left;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
}

.faq-question:hover { background: rgba(212, 175, 55, 0.1); }
.faq-question i { color: var(--gold); transition: transform 0.3s ease; }
.faq-item.active .faq-question i { transform: rotate(180deg); }

.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.3s ease; }
.faq-item.active .faq-answer { max-height: 300px; }

.faq-answer-content {
    padding: 20px 25px;
    color: rgba(255,255,255,0.75);
    font-size: 0.95rem;
    line-height: 1.8;
    border-top: 1px solid rgba(212, 175, 55, 0.1);
}

/* ============================================================
   聯絡頁面 - 佈局
   ============================================================ */
.contact-section {
    padding: 100px 30px;
    background: var(--black-light);
}

.contact-container {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 60px;
}

.contact-info h2 { font-size: 2rem; color: var(--gold); margin-bottom: 15px; }
.contact-info > p { color: rgba(255,255,255,0.75); margin-bottom: 40px; line-height: 1.9; }

.contact-methods { display: flex; flex-direction: column; gap: 25px; margin-bottom: 40px; }

.contact-method {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 25px;
    background: rgba(0,0,0,0.3);
    border: 1px solid rgba(212, 175, 55, 0.15);
    border-radius: 12px;
    transition: all 0.3s ease;
}

.contact-method:hover {
    border-color: var(--gold);
    background: rgba(212, 175, 55, 0.05);
    transform: translateX(5px);
}

.contact-method .icon {
    width: 55px; height: 55px; min-width: 55px;
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    color: var(--black);
}

.contact-method-content h4 { color: var(--gold); font-size: 1.1rem; margin-bottom: 5px; }
.contact-method-content p  { color: rgba(255,255,255,0.8); font-size: 1.1rem; margin-bottom: 5px; }

.contact-method-content a {
    color: var(--gold-light);
    text-decoration: none;
    font-size: 0.9rem;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    transition: color 0.3s ease;
}

.contact-method-content a:hover { color: var(--gold); }

.contact-social { margin-top: 40px; }
.contact-social h4 { color: var(--gold); font-size: 1.1rem; margin-bottom: 20px; }

.social-buttons { display: flex; gap: 15px; }

.social-btn {
    width: 55px; height: 55px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 2px solid;
}

.social-btn.instagram { color: #E4405F; border-color: #E4405F; background: rgba(228,64,95,0.1); }
.social-btn.instagram:hover { background: #E4405F; color: white; transform: translateY(-5px); }

.social-btn.threads { color: var(--white); border-color: var(--white); background: rgba(255,255,255,0.1); }
.social-btn.threads:hover { background: var(--white); color: var(--black); transform: translateY(-5px); }

.social-btn.wechat { color: #07C160; border-color: #07C160; background: rgba(7,193,96,0.1); }
.social-btn.wechat:hover { background: #07C160; color: white; transform: translateY(-5px); }

/* ============================================================
   聯絡頁面 - 辦公時間
   ============================================================ */
.business-hours {
    margin-top: 40px;
    padding: 25px;
    background: rgba(212, 175, 55, 0.08);
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 12px;
}

.business-hours h4 {
    color: var(--gold);
    font-size: 1.1rem;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.hours-list { display: flex; flex-direction: column; gap: 8px; }

.hours-item {
    display: flex;
    justify-content: space-between;
    color: rgba(255,255,255,0.8);
    font-size: 0.95rem;
}

.hours-item .day { color: rgba(255,255,255,0.6); }

.hours-note {
    margin-top: 15px;
    padding-top: 15px;
    border-top: 1px solid rgba(212, 175, 55, 0.15);
    font-size: 0.85rem;
    color: rgba(255,255,255,0.6);
}

/* ============================================================
   聯絡頁面 - 表格
   ============================================================ */
.contact-form-wrapper {
    background: linear-gradient(145deg, var(--black-lighter) 0%, var(--black) 100%);
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 20px;
    padding: 40px;
    position: relative;
    overflow: hidden;
}

.contact-form-wrapper::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--gold), var(--gold-light), var(--gold));
}

.contact-form-wrapper h3 { font-size: 1.5rem; color: var(--gold); margin-bottom: 10px; }
.contact-form-wrapper > p { color: rgba(255,255,255,0.65); margin-bottom: 30px; font-size: 0.95rem; }

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

.form-group label {
    display: block;
    color: var(--gold-light);
    font-size: 0.95rem;
    margin-bottom: 8px;
}

.form-group label .required { color: var(--gold); }

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 15px 20px;
    background: rgba(0,0,0,0.4);
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 10px;
    color: var(--white);
    font-size: 1rem;
    font-family: 'Noto Serif TC', serif;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--gold);
    box-shadow: 0 0 15px rgba(212, 175, 55, 0.2);
}

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

.form-group select {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='%23D4AF37' viewBox='0 0 16 16'%3E%3Cpath d='M8 11L3 6h10l-5 5z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 15px center;
}

.form-group select option { background: var(--black); color: var(--white); }
.form-group textarea { min-height: 150px; resize: vertical; }

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

.submit-btn {
    width: 100%;
    padding: 18px;
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
    color: var(--black);
    border: none;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    font-family: 'Noto Serif TC', serif;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.submit-btn:hover { transform: translateY(-3px); box-shadow: 0 10px 30px rgba(212, 175, 55, 0.4); }
.submit-btn:active { transform: translateY(0); }
.submit-btn:disabled { opacity: 0.7; cursor: not-allowed; transform: none; }

/* 表格訊息 */
.form-message {
    padding: 20px;
    border-radius: 10px;
    margin-bottom: 25px;
    display: flex;
    align-items: center;
    gap: 15px;
    display: none;
}

.form-message.success {
    display: flex;
    background: rgba(40,167,69,0.15);
    border: 1px solid var(--success);
    color: #90EE90;
}

.form-message.error {
    display: flex;
    background: rgba(220,53,69,0.15);
    border: 1px solid var(--error);
    color: #FFB6C1;
}

.form-message i { font-size: 1.5rem; }
.form-message.success i { color: var(--success); }
.form-message.error i   { color: var(--error); }

/* ============================================================
   快速聯絡
   ============================================================ */
.quick-contact {
    padding: 80px 30px;
    background: var(--black);
    text-align: center;
}

.quick-contact-container { max-width: 900px; margin: 0 auto; }

.quick-buttons {
    display: flex;
    justify-content: center;
    gap: 25px;
    flex-wrap: wrap;
}

.quick-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 20px 40px;
    border-radius: 15px;
    text-decoration: none;
    font-size: 1.1rem;
    font-weight: 600;
    transition: all 0.3s ease;
    min-width: 220px;
    justify-content: center;
}

.quick-btn i { font-size: 1.4rem; }

.quick-btn.whatsapp { background: linear-gradient(135deg, #25D366 0%, #128C7E 100%); color: white; }
.quick-btn.phone    { background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%); color: var(--black); }
.quick-btn.wechat   { background: linear-gradient(135deg, #07C160 0%, #059942 100%); color: white; }

.quick-btn:hover { transform: translateY(-5px); box-shadow: 0 15px 40px rgba(0,0,0,0.3); }

/* ============================================================
   注意事項
   ============================================================ */
.notice-section { padding: 60px 30px; background: var(--black-light); }
.notice-container { max-width: 900px; margin: 0 auto; }

.notice-box {
    background: rgba(212, 175, 55, 0.08);
    border: 1px solid rgba(212, 175, 55, 0.25);
    border-radius: 15px;
    padding: 35px;
}

.notice-box h3 {
    color: var(--gold);
    font-size: 1.3rem;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.notice-list { list-style: none; }

.notice-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    color: rgba(255,255,255,0.8);
    margin-bottom: 15px;
    font-size: 0.95rem;
    line-height: 1.7;
}

.notice-list li:last-child { margin-bottom: 0; }
.notice-list li i { color: var(--gold); margin-top: 5px; min-width: 16px; }

/* ============================================================
   Blog 列表
   ============================================================ */
.blog-section { padding: 80px 30px; background: var(--black-light); }

.blog-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
    gap: 35px;
}

.blog-card {
    background: linear-gradient(145deg, var(--black-lighter) 0%, var(--black) 100%);
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 15px;
    overflow: hidden;
    transition: all 0.4s ease;
}

.blog-card:hover {
    transform: translateY(-8px);
    border-color: var(--gold);
    box-shadow: 0 20px 60px rgba(212, 175, 55, 0.15);
}

.blog-card-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    display: block;
}

.blog-card-image-placeholder {
    width: 100%;
    height: 200px;
    background: linear-gradient(135deg, var(--black-lighter) 0%, var(--black-light) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    color: rgba(212, 175, 55, 0.3);
}

.blog-card-body { padding: 25px; }

.blog-card-meta {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 12px;
    font-size: 0.85rem;
    color: rgba(255,255,255,0.5);
}

.blog-card-meta .category {
    background: rgba(212, 175, 55, 0.15);
    color: var(--gold);
    padding: 3px 12px;
    border-radius: 20px;
}

.blog-card h3 {
    font-size: 1.2rem;
    color: var(--white);
    margin-bottom: 12px;
    line-height: 1.5;
    transition: color 0.3s ease;
}

.blog-card:hover h3 { color: var(--gold); }

.blog-card p {
    color: rgba(255,255,255,0.65);
    font-size: 0.9rem;
    line-height: 1.7;
    margin-bottom: 20px;
}

.blog-read-more {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--gold);
    font-size: 0.9rem;
    text-decoration: none;
    transition: gap 0.3s ease;
}

.blog-card:hover .blog-read-more { gap: 14px; }

/* Blog card — additional classes used in blog.php / index.php */
.blog-card-img {
    width: 100%; height: 200px; overflow: hidden;
}
.blog-card-img img {
    width: 100%; height: 100%; object-fit: cover; display: block;
    transition: transform 0.4s ease;
}
.blog-card:hover .blog-card-img img { transform: scale(1.05); }

.blog-card-title { font-size: 1.15rem; color: var(--white); margin-bottom: 10px; line-height: 1.5; transition: color 0.3s; }
.blog-card:hover .blog-card-title { color: var(--gold); }

.blog-card-excerpt { color: rgba(255,255,255,0.6); font-size: 0.9rem; line-height: 1.7; margin-bottom: 18px; }

.blog-category {
    display: inline-block;
    background: rgba(212,175,55,0.15);
    color: var(--gold);
    padding: 3px 12px;
    border-radius: 20px;
    font-size: 0.82rem;
    margin-bottom: 10px;
    text-decoration: none;
}
.blog-category:hover { background: rgba(212,175,55,0.3); }

.blog-card-meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    font-size: 0.85rem;
    color: rgba(255,255,255,0.45);
}

/* Blog 單篇 */
.blog-post-section { padding: 80px 30px; background: var(--black-light); }

.blog-post-container { max-width: 800px; margin: 0 auto; }

.blog-post-header { margin-bottom: 40px; }

.blog-post-meta {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 20px;
    font-size: 0.9rem;
    color: rgba(255,255,255,0.5);
    flex-wrap: wrap;
}

.blog-post-title {
    font-size: 2.2rem;
    color: var(--gold);
    line-height: 1.4;
    margin-bottom: 20px;
}

.blog-post-content {
    color: rgba(255,255,255,0.85);
    line-height: 1.9;
    font-size: 1.05rem;
}

.blog-post-content h2 { color: var(--gold); font-size: 1.6rem; margin: 35px 0 15px; }
.blog-post-content h3 { color: var(--gold-light); font-size: 1.3rem; margin: 25px 0 12px; }
.blog-post-content p  { margin-bottom: 20px; }
.blog-post-content ul,
.blog-post-content ol { margin: 0 0 20px 25px; }
.blog-post-content li { margin-bottom: 8px; }
.blog-post-content img { max-width: 100%; border-radius: 10px; margin: 20px 0; }
.blog-post-content blockquote {
    border-left: 4px solid var(--gold);
    padding: 15px 25px;
    margin: 25px 0;
    background: rgba(212, 175, 55, 0.05);
    font-style: italic;
    color: rgba(255,255,255,0.75);
}

/* 分頁 */
.pagination { margin-top: 60px; text-align: center; }

.pagination-list {
    display: inline-flex;
    gap: 10px;
    list-style: none;
    flex-wrap: wrap;
    justify-content: center;
}

.pagination-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 18px;
    background: var(--black-lighter);
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 8px;
    color: rgba(255,255,255,0.7);
    text-decoration: none;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.pagination-btn:hover,
.pagination-btn.active {
    background: var(--gold);
    color: var(--black);
    border-color: var(--gold);
}

/* ============================================================
   Footer
   ============================================================ */
footer {
    background: var(--black);
    border-top: 1px solid rgba(212, 175, 55, 0.3);
    padding: 60px 30px 30px;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 50px;
}

.footer-section h4 {
    color: var(--gold);
    font-size: 1.3rem;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
}

.footer-section h4::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0;
    width: 40px; height: 2px;
    background: var(--gold);
}

.footer-section p,
.footer-section a {
    color: rgba(255,255,255,0.7);
    line-height: 2;
    text-decoration: none;
    display: block;
    transition: color 0.3s ease;
}

.footer-section a:hover { color: var(--gold); }

.footer-contact {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
}

.footer-contact i { color: var(--gold); width: 20px; }

.social-links {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.social-links a {
    width: 45px; height: 45px;
    background: rgba(212, 175, 55, 0.1);
    border: 1px solid var(--gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    font-size: 1.3rem;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: var(--gold);
    color: var(--black);
    transform: translateY(-5px);
}

/* Threads SVG icon */
svg.icon-gold {
    width: 22px;
    height: 22px;
    filter: invert(71%) sepia(34%) saturate(448%) hue-rotate(7deg) brightness(92%) contrast(88%);
}

.social-links a:hover svg.icon-gold { filter: invert(0%) brightness(0%); }

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    margin-top: 30px;
    border-top: 1px solid rgba(212, 175, 55, 0.1);
    color: rgba(255,255,255,0.5);
    font-size: 0.9rem;
    line-height: 2;
}

.footer-bottom a { color: rgba(255,255,255,0.5); text-decoration: none; }
.footer-bottom a:hover { color: var(--gold); }

/* ============================================================
   WhatsApp 浮動按鈕
   ============================================================ */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 2rem;
    text-decoration: none;
    box-shadow: 0 5px 30px rgba(37, 211, 102, 0.4);
    z-index: 999;
    transition: all 0.3s ease;
    animation: pulse 2s infinite;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 10px 40px rgba(37, 211, 102, 0.6);
}

/* ============================================================
   動畫
   ============================================================ */
@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(30px); }
    to   { opacity: 1; transform: translateY(0); }
}

@keyframes pulse {
    0%, 100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.4); }
    50%       { box-shadow: 0 0 0 15px rgba(37, 211, 102, 0); }
}

@keyframes rotate {
    from { transform: rotate(0deg); }
    to   { transform: rotate(360deg); }
}

/* 滾動淡入動畫 */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ============================================================
   響應式設計
   ============================================================ */
@media (max-width: 1024px) {
    .profile-container { grid-template-columns: 280px 1fr; gap: 40px; }
}

@media (max-width: 900px) {
    .profile-container  { grid-template-columns: 1fr; gap: 50px; }
    .profile-image      { max-width: 350px; margin: 0 auto; }
    .values-list        { grid-template-columns: 1fr; }
    .service-container  { grid-template-columns: 1fr; gap: 40px; }
    .service-section:nth-child(even) .service-container { direction: ltr; }
    .process-steps      { grid-template-columns: repeat(2, 1fr); }
    .process-step::after{ display: none; }
    .contact-container  { grid-template-columns: 1fr; gap: 50px; }
    .form-row           { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
    .nav-links {
        position: fixed;
        top: 70px; left: 0;
        width: 100%;
        background: rgba(0,0,0,0.98);
        flex-direction: column;
        align-items: center;
        padding: 30px 0;
        gap: 20px;
        transform: translateY(-150%);
        transition: transform 0.3s ease;
        z-index: 999;
    }

    .nav-links.active       { transform: translateY(0); }
    .mobile-menu-btn        { display: block; }

    .hero-title             { font-size: 2.5rem; }
    .hero-subtitle          { font-size: 1rem; letter-spacing: 4px; }
    .hero-desc              { font-size: 1rem; }

    .page-hero h1           { font-size: 2rem; }
    .page-hero              { padding: 150px 20px 80px; }

    .section-header h2      { font-size: 1.8rem; }
    .cta h2                 { font-size: 1.8rem; }
    .intro-features         { gap: 30px; }
    .service-content h2     { font-size: 1.8rem; }
    .blog-post-title        { font-size: 1.6rem; }
    .values-quote           { padding: 30px 20px; }
    .values-quote blockquote{ font-size: 1.1rem; }
    .process-steps          { grid-template-columns: 1fr; }
    .service-nav            { gap: 10px; }
    .service-nav-btn        { padding: 10px 20px; font-size: 0.9rem; }
    .blog-grid              { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
    nav                     { padding: 15px 20px; }
    .logo                   { font-size: 1.4rem; }
    .cta-buttons            { flex-direction: column; align-items: center; }
    .quick-btn              { min-width: unset; width: 100%; max-width: 300px; }
    .hero-title             { font-size: 2rem; }
}
