
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    font-family: "PingFang HK", "Microsoft JhengHei", "Heiti TC", "Noto Sans TC", sans-serif;
    line-height: 1.7;
    color: #4a3825;
    background: #fdf8f0;
    -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }

/* ====== HERO ====== */
.hero {
    background: linear-gradient(180deg, #fff6e6 0%, #fdf8f0 100%);
    padding: 20px 15px 30px;
    text-align: center;
}
.hero-inner { max-width: 1000px; margin: 0 auto; }
.hero-banner {
    border-radius: 20px;
    box-shadow: 0 12px 40px rgba(183, 131, 57, 0.25);
    margin: 0 auto 25px;
    overflow: hidden;
    max-width: 900px;
}
.hero-banner img { width: 100%; }
.hero-badge {
    display: inline-block;
    background: linear-gradient(135deg, #c8933c 0%, #e6b260 100%);
    color: #fff;
    padding: 8px 22px;
    border-radius: 30px;
    font-size: 15px;
    font-weight: 600;
    margin-bottom: 15px;
    box-shadow: 0 4px 12px rgba(200, 147, 60, 0.3);
}
.hero h1 {
    font-size: 32px;
    color: #8b5a1e;
    margin-bottom: 12px;
    font-weight: 800;
    letter-spacing: 1px;
}
.hero h1 span { color: #c8933c; }
.hero p.subtitle {
    font-size: 17px;
    color: #6b4e2e;
    max-width: 700px;
    margin: 0 auto 25px;
}

/* ====== CTA BUTTONS ====== */
.cta-wrap {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 15px;
}
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 16px 32px;
    border-radius: 50px;
    font-size: 17px;
    font-weight: 700;
    transition: transform 0.2s, box-shadow 0.2s;
    min-width: 220px;
}
.btn:hover { transform: translateY(-2px); }
.btn-phone {
    background: linear-gradient(135deg, #d99b4a 0%, #b87a2b 100%);
    color: #fff !important;
    box-shadow: 0 6px 18px rgba(184, 122, 43, 0.35);
}
.btn-wa {
    background: linear-gradient(135deg, #25d366 0%, #128c4f 100%);
    color: #fff !important;
    box-shadow: 0 6px 18px rgba(37, 211, 102, 0.35);
}
.btn-icon { font-size: 22px; }

/* ====== 24 HOUR TAG ====== */
.hr-24 {
    background: #fff3dd;
    border: 2px dashed #d99b4a;
    color: #8b5a1e;
    padding: 14px 20px;
    border-radius: 14px;
    margin: 25px auto 0;
    max-width: 700px;
    font-weight: 700;
    font-size: 16px;
}

/* ====== SECTIONS ====== */
section {
    padding: 55px 20px;
    max-width: 1100px;
    margin: 0 auto;
}
.section-title {
    text-align: center;
    font-size: 28px;
    color: #8b5a1e;
    margin-bottom: 15px;
    font-weight: 800;
}
.section-title::after {
    content: "";
    display: block;
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, #d99b4a, #f0c97a);
    margin: 12px auto 0;
    border-radius: 2px;
}
.section-sub {
    text-align: center;
    color: #8a6d4a;
    font-size: 16px;
    margin-bottom: 40px;
    max-width: 720px;
    margin-left: auto;
    margin-right: auto;
}

/* ====== CASE STORY ====== */
.case-box {
    background: #fff;
    border-radius: 20px;
    padding: 35px 25px;
    box-shadow: 0 8px 30px rgba(183, 131, 57, 0.1);
    border: 1px solid #f4e4c5;
}

/* Patient Info Card */
.patient-info {
    background: linear-gradient(135deg, #fff9ed, #fff3dd);
    border-radius: 14px;
    padding: 20px 22px;
    margin-bottom: 28px;
    border-left: 5px solid #c8933c;
}
.patient-info h3 {
    color: #8b5a1e;
    font-size: 18px;
    margin-bottom: 14px;
    font-weight: 800;
}
.patient-info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 12px;
}
.info-item {
    background: #fff;
    padding: 10px 14px;
    border-radius: 10px;
    font-size: 14px;
}
.info-item .label {
    color: #a07840;
    font-size: 12px;
    display: block;
    margin-bottom: 3px;
}
.info-item .value {
    color: #5a4429;
    font-weight: 700;
}

.case-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 25px;
    margin-top: 20px;
}
.case-card {
    background: #fdf6e8;
    border-radius: 16px;
    padding: 25px 20px;
    border-left: 5px solid #d99b4a;
}
.case-card.after {
    background: #f3fbf4;
    border-left-color: #5ca872;
}
.case-card h3 {
    color: #8b5a1e;
    font-size: 20px;
    margin-bottom: 14px;
    font-weight: 800;
}
.case-card.after h3 { color: #3d7a4f; }
.case-card ul {
    list-style: none;
    padding: 0;
}
.case-card ul li {
    padding: 6px 0;
    color: #5a4429;
    font-size: 15px;
}
.case-card ul li::before {
    content: "● ";
    color: #d99b4a;
    margin-right: 6px;
}
.case-card.after ul li::before { content: "✓ "; color: #5ca872; font-weight: 800; }

/* Timeline */
.timeline-section {
    margin-top: 35px;
    padding-top: 30px;
    border-top: 2px dashed #f0c97a;
}
.timeline-section h3 {
    color: #8b5a1e;
    font-size: 22px;
    margin-bottom: 25px;
    text-align: center;
    font-weight: 800;
}
.timeline {
    position: relative;
    padding-left: 30px;
}
.timeline::before {
    content: "";
    position: absolute;
    left: 10px;
    top: 8px;
    bottom: 8px;
    width: 3px;
    background: linear-gradient(180deg, #d99b4a, #5ca872);
    border-radius: 2px;
}
.timeline-item {
    position: relative;
    margin-bottom: 22px;
    padding-left: 20px;
}
.timeline-item::before {
    content: "";
    position: absolute;
    left: -27px;
    top: 6px;
    width: 16px;
    height: 16px;
    background: #d99b4a;
    border-radius: 50%;
    border: 3px solid #fff;
    box-shadow: 0 0 0 2px #d99b4a;
}
.timeline-item:last-child::before {
    background: #5ca872;
    box-shadow: 0 0 0 2px #5ca872;
}
.timeline-date {
    display: inline-block;
    background: #8b5a1e;
    color: #fff;
    padding: 3px 12px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 700;
    margin-bottom: 6px;
}
.timeline-item:last-child .timeline-date { background: #5ca872; }
.timeline-item h4 {
    color: #6b4522;
    font-size: 17px;
    margin: 4px 0 6px;
    font-weight: 700;
}
.timeline-item p {
    color: #6b5838;
    font-size: 15px;
    line-height: 1.65;
}

/* Diagnosis Box */
.diagnosis-box {
    background: #fff5f5;
    border: 1px solid #f4d4d4;
    border-radius: 14px;
    padding: 20px 22px;
    margin: 28px 0 0;
}
.diagnosis-box h4 {
    color: #b54747;
    font-size: 16px;
    margin-bottom: 10px;
    font-weight: 800;
}
.diagnosis-box p {
    color: #6b4a4a;
    font-size: 15px;
    line-height: 1.7;
}
.diagnosis-box .tag {
    display: inline-block;
    background: #fff;
    color: #b54747;
    border: 1px solid #f0c8c8;
    padding: 3px 10px;
    border-radius: 20px;
    font-size: 13px;
    margin: 4px 4px 0 0;
    font-weight: 600;
}

/* Testimonial */
.testimonial {
    background: linear-gradient(135deg, #fff9ed, #fffbf2);
    border-radius: 16px;
    padding: 25px;
    margin-top: 28px;
    border: 1px solid #f4e4c5;
    position: relative;
}
.testimonial::before {
    content: "❝";
    position: absolute;
    top: -8px;
    left: 20px;
    font-size: 60px;
    color: #d99b4a;
    line-height: 1;
    font-family: Georgia, serif;
}
.testimonial p {
    color: #5a4429;
    font-size: 15px;
    line-height: 1.8;
    font-style: italic;
    padding-left: 15px;
}
.testimonial .author {
    margin-top: 12px;
    text-align: right;
    color: #8b5a1e;
    font-weight: 700;
    font-size: 14px;
    font-style: normal;
}

.formula {
    text-align: center;
    background: linear-gradient(135deg, #fff3dd, #ffe8c1);
    padding: 22px;
    border-radius: 14px;
    margin-top: 28px;
    font-size: 18px;
    color: #8b5a1e;
    font-weight: 700;
}
.formula small { display: block; font-size: 14px; margin-top: 6px; color: #a07840; font-weight: 400; }

/* Disclaimer */
.disclaimer {
    margin-top: 20px;
    padding: 12px 16px;
    background: #faf5ea;
    border-radius: 10px;
    color: #8a6d4a;
    font-size: 13px;
    text-align: center;
    border: 1px dashed #e6d3a5;
}

/* ====== SERVICES ====== */
.services {
    background: linear-gradient(180deg, #fdf8f0 0%, #fff3dd 100%);
    max-width: 100%;
}
.services-inner { max-width: 1100px; margin: 0 auto; }
.service-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 18px;
    margin-top: 10px;
}
.service-item {
    background: #fff;
    padding: 22px 18px;
    border-radius: 14px;
    text-align: center;
    box-shadow: 0 4px 18px rgba(183, 131, 57, 0.08);
    border-top: 4px solid #d99b4a;
    transition: transform 0.25s;
}
.service-item:hover { transform: translateY(-4px); }
.service-item .ico { font-size: 34px; margin-bottom: 10px; }
.service-item h4 { color: #8b5a1e; font-size: 17px; margin-bottom: 8px; }
.service-item p { color: #7a5c3a; font-size: 14px; }

/* ====== WHY US ====== */
.why-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 20px;
    margin-top: 10px;
}
.why-item {
    text-align: center;
    padding: 25px 20px;
    background: #fff;
    border-radius: 16px;
    border: 1px solid #f4e4c5;
}
.why-item .big-num {
    font-size: 36px;
    color: #c8933c;
    font-weight: 800;
    display: block;
    margin-bottom: 8px;
}
.why-item h4 { color: #8b5a1e; margin-bottom: 6px; }
.why-item p { color: #7a5c3a; font-size: 15px; }

/* ====== CONTACT / MAP ====== */
.contact {
    background: linear-gradient(180deg, #fff3dd 0%, #fdf8f0 100%);
    max-width: 100%;
}
.contact-inner { max-width: 1100px; margin: 0 auto; }
.map-box {
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 8px 28px rgba(183, 131, 57, 0.15);
    margin-top: 25px;
    border: 3px solid #fff;
}
.map-box iframe {
    width: 100%;
    height: 380px;
    border: 0;
    display: block;
}
.contact-info {
    background: #fff;
    border-radius: 16px;
    padding: 25px;
    margin-top: 25px;
    text-align: center;
    border: 1px solid #f4e4c5;
}
.contact-info p { margin: 8px 0; color: #5a4429; font-size: 16px; }
.contact-info strong { color: #8b5a1e; }

/* ====== FINAL CTA ====== */
.final-cta {
    background: linear-gradient(135deg, #d99b4a 0%, #b87a2b 100%);
    color: #fff;
    text-align: center;
    padding: 55px 20px;
    border-radius: 0;
    max-width: 100%;
    margin: 0;
}
.final-cta h2 { color: #fff; font-size: 28px; margin-bottom: 12px; font-weight: 800; }
.final-cta p { color: #fff8e8; font-size: 17px; margin-bottom: 25px; }
.final-cta .btn-phone { background: #fff; color: #b87a2b !important; }
.final-cta .btn-wa { background: #128c4f; }

/* ====== FLOATING MOBILE CTA ====== */
.mobile-cta {
    position: fixed;
    bottom: 0; left: 0; right: 0;
    display: none;
    z-index: 999;
    box-shadow: 0 -4px 18px rgba(0,0,0,0.15);
}
.mobile-cta a {
    flex: 1;
    text-align: center;
    padding: 14px 5px;
    font-weight: 700;
    font-size: 15px;
    color: #fff !important;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
}
.mobile-cta .m-phone { background: linear-gradient(135deg, #d99b4a, #b87a2b); }
.mobile-cta .m-wa { background: linear-gradient(135deg, #25d366, #128c4f); }

/* ====== RESPONSIVE ====== */
@media (max-width: 768px) {
    .hero { padding: 15px 12px 25px; }
    .hero h1 { font-size: 24px; }
    .hero p.subtitle { font-size: 15px; }
    .hero-badge { font-size: 13px; }
    .section-title { font-size: 22px; }
    .case-grid { grid-template-columns: 1fr; gap: 15px; }
    .case-box { padding: 25px 18px; }
    section { padding: 40px 15px; }
    .btn { min-width: 100%; padding: 14px 20px; font-size: 16px; }
    .cta-wrap { flex-direction: column; align-items: stretch; }
    .final-cta h2 { font-size: 22px; }
    .mobile-cta { display: flex; }
    body { padding-bottom: 60px; }
    .map-box iframe { height: 300px; }
    .formula { font-size: 15px; }
    .timeline-section h3 { font-size: 19px; }
    .timeline-item h4 { font-size: 16px; }
}
