/**
 * Empty Theme - Main Stylesheet (重构版)
 * 三个断点：PC端(桌面) / 平板端(992px以下) / 手机端(768px以下)
 */

/* =CSS Variables
-------------------------------------------------------------- */
@import url("https://fonts.googleapis.com/css2?family=Noto+Serif+HK:wght@400;700&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Inter:wght@400;500;700&display=swap");

:root {
    --primary: #d4a373;
    --primary-hover: #c29365;
    --secondary: #c89f7a;
    --accent: #d98a82;
    --accent-hover: #c47a73;
    --background: #fdfbf7;
    --sage: #a3b18a;
    --text-main: #2d3748;
    --text-gray: #718096;
    --text-light: #a0aec0;
    --white-60: rgba(255, 255, 255, 0.6);
    --white-80: rgba(255, 255, 255, 0.8);
    --border-color: rgba(0, 0, 0, 0.05);
    --section-padding-y: 5rem;
    --max-width-container: 1400px;
    --text-color: var(--text-main);
    --heading-font: "Noto Serif HK", serif;
    --body-font: "Inter", system-ui, sans-serif;
}

/* =Reset
-------------------------------------------------------------- */
*,*::before,*::after { box-sizing: border-box; margin: 0; padding: 0; }
html { font-size: 16px; scroll-behavior: smooth; }
body {
    background-color: var(--background);
    color: var(--text-main);
    font-size: 18px;
    font-family: var(--body-font);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    position: relative;
    overflow-x: hidden;
}
h1,h2,h3,h4,h5,h6,.font-serif {
    font-family: var(--heading-font);
    line-height: 1.2;
    font-weight: 700;
    color: var(--text-main);
}
h1 { font-size: 2.5rem; }
h2 { font-size: 2rem; }
h3 { font-size: 1.75rem; }
h4 { font-size: 1.5rem; }
h5 { font-size: 1.25rem; }
h6 { font-size: 1rem; }
p { margin: 0; }
a { text-decoration: none; color: inherit; transition: color 0.3s ease; }
a:hover { color: var(--primary); }
img { max-width: 100%; height: auto; vertical-align: middle; }
ul,ol { list-style: none; }
li { margin-bottom: 0.5rem; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

/* =Layout
-------------------------------------------------------------- */
.site { display: flex; flex-direction: column; min-height: 100vh; }
.section-padding { padding-top: var(--section-padding-y); padding-bottom: var(--section-padding-y); }
.container { width: 100%; max-width: var(--max-width-container); margin: 0 auto; padding: 3rem 1.5rem; }
.site-content { flex: 1; padding: 2rem 0; }
.content-area { max-width: 800px; margin: 0 auto; }

/* =Glass Effect
-------------------------------------------------------------- */
.glass { background: rgba(255,255,255,0.4); backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px); border: 1px solid rgba(255,255,255,0.6); box-shadow: 0 8px 32px 0 rgba(31,38,135,0.05); }
.glass-dark { background: rgba(255,255,255,0.6); backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px); border: 1px solid rgba(255,255,255,0.8); box-shadow: 0 8px 32px 0 rgba(0,0,0,0.05); }
.glass-card { background: rgba(255,255,255,0.5); backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px); border: 1px solid rgba(255,255,255,0.7); box-shadow: 0 4px 24px -4px rgba(212,163,115,0.15); transition: transform 0.3s ease, box-shadow 0.3s ease; border-radius: 2rem; }
.glass-card:hover { transform: translateY(-5px); box-shadow: 0 12px 32px -4px rgba(212,163,115,0.25); background: rgba(255,255,255,0.7); }

/* =Background Decorations
-------------------------------------------------------------- */
.bg-mesh { position: fixed; top: 0; left: 0; width: 100vw; height: 100vh; background-image: radial-gradient(at 40% 20%, hsla(28,100%,74%,0.15) 0px, transparent 50%), radial-gradient(at 80% 0%, hsla(189,100%,56%,0.1) 0px, transparent 50%), radial-gradient(at 0% 50%, hsla(355,100%,93%,0.1) 0px, transparent 50%); z-index: -2; pointer-events: none; }
.bg-blob { position: absolute; filter: blur(80px); z-index: -1; opacity: 0.4; border-radius: 50%; max-width: none; }
.blob-1 { background-color: var(--secondary); width: 24rem; height: 24rem; top: -10%; left: -10%; }
.blob-2 { background-color: var(--accent); width: 30rem; height: 30rem; top: 20%; right: -5%; }

/* =Header
-------------------------------------------------------------- */
.header { position: fixed; top: 0; width: 100%; z-index: 1000; border-bottom: 1px solid var(--white-60); }
.header-content { height: 5rem; display: flex; align-items: center; justify-content: space-between; }
.logo-group { display: flex; align-items: center; gap: 0.75rem; }
.logo-icon { width: 2.5rem; height: 2.5rem; background-color: var(--primary); border-radius: 0.75rem; display: flex; align-items: center; justify-content: center; color: white; font-weight: 700; font-size: 1.25rem; box-shadow: 0 10px 15px -3px rgba(0,0,0,0.1); }
.logo-text { font-size: 1.5rem; font-weight: 700; color: var(--primary); letter-spacing: 0.025em; }
.main-nav { display: none; gap: 0; font-size: 1rem; font-weight: 500; }
.main-nav ul { display: flex; align-items: center; gap: 0.25rem; list-style: none; margin: 0; padding: 0; }
.main-nav li { position: relative; list-style: none; }
.main-nav a { display: block; padding: 0.625rem 1.25rem; color: var(--text-main); text-decoration: none; font-weight: 500; transition: all 0.3s ease; border-radius: 0.5rem; position: relative; }
.main-nav a::after { content: ''; position: absolute; bottom: 0.375rem; left: 50%; width: 0; height: 2px; background: linear-gradient(90deg, var(--primary) 0%, var(--accent) 100%); border-radius: 2px; transition: all 0.3s ease; transform: translateX(-50%); }
.main-nav a:hover { color: var(--primary); background: rgba(212,163,115,0.06); }
.main-nav a:hover::after { width: calc(100% - 2.5rem); }
.main-nav .current-menu-item a,.main-nav .current_page_item a { color: var(--primary); font-weight: 600; }
.main-nav .current-menu-item a::after,.main-nav .current_page_item a::after { width: calc(100% - 2.5rem); }
.header-actions { display: flex; align-items: center; gap: 1rem; }
.btn-login { padding: 0.5rem 1.5rem; background-color: var(--white-60); border: 1px solid var(--white-80); color: var(--text-main); border-radius: 9999px; font-weight: 500; box-shadow: 0 1px 2px 0 rgba(0,0,0,0.05); transition: background-color 0.3s; display: none; align-items: center; gap: 0.5rem; text-decoration: none; }
.btn-login svg,.btn-login i { width: 18px; height: 18px; }
.btn-login:hover { background-color: white; }
.btn-hotline { display: flex; align-items: center; gap: 0.5rem; background-color: var(--accent); color: white; padding: 0.625rem 1.25rem; border-radius: 9999px; font-weight: 700; font-size: 1.125rem; box-shadow: 0 10px 15px -3px rgba(239,68,68,0.2); transition: transform 0.3s, background-color 0.3s; }
.btn-hotline:hover { background-color: var(--accent-hover); transform: scale(1.05); }
.icon-svg { width: 1.5rem; height: 1.5rem; }
.menu-toggle { display: none; flex-direction: column; justify-content: center; align-items: center; width: 40px; height: 40px; gap: 5px; padding: 8px; background: transparent; border: none; cursor: pointer; }
.menu-toggle span { display: block; width: 24px; height: 2px; background: var(--text-main); border-radius: 2px; transition: all 0.3s ease; }
.menu-toggle.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.menu-toggle.active span:nth-child(2) { opacity: 0; }
.menu-toggle.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* =Hero Section
-------------------------------------------------------------- */
.hero-section { padding-bottom: var(--section-padding-y); position: relative; z-index: 10; display: flex; flex-direction: column; align-items: center; gap: 3rem; }
.hero-content { flex: 1; display: flex; flex-direction: column; gap: 2rem; }
.hero-title { font-size: 2.25rem; line-height: 1.2; font-weight: 700; color: var(--text-main); margin: 0; }
.hero-title-highlight { color: var(--primary); }
.hero-desc { font-size: 1.25rem; color: var(--text-gray); line-height: 1.625; max-width: 42rem; margin: 0; }
.hero-actions {padding-top: 1rem; }
.hero-tags { display: flex; flex-wrap: wrap; gap: 0.75rem; padding-top: 1rem; }
.tag { padding: 0.5rem 1rem; background-color: rgba(255,255,255,0.5); color: var(--text-main); border-radius: 9999px; font-size: 0.875rem; font-weight: 500; border: 1px solid var(--white-60); box-shadow: 0 1px 2px 0 rgba(0,0,0,0.05); }

/* =Buttons
-------------------------------------------------------------- */
.btn-primary { padding: 1rem 2rem; background-color: var(--primary); color: white; border-radius: 9999px; font-weight: 700; font-size: 1.125rem; box-shadow: 0 10px 15px -3px rgba(212,163,115,0.3); transition: transform 0.3s, background-color 0.3s; }
.btn-primary:hover { background-color: var(--primary-hover); transform: translateY(-0.25rem); color: white; }
.btn-secondary { padding: 1rem 2rem; background-color: var(--white-60); border: 1px solid var(--white-80); color: var(--text-main); border-radius: 9999px; font-weight: 700; font-size: 1.125rem; box-shadow: 0 1px 2px 0 rgba(0,0,0,0.05); transition: background-color 0.3s; }
.btn-secondary:hover { background-color: white; }

/* =Bento Box
-------------------------------------------------------------- */
.bento-box { width: 100%; display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 1rem; }
.bento-card { padding: 1.5rem; display: flex; flex-direction: column; justify-content: space-between; grid-column: span 2; }
.bento-card.half { grid-column: span 1; }
.bento-card-h1 { height: 10rem; }
.bento-card-h2 { height: 12rem; position: relative; overflow: hidden; }
.bento-header { display: flex; align-items: center; gap: 0.5rem; font-weight: 500; }
.text-primary-color { color: var(--primary); }
.text-sage-color { color: var(--sage); }
.text-accent-color { color: var(--accent); }
.bento-value { font-size: 2.25rem; font-weight: 700; color: var(--text-main); }
.bento-value.large { font-size: 2.25rem; }
.bento-value.medium { font-size: 1.875rem; }
.bento-value-suffix { font-size: 1.5rem; color: var(--primary); }
.bento-value-suffix-accent { font-size: 1.5rem; color: var(--accent); }
.bento-value-unit { font-size: 1.125rem; color: var(--text-gray); font-family: var(--body-font); font-weight: 400; }
.bento-desc { font-size: 0.875rem; color: var(--text-gray); margin-top: 0.25rem; }
.bento-desc.large { font-size: 1rem; margin-top: 0.5rem; }
.bento-badge { padding: 0.25rem 0.75rem; background-color: var(--white-60); border-radius: 9999px; font-size: 0.75rem; font-weight: 700; color: var(--accent); border: 1px solid var(--white-80); }
.bento-bg-shape { position: absolute; right: 0; bottom: 0; width: 8rem; height: 8rem; background-color: rgba(163,177,138,0.1); border-top-left-radius: 9999px; z-index: -10; transition: transform 0.5s; }
.glass-card:hover .bento-bg-shape { transform: scale(1.1); }
.flex-between { display: flex; align-items: center; justify-content: space-between; }

/* =Search Section
-------------------------------------------------------------- */
.search-dashboard { padding: 3rem; margin-bottom: 3rem; border-radius: 2rem; background: rgba(255,255,255,0.6); border: 2px solid rgba(212,163,115,0.2); }
.search-dashboard.compact { padding: 2rem; margin-bottom: 0; }
.search-hub-header { margin-bottom: 2.5rem; text-align: center; }
.search-hub-title { font-size: 2.25rem; color: var(--text-main); margin-bottom: 0.75rem; }
.search-hub-desc { font-size: 1.125rem; color: var(--text-gray); }
.main-search-bar { display: flex; gap: 1rem; background: white; padding: 0.75rem; border-radius: 4rem; box-shadow: 0 10px 30px rgba(0,0,0,0.05); border: 1px solid rgba(0,0,0,0.05); }
.main-search-input-wrapper { flex: 1; display: flex; align-items: center; padding-left: 2rem; }
.main-search-input-wrapper input { width: 100%; border: none; font-size: 1.25rem; padding: 1rem 0; outline: none; color: var(--text-main); background: transparent; }
.btn-search-main { background: var(--accent); color: white; border: none; padding: 1rem 3rem; border-radius: 3rem; font-size: 1.25rem; font-weight: 700; cursor: pointer; transition: all 0.3s ease; display: flex; align-items: center; gap: 0.75rem; }
.btn-search-main:hover { background: #c87971; transform: scale(1.02); }

/* =Results Section
-------------------------------------------------------------- */
.results-main { margin-top: 2rem; }
.control-bar { display: flex; justify-content: space-between; align-items: center; margin-bottom: 1.5rem; flex-wrap: wrap; gap: 1rem; }
.result-count { font-size: 18px; font-weight: 600; color: var(--text-main); }
.result-count span { color: var(--accent); }
.sort-options { display: flex; gap: 1.5rem; }
.sort-btn { background: none; border: none; color: var(--text-light); cursor: pointer; font-weight: 500; min-height: auto; padding: 0.5rem 0; transition: color 0.2s ease; }
.sort-btn:hover,.sort-btn.active { color: var(--primary); }
.sort-btn.active { border-bottom: 2px solid var(--primary); }

/* =Listing Cards
-------------------------------------------------------------- */
.listing-container { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; align-items: stretch; }
.listing-card {
    display: flex;
    flex-direction: column;
    background: white;
    border-radius: 1.25rem;
    overflow: hidden;
    border: 1px solid rgba(0,0,0,0.06);
    box-shadow: 0 2px 12px rgba(0,0,0,0.04);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.listing-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 40px rgba(0,0,0,0.12);
}
.listing-card[data-href] { cursor: pointer; }
.card-image-wrapper {
    width: 100%;
    height: 200px;
    flex-shrink: 0;
    overflow: hidden;
    position: relative;
}
.card-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}
.listing-card:hover .card-image-wrapper img { transform: scale(1.04); }
.tag-urgent {
    position: absolute;
    top: 1rem;
    left: 1rem;
    background: #e74c3c;
    color: white;
    padding: 6px 14px;
    border-radius: 2rem;
    font-size: 0.8rem;
    font-weight: 700;
    box-shadow: 0 4px 12px rgba(231,76,60,0.35);
    z-index: 2;
}
.card-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    padding: 1.25rem 1.5rem 1.5rem;
    gap: 0;
}
.card-header {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-bottom: 0.75rem;
}
.card-title {
    font-size: 1.125rem;
    font-weight: 800;
    color: var(--text-main);
    line-height: 1.35;
    margin: 0;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.card-rating {
    display: inline-flex;
    align-items: center;
    gap: 0.375rem;
    background: #fff9f0;
    padding: 4px 10px;
    border-radius: 8px;
    align-self: flex-start;
}
.rating-score { color: #f39c12; font-weight: 700; font-size: 0.9rem; }
.rating-count { color: var(--text-light); font-size: 0.75rem; }
.text-muted { color: var(--text-light) !important; font-weight: 400 !important; font-size: 1rem !important; }
.card-middle {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}
.card-location {
    display: flex;
    align-items: flex-start;
    gap: 0.375rem;
    color: var(--text-light);
    font-size: 0.875rem;
    line-height: 1.5;
}
.card-location svg { flex-shrink: 0; color: var(--primary); margin-top: 2px; }
.card-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.375rem;
    position: absolute;
    bottom: 0.75rem;
    right: 0.75rem;
    z-index: 2;
    max-width: 70%;
    justify-content: flex-end;
}
.card-tags .tag {
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    background: rgba(255,255,255,0.9);
    border: 1px solid rgba(255,255,255,0.5);
    box-shadow: 0 2px 8px rgba(0,0,0,0.12);
}
.tag-level { background: rgba(212,163,115,0.15) !important; color: var(--primary) !important; }
.tag-medical { background: rgba(163,177,138,0.15) !important; color: var(--sage) !important; }
.tag-feature { background: rgba(255,255,255,0.9) !important; color: var(--text-main) !important; }
.card-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid #f0f0f0;
}
.card-price { display: flex; align-items: baseline; gap: 0.25rem; }
.price-amount { font-size: 1.5rem; font-weight: 800; color: var(--accent); }
.price-unit { font-size: 0.8rem; color: var(--text-light); }
.card-actions { display: flex; align-items: center; gap: 0.5rem; }
.btn-favorite {
    background: none;
    border: 1.5px solid #e5e7eb;
    color: #9ca3af;
    width: 38px;
    height: 38px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s ease;
}
.btn-favorite:hover { background: #fff5f5; color: #e74c3c; border-color: #e74c3c; }
.btn-book {
    background: var(--primary);
    color: white;
    border: none;
    padding: 0 1rem;
    height: 38px;
    border-radius: 10px;
    font-size: 0.9rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.2s ease;
}
.btn-book:hover { background: #c29262; }
.btn-view-detail {
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    color: white;
    padding: 0 1.25rem;
    height: 38px;
    border-radius: 10px;
    font-size: 0.875rem;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    transition: all 0.2s ease;
    cursor: pointer;
}
.btn-view-detail:hover { opacity: 0.9; transform: translateY(-1px); }
.no-results { display: flex; flex-direction: column; align-items: center; justify-content: center; text-align: center; padding: 4rem 2rem; color: var(--text-secondary); }
.no-results svg { opacity: 0.5; }
.no-results p { font-size: 1.25rem; font-weight: 600; color: var(--text-primary); margin-bottom: 0.5rem; }
.no-results span { font-size: 0.875rem; color: var(--text-light); }
.listing-loading { grid-column: 1 / -1; display: flex; justify-content: center; align-items: center; gap: 1rem; padding: 3rem; color: var(--primary); }
.loading-spinner { width: 40px; height: 40px; border: 3px solid rgba(212,163,115,0.2); border-top-color: var(--primary); border-radius: 50%; animation: spin 0.8s linear infinite; }
@keyframes spin { to { transform: rotate(360deg); } }
.loading-text { color: var(--text-secondary); font-size: 0.875rem; padding: 0.5rem; }
.modal-filter-section { margin-bottom: 1.5rem; }
.modal-filter-section:last-child { margin-bottom: 0; }
.btn-contact-service { display: inline-flex; align-items: center; gap: 0.5rem; margin-top: 1.5rem; padding: 0.875rem 1.5rem; background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%); color: white; border: none; border-radius: 50px; font-size: 1rem; font-weight: 600; cursor: pointer; transition: all 0.3s ease; box-shadow: 0 4px 15px rgba(212,163,115,0.3); }
.btn-contact-service:hover { transform: translateY(-2px); box-shadow: 0 8px 25px rgba(212,163,115,0.4); }
.listing-section { width: 100%; }
.highlight { animation: highlightPulse 0.5s ease-in-out 3; }
@keyframes highlightPulse { 0%,100% { box-shadow: 0 0 0 0 rgba(212,163,115,0.4); } 50% { box-shadow: 0 0 0 10px rgba(212,163,115,0); } }
.listing-more-wrapper { grid-column: 1 / -1; display: flex; justify-content: center; padding: 2rem 0; }
.btn-view-more { display: inline-flex; align-items: center; gap: 0.5rem; padding: 1rem 2.5rem; background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%); color: white; border: none; border-radius: 50px; font-size: 1rem; font-weight: 600; cursor: pointer; transition: all 0.3s ease; box-shadow: 0 4px 15px rgba(212,163,115,0.3); }
.btn-view-more:hover { transform: translateY(-2px); box-shadow: 0 8px 25px rgba(212,163,115,0.4); }

/* =Footer
-------------------------------------------------------------- */
.footer { background: rgba(62,44,32,0.8); backdrop-filter: blur(24px); -webkit-backdrop-filter: blur(24px); border-top: 1px solid rgba(255,255,255,0.1); color: rgba(255,255,255,0.9); padding: var(--section-padding-y) 0 2rem; }
.footer-container { max-width: 1400px; margin: 0 auto; }
.footer-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 48px; margin-bottom: 48px; }
.footer-logo-group { display: flex; align-items: center; gap: 12px; margin-bottom: 24px; }
.footer-logo-icon { width: 40px; height: 40px; background: var(--primary); border-radius: 8px; display: flex; align-items: center; justify-content: center; font-weight: 700; font-size: 20px; }
.footer-logo-text { font-size: 24px; font-weight: 700; }
.footer-desc { color: #a0aec0; line-height: 1.6; margin-bottom: 24px; }
.footer-socials { display: flex; gap: 16px; }
.footer-social-link { width: 40px; height: 40px; border-radius: 50%; background: rgba(255,255,255,0.1); display: flex; align-items: center; justify-content: center; color: white; transition: background 0.3s ease; }
.footer-social-link:hover { background: var(--primary); }
.footer-social-icon { width: 20px; height: 20px; }
.footer-title { font-size: 18px; font-weight: 600; margin-bottom: 24px; }
.footer-list { list-style: none; padding: 0; margin: 0; }
.footer-list-item { margin-bottom: 16px; }
.footer-link { color: #a0aec0; text-decoration: none; transition: color 0.3s ease; display: flex; align-items: center; gap: 8px; }
.footer-link:hover { color: var(--primary); }
.footer-icon { width: 16px; height: 16px; }
.footer-hotline { display: flex; align-items: center; gap: 12px; margin-top: 16px; }
.footer-hotline-icon { width: 24px; height: 24px; color: var(--primary); }
.footer-form { display: flex; gap: 12px; }
.footer-input { flex: 1; padding: 12px 16px; border-radius: 8px; border: 1px solid rgba(255,255,255,0.1); background: rgba(255,255,255,0.05); color: white; outline: none; }
.footer-input::placeholder { color: #718096; }
.footer-btn { padding: 12px 24px; border-radius: 8px; background: var(--primary); color: white; border: none; font-weight: 600; cursor: pointer; transition: background 0.3s ease; }
.footer-btn:hover { background: var(--primary-hover); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.1); padding-top: 24px; display: flex; justify-content: space-between; align-items: center; color: #718096; font-size: 14px; flex-wrap: wrap; gap: 16px; }
.footer-bottom-links { display: flex; gap: 16px; }
.footer-bottom-link { color: #718096; text-decoration: none; transition: color 0.3s ease; }
.footer-bottom-link:hover { color: white; }

/* =Modal
-------------------------------------------------------------- */
.modal-overlay { position: fixed; top: 0; left: 0; width: 100%; height: 100vh; background: rgba(0,0,0,0.5); backdrop-filter: blur(4px); display: none; align-items: center; justify-content: center; z-index: 99999; transition: opacity 0.3s ease; }
.modal-overlay.show,.modal-overlay.active { display: flex; opacity: 1; }
.modal-content { background: white; width: 100%; max-width: 720px; max-height: 90vh; border-radius: 2rem; padding: 0; position: relative; overflow: hidden; box-shadow: 0 25px 80px -12px rgba(62,44,32,0.35); transform: translateY(30px) scale(0.95); transition: transform 0.4s cubic-bezier(0.34,1.56,0.64,1); display: flex; flex-direction: column; }
.modal-overlay.show .modal-content,.modal-overlay.active .modal-content { transform: translateY(0) scale(1); }
.modal-scroll-area { flex: 1; overflow-y: auto; padding: 2rem; scrollbar-width: thin; scrollbar-color: var(--primary) transparent; }
.modal-scroll-area::-webkit-scrollbar { width: 6px; }
.modal-scroll-area::-webkit-scrollbar-thumb { background-color: var(--primary); border-radius: 20px; }
.modal-content.bg-white { background: #ffffff; max-width: 42rem; border-radius: 1.5rem; box-shadow: 0 25px 50px -12px rgba(0,0,0,0.25); }
.modal-header { display: flex; justify-content: space-between; align-items: center; padding: 1.5rem 2rem; background: linear-gradient(135deg, var(--background) 0%, #fff9f0 100%); border-bottom: 1px solid #f3f4f6; position: sticky; top: 0; z-index: 5; }
.modal-title { font-size: 1.5rem; font-weight: 700; color: var(--text-main); margin: 0; }
.btn-close-modal { width: 40px; height: 40px; border-radius: 50%; background: rgba(0,0,0,0.05); display: flex; align-items: center; justify-content: center; color: var(--text-gray); transition: all 0.3s ease; border: none; cursor: pointer; }
.btn-close-modal:hover { background: rgba(212,163,115,0.15); color: var(--primary); transform: rotate(90deg); }
.modal-body { display: flex; flex-direction: column; gap: 2rem; padding: 1.5rem 2rem; }
.modal-filter-section { display: flex; flex-direction: column; gap: 1rem; }
.modal-section-title { font-size: 1.125rem; font-weight: 700; color: var(--text-main); display: flex; align-items: center; gap: 0.75rem; margin: 0; }
.modal-section-title svg { color: var(--primary); width: 20px; height: 20px; }
.modal-options-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0.75rem; }
.modal-option { background: #f8fafc; border: 2px solid transparent; padding: 1rem; border-radius: 1rem; display: flex; align-items: center; justify-content: center; gap: 0.5rem; cursor: pointer; transition: all 0.25s ease; font-weight: 600; font-size: 0.95rem; color: var(--text-main); text-align: center; }
.modal-option:hover { background: rgba(212,163,115,0.1); border-color: var(--primary); transform: translateY(-2px); }
.modal-option.active { background: var(--primary); border-color: var(--primary); color: white; box-shadow: 0 4px 12px rgba(212,163,115,0.3); }
.modal-footer { display: flex; justify-content: space-between; gap: 1rem; padding: 1.5rem 2rem; background: white; border-top: 1px solid var(--border-color); position: sticky; bottom: 0; }
.btn-modal-reset { padding: 1rem 1.5rem; font-weight: 600; color: var(--text-gray); background: #f1f5f9; border: none; border-radius: 1rem; cursor: pointer; transition: all 0.2s ease; }
.btn-modal-reset:hover { background: #e2e8f0; color: var(--text-main); }
.btn-modal-apply { background: var(--primary); color: white; padding: 1rem 2.5rem; border-radius: 1rem; font-weight: 700; border: none; cursor: pointer; box-shadow: 0 4px 16px rgba(212,163,115,0.35); transition: all 0.3s ease; flex: 1; max-width: 280px; }
.btn-modal-apply:hover { background: var(--primary-hover); transform: translateY(-2px); box-shadow: 0 6px 20px rgba(212,163,115,0.4); }

/* =Modal - Form Steps
-------------------------------------------------------------- */
.progress-bar-wrapper { padding: 1.5rem 2rem 0; }
.progress-bar { width: 100%; height: 8px; background: #f3f4f6; border-radius: 9999px; overflow: hidden; display: flex; }
.progress-fill { height: 100%; background: linear-gradient(90deg, var(--primary) 0%, var(--secondary) 100%); transition: width 0.5s ease; }
.form-step-header { display: flex; align-items: center; gap: 0.75rem; margin-bottom: 1.5rem; color: var(--primary); }
.form-step-header svg { width: 28px; height: 28px; stroke: var(--primary); }
.form-step-header h4 { font-size: 1.125rem; font-weight: 700; color: #1f2937; margin: 0; }
.form-group { margin-bottom: 1.25rem; }
.form-group:last-child { margin-bottom: 0; }
.form-group label { display: block; font-size: 0.875rem; font-weight: 500; color: #374151; margin-bottom: 0.5rem; }
.form-input { width: 100%; padding: 0.75rem 1rem; border: 1px solid #e5e7eb; border-radius: 0.75rem; font-size: 1rem; color: #1f2937; transition: all 0.15s ease; }
.form-input:focus { outline: none; border-color: var(--primary); box-shadow: 0 0 0 3px rgba(212,163,115,0.3); }
.form-input::placeholder { color: #9ca3af; }
.form-select { width: 100%; padding: 0.75rem 1rem; border: 1px solid #e5e7eb; border-radius: 0.75rem; font-size: 1rem; color: #1f2937; background: white; cursor: pointer; transition: all 0.15s ease; appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='%2364748b' stroke-width='2'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' d='M19 9l-7 7-7-7'%3E%3C/path%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 1rem center; background-size: 1rem; padding-right: 3rem; }
.form-select:focus { outline: none; border-color: var(--primary); box-shadow: 0 0 0 3px rgba(212,163,115,0.3); }
.options-grid { display: grid; gap: 0.75rem; }

/* =Login Redesign Modal
-------------------------------------------------------------- */
.login-redesign {
    max-width: 960px !important;
    width: 95% !important;
    max-height: 50vh !important;
    display: flex !important;
    padding: 0 !important;
    overflow: hidden !important;
    border-radius: 3rem !important;
    background: white !important;
    box-shadow: 0 32px 64px -16px rgba(0, 0, 0, 0.2) !important;
}
@media (min-width: 768px) {
    .login-redesign { height: auto !important; min-height: 650px; }
}

.login-visual {
    flex: 4;
    position: relative;
    background: #0f172a;
    overflow: hidden;
    display: none;
}
@media (min-width: 768px) {
    .login-visual { display: block; }
}

.visual-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, #FF7F50, #D4A373);
    opacity: 0.9;
    mix-blend-mode: multiply;
    z-index: 1;
}

.visual-content {
    position: relative;
    z-index: 2;
    height: 100%;
    padding: 3rem 2.5rem;
    display: flex;
    flex-direction: column;
    color: white;
}

.visual-header {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: auto;
}

.visual-logo-box {
    width: 2.5rem;
    height: 2.5rem;
    background: rgba(255,255,255,0.15);
    border-radius: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.visual-brand {
    font-family: 'Noto Serif TC', serif;
    font-size: 1.125rem;
    font-weight: 700;
    letter-spacing: 0.05em;
}

.visual-main {
    margin-top: auto;
    margin-bottom: auto;
}

.visual-accent-line {
    width: 3rem;
    height: 3px;
    background: linear-gradient(90deg, #FF7F50, transparent);
    border-radius: 2px;
    margin-bottom: 1.25rem;
}

.visual-title {
    font-family: 'Noto Serif TC', serif;
    font-size: 2rem;
    font-weight: 700;
    line-height: 1.4;
    margin: 0 0 1.25rem;
}

.visual-desc {
    font-size: 0.875rem;
    color: rgba(255,255,255,0.7);
    line-height: 1.8;
    margin: 0;
}

.visual-info {
    display: flex;
    gap: 1.25rem;
    flex-wrap: wrap;
}

.info-item {
    display: flex;
    align-items: center;
    gap: 0.375rem;
    font-size: 0.8rem;
    color: rgba(255,255,255,0.8);
}

.login-form-area {
    flex: 6;
    background: #FDFBF7;
    position: relative;
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.form-scroll-content {
    flex: 1;
    min-height: 0;
    overflow-y: auto;
    padding: 0 3rem 1rem;
    scrollbar-width: thin;
    scrollbar-color: rgba(212, 163, 115, 0.3) transparent;
}
.form-scroll-content::-webkit-scrollbar { width: 4px; }
.form-scroll-content::-webkit-scrollbar-track { background: transparent; }
.form-scroll-content::-webkit-scrollbar-thumb {
    background: rgba(212, 163, 115, 0.3);
    border-radius: 4px;
}
.form-scroll-content::-webkit-scrollbar-thumb:hover {
    background: rgba(212, 163, 115, 0.5);
}
@media (max-width: 767px) {
    .form-scroll-content { padding: 0 1.5rem 1rem; }
    .form-footer { padding: 1rem 1.5rem 1.5rem; }
}

.modal-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 50%;
    background: rgba(0,0,0,0.06);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    border: none;
    color: #64748b;
    z-index: 10;
    transition: all 0.2s;
}
.modal-close:hover { background: rgba(0,0,0,0.12); color: #1e293b; }

.form-nav {
    padding-left:3rem;
    margin-bottom: 1.5rem;
    padding-top: 3rem;
    flex-shrink: 0;
}


.pills-container {
    display: inline-flex;
    background: #f1f5f9;
    padding: 0.25rem;
    border-radius: 1rem;
    gap: 0.25rem;
}

.pill-btn {
    padding: 0.625rem 1.5rem;
    border: none;
    background: transparent;
    color: #94a3b8;
    font-weight: 600;
    font-size: 0.9rem;
    border-radius: 0.75rem;
    cursor: pointer;
    transition: all 0.25s ease;
}
.pill-btn.active {
    background: white;
    color: #FF7F50;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}

.form-intro {
    margin-bottom: 1.5rem;
    padding-left: 3rem;
    padding-top: 1.5rem;
}
.form-intro h3 {
    font-family: 'Noto Serif TC', serif;
    font-size: 1.75rem;
    font-weight: 700;
    color: #1e293b;
    margin: 0 0 0.5rem;
}
.form-intro p {
    font-size: 0.95rem;
    color: #64748b;
    margin: 0;
}

.field-block { margin-bottom: 1.25rem; }

.field-label {
    display: block;
    font-size: 0.875rem;
    font-weight: 600;
    color: #374151;
    margin-bottom: 0.5rem;
}

.input-wrap {
    position: relative;
}

.input-icon {
    position: absolute;
    left: 1.25rem;
    top: 50%;
    transform: translateY(-50%);
    color: #94a3b8;
    pointer-events: none;
}

.field-input {
    width: 100%;
    padding: 1.25rem 3.5rem;
    border: 1.5px solid #e2e8f0;
    border-radius: 1rem;
    outline: none;
    transition: all 0.2s;
    font-size: 1rem;
    background: white;
    color: #1e293b;
}
.field-input::placeholder { color: #94a3b8; }
.field-input:focus {
    border-color: #FF7F50;
    box-shadow: 0 0 0 4px rgba(255, 127, 80, 0.05);
}

.pass-toggle {
    position: absolute;
    right: 1.25rem;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    cursor: pointer;
    color: #94a3b8;
    padding: 0;
    display: flex;
    align-items: center;
}

.agreement-box {
    display: flex;
    gap: 0.75rem;
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 0.875rem;
    padding: 1rem;
    align-items: flex-start;
}
.agreement-box .info-icon { color: #64748b; flex-shrink: 0; margin-top: 1px; }
.text-xs { font-size: 0.8rem; }
.text-slate-500 { color: #64748b; }
.leading-relaxed { line-height: 1.625; }
.accent-link { color: #FF7F50; text-decoration: underline; }

/* 必填標記 */
.field-required::after { content: ' *'; color: #e8663f; font-weight: 700; }
.field-hint { font-size: 0.75rem; color: #94a3b8; font-weight: 400; margin-left: 0.25rem; }
.field-optional { font-size: 0.75rem; color: #94a3b8; font-weight: 400; }

/* 密碼強度 */
.password-strength-wrap { margin-top: 0.5rem; }
.password-strength-bar { height: 4px; background: #e2e8f0; border-radius: 2px; overflow: hidden; }
.password-strength-fill { height: 100%; border-radius: 2px; width: 0; transition: width 0.3s ease, background 0.3s ease; }
.password-strength-fill.strength-1 { width: 33%; background: #ef4444; }
.password-strength-fill.strength-2 { width: 66%; background: #f59e0b; }
.password-strength-fill.strength-3 { width: 100%; background: #22c55e; }
.password-strength-label { font-size: 0.75rem; font-weight: 600; margin-top: 0.25rem; }
.strength-text-1 { color: #ef4444; }
.strength-text-2 { color: #f59e0b; }
.strength-text-3 { color: #22c55e; }

/* 區號按鈕 */
.phone-input-wrap { position: relative; }
.phone-icon { left: 1.25rem; }
.area-code-btn {
    position: absolute; left: 2.75rem; top: 50%; transform: translateY(-50%);
    display: flex; align-items: center; gap: 0.25rem;
    padding: 0.25rem 0.5rem; background: #f1f5f9; border: 1.5px solid #e2e8f0;
    border-radius: 0.625rem; cursor: pointer; font-size: 0.875rem; font-weight: 600;
    color: #374151; white-space: nowrap; z-index: 2; transition: all 0.2s;
}
.area-code-btn:hover { background: #e2e8f0; }
.area-phone-input { padding-left: 6.5rem !important; }
.code-btn { position: absolute; right: 0.75rem; top: 50%; transform: translateY(-50%); }

.area-code-dropdown {
    position: absolute; top: calc(100% + 4px); left: 2.75rem; z-index: 100;
    background: white; border: 1.5px solid #e2e8f0; border-radius: 0.875rem;
    box-shadow: 0 8px 24px rgba(0,0,0,0.12); overflow: hidden; display: none; min-width: 140px;
}
.area-code-dropdown.open { display: block; }
.area-code-option { padding: 0.75rem 1.25rem; cursor: pointer; font-size: 0.875rem; color: #374151; transition: background 0.15s; }
.area-code-option:hover { background: #f8fafc; }

/* 雙列佈局 */
.field-row-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
@media (max-width: 480px) { .field-row-2 { grid-template-columns: 1fr; } }

/* 老人信息折疊區 */
.elderly-section {
    border: 1.5px solid #e2e8f0; border-radius: 1rem; overflow: hidden; margin: 0.5rem 0;
}
.elderly-section-header {
    display: flex; align-items: center; justify-content: space-between;
    padding: 1rem 1.25rem; cursor: pointer; background: #f8fafc;
    user-select: none; transition: background 0.15s;
}
.elderly-section-header:hover { background: #f1f5f9; }
.elderly-section-title {
    display: flex; align-items: center; gap: 0.5rem;
    font-size: 0.9rem; font-weight: 600; color: #374151;
}
.elderly-section-body { padding: 0 0.25rem 0.5rem; }

/* 照片上傳 */
.photo-upload-area { border: 2px dashed #e2e8f0; border-radius: 1rem; overflow: hidden; background: #f8fafc; }
.photo-placeholder {
    display: flex; flex-direction: column; align-items: center; justify-content: center;
    padding: 2rem; cursor: pointer; gap: 0.5rem;
}
.photo-placeholder:hover { background: #f1f5f9; }
.photo-placeholder span { font-size: 0.875rem; color: #64748b; }
.photo-hint { font-size: 0.75rem !important; color: #94a3b8 !important; }
.photo-preview { position: relative; padding: 1rem; display: flex; justify-content: center; align-items: center; }
.photo-preview img { max-width: 120px; max-height: 120px; border-radius: 0.75rem; object-fit: cover; }
.photo-remove {
    position: absolute; top: 0.5rem; right: 0.5rem; width: 1.75rem; height: 1.75rem;
    border-radius: 50%; background: rgba(0,0,0,0.6); color: white; border: none;
    cursor: pointer; display: flex; align-items: center; justify-content: center;
}

/* field-select */
.field-select { appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='%2394a3b8' stroke-width='2'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' d='M19 9l-7 7-7-7'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 1rem center; background-size: 1rem; padding-right: 2.5rem; }

/* 成功彈窗 */
.success-modal-content {
    max-width: 400px; width: 90%; padding: 3rem 2rem; text-align: center;
    background: white; border-radius: 1.5rem; box-shadow: 0 32px 64px rgba(0,0,0,0.15);
}
.success-icon { color: #22c55e; margin-bottom: 1.5rem; }
.success-title { font-family: 'Noto Serif TC', serif; font-size: 1.5rem; font-weight: 700; color: #1e293b; margin-bottom: 0.75rem; }
.success-desc { font-size: 0.95rem; color: #64748b; margin-bottom: 2rem; }
.btn-success-close {
    width: 100%; padding: 1rem; background: #f1f5f9; color: #374151;
    font-weight: 600; border: none; border-radius: 1rem; cursor: pointer; font-size: 1rem;
    transition: background 0.2s;
}
.btn-success-close:hover { background: #e2e8f0; }

/* 錯誤提示彈窗 */
.error-modal-content {
    max-width: 400px; width: 90%; padding: 3rem 2rem; text-align: center;
    background: white; border-radius: 1.5rem; box-shadow: 0 32px 64px rgba(0,0,0,0.15);
    border-top: 4px solid #ef4444;
}
.error-icon {
    width: 80px; height: 80px; margin: 0 auto 1.5rem;
    background: linear-gradient(135deg, rgba(239,68,68,0.15) 0%, rgba(239,68,68,0.05) 100%);
    border-radius: 50%; display: flex; align-items: center; justify-content: center;
    color: #ef4444;
    animation: errorShake 0.5s ease-out;
}
@keyframes errorShake {
    0% { transform: scale(0.5) rotate(0deg); opacity: 0; }
    30% { transform: scale(1.1) rotate(-5deg); }
    60% { transform: scale(1.05) rotate(3deg); }
    100% { transform: scale(1) rotate(0deg); opacity: 1; }
}
.error-title {
    font-size: 1.5rem; font-weight: 700; color: #1e293b; margin: 0 0 0.75rem;
    font-family: 'Noto Serif TC', serif;
}
.error-desc { font-size: 0.95rem; color: #64748b; margin-bottom: 2rem; }
.btn-error-close {
    width: 100%; padding: 1rem; background: #fee2e2; color: #dc2626;
    font-weight: 600; border: none; border-radius: 1rem; cursor: pointer; font-size: 1rem;
    transition: background 0.2s;
}
.btn-error-close:hover { background: #fecaca; }

.submit-btn {
    width: 100%;
    padding: 1.5rem;
    background: #FF7F50;
    color: white;
    font-weight: bold;
    border: none;
    border-radius: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    cursor: pointer;
    font-size: 1.1rem;
    box-shadow: 0 10px 20px -10px rgba(255, 127, 80, 0.5);
    transition: all 0.25s ease;
    margin-top: 1.5rem;
}
.submit-btn:hover {
    background: #e8663f;
    transform: translateY(-2px);
    box-shadow: 0 14px 28px -10px rgba(255, 127, 80, 0.45);
}

.form-footer {
    flex-shrink: 0;
    padding: 1rem 3rem 2rem;
    text-align: center;
    font-size: 0.9rem;
    color: #64748b;
}
.form-footer a { color: #FF7F50; font-weight: 600; }
.form-footer a:hover { text-decoration: underline; }

/* Mobile styles */
@media (max-width: 767px) {
    .login-redesign {
        max-height: 95vh !important;
        border-radius: 1.5rem 1.5rem 0 0 !important;
        position: fixed !important;
        bottom: 0 !important;
        left: 0 !important;
        right: 0 !important;
        width: 100% !important;
        max-width: 100% !important;
        align-self: flex-end !important;
        margin: 0 !important;
        overflow: hidden !important;
    }
    .login-visual { display: none; }
    .form-intro h3 { font-size: 1.5rem; }
    .field-input { padding: 1rem 3rem; }
}

/* =Form Steps (Page-level)
-------------------------------------------------------------- */
.form-step { display: none; }
.form-step.active { display: block; animation: stepIn 0.4s ease-out; }
@keyframes stepIn { from { opacity: 0; transform: translateX(10px); } to { opacity: 1; transform: translateX(0); } }
.form-label { display: block; font-weight: 600; margin-bottom: 0.5rem; color: var(--text-main); }
.form-input,.form-select { width: 100%; padding: 0.875rem 1.25rem; border: 1.5px solid #e2e8f0; border-radius: 1rem; outline: none; transition: all 0.2s; font-size: 1rem; background-color: #f8fafc; color: var(--text-main); }
.form-input:focus,.form-select:focus { border-color: var(--primary); background-color: white; box-shadow: 0 0 0 4px rgba(212,163,115,0.1); }
.form-select { appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='%2364748b' stroke-width='2'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' d='M19 9l-7 7-7-7'%3E%3C/path%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 1.25rem center; background-size: 1.25rem; padding-right: 3.5rem; }
.options-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(100px, 1fr)); gap: 1rem; }
.options-grid.age-grid { grid-template-columns: repeat(auto-fill, minmax(100px, 1fr)); }
.options-grid.subsidy-grid { grid-template-columns: repeat(auto-fill, minmax(120px, 1fr)); }
.options-flex { display: flex; flex-wrap: wrap; gap: 0.5rem; }
.district-grid { max-height: 150px; overflow-y: auto; padding: 0.5rem; background: #f9fafb; border-radius: 0.75rem; }
.option-label { display: inline-flex; align-items: center; justify-content: center; padding: 0.5rem 1rem; border: 1px solid var(--border-color); border-radius: 0.75rem; background: rgba(255,255,255,0.8); font-size: 0.875rem; font-weight: 500; color: var(--text-main); cursor: pointer; transition: all 0.2s ease; user-select: none; }
.option-label:hover { border-color: var(--primary); color: var(--primary); background: rgba(212,163,115,0.1); }
.option-label:has(input:checked) { background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%); border-color: var(--primary); color: white; box-shadow: 0 4px 12px rgba(212,163,115,0.4); }
.option-label input { display: none; }
.error-message { display: flex; align-items: center; gap: 0.25rem; font-size: 0.75rem; color: #ef4444; margin-top: 0.5rem; }
.error-message.hidden { display: none; }
.success-step { text-align: center; padding: 2rem 0; }
.success-step .success-icon { width: 6rem; height: 6rem; background: #dcfce7; border-radius: 9999px; display: flex; align-items: center; justify-content: center; margin: 0 auto 1.5rem; }
.success-step .success-icon svg { color: #22c55e; }
.success-step h3 { font-size: 1.5rem; font-weight: 700; color: #1f2937; margin-bottom: 0.5rem; }
.success-step > p { color: #4b5563; margin-bottom: 1.5rem; }
.success-info { background: #f9fafb; padding: 1rem; border-radius: 0.75rem; border: 1px solid #f3f4f6; max-width: 24rem; margin: 0 auto; }
.success-info p:first-child { color: #6b7280; font-size: 0.875rem; margin-bottom: 0.5rem; }
.success-phone { font-size: 1.25rem; font-weight: 700; color: var(--primary); }
.modal-footer .btn-secondary { display: inline-flex; align-items: center; gap: 0.5rem; padding: 0.75rem 1.5rem; border: 1px solid #d1d5db; border-radius: 0.75rem; background: white; color: #374151; font-weight: 500; cursor: pointer; transition: all 0.2s ease; }
.modal-footer .btn-secondary:hover { background: #f9fafb; box-shadow: 0 1px 2px rgba(0,0,0,0.05); }
.modal-footer .btn-primary { display: inline-flex; align-items: center; gap: 0.5rem; padding: 0.75rem 1.5rem; border: none; border-radius: 0.75rem; background: var(--primary); color: white; font-weight: 600; cursor: pointer; transition: all 0.2s ease; box-shadow: 0 4px 12px rgba(212,163,115,0.4); }
.modal-footer .btn-primary:hover { background: var(--primary-hover); transform: translateY(-2px); box-shadow: 0 6px 16px rgba(212,163,115,0.5); }
.modal-footer .btn-dark { display: inline-flex; align-items: center; justify-content: center; gap: 0.5rem; width: 100%; padding: 0.75rem 1.5rem; border: none; border-radius: 0.75rem; background: #1f2937; color: white; font-weight: 600; cursor: pointer; transition: all 0.2s ease; }
.modal-footer .btn-dark:hover { background: #111827; }
.modal-footer .btn-dark.hidden,.modal-footer .btn-secondary.hidden,.modal-footer .btn-primary.hidden { display: none; }
@keyframes fadeIn { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: translateY(0); } }
.success-modal-content { max-width: 400px; padding: 3rem 2.5rem; text-align: center; border-radius: 1.5rem; }
.success-icon { width: 80px; height: 80px; margin: 0 auto 1.5rem; background: linear-gradient(135deg, rgba(212,163,115,0.15) 0%, rgba(212,163,115,0.05) 100%); border-radius: 50%; display: flex; align-items: center; justify-content: center; color: var(--primary); animation: successPulse 0.5s ease-out; }
@keyframes successPulse { 0% { transform: scale(0.5); opacity: 0; } 50% { transform: scale(1.1); } 100% { transform: scale(1); opacity: 1; } }
.success-title { font-size: 1.5rem; font-weight: 700; color: var(--text-main); margin: 0 0 0.75rem; }
.success-desc { font-size: 1rem; color: var(--text-gray); margin: 0 0 1.5rem; }
.success-desc span { color: var(--primary); font-weight: 700; }
.btn-success-close { padding: 0.875rem 2rem; background: #f1f5f9; color: var(--text-main); border: none; border-radius: 0.875rem; font-size: 1rem; font-weight: 600; cursor: pointer; transition: all 0.2s ease; }
.btn-success-close:hover { background: #e2e8f0; }

/* =Process Section
-------------------------------------------------------------- */
.process-section { position: relative; z-index: 10; }
.process-grid { display: grid; grid-template-columns: repeat(1, 1fr); gap: 2rem; }
.process-card { padding: 2.5rem 2rem; text-align: center; position: relative; display: flex; flex-direction: column; align-items: center; gap: 1.5rem; }
.process-number { position: absolute; top: 1rem; right: 1.5rem; font-size: 3rem; font-weight: 700; color: rgba(212,163,115,0.1); font-family: var(--body-font); line-height: 1; }
.process-icon-wrapper { width: 4.5rem; height: 4.5rem; background-color: white; border-radius: 1.25rem; display: flex; align-items: center; justify-content: center; color: var(--primary); box-shadow: 0 10px 25px -5px rgba(212,163,115,0.2); transition: transform 0.3s ease; }
.process-card:hover .process-icon-wrapper { transform: scale(1.1) rotate(5deg); background-color: var(--primary); color: white; }
.process-icon { width: 2rem; height: 2rem; }
.process-card-title { font-size: 1.5rem; font-weight: 700; color: var(--text-main); margin: 0; }
.process-card-desc { font-size: 1rem; color: var(--text-gray); line-height: 1.6; margin: 0; }

/* =Calculator Section
-------------------------------------------------------------- */
.calc-section { position: relative; }
.calc-bento-grid { display: grid; grid-template-columns: 1fr; gap: 1.5rem; max-width: 1400px; margin: 0 auto; }
.calc-card-header { grid-column: 1 / -1; text-align: center; margin-bottom: 1rem; }
.calc-card-input-care { grid-column: span 2; padding: 2.5rem; display: flex; flex-direction: column; justify-content: center; }
.calc-card-input-adl { grid-column: span 2; padding: 2.5rem; }
.calc-card-input-medical,.calc-card-input-consumables,.calc-card-input-subsidies,.calc-card-input-city,.calc-card-input-room { grid-column: span 1; padding: 2.5rem; }
.calc-card-result { grid-column: span 2; padding: 2.5rem; display: flex; flex-direction: column; justify-content: center; background: rgba(212,163,115,0.1); border: 1px solid rgba(212,163,115,0.3); }
.calc-card-cta { grid-column: span 3; padding: 2.5rem; display: flex; flex-direction: row; align-items: center; justify-content: space-between; gap: 2rem; text-align: left; }
.calc-label-title { display: block; font-size: 1.25rem; font-weight: 700; color: var(--text-main); margin-bottom: 1.5rem; }
.calc-city-desc { font-size: 0.875rem; margin-top: 1rem; color: var(--text-gray); }
.calc-cta-content { display: flex; align-items: center; gap: 1.5rem; }
.calc-cta-icon { width: 4rem; height: 4rem; background: var(--primary); color: white; border-radius: 50%; display: flex; align-items: center; justify-content: center; margin-bottom: 1.5rem; box-shadow: 0 8px 16px rgba(212,163,115,0.3); }
.calc-cta-text { font-size: 1.125rem; font-weight: 700; color: var(--text-main); margin-bottom: 0.5rem; }
.calc-cta-sub { font-size: 0.875rem; color: var(--text-gray); margin-bottom: 1.5rem; }
.calc-label-group { display: flex; justify-content: space-between; align-items: center; margin-bottom: 1.5rem; }
.calc-label-current { font-weight: 700; color: var(--primary); font-size: 1.125rem; }
.calc-chip-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(120px, 1fr)); gap: 0.75rem; }
.calc-chip { padding: 0.75rem 1rem; border-radius: 1rem; border: 1px solid rgba(0,0,0,0.05); background: rgba(255,255,255,0.4); text-align: center; font-size: 0.9rem; font-weight: 600; transition: all 0.3s ease; display: flex; align-items: center; justify-content: center; gap: 0.5rem; }
.calc-chip.active { background: var(--primary); color: white; border-color: var(--primary); box-shadow: 0 4px 12px rgba(212,163,115,0.3); }
.calc-select-custom { width: 100%; padding: 1rem; border-radius: 1rem; border: 1px solid rgba(0,0,0,0.05); background: rgba(255,255,255,0.4); font-weight: 600; color: var(--text-main); appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='%23d4a373'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M19 9l-7 7-7-7'%3E%3C/path%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 1rem center; background-size: 1.5rem; }
.calc-room-grid { display: grid; grid-template-columns: 1fr; gap: 0.75rem; }
.calc-room-btn { padding: 1rem; border-radius: 1rem; border: 1px solid rgba(0,0,0,0.05); background: rgba(255,255,255,0.4); text-align: center; font-weight: 600; transition: all 0.3s ease; }
.calc-room-btn.active { background: var(--primary); color: white; border-color: var(--primary); box-shadow: 0 4px 12px rgba(212,163,115,0.3); }
.calc-result-display { display: flex; align-items: baseline; gap: 0.5rem; }
.calc-result-symbol { font-size: 1.5rem; font-weight: 700; color: var(--text-main); }
.calc-result-num { font-size: 4.5rem; font-weight: 700; color: var(--primary); line-height: 1; }
.calc-mini-breakdown { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; margin-top: 2rem; padding-top: 2rem; border-top: 1px solid rgba(0,0,0,0.05); }
.calc-mini-item { display: flex; flex-direction: column; gap: 0.25rem; }
.calc-mini-label { font-size: 0.75rem; color: var(--text-gray); text-transform: uppercase; letter-spacing: 0.05em; }
.calc-mini-val { font-weight: 700; color: var(--text-main); }
.calc-comparison-tag { display: inline-flex; align-items: center; gap: 0.5rem; padding: 0.5rem 1rem; background: rgba(34,197,94,0.1); color: #16a34a; border-radius: 2rem; font-size: 0.875rem; font-weight: 600; margin-top: 1rem; }
.calc-subsidy-info { font-size: 0.75rem; color: var(--text-gray); margin-top: 0.5rem; line-height: 1.4; }
.calc-toggle-group { display: flex; flex-direction: column; gap: 0.75rem; }
.calc-toggle-item { display: flex; align-items: center; justify-content: space-between; padding: 0.75rem 1rem; border-radius: 0.75rem; background: rgba(255,255,255,0.3); border: 1px solid rgba(0,0,0,0.03); cursor: pointer; transition: all 0.2s ease; }
.calc-toggle-item.active { background: var(--primary); color: white; }
.calc-toggle-item.active .calc-subsidy-info { color: rgba(255,255,255,0.8); }

/* =Feature Section
-------------------------------------------------------------- */
.feature-section { position: relative; z-index: 10; }
.feature-header { text-align: center; margin-bottom: 48px; }
.feature-title { font-size: 36px; color: var(--text-main); margin-bottom: 16px; }
.feature-desc { color: var(--text-gray); max-width: 600px; margin: 0 auto; }
.feature-bento { display: grid; grid-template-columns: 1fr; gap: 1.5rem; max-width: 1400px; margin: 0 auto; padding: 0 1.5rem; }
.feature-card { padding: 2rem; transition: all 0.3s ease; text-align: center; }
.feature-card:hover { transform: translateY(-5px); }
.feature-icon-wrapper { width: 64px; height: 64px; border-radius: 50%; background: rgba(212,163,115,0.1); display: flex; align-items: center; justify-content: center; margin: 0 auto 24px; }
.feature-icon { width: 32px; height: 32px; color: var(--primary); }
.feature-card-title { font-size: 20px; color: var(--text-main); margin-bottom: 12px; }
.feature-card-desc { color: var(--text-gray); line-height: 1.6; }

/* =Care Plan Section
-------------------------------------------------------------- */
.care-plan-section { position: relative; z-index: 10; }
.care-plan-header { text-align: center; margin-bottom: 48px; }
.care-plan-title { font-size: 36px; color: var(--text-main); margin-bottom: 16px; }
.care-plan-desc { color: var(--text-gray); max-width: 600px; margin: 0 auto; }
.care-plan-cards { display: grid; grid-template-columns: 1fr; gap: 1.5rem; max-width: 1400px; margin: 0 auto; padding: 0 1.5rem; }
.care-plan-card { padding: 2rem; display: flex; flex-direction: column; gap: 1rem; }
.care-plan-target { font-size: 1.25rem; font-weight: 700; color: var(--text-main); min-height: 3.5rem; margin: 0; }
.care-plan-features { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 0.75rem; color: var(--text-gray); }
.care-plan-features li { display: flex; align-items: flex-start; gap: 0.5rem; }
.care-plan-features li::before { content: "\2713"; color: var(--primary); font-weight: bold; }
.care-plan-level { display: inline-block; padding: 0.25rem 0.75rem; background: rgba(212,163,115,0.15); color: var(--primary); border-radius: 9999px; font-weight: 700; font-size: 0.875rem; width: fit-content; }

/* =Expert Section
-------------------------------------------------------------- */
.expert-section { position: relative; z-index: 10; }
.expert-header { text-align: center; margin-bottom: 3rem; }
.expert-title { font-size: 1.875rem; font-weight: 700; color: var(--text-main); margin-bottom: 1rem; }
.expert-desc { font-size: 1.125rem; color: var(--text-gray); max-width: 42rem; margin: 0 auto; }
.expert-grid { display: grid; grid-template-columns: repeat(1, 1fr); gap: 2rem; }
.expert-card { padding: 2rem; text-align: center; }
.expert-avatar-wrapper { width: 8rem; height: 8rem; margin: 0 auto 1rem auto; border-radius: 9999px; overflow: hidden; border: 4px solid white; box-shadow: 0 4px 6px -1px rgba(0,0,0,0.1),0 2px 4px -1px rgba(0,0,0,0.06); }
.expert-avatar { width: 100%; height: 100%; object-fit: cover; }
.expert-name { font-size: 1.25rem; font-weight: 700; color: var(--text-main); }
.expert-role { color: var(--primary); font-weight: 500; margin-bottom: 0.5rem; }
.expert-cert { font-size: 0.875rem; color: var(--text-light); margin-bottom: 1rem; }
.expert-bio { color: var(--text-gray); }

/* =Case Study Section
-------------------------------------------------------------- */
.case-section { position: relative; z-index: 10; }
.hidden-mobile { display: block; }
.mobile-only { display: none; }
.case-header { text-align: center; max-width: 800px; margin: 0 auto 4rem; }
.case-title { font-size: 2.5rem; font-weight: 700; color: var(--text-main); margin-bottom: 1rem; }
.case-desc { font-size: 1.125rem; color: var(--text-gray); }
.case-container { max-width: 900px; margin: 0 auto; padding: 0 1.5rem; position: relative; }
.case-line { position: absolute; left: 50%; top: 0; bottom: 0; width: 2px; background: linear-gradient(to bottom, transparent, var(--primary), transparent); transform: translateX(-50%); opacity: 0.3; }
.case-node { display: flex; justify-content: space-between; align-items: center; margin-bottom: 5rem; position: relative; }
.case-node-left,.case-node-right { width: 42%; }
.case-node-center { position: absolute; left: 50%; top: 50%; transform: translate(-50%, -50%); width: 48px; height: 48px; background: white; border: 2px solid var(--primary); border-radius: 50%; display: flex; align-items: center; justify-content: center; z-index: 2; box-shadow: 0 0 20px rgba(212,163,115,0.2); }
.case-node-center.filled { background: var(--primary); color: white; }
.case-day { font-weight: 700; color: var(--primary); font-size: 0.75rem; text-transform: uppercase; letter-spacing: 0.05em; }
.case-card { padding: 2rem; border-radius: 1.5rem; }
.case-card-title { font-size: 1.25rem; font-weight: 700; color: var(--text-main); margin-bottom: 0.75rem; }
.case-card-desc { color: var(--text-gray); font-size: 1rem; line-height: 1.6; }
.case-node-title { font-size: 1.5rem; font-weight: 700; color: var(--text-main); margin-bottom: 1rem; }
.case-node-desc { color: var(--text-gray); font-size: 1.125rem; line-height: 1.6; }

/* =VAS Section
-------------------------------------------------------------- */
.vas-section { position: relative; z-index: 10; }
.vas-header { text-align: center; margin-bottom: 48px; }
.vas-title { font-size: 36px; color: var(--text-main); margin-bottom: 16px; }
.vas-desc { color: var(--text-gray); max-width: 600px; margin: 0 auto; }
.vas-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 32px; }
.vas-card { padding: 2rem; text-align: center; }
.vas-card:hover { border-color: var(--primary); box-shadow: 0 10px 30px rgba(212,163,115,0.15); }
.vas-icon-wrapper { width: 64px; height: 64px; border-radius: 50%; background: #f8fafc; display: flex; align-items: center; justify-content: center; margin: 0 auto 24px; transition: background 0.3s ease; }
.vas-card:hover .vas-icon-wrapper { background: var(--primary); }
.vas-icon { width: 32px; height: 32px; color: var(--text-gray); transition: color 0.3s ease; }
.vas-card:hover .vas-icon { color: white; }
.vas-card-title { font-size: 20px; color: var(--text-main); margin-bottom: 12px; }
.vas-card-desc { color: var(--text-gray); line-height: 1.6; }

/* =Policy Section
-------------------------------------------------------------- */
.policy-section { background: linear-gradient(to bottom, var(--background), #f5f0e8); }
.policy-header { text-align: center; max-width: 800px; margin: 0 auto 4rem; }
.policy-title { font-size: 2.5rem; font-weight: 700; color: var(--text-main); margin-bottom: 1rem; }
.policy-desc { font-size: 1.125rem; color: var(--text-gray); }
.policy-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 2rem; max-width: 1400px; margin: 0 auto; }
.policy-card { padding: 2.5rem; display: flex; flex-direction: column; gap: 1.5rem; transition: all 0.4s cubic-bezier(0.4,0,0.2,1); border: 1px solid rgba(212,163,115,0.1); }
.policy-card:hover { transform: translateY(-8px); border-color: var(--primary); box-shadow: 0 20px 40px rgba(212,163,115,0.1); }
.policy-badge { display: inline-flex; align-items: center; padding: 0.4rem 1rem; background: rgba(212,163,115,0.1); color: var(--primary); border-radius: 99px; font-size: 0.875rem; font-weight: 600; width: fit-content; }
.policy-card-title { font-size: 1.5rem; font-weight: 700; color: var(--text-main); line-height: 1.4; }
.policy-card-content { color: var(--text-gray); font-size: 1rem; line-height: 1.7; }
.policy-footer { margin-top: auto; padding-top: 1.5rem; border-top: 1px solid rgba(0,0,0,0.05); display: flex; align-items: center; justify-content: space-between; color: var(--primary); font-weight: 600; font-size: 0.875rem; }
.policy-card:hover .policy-footer svg { transform: translateX(5px); }

/* =My Account Page
-------------------------------------------------------------- */
.main-container { max-width: 1200px; margin: 2rem auto; padding: 6rem 1.5rem 3rem; display: grid; grid-template-columns: 280px 1fr; gap: 2rem; }
.sidebar { background: white; border-radius: 1rem; padding: 1.5rem; height: fit-content; position: sticky; top: 100px; box-shadow: 0 4px 20px rgba(0,0,0,0.05); }
.sidebar-profile { text-align: center; padding-bottom: 1.5rem; border-bottom: 1px solid #eee; margin-bottom: 1.5rem; }
.sidebar-avatar { width: 80px; height: 80px; border-radius: 50%; background: linear-gradient(135deg, var(--primary) 0%, var(--primary-hover) 100%); display: flex; align-items: center; justify-content: center; color: white; font-weight: 700; font-size: 2rem; margin: 0 auto 1rem; }
.member-badge { display: inline-flex; align-items: center; gap: 0.375rem; padding: 0.375rem 0.875rem; background: rgba(212,163,115,0.15); color: var(--primary); border-radius: 20px; font-size: 0.8rem; font-weight: 600; }
.sidebar-nav { display: flex; flex-direction: column; gap: 0.25rem; }
.nav-item { display: flex; align-items: center; gap: 0.75rem; padding: 0.75rem 1rem; border-radius: 0.5rem; color: var(--text-gray); text-decoration: none; font-weight: 500; transition: all 0.2s; }
.nav-item:hover { background: rgba(212,163,115,0.08); color: var(--text-main); }
.nav-item.active { background: rgba(212,163,115,0.15); color: var(--primary); }
.sidebar-footer { margin-top: 1.5rem; padding-top: 1.5rem; border-top: 1px solid #eee; }
.btn-logout { display: flex; align-items: center; justify-content: center; gap: 0.5rem; width: 100%; padding: 0.75rem; background: #fef2f2; color: #dc2626; border: none; border-radius: 0.5rem; font-weight: 600; cursor: pointer; transition: all 0.2s; text-decoration: none; }
.btn-logout:hover { background: #fee; }
.stat-card { background: white; border-radius: 1rem; padding: 1.5rem; display: flex; align-items: center; gap: 1rem; box-shadow: 0 4px 20px rgba(0,0,0,0.05); }
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1rem; }
.card { background: white; border-radius: 1rem; padding: 1.5rem; box-shadow: 0 4px 20px rgba(0,0,0,0.05); }
.card-title { font-size: 1.25rem; font-weight: 700; color: var(--text-main); }
.card-action { padding: 0.5rem 1rem; background: var(--background); color: var(--primary); border: none; border-radius: 0.5rem; font-weight: 600; cursor: pointer; transition: all 0.2s; }
.card-action:hover { background: rgba(212,163,115,0.1); }

/* =PC端增强 (min-width: 1024px)
-------------------------------------------------------------- */
@media (min-width: 1024px) {
    :root { --section-padding-y: 7rem; }
    .main-nav { display: flex; }
    .btn-login { display: flex; }
    .hero-section { flex-direction: row; }
    .hero-title { font-size: 3.75rem; }
    .bento-box { width: 33.75rem; }
    .feature-bento { grid-template-columns: repeat(3, 1fr); }
    .feature-card:nth-child(1) { grid-column: span 2; display: flex; text-align: left; align-items: center; gap: 2rem; }
    .feature-card:nth-child(1) .feature-icon-wrapper { margin: 0; flex-shrink: 0; }
    .feature-card:nth-child(4) { grid-column: span 2; display: flex; text-align: left; align-items: center; gap: 2rem; }
    .feature-card:nth-child(4) .feature-icon-wrapper { margin: 0; flex-shrink: 0; }
    .care-plan-cards { grid-template-columns: repeat(4, 1fr); }
    .expert-grid { grid-template-columns: repeat(3, 1fr); }
    .process-grid { grid-template-columns: repeat(4, 1fr); }
}

/* ============================================================
   平板端響應式 (max-width: 992px)
   ============================================================ */
@media (max-width: 992px) {
    .menu-toggle { display: flex; }
    .header-actions { display: none; }
    .main-nav {
        position: fixed;
        top: 5rem;
        left: 0;
        right: 0;
        bottom: 0;
        flex-direction: column;
        background: var(--background);
        padding: 2rem;
        transform: translateX(-100%);
        transition: transform 0.3s ease;
        z-index: 999;
        display: flex;
    }
    .main-nav.active { transform: translateX(0); }
    .main-nav ul { flex-direction: column; width: 100%; gap: 0.5rem; }
    .main-nav a { width: 100%; padding: 1rem 1.25rem; font-size: 1.125rem; }
    .main-nav a::after { display: none; }
    .main-nav a:hover { background: rgba(212,163,115,0.1); }
    .listing-container { grid-template-columns: repeat(2, 1fr); gap: 1.25rem; }
    .hero-section { padding-top: calc(var(--section-padding-y) + 5rem); padding-bottom: 3rem; }
    .bento-box { margin-top: 1rem; }
    .calc-bento-grid { grid-template-columns: repeat(2, 1fr); }
    .calc-card-header,.calc-card-result,.calc-card-cta { grid-column: span 2; }
}

/* ============================================================
   手機端響應式 (max-width: 768px)
   ============================================================ */
@media (max-width: 768px) {
    :root { --section-padding-y: 3rem; --section-padding-x: 1rem; }
    body { font-size: 15px; line-height: 1.6; }
    .container { padding: 2rem 1rem; }
    .section-padding { padding-top: 3rem; padding-bottom: 3rem; }
    h1 { font-size: 2rem; }
    h2 { font-size: 1.75rem; }
    h3 { font-size: 1.5rem; }
    h4 { font-size: 1.25rem; }
    .font-serif { font-weight: 700; }

    /* Background blobs */
    .bg-blob { filter: blur(40px); }
    .blob-2 { width: 15rem; height: 15rem; top: 10%; right: 0; }

    /* Header */
    .header-content { height: 4rem; }
    .logo-text { font-size: 1.25rem; }

    /* Hero */
    .hero-section { flex-direction: column; gap: 2rem; padding-top: calc(4rem + 60px); }
    .hero-content { text-align: center; align-items: center; }
    .hero-title { font-size: 1.75rem; line-height: 1.3; }
    .hero-title-highlight { font-size: 1.875rem; }
    .hero-desc { font-size: 1rem; line-height: 1.6; padding: 0 0.5rem; }
    .hero-actions { flex-direction: column; width: 100%; padding: 0.5rem 1rem; }
    .btn-primary,.btn-secondary { width: 100%; padding: 0.875rem 1.5rem; font-size: 1rem; text-align: center; justify-content: center; }
    .hero-tags { justify-content: center; gap: 0.5rem; }
    .tag { padding: 0.375rem 0.75rem; font-size: 0.8rem; }

    /* Bento Box */
    .bento-box { width: 100%; gap: 0.75rem; }
    .bento-card { padding: 1rem; border-radius: 1.25rem; }
    .bento-card-h1 { height: auto; min-height: 8rem; }
    .bento-card-h2 { height: auto; min-height: 9rem; grid-column: span 2; }
    .bento-header { font-size: 0.8rem; margin-bottom: 0.5rem; }
    .bento-value { font-size: 1.75rem; }
    .bento-value.large { font-size: 1.875rem; }
    .bento-value.medium { font-size: 1.5rem; }
    .bento-desc { font-size: 0.8rem; }
    .bento-value-suffix,.bento-value-suffix-accent { font-size: 1.125rem; }
    .bento-value-unit { font-size: 0.875rem; }
    .bento-badge { font-size: 0.7rem; padding: 0.2rem 0.5rem; }
    .bento-bg-shape { width: 5rem; height: 5rem; }

    /* Search */
    .search-dashboard { padding: 1.25rem; border-radius: 1.5rem; }
    .search-dashboard.compact { padding: 1rem; }
    .search-hub-header { margin-bottom: 1.5rem; }
    .search-hub-title { font-size: 1.5rem; margin-bottom: 0.5rem; }
    .search-hub-desc { font-size: 0.9rem; }
    .main-search-bar { flex-direction: column; gap: 0.75rem; padding: 0.5rem; border-radius: 1.25rem; }
    .main-search-input-wrapper { padding-left: 0.75rem; }
    .main-search-input-wrapper input { font-size: 1rem; padding: 0.75rem 0; }
    .btn-search-main { width: 100%; padding: 0.875rem 1.5rem; font-size: 1rem; justify-content: center; }

    /* Control bar */
    .control-bar { flex-direction: column; align-items: stretch; gap: 0.75rem; margin-bottom: 1rem; }
    .result-count { font-size: 1rem; text-align: center; }
    .sort-options { display: flex; overflow-x: auto; gap: 1rem; padding-bottom: 4px; -webkit-overflow-scrolling: touch; justify-content: center; }
    .sort-btn { font-size: 0.9rem; padding: 0.375rem 0.75rem; white-space: nowrap; }

    /* Cards */
    .listing-container { grid-template-columns: 1fr; gap: 1rem; }
    .listing-card { border-radius: 1rem; }
    .card-image-wrapper { height: 180px; }
    .card-content { padding: 1rem; }
    .card-header { gap: 0.375rem; margin-bottom: 0.5rem; }
    .card-title { font-size: 1rem; }
    .card-rating { padding: 3px 8px; border-radius: 6px; }
    .rating-score { font-size: 0.8rem; }
    .rating-count { font-size: 0.7rem; }
    .card-middle { gap: 0.5rem; }
    .card-location { font-size: 0.8rem; }
    .card-footer { flex-direction: column; align-items: flex-start; gap: 0.75rem; padding-top: 0.75rem; }
    .card-actions { width: 100%; justify-content: flex-end; }
    .btn-favorite { width: 36px; height: 36px; }
    .btn-book { flex: 1; height: 36px; font-size: 0.875rem; border-radius: 8px; }
    .btn-view-detail { flex: 1; height: 36px; font-size: 0.875rem; padding: 0 1rem; border-radius: 8px; }
    .price-amount { font-size: 1.25rem; }
    .card-tags { bottom: 0.5rem; right: 0.5rem; }
    .card-tags .tag { padding: 3px 8px; font-size: 0.7rem; }

    /* Loading / No results */
    .listing-loading { padding: 2rem; }
    .loading-spinner { width: 32px; height: 32px; }
    .no-results { padding: 3rem 1.5rem; }
    .no-results svg { width: 48px; height: 48px; }
    .no-results p { font-size: 1.1rem; }
    .no-results span { font-size: 0.85rem; }
    .btn-contact-service { padding: 0.75rem 1.25rem; font-size: 0.9rem; }
    .listing-more-wrapper { padding: 1.5rem 0; }
    .btn-view-more { padding: 0.875rem 2rem; font-size: 0.95rem; }

    /* Calculator */
    .calc-bento-grid { grid-template-columns: 1fr; gap: 1rem; padding: 0 1rem; }
    .calc-card-header,.calc-card-result,.calc-card-cta { grid-column: 1 / -1; }
    .calc-card-input-adl,.calc-card-input-medical,.calc-card-input-consumables,.calc-card-input-subsidies,.calc-card-input-city,.calc-card-input-room,.calc-card-result { padding: 1.25rem; border-radius: 1rem; }
    .calc-label-title { font-size: 1rem; margin-bottom: 1rem; }
    .calc-label-current { font-size: 1rem; }
    .calc-chip-grid { grid-template-columns: 1fr; gap: 0.5rem; }
    .calc-chip { padding: 0.625rem 0.75rem; font-size: 0.85rem; }
    .calc-select-custom { padding: 0.75rem; font-size: 0.9rem; background-size: 1.25rem; }
    .calc-room-grid { grid-template-columns: 1fr; gap: 0.5rem; }
    .calc-room-btn { padding: 0.75rem; font-size: 0.9rem; }
    .calc-result-display { flex-direction: column; align-items: flex-start; gap: 0.25rem; }
    .calc-result-symbol { font-size: 1.25rem; }
    .calc-result-num { font-size: 3rem; }
    .calc-mini-breakdown { grid-template-columns: 1fr; gap: 0.75rem; margin-top: 1.25rem; padding-top: 1.25rem; }
    .calc-mini-item { flex-direction: row; justify-content: space-between; align-items: center; }
    .calc-comparison-tag { font-size: 0.8rem; padding: 0.375rem 0.75rem; }
    .calc-toggle-group { gap: 0.5rem; }
    .calc-toggle-item { padding: 0.625rem 0.75rem; font-size: 0.85rem; }
    .calc-mini-label { font-size: 0.8rem; }
    .calc-subsidy-info { font-size: 0.7rem; }
    .calc-card-cta { flex-direction: column; text-align: center; padding: 1.25rem; gap: 1rem; }
    .calc-cta-content { flex-direction: column; gap: 0.75rem; }
    .calc-cta-icon { width: 3rem; height: 3rem; margin-bottom: 0; }
    .calc-cta-icon svg { width: 1.5rem; height: 1.5rem; }
    .calc-cta-text { font-size: 1rem; }
    .calc-cta-sub { font-size: 0.8rem; margin-bottom: 0; }
    .calc-card-cta .btn-primary { width: 100%; padding: 0.875rem; font-size: 1rem; }
    .calc-label-group { flex-direction: column; align-items: flex-start; gap: 0.5rem; }
    .calc-label-group .calc-label-title { margin-bottom: 0; }
    .calc-chip { flex-direction: row; justify-content: flex-start; text-align: left; gap: 0.5rem; }
    .calc-chip svg,.calc-chip i { flex-shrink: 0; width: 1.1rem; height: 1.1rem; }
    .calc-toggle-item { flex-direction: column; align-items: flex-start; gap: 0.5rem; }
    .calc-toggle-item .calc-mini-label { align-self: flex-end; margin-top: 0; }
    .calc-card-result { background: linear-gradient(135deg, rgba(212,163,115,0.08) 0%, rgba(212,163,115,0.15) 100%); }

    /* Process */
    .process-section { padding: 3rem 0; }
    .process-grid { grid-template-columns: 1fr; gap: 1.5rem; }
    .process-card { padding: 1.5rem 1.25rem; gap: 1rem; }
    .process-number { font-size: 2.5rem; top: 0.75rem; right: 1rem; }
    .process-icon-wrapper { width: 3.5rem; height: 3.5rem; border-radius: 1rem; }
    .process-icon { width: 1.5rem; height: 1.5rem; }
    .process-card-title { font-size: 1.125rem; }
    .process-card-desc { font-size: 0.9rem; }
    .search-hub-header { margin-bottom: 2.5rem; }
    .search-hub-title { font-size: 1.5rem; }

    /* Feature */
    .feature-section { padding: 3rem 0; }
    .feature-header { margin-bottom: 2.5rem; }
    .feature-title { font-size: 1.625rem; margin-bottom: 0.75rem; }
    .feature-desc { font-size: 0.95rem; }
    .feature-bento { padding: 0 1rem; gap: 1rem; }
    .feature-card { padding: 1.5rem 1.25rem; border-radius: 1.25rem; }
    .feature-icon-wrapper { width: 48px; height: 48px; margin-bottom: 1rem; }
    .feature-icon { width: 24px; height: 24px; }
    .feature-card-title { font-size: 1.125rem; margin-bottom: 0.5rem; }
    .feature-card-desc { font-size: 0.9rem; }

    /* Care Plan */
    .care-plan-section { padding: 3rem 0; }
    .care-plan-header { margin-bottom: 2.5rem; }
    .care-plan-title { font-size: 1.625rem; margin-bottom: 0.75rem; }
    .care-plan-desc { font-size: 0.95rem; }
    .care-plan-cards { padding: 0 1rem; gap: 1rem; }
    .care-plan-card { padding: 1.25rem; border-radius: 1.25rem; gap: 0.75rem; }
    .care-plan-level { font-size: 0.75rem; padding: 0.2rem 0.5rem; }
    .care-plan-target { font-size: 1rem; min-height: auto; }
    .care-plan-features { gap: 0.5rem; }
    .care-plan-features li { font-size: 0.875rem; }

    /* Expert */
    .expert-section { padding: 3rem 0; }
    .expert-header { margin-bottom: 2rem; }
    .expert-title { font-size: 1.625rem; margin-bottom: 0.5rem; }
    .expert-desc { font-size: 0.95rem; }
    .expert-grid { gap: 1.5rem; }
    .expert-card { padding: 1.5rem 1.25rem; border-radius: 1.25rem; }
    .expert-avatar-wrapper { width: 6rem; height: 6rem; margin-bottom: 0.75rem; }
    .expert-name { font-size: 1.125rem; }
    .expert-role { font-size: 0.9rem; }
    .expert-cert { font-size: 0.8rem; }
    .expert-bio { font-size: 0.875rem; }

    /* Case */
    .case-section { padding: 3rem 0; }
    .case-header { margin-bottom: 2.5rem; padding: 0 1rem; }
    .case-title { font-size: 1.625rem; }
    .case-desc { font-size: 0.95rem; }
    .hidden-mobile { display: none; }
    .mobile-only { display: block; }
    .case-container { padding: 0 1rem; }
    .case-line { left: 20px; }
    .case-node { flex-direction: column; align-items: flex-start; padding-left: 50px; margin-bottom: 2.5rem; }
    .case-node-left,.case-node-right { width: 100%; }
    .case-node-center { left: 20px; top: 0; width: 32px; height: 32px; }
    .case-day { font-size: 0.65rem; }
    .case-card { padding: 1.25rem; border-radius: 1rem; }
    .case-card-title { font-size: 1rem; }
    .case-card-desc,.case-node-desc { font-size: 0.875rem; }
    .case-node-title { font-size: 1.125rem; }

    /* VAS */
    .vas-section { padding: 3rem 0; }
    .vas-header { margin-bottom: 2.5rem; }
    .vas-title { font-size: 1.625rem; }
    .vas-desc { font-size: 0.95rem; }
    .vas-grid { padding: 0 1rem; gap: 1rem; }
    .vas-card { padding: 1.25rem; border-radius: 1rem; }
    .vas-icon-wrapper { width: 48px; height: 48px; margin-bottom: 1rem; }
    .vas-icon { width: 24px; height: 24px; }
    .vas-card-title { font-size: 1rem; margin-bottom: 0.5rem; }
    .vas-card-desc { font-size: 0.875rem; }

    /* Policy */
    .policy-section { padding: 3rem 0; }
    .policy-header { margin-bottom: 2rem; padding: 0 1rem; }
    .policy-title { font-size: 1.625rem; }
    .policy-desc { font-size: 0.95rem; }
    .policy-grid { padding: 0 1rem; gap: 1rem; grid-template-columns: 1fr; }
    .policy-card { padding: 1.5rem 1.25rem; border-radius: 1.25rem; gap: 1rem; }
    .policy-badge { font-size: 0.75rem; padding: 0.25rem 0.625rem; }
    .policy-card-title { font-size: 1.125rem; }
    .policy-card-content { font-size: 0.9rem; }
    .policy-footer { padding-top: 1rem; font-size: 0.8rem; }
    .policy-footer svg { width: 1rem; height: 1rem; }

    /* Modal */
    .modal-content.bg-white { max-width: 100%; border-radius: 20px 20px 0 0; position: fixed; bottom: 0; left: 0; right: 0; max-height: 92vh; }
    .modal-overlay.show .modal-content.bg-white { transform: translateY(0); }
    .modal-header { padding: 1rem 1.25rem; flex-direction: column; align-items: flex-start; gap: 0.5rem; }
    .modal-title { font-size: 1.125rem; }
    .modal-subtitle { font-size: 0.8rem; }
    .btn-close-modal { position: absolute; top: 1rem; right: 1rem; width: 32px; height: 32px; }
    .progress-bar-wrapper { padding: 1rem 1.25rem 0; }
    .progress-bar { height: 6px; }
    .modal-body { padding: 1rem 1.25rem; }
    .form-step-header { margin-bottom: 1rem; }
    .form-step-header svg { width: 24px; height: 24px; }
    .form-step-header h4 { font-size: 1rem; }
    .form-group { margin-bottom: 1rem; }
    .form-group label { font-size: 0.85rem; }
    .form-input { padding: 0.625rem 0.75rem; font-size: 0.95rem; border-radius: 0.625rem; }
    .form-select { padding: 0.625rem 0.75rem; font-size: 0.95rem; border-radius: 0.625rem; }
    .options-grid.age-grid { grid-template-columns: repeat(3, 1fr); gap: 0.5rem; }
    .options-flex { gap: 0.375rem; }
    .option-label { padding: 0.375rem 0.625rem; font-size: 0.8rem; border-radius: 0.5rem; }
    .district-grid { max-height: 120px; }
    .modal-footer { padding: 0.75rem 1.25rem 1.5rem; flex-direction: column-reverse; gap: 0.75rem; }
    .modal-footer .btn-secondary,.modal-footer .btn-primary { width: 100%; padding: 0.75rem; font-size: 0.95rem; justify-content: center; }
    .modal-footer .btn-dark { width: 100%; padding: 0.75rem; font-size: 0.95rem; }
    .success-step { padding: 1.5rem 0; }
    .success-step .success-icon { width: 5rem; height: 5rem; }
    .success-step .success-icon svg { width: 2.5rem; height: 2.5rem; }
    .success-step h3 { font-size: 1.25rem; }
    .success-step > p { font-size: 0.9rem; }
    .success-info { padding: 0.75rem; }
    .success-phone { font-size: 1.125rem; }

    /* Login Redesign */
    .login-redesign { align-self: flex-end; overflow: hidden !important; }
    .login-form-area { overflow-y: auto !important; flex-shrink: 0; }
    .form-scroll-content { overflow-y: auto; max-height: calc(95vh - 180px); padding: 2rem 1.5rem; scrollbar-width: thin; scrollbar-color: rgba(212,163,115,0.3) transparent; }
    .form-scroll-content::-webkit-scrollbar { width: 4px; }
    .form-scroll-content::-webkit-scrollbar-track { background: transparent; }
    .form-scroll-content::-webkit-scrollbar-thumb { background: rgba(212,163,115,0.3); border-radius: 4px; }
    .visual-title { font-size: 1.75rem; }
    .field-input { padding: 1rem 3rem; }
    .submit-btn { padding: 1.25rem; font-size: 1rem; }

    /* Auth — keep for fallback */
    .auth-modal-content { max-width: 100%; padding: 1.5rem 1.25rem 2rem; border-radius: 20px 20px 0 0; max-height: 90vh; overflow-y: auto; }
    .auth-tabs { margin-bottom: 1.25rem; }
    .auth-tab { padding: 0.625rem 0.75rem; font-size: 0.9rem; }
    .auth-title { font-size: 1.25rem; }
    .auth-desc { font-size: 0.85rem; }
    .auth-form .form-group { margin-bottom: 1rem; }
    .auth-form .form-label { font-size: 0.85rem; }
    .auth-form .form-input { padding: 0.75rem 0.75rem 0.75rem 2.5rem; font-size: 0.95rem; border-radius: 0.75rem; }
    .input-icon { width: 18px; height: 18px; left: 0.75rem; }
    .form-row-between { flex-direction: column; gap: 0.75rem; align-items: flex-start; }
    .checkbox-label { font-size: 0.85rem; }
    .btn-auth-submit { padding: 0.875rem; font-size: 1rem; }
    .forgot-link {
    font-size: 0.85rem;
    color: #FF7F50;
    text-decoration: none;
    cursor: pointer;
    transition: color 0.2s;
}
.forgot-link:hover { color: #e8663f; text-decoration: underline; }

.code-btn {
    flex-shrink: 0;
    padding: 0.4rem 0.75rem;
    background: #FF7F50;
    color: white;
    border: none;
    border-radius: 0.5rem;
    font-size: 0.8rem;
    font-weight: 600;
    cursor: pointer;
    white-space: nowrap;
    transition: background 0.2s;
}
.code-btn:hover { background: #e8663f; }
.code-btn:disabled { background: #cbd5e1; cursor: not-allowed; }
    .success-modal-content { padding: 2rem 1.5rem; border-radius: 20px 20px 0 0; }
    .success-modal-content .success-icon { width: 4rem; height: 4rem; }
    .success-modal-content .success-icon svg { width: 2rem; height: 2rem; }
    .success-title { font-size: 1.25rem; }
    .success-desc { font-size: 0.9rem; }
    .btn-success-close { padding: 0.75rem 1.5rem; font-size: 0.9rem; }

    /* Modal filter options */
    #moreFiltersModal .modal-content,#cityDistrictModal .modal-content { border-radius: 20px 20px 0 0; max-height: 85vh; }
    .modal-scroll-area { padding: 1rem 1.25rem; }
    .modal-section-title { font-size: 1rem; margin-bottom: 0.75rem; }
    .modal-section-title svg { width: 18px; height: 18px; }
    .modal-options-grid { grid-template-columns: repeat(2, 1fr); gap: 0.5rem; }
    .modal-option { padding: 0.75rem 0.5rem; font-size: 0.85rem; border-radius: 0.75rem; }

    /* Footer */
    .footer { padding: 3rem 0 1.5rem; }
    .footer-grid { gap: 2rem; }
    .footer-title { font-size: 1rem; }
    .footer-bottom { flex-direction: column; text-align: center; gap: 1rem; padding-top: 1.5rem; }
    .footer-bottom-links { gap: 1rem; }
    .footer-bottom-link { font-size: 0.8rem; }

    /* Touch optimization */
    .btn-primary,.btn-secondary,.btn-search-main,.btn-book,.btn-view-detail,.btn-confirm-filter,.btn-modal-apply,.btn-auth-submit { min-height: 44px; -webkit-tap-highlight-color: transparent; }
    .glass-card:hover { transform: none; }
    .listing-card:hover { transform: none; }
    .btn-view-detail:hover,.btn-book:hover { transform: none; }
    .btn-primary:active,.btn-secondary:active,.btn-search-main:active,.btn-book:active,.btn-view-detail:active,.btn-confirm-filter:active,.btn-modal-apply:active,.btn-auth-submit:active { opacity: 0.9; transform: scale(0.98); }
    .filter-chip:active,.modal-option:active,.option-label:active { opacity: 0.8; }
    .process-card:active .process-icon-wrapper,.feature-card:active,.vas-card:active { opacity: 0.9; }

    /* Image placeholder */
    .card-image-wrapper { background: linear-gradient(135deg, #f0e6d9 0%, #e8ddd0 100%); min-height: 150px; }
    .card-image-wrapper img { transition: opacity 0.3s ease; }
    .expert-avatar-wrapper { background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%); }
}

/* ============================================================
   小屏手機響應式 (max-width: 480px)
   ============================================================ */
@media (max-width: 480px) {
    .hero-section { padding-top: calc(2rem + 50px); gap: 1.5rem; }
    .hero-title { font-size: 1.5rem; }
    .hero-title-highlight { font-size: 1.625rem; }
    .hero-desc { font-size: 0.9rem; }
    .hero-actions { flex-direction: row; }
    .btn-primary,.btn-secondary { width: auto; flex: 1; }
    .bento-box { display: none; }
    .modal-content.bg-white { max-height: 95vh; }
    .case-section .case-container { max-height: none; }
    .options-grid.age-grid { grid-template-columns: repeat(2, 1fr); }
    .option-label { padding: 0.25rem 0.5rem; font-size: 0.75rem; }
    body { font-size: 14px; }
    .hero-title { font-size: 1.5rem; }
    .hero-title-highlight { font-size: 1.625rem; }
    .tag { padding: 0.25rem 0.5rem; font-size: 0.7rem; }
    .btn-primary,.btn-secondary { padding: 0.75rem 1.25rem; font-size: 0.9rem; }
    .footer { padding: 2.5rem 0 1.5rem; }
    .footer-container { padding: 0 1rem; }
    .footer-grid { grid-template-columns: 1fr; gap: 1.5rem; margin-bottom: 2rem; }
    .footer-logo-group { margin-bottom: 1rem; }
    .footer-logo-icon { width: 32px; height: 32px; font-size: 16px; }
    .footer-logo-text { font-size: 1.125rem; }
    .footer-desc { font-size: 0.875rem; }
    .footer-list-item { margin-bottom: 0.75rem; }
    .footer-link { font-size: 0.875rem; }
    .footer-bottom { padding-top: 1.5rem; }
}

/* =Safe Area (iPhone notch)
-------------------------------------------------------------- */
@supports (padding-bottom: env(safe-area-inset-bottom)) {
    @media (max-width: 480px) {
        .modal-footer { padding-bottom: calc(1.5rem + env(safe-area-inset-bottom)); }
        .auth-modal-content { padding-bottom: calc(2rem + env(safe-area-inset-bottom)); }
        .modal-content.bg-white { padding-bottom: env(safe-area-inset-bottom); }
    }
}


/* 活動看板容器 */
.event-banner-card {
    grid-column: 1 / -1;
    width: 100%;
    max-width: 1400px;
    min-height: 8rem;
    padding: 2rem 3rem;

    margin:  calc(var(--section-padding-y) + 3rem) auto 2rem auto;
    border-radius: 2.5rem;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 1.5rem;
    background: #0f172a; /* 深色底色預載 */
    box-shadow: 0 20px 40px -10px rgba(0,0,0,0.15);
  }
  
  @media (min-width: 1024px) {
    .event-banner-card {
      flex-direction: row;
      align-items: center;
      justify-content: space-between;
    }
  }
  
  /* 背景圖處理 */
  .event-banner-bg {
    position: absolute;
    inset: 0;
    background: url('https://images.unsplash.com/photo-1573497019940-1c28c88b4f3e?auto=format&fit=crop&q=80&w=1200');
    background-size: cover;
    background-position: center 30%;
    opacity: 0.5;
    transition: transform 0.6s ease;
  }
  
  .event-banner-card:hover .event-banner-bg {
    transform: scale(1.05); /* 懸停時背景微動，增加生動感 */
  }
  
  /* 內容區 */
  .event-banner-content {
    position: relative;
    z-index: 2;
    color: white;
  }
  
  .event-badge {
    display: inline-block;
    background: #FF7F50;
    color: white;
    padding: 0.25rem 0.8rem;
    border-radius: 999px;
    font-size: 0.75rem;
    font-weight: 800;
    margin-bottom: 0.75rem;
    letter-spacing: 0.05em;
  }
  
  .event-title {
    font-size: 1.6rem;

    color: #fff;
    font-weight: 700;
    margin: 0 0 0.4rem 0;
    line-height: 1.3;
  }
  
  .event-desc {
    font-size: 0.95rem;
    opacity: 0.8;
    font-weight: 300;
    margin: 0;
  }
  
  /* 按鈕樣式 */
  .btn-event {
    position: relative;
    z-index: 2;
    background: white;
    color: #FF7F50;
    padding: 0.85rem 2.2rem;
    border-radius: 999px;
    font-weight: 800;
    font-size: 1.05rem;
    display: flex;
    align-items: center;
    gap: 0.6rem;
    transition: all 0.3s ease;
    white-space: nowrap;
  }
  
  .btn-event:hover {
    background: #FF7F50;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(255, 127, 80, 0.4);
  }