:root {
    --zcy-primary: #F5A623;
    --zcy-primary-light: #E08C0A;
    --zcy-primary-dark: #C8956C;
    --zcy-primary-50: #FFF9F5;
    --zcy-primary-100: #FFF0E0;
    --zcy-primary-200: #F0DCC8;
    --zcy-primary-300: #F5A623;
    --zcy-primary-400: #F5A623;
    --zcy-primary-500: #F5A623;
    --zcy-primary-600: #E08C0A;
    --zcy-primary-700: #C8956C;
    --zcy-primary-800: #8B5E3C;
    --zcy-primary-900: #7A5230;
    --zcy-primary-950: #3D2000;
    --zcy-text: #3D2000;
    --zcy-text-light: rgba(61, 32, 0, 0.6);
    --zcy-bg: #FFF9F5;
    --zcy-white: #ffffff;
    --zcy-radius: 0.5rem;
    --zcy-radius-lg: 0.75rem;
    --zcy-radius-xl: 0.875rem;
    --zcy-radius-2xl: 0.875rem;
    --zcy-radius-3xl: 0.875rem;
    --zcy-shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --zcy-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px -1px rgba(0, 0, 0, 0.1);
    --zcy-shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -4px rgba(0, 0, 0, 0.1);
    --zcy-shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 8px 10px -6px rgba(0, 0, 0, 0.1);
    --zcy-container: 1280px;
    --zcy-font: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: var(--zcy-font);
    color: var(--zcy-text);
    background-color: var(--zcy-white);
    line-height: 1.6;
    min-height: 100vh;
    overflow-x: hidden;
    padding-top: 0;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; transition: color 0.3s ease; }
button { cursor: pointer; font-family: inherit; border: none; background: none; }
ul, ol { list-style: none; padding-left: 0; margin: 0; }
.navbar-menu ul,
.navbar-menu li,
.navbar-menu .menu-item {
    list-style: none;
    padding: 0;
}
.navbar-menu .menu-item::before {
    content: none !important;
}

.container {
    max-width: var(--zcy-container);
    margin-left: auto;
    margin-right: auto;
    padding-left: 1rem;
    padding-right: 1rem;
}
@media (min-width: 640px) { .container { padding-left: 1.5rem; padding-right: 1.5rem; } }
@media (min-width: 1024px) { .container { padding-left: 2rem; padding-right: 2rem; } }

::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: #FFF0E0; }
::-webkit-scrollbar-thumb { background: #C8956C; border-radius: 4px; }
::-webkit-scrollbar-thumb:hover { background: #A0724A; }

.gradient-text {
    background: linear-gradient(135deg, #F5A623, #F5A623, #E08C0A);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Puppy Hero Animation */
.puppy-hero-content {
    animation: fadeInUp 0.6s ease-out forwards;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.glass {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 16px;
    border-radius: 24px;
    font-size: 0.85rem;
    font-weight: 600;
    border: 1px solid #F0DCC8;
    margin-bottom: 16px;
}
.badge-primary { background-color: #FFF0E0; color: #C8956C; border-color: #F0DCC8; }
.badge img { flex-shrink: 0; }
.badge-highlight {
    background: linear-gradient(to right, var(--zcy-primary-500), var(--zcy-primary-600));
    color: white;
    border: 0;
    box-shadow: 0 4px 12px -2px rgba(245, 166, 35, 0.4);
}

@keyframes badgeShimmer {
    0%, 100% { box-shadow: 0 4px 6px -1px rgba(245,166,35,0.3); }
    50% { box-shadow: 0 4px 15px -1px rgba(245,166,35,0.5); }
}

@keyframes backToTopPop {
    0% { transform: scale(0); opacity: 0; }
    70% { transform: scale(1.15); opacity: 1; }
    100% { transform: scale(1); opacity: 1; }
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.875rem 1.75rem;
    border-radius: var(--zcy-radius-2xl);
    font-weight: 600;
    font-size: 0.875rem;
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    text-decoration: none;
    line-height: 1.25;
    position: relative;
    overflow: hidden;
}
.btn::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(rgba(255,255,255,0.15), transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
}
.btn:hover::before { opacity: 1; }
.btn:hover { transform: translateY(-2px); }

.btn-primary {
    background: linear-gradient(to right, var(--zcy-primary-400), var(--zcy-primary-500));
    color: white;
    box-shadow: 0 10px 20px -5px rgba(245, 166, 35, 0.35);
}
.btn-primary:hover { box-shadow: 0 14px 28px -5px rgba(245, 166, 35, 0.5); }

.btn-outline {
    border: 2px solid rgba(245, 166, 35, 0.3);
    color: rgba(255, 255, 255, 0.8);
}
.btn-outline:hover { background: rgba(245, 166, 35, 0.12); border-color: rgba(245, 166, 35, 0.5); }

.btn-outline-dark {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.875rem 1.75rem;
    border-radius: 1rem;
    border: 2px solid #F5A623;
    color: #C8956C;
    font-weight: 600;
    font-size: 0.875rem;
    transition: all 0.3s ease;
    text-decoration: none;
}
.btn-outline-dark:hover {
    background: #FFF9F5;
    border-color: #F5A623;
}
.btn-outline-dark svg {
    width: 1rem;
    height: 1rem;
    transition: transform 0.3s ease;
}
.btn-outline-dark:hover svg {
    transform: translateX(3px);
}

/* Puppies查看更多按钮样式 - 1:1还原参�?*/
.puppy-more-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.875rem 1.75rem;
    border-radius: 1rem;
    border: 2px solid #F5A623;
    color: #C8956C;
    font-weight: 600;
    transition: all 0.3s ease;
    text-decoration: none;
}
.puppy-more-btn:hover {
    background: #FFF9F5;
    border-color: #F5A623;
}
.puppy-more-btn svg {
    width: 1rem;
    height: 1rem;
    transition: transform 0.3s ease;
}
.puppy-more-btn:hover svg {
    transform: translateX(0.25rem);
}

.btn-white {
    background: white;
    color: var(--zcy-primary-700);
    box-shadow: 0 10px 20px -5px rgba(0, 0, 0, 0.12);
}
.btn-white:hover { box-shadow: 0 18px 30px -8px rgba(0, 0, 0, 0.16); }

.btn .btn-icon { width: 1rem; height: 1rem; transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1); }
.btn:hover .btn-icon-right { transform: translateX(3px); }

.section-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.375rem;
    padding: 0.25rem 0.75rem;
    border-radius: 9999px;
    font-size: 0.875rem;
    font-weight: 500;
    background-color: var(--zcy-primary-100);
    color: var(--zcy-primary-700);
    border: 1px solid var(--zcy-primary-200);
    margin-bottom: 1rem;
}

.section-title {
    font-size: 1.875rem;
    font-weight: 800;
    color: var(--zcy-primary-950);
    line-height: 1.2;
}
@media (min-width: 640px) { .section-title { font-size: 2.25rem; } }
.section-title .highlight {
    background: linear-gradient(to right, var(--zcy-primary-500), var(--zcy-primary-600));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-desc {
    margin-top: 1rem;
    color: #7A523099;
    max-width: 42rem;
    margin-left: auto;
    margin-right: auto;
    font-size: 1.125rem;
}

/* ========== NAVBAR ========== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: #fff9f5;
    border-bottom: 1px solid #f0dcc8;
    box-shadow: 0 4px 24px rgba(200, 149, 108, 0.18);
    overflow: visible;
}
.admin-bar .navbar {
    top: 32px;
}
@media (max-width: 782px) {
    .admin-bar .navbar {
        top: 46px;
    }
}

.navbar-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 4rem;
}
@media (min-width: 768px) { .navbar-inner { height: 4.5rem; } }

.navbar-logo {
    display: flex;
    align-items: center;
    text-decoration: none;
    padding: 0.5rem 0;
    margin: -0.5rem 0;
    position: relative;
    z-index: 1;
    flex-shrink: 0;
}

.nav-logo-img {
    height: 44px;
    width: auto;
    object-fit: contain;
    display: block;
}
@media (min-width: 1024px) { .nav-logo-img { height: 52px; } }

.navbar-menu {
    display: none;
    align-items: center;
    gap: 0.75rem;
    padding: 0.5rem 0;
}
@media (min-width: 768px) { .navbar-menu { display: flex; } }



.navbar-menu .menu-item {
    position: relative;
    background: none;
    border: none;
    cursor: pointer;
}
.navbar-menu .menu-item a {
    display: block;
    padding: 0.625rem 1.25rem;
    border-radius: 1.5rem;
    font-size: 1rem;
    font-weight: 500;
    color: rgba(120, 83, 48, 0.85);
    transition: all 0.3s ease;
    white-space: nowrap;
}
.navbar-menu .menu-item:hover > a,
.navbar-menu .menu-item.active > a {
    background: var(--zcy-primary-light, #F5A623);
    color: var(--zcy-white, #ffffff);
}

.navbar-menu .menu-item .dropdown-caret {
    width: 0.875rem;
    height: 0.875rem;
    margin-left: 0.25rem;
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: inline;
    vertical-align: middle;
}
.navbar-menu .menu-item:hover .dropdown-caret { transform: rotate(180deg); }

@media (min-width: 768px) and (max-width: 899px) {
    .navbar-menu { gap: 0.125rem; }
    .navbar-menu .menu-item a {
        padding: 0.4rem 0.5rem;
        font-size: 0.8125rem;
    }
}
@media (min-width: 900px) and (max-width: 1024px) {
    .navbar-menu { gap: 0.25rem; }
    .navbar-menu .menu-item a {
        padding: 0.5rem 0.75rem;
        font-size: 0.875rem;
    }
}

.menu-item-has-children { position: relative; }

.sub-menu {
    position: absolute;
    top: 100%;
    left: 0;
    margin-top: 0.25rem;
    width: 12rem;
    z-index: 1001;
    border-radius: var(--zcy-radius-2xl);
    background: white;
    box-shadow: 0 24px 38px -12px rgba(0, 0, 0, 0.12), 0 8px 16px -8px rgba(0, 0, 0, 0.08);
    border: 1px solid var(--zcy-primary-100);
    overflow: hidden;
    padding: 0.5rem 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px) scale(0.96);
    transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}
.menu-item-has-children:hover .sub-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0) scale(1);
}

.sub-menu a {
    display: block;
    padding: 0.625rem 1rem;
    font-size: 0.875rem;
    color: rgba(120, 83, 48, 0.85);
    transition: all 0.2s ease;
    position: relative;
}
.sub-menu a:hover { background: #FFF0E0; color: #E08C0A; padding-left: 1.5rem; }

.sub-menu a.active {
    background: #FFF0E0;
    color: #E08C0A;
    padding-left: 1.5rem;
    font-weight: 600;
}

.navbar-actions {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    flex-shrink: 0;
}

.navbar-cta {
    display: inline-flex;
    align-items: center;
    gap: 0.375rem;
    padding: 0.625rem 1.25rem;
    border-radius: 0.75rem;
    background: linear-gradient(to right, var(--zcy-primary-500), var(--zcy-primary-600));
    color: white;
    font-size: 0.875rem;
    font-weight: 600;
    box-shadow: 0 4px 12px -2px rgba(245, 166, 35, 0.3);
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    text-decoration: none;
    position: relative;
    overflow: hidden;
}
.navbar-cta::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(rgba(255,255,255,0.2), transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
}
.navbar-cta:hover {
    box-shadow: 0 6px 18px -2px rgba(245, 166, 35, 0.45);
    transform: translateY(-1.5px);
    color: white;
}

.navbar-cta:hover::before { opacity: 1; }
.navbar-cta svg { width: 0.875rem; height: 0.875rem; }

.mobile-toggle {
    display: flex;
    flex-direction: column;
    gap: 5px;
    padding: 6px;
    border-radius: 0.5rem;
    transition: background 0.3s ease;
    background: none;
    border: none;
    cursor: pointer;
}
.mobile-toggle:hover { background: rgba(255, 240, 224, 0.6); }
@media (min-width: 768px) { .mobile-toggle { display: none; } }

.mobile-toggle span {
    display: block;
    width: 24px;
    height: 2.5px;
    background: var(--zcy-primary-800);
    border-radius: 2px;
    transition: all 0.3s ease;
}
.mobile-toggle.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.mobile-toggle.open span:nth-child(2) { opacity: 0; }
.mobile-toggle.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

.mobile-menu {
    max-height: 0;
    overflow: hidden;
    visibility: hidden;
    opacity: 0;
    border-top: 1px solid #f0dcc8;
    background: rgba(255, 249, 245, 0.95);
    backdrop-filter: blur(16px) saturate(180%);
    -webkit-backdrop-filter: blur(16px) saturate(180%);
    transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1),
                opacity 0.35s ease,
                visibility 0s linear 0.4s;
}
.mobile-menu.open {
    max-height: calc(100vh - 4rem);
    overflow-y: auto;
    visibility: visible;
    opacity: 1;
    transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1),
                opacity 0.35s ease,
                visibility 0s linear 0s;
}
.mobile-menu-inner { padding: 1rem 1rem 1.5rem; }

.mobile-menu ul,
.mobile-menu li {
    list-style: none;
    padding: 0;
    margin: 0;
}

.mobile-menu a,
.mobile-menu button {
    display: block;
    width: 100%;
    text-align: left;
    padding: 0.875rem 1.125rem;
    border-radius: 1.5rem;
    color: rgba(122, 82, 48, 0.85);
    font-weight: 500;
    background: none;
    border: none;
    cursor: pointer;
    font-size: 1.05rem;
    transition: background 0.2s ease;
}
.mobile-menu a:hover,
.mobile-menu button:hover { background: var(--zcy-primary-light); color: var(--zcy-white, #ffffff); }
.mobile-menu .menu-item.active > a {
    background: var(--zcy-primary-light);
    color: var(--zcy-white, #ffffff);
    font-weight: 600;
}
.mobile-menu .sub-menu .menu-item.active > a {
    background: var(--zcy-primary-light);
    color: var(--zcy-white, #ffffff);
    font-weight: 600;
}

.mobile-menu .sub-menu {
    position: static !important;
    padding-left: 0;
    margin: 0;
    opacity: 1 !important;
    visibility: visible !important;
    transform: none !important;
    background: none;
    border: none;
    box-shadow: none;
    border-radius: 0;
    width: auto;
}
.mobile-menu .dropdown-caret { display: none; }
.mobile-menu .sub-menu a {
    padding-left: 2rem;
    font-size: 0.9375rem;
    color: rgba(122, 82, 48, 0.7);
    border-radius: 1.5rem;
    background: none;
}
.mobile-menu .sub-menu a:hover,
.mobile-menu .sub-menu .menu-item.active > a {
    background: var(--zcy-primary-light);
    color: var(--zcy-white, #ffffff);
}

.mobile-menu .menu-item.current-menu-parent > a {
    background: transparent !important;
    color: rgba(122, 82, 48, 0.85) !important;
    font-weight: 500 !important;
}

.mobile-menu .mobile-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.375rem;
    width: 100%;
    margin-top: 0.75rem;
    margin-bottom: 0.5rem;
    padding: 0.875rem 1rem;
    border-radius: var(--zcy-radius-xl);
    background: linear-gradient(to right, var(--zcy-primary-500), var(--zcy-primary-600));
    color: white;
    text-align: center;
    font-weight: 600;
    text-decoration: none;
    transform: none !important;
    opacity: 1 !important;
}
.mobile-menu .mobile-cta:hover {
    background: linear-gradient(to right, var(--zcy-primary-500), var(--zcy-primary-600));
    color: white;
    transform: none !important;
}

/* ========== HERO ========== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
    will-change: transform;
}
.hero-bg-image {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    will-change: transform;
}
.hero-bg-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, rgba(61, 32, 0, 0.82), rgba(61, 32, 0, 0.52), rgba(61, 32, 0, 0.32));
}
.hero-bg-bottom {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, #FFF9F5 0%, transparent 40%, transparent 100%);
}

.hero-paws {
    position: absolute;
    inset: 0;
    z-index: 0;
    overflow: hidden;
    pointer-events: none;
}

.hero-paw {
    position: absolute;
    color: rgba(245, 166, 35, 0.12);
    filter: drop-shadow(0 0 8px rgba(245, 166, 35, 0.06));
}
.hero-paw:nth-child(1) { left: 10%; top: 15%; animation: pawFloat 4.5s ease-in-out infinite; animation-delay: 0s; }
.hero-paw:nth-child(2) { left: 25%; top: 40%; animation: pawFloat 5.5s ease-in-out infinite; animation-delay: 0.6s; }
.hero-paw:nth-child(3) { left: 42%; top: 65%; animation: pawFloat 4.8s ease-in-out infinite; animation-delay: 1.2s; }
.hero-paw:nth-child(4) { left: 58%; top: 22%; animation: pawFloat 6s ease-in-out infinite; animation-delay: 1.8s; }
.hero-paw:nth-child(5) { left: 72%; top: 52%; animation: pawFloat 4.3s ease-in-out infinite; animation-delay: 2.4s; }
.hero-paw:nth-child(6) { left: 88%; top: 32%; animation: pawFloat 5.2s ease-in-out infinite; animation-delay: 3s; }

@keyframes pawFloat {
    0%, 100% { transform: translateY(0) rotate(0deg) scale(1); opacity: 0.07; }
    25% { transform: translateY(-16px) rotate(8deg) scale(1.04); opacity: 0.13; }
    50% { transform: translateY(-24px) rotate(-5deg) scale(1.02); opacity: 0.17; }
    75% { transform: translateY(-12px) rotate(4deg) scale(1.03); opacity: 0.11; }
}

.hero-paw svg { width: 3rem; height: 3rem; }
@media (min-width: 768px) { .hero-paw svg { width: 4rem; height: 4rem; } }

.hero-content {
    position: relative;
    z-index: 10;
    max-width: var(--zcy-container);
    margin: 0 auto;
    padding: 5rem 1rem 8rem;
}
@media (min-width: 640px) { .hero-content { padding-left: 1.5rem; padding-right: 1.5rem; } }
@media (min-width: 1024px) { .hero-content { padding-left: 2rem; padding-right: 2rem; } }

.hero-badge {
    display: inline-flex !important;
    align-items: center;
    gap: 0.5rem;
    padding: 0.375rem 1rem;
    border-radius: 24px !important;
    background: #ffffff;
    border: 1px solid #FFD080;
    margin-bottom: 1.5rem;
    box-shadow: 0 4px 12px rgba(245, 166, 35, 0.15);
}
.hero-badge svg { width: 1rem; height: 1rem; color: #F5A623; }
.hero-badge span { font-size: 0.875rem; font-weight: 600; color: #E08C0A; }

.hero-title {
    font-size: 2.25rem;
    font-weight: 800;
    line-height: 1.15;
    color: white;
}
@media (min-width: 640px) { .hero-title { font-size: 3rem; } }
@media (min-width: 1024px) { .hero-title { font-size: 3.75rem; } }
.hero-title .brand-name {
    background: linear-gradient(to right, #F5A623, #FFD080, #FFFFFF);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: inline-block;
    animation: brandGlow 3s ease-in-out infinite alternate;
}
.hero-title .gradient-text {
    background: linear-gradient(to right, #F5A623, #FFD080, #FFFFFF);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: inline-block;
}
@keyframes brandGlow {
    from { filter: drop-shadow(0 0 12px rgba(245, 166, 35, 0.3)); }
    to { filter: drop-shadow(0 0 24px rgba(245, 166, 35, 0.5)); }
}

.hero-subtitle {
    margin-top: 1.5rem;
    font-size: 1.125rem;
    color: rgba(255, 255, 255, 0.75);
    line-height: 1.625;
    max-width: 36rem;
}
@media (min-width: 640px) { .hero-subtitle { font-size: 1.25rem; } }

.hero-buttons { display: flex; flex-wrap: wrap; gap: 1rem; margin-top: 2.5rem; }

.hero-btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.875rem 1.75rem;
    border-radius: 50px;
    background: linear-gradient(to right, #F5A623, #E08C0A);
    color: #ffffff;
    font-weight: 700;
    box-shadow: 0 6px 20px rgba(245, 166, 35, 0.4);
    text-decoration: none;
    transition: all 0.3s ease;
}
.hero-btn-primary:hover {
    box-shadow: 0 10px 28px rgba(245, 166, 35, 0.5);
    transform: translateY(-2px);
}
.hero-btn-primary svg {
    transition: transform 0.3s ease;
}
.hero-btn-primary:hover svg {
    transform: translateX(4px);
}

.hero-btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.875rem 1.75rem;
    border-radius: 50px;
    border: 2px solid rgba(255, 255, 255, 0.25);
    color: rgba(255, 255, 255, 0.85);
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    background: transparent;
}
.hero-btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.4);
}

.hero-stats { display: flex; flex-wrap: wrap; gap: 2rem; margin-top: 3.5rem; }
.hero-stat-number {
    font-size: 1.5rem;
    font-weight: 800;
    color: #F5A623;
}
@media (min-width: 640px) { .hero-stat-number { font-size: 1.875rem; } }
.hero-stat-label { font-size: 0.875rem; color: rgba(255, 255, 255, 0.55); margin-top: 0.25rem; }

.hero-scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    animation: scrollBounce 2s ease-in-out infinite;
}
@keyframes scrollBounce {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(8px); }
}
.hero-scroll-indicator .scroll-outer {
    width: 1.5rem;
    height: 2.5rem;
    border-radius: 9999px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    display: flex;
    align-items: flex-start;
    justify-content: center;
    padding-top: 0.5rem;
}
.hero-scroll-indicator .scroll-inner {
    width: 0.25rem;
    height: 0.5rem;
    border-radius: 9999px;
    background: rgba(255, 255, 255, 0.5);
}

/* ========== SERVICES ========== */
.services-section {
    padding: 6.25rem 0;
    background: linear-gradient(to bottom, #FFF9F5, white);
    position: relative;
}

.body-page-services .services-section,
.page-services .services-section {
    background: transparent !important;
}

.services-list-section {
    padding: 6.25rem 0;
    background: white;
}
.services-section.no-background {
    background: transparent !important;
}

.services-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}
@media (min-width: 768px) { .services-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .services-grid { grid-template-columns: repeat(3, 1fr); gap: 2rem; } }

.service-card {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    background: white;
    box-shadow: var(--zcy-shadow-sm);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
}
.service-card:hover {
    box-shadow: 0 16px 48px rgba(200, 149, 108, 0.18);
    transform: translateY(-6px);
}
.service-card.highlight { outline: 2px solid #F5A623; outline-offset: 2px; }

.service-card-highlight-badge { position: absolute; top: 1rem; right: 1rem; z-index: 10; }

.service-card-link {
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
    margin-top: 1rem;
    font-size: 0.875rem;
    font-weight: 600;
    color: #F5A623;
    transition: color 0.25s ease;
}
.service-card-link svg {
    transition: transform 0.25s ease;
}
.group:hover .service-card-link {
    color: #E08C0A;
}
.group:hover .service-card-link svg {
    transform: translateX(4px);
}

.service-card-image {
    position: relative;
    max-height: 13rem;
    overflow: hidden;
}
.service-card-image img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}
.service-card:hover .service-card-image img { transform: scale(1.12); }

.service-card-image-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, white 0%, rgba(255,255,255,0.4) 25%, transparent 60%);
}

.service-card-icon {
    position: absolute;
    bottom: 1rem;
    left: 1.25rem;
    width: 3rem;
    height: 3rem;
    border-radius: 1rem;
    background: #F5A623;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 16px rgba(245, 166, 35, 0.4);
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.service-card:hover .service-card-icon {
    transform: scale(1.1);
}
.service-card-icon svg { width: 1.5rem; height: 1.5rem; color: white; }
.service-card-icon-img { width: 1.5rem; height: 1.5rem; max-width: 1.5rem; display: block; }

.service-card-body { padding: 1.5rem; }
.service-card-title { font-size: 1.25rem; font-weight: 700; color: #3D2000; margin-bottom: 0.5rem; }
.service-card-desc { color: #7A5230; font-size: 0.875rem; line-height: 1.625; margin-bottom: 1rem; }
.service-card-features { display: grid; grid-template-columns: repeat(2, 1fr); gap: 0.5rem; }
.service-card-feature { display: flex; align-items: center; gap: 0.375rem; font-size: 0.75rem; color: #B08060; }
.service-card-feature svg { width: 0.875rem; height: 0.875rem; color: #F5A623; flex-shrink: 0; transition: transform 0.3s ease; }
.service-card-feature:hover svg { transform: scale(1.2) rotate(15deg); }

/* ========== PUPPIES HERO ========== */
.puppies-hero {
    position: relative;
    overflow: hidden;
    padding: 4rem 0;
    background: white;
}
@media (min-width: 768px) {
    .puppies-hero {
        padding: 6rem 0;
    }
}
.puppies-hero-bg {
    position: absolute;
    inset: 0;
    pointer-events: none;
}
.puppies-hero-bg-circle-1 {
    position: absolute;
    top: 0;
    right: 0;
    width: 24rem;
    height: 24rem;
    background: rgba(245, 166, 35, 0.08);
    border-radius: 50%;
    filter: blur(64px);
}
.puppies-hero-bg-circle-2 {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 16rem;
    height: 16rem;
    background: rgba(245, 166, 35, 0.06);
    border-radius: 50%;
    filter: blur(64px);
}
.puppies-hero-content {
    position: relative;
    max-width: 48rem;
}
.puppies-hero-badge {
    display: inline-flex;
    background: linear-gradient(to right, var(--zcy-primary-500), var(--zcy-primary-600));
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 0.5rem;
    font-size: 0.875rem;
    font-weight: 600;
    border: none;
    box-shadow: 0 4px 12px -2px rgba(245, 166, 35, 0.25);
}
.puppies-hero-title {
    font-size: 2rem;
    font-weight: 800;
    color: #3D2000;
    line-height: 1.2;
    margin: 0 0 1rem;
}
@media (min-width: 640px) { .puppies-hero-title { font-size: 2.5rem; } }
@media (min-width: 1024px) { .puppies-hero-title { font-size: 3rem; } }
.puppies-hero-subtitle {
    font-size: 1rem;
    color: rgba(122, 82, 48, 0.6);
    margin: 0 0 2rem;
    max-width: 36rem;
}
@media (min-width: 640px) { .puppies-hero-subtitle { font-size: 1.125rem; } }
.puppies-hero-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}
.puppies-hero-btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.875rem 1.75rem;
    border-radius: 1rem;
    background: linear-gradient(to right, #F5A623, #E08C0A);
    color: white;
    font-weight: 700;
    font-size: 1rem;
    text-decoration: none;
    box-shadow: 0 10px 15px -3px rgba(245, 166, 35, 0.3);
    transition: all 0.2s ease;
}
.puppies-hero-btn-primary:hover {
    box-shadow: 0 20px 25px -5px rgba(245, 166, 35, 0.4);
    transform: translateY(-2px);
}
.puppies-hero-btn-primary svg {
    width: 1.25rem;
    height: 1.25rem;
}
.puppies-hero-btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.875rem 1.75rem;
    border-radius: 1rem;
    background: white;
    color: #C8956C;
    font-weight: 700;
    font-size: 1rem;
    text-decoration: none;
    border: 2px solid rgba(245, 166, 35, 0.3);
    transition: all 0.2s ease;
}
.puppies-hero-btn-secondary:hover {
    border-color: #F5A623;
    color: #8B5E3C;
    transform: translateY(-2px);
}
.puppies-hero-btn-secondary svg {
    width: 1.25rem;
    height: 1.25rem;
}
    .puppies-hero-title .gradient-text {
    background: linear-gradient(135deg, #F5A623, #F5A623, #E08C0A);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ========== PUPPIES ========== */
.puppies-section { padding: 6.25rem 0; background: white; }
.puppies-grid { display: grid; grid-template-columns: 1fr; gap: 1.5rem; margin-top: 3rem; }
@media (min-width: 640px) { .puppies-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .puppies-grid { grid-template-columns: repeat(3, 1fr); gap: 2rem; } }

.puppy-card {
    border-radius: 16px;
    overflow: hidden;
    background: white;
    box-shadow: var(--zcy-shadow-sm);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    border: none;
}
.puppy-card:hover {
    box-shadow: 0 16px 48px rgba(200, 149, 108, 0.18);
    transform: translateY(-6px);
}

.puppy-card-image {
    position: relative;
    aspect-ratio: 1;
    overflow: hidden;
}
.puppy-card-tag {
    position: absolute;
    top: 1rem;
    left: 1rem;
    z-index: 10;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.25rem 0.75rem;
    border-radius: 9999px;
    font-size: 0.75rem;
    font-weight: 600;
    color: white;
    background: #F5A623;
    box-shadow: 0 4px 12px -2px rgba(245, 166, 35, 0.4);
    border: none;
}
.puppy-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}
.puppy-card:hover .puppy-card-image img { transform: scale(1.12); }

.puppy-card-tag { position: absolute; top: 1rem; left: 1rem; }
.puppy-card-tag .badge { animation: tagPop 0.4s cubic-bezier(0.34, 1.56, 0.64, 1); }
@keyframes tagPop {
    from { transform: scale(0.8); opacity: 0; }
    to { transform: scale(1); opacity: 1; }
}

.puppy-card-body { padding: 1.25rem; }
.puppy-card-info { display: flex; align-items: center; justify-content: space-between; }
.puppy-card-name { font-weight: 700; color: #3D2000; }
.puppy-card-meta { display: flex; align-items: center; gap: 0.5rem; margin-top: 0.25rem; }
.puppy-card-meta span {
    font-size: 0.75rem;
    color: #7A5230;
    background: #FFF0E0;
    padding: 0.125rem 0.5rem;
    border-radius: 0.375rem;
}
.puppy-card-price { text-align: right; }
.puppy-card-price .price { font-size: 1.125rem; font-weight: 800; color: #F5A623; }
.puppy-card-price .price-unit { font-size: 0.75rem; color: #C8956C; }
.puppies-more { text-align: center; margin-top: 3rem; }

.puppies-section-inner { padding: 0 1rem; }

/* Puppies pillars grid */
.puppies-pillars-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin-top: 2rem;
}
@media (min-width: 640px) { .puppies-pillars-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .puppies-pillars-grid { grid-template-columns: repeat(3, 1fr); } }

.puppies-pillar-card {
    border: none;
    border-radius: 1rem;
    background: white;
    box-shadow: var(--zcy-shadow-sm);
    transition: box-shadow 0.3s ease;
    height: 100%;
}
.puppies-pillar-card:hover { box-shadow: var(--zcy-shadow-md); }

.puppies-pillar-card-inner { padding: 1.5rem; }

.puppies-pillar-icon {
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 0.75rem;
    background: linear-gradient(to bottom right, var(--zcy-primary-400), var(--zcy-primary-600));
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
}
.puppies-pillar-icon svg { width: 1.25rem; height: 1.25rem; color: white; }

.puppies-pillar-title {
    margin: 0 0 0.5rem;
    font-weight: 700;
    color: var(--zcy-primary-950);
}

.puppies-pillar-desc {
    margin: 0;
    color: rgba(122, 82, 48, 0.6);
    font-size: 0.875rem;
    line-height: 1.6;
}

/* Puppies quality grid */
.puppies-quality-grid { display: grid; grid-template-columns: 1fr; gap: 3rem; }

@media (min-width: 768px) {
    .puppies-quality-grid { grid-template-columns: 1fr 1fr; gap: 4rem; }
}

.puppies-quality-image { border-radius: 1.5rem; overflow: hidden; box-shadow: var(--zcy-shadow-xl); }

.puppies-quality-text h2 { font-size: 1.5rem; font-weight: 800; color: var(--zcy-primary-950); margin-bottom: 1rem; }

@media (min-width: 768px) {
    .puppies-quality-text h2 { font-size: 1.875rem; }
}

.puppies-quality-text p { color: rgba(122, 82, 48, 0.7); line-height: 1.75; }

/* Puppies guarantee grid */
.puppies-guarantee-card { 
    border-radius: 1rem; 
    background: linear-gradient(to right, var(--zcy-primary-50), rgba(245, 166, 35, 0.1)); 
    border: 1px solid rgba(245, 166, 35, 0.15); 
    padding: 1.5rem;
    transition: all 0.3s ease-out;
    transition-delay: 0s !important;
}

.puppies-guarantee-card:hover {
    box-shadow: var(--zcy-shadow-sm);
    transform: translateY(-2px);
}

.puppies-guarantee-card h3 { font-weight: 700; color: var(--zcy-primary-950); margin-bottom: 0.5rem; }

.puppies-guarantee-card p { color: rgba(122, 82, 48, 0.6); font-size: 0.875rem; line-height: 1.6; }

/* Puppies guide grid */
.puppies-guide-card { 
    border: none; 
    border-radius: 1rem;
    background: white;
    box-shadow: var(--zcy-shadow-sm);
    transition: box-shadow 0.3s ease-out; 
}

.puppies-guide-card:hover { 
    box-shadow: var(--zcy-shadow-md); 
}

.puppies-guide-card {
    transition-delay: 0s !important;
}

.puppies-guide-step {
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 50%;
    background: linear-gradient(to bottom right, var(--zcy-primary-400), var(--zcy-primary-600));
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 700;
    font-size: 0.875rem;
    margin: 0 auto 0.75rem;
    transition: all 0.6s ease-out;
}

.puppies-guide-title {
    margin: 0 0 0.25rem;
    font-weight: 700;
    color: var(--zcy-primary-950);
    font-size: 0.875rem;
    text-align: center;
}

.puppies-guide-desc {
    margin: 0;
    color: rgba(122, 82, 48, 0.5);
    font-size: 0.75rem;
    line-height: 1.5;
    text-align: center;
}

/* Puppies Section Titles */
.puppies-section-title {
    font-size: 1.5rem;
    font-weight: 800;
    color: #3D2000;
    margin-bottom: 1rem;
}
@media (min-width: 640px) { .puppies-section-title { font-size: 1.875rem; } }
.puppies-section-desc {
    color: rgba(122, 82, 48, 0.6);
    line-height: 1.7;
    font-size: 0.9375rem;
    max-width: 48rem;
    margin: 0 auto 2rem;
}

/* Puppies Guarantee Grid */
.puppies-guarantee-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}
@media (min-width: 640px) { .puppies-guarantee-grid { grid-template-columns: repeat(2, 1fr); gap: 1.5rem; } }

/* Puppies Guide (Process) Grid */
.puppies-guide-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
    counter-reset: guide-step;
}
@media (min-width: 640px) { .puppies-guide-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .puppies-guide-grid { grid-template-columns: repeat(3, 1fr); } }
.puppies-guide-card-inner {
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 1rem;
    transition: box-shadow 0.3s ease, transform 0.3s ease;
}
.puppies-guide-card:hover .puppies-guide-card-inner {
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.08);
    transform: translateY(-2px);
}

/* Puppies FAQ */
.puppies-faq-title {
    font-size: 1.5rem;
    font-weight: 800;
    color: #3D2000;
    margin-bottom: 2rem;
}
@media (min-width: 640px) { .puppies-faq-title { font-size: 1.875rem; } }
.puppies-faq-list {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}
.puppies-faq-item {
    border-radius: 1rem;
    border: 1px solid rgba(245, 166, 35, 0.15);
    background: white;
    overflow: hidden;
}
.puppies-faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 1.5rem;
    text-align: left;
    background: white;
    border: none;
    cursor: pointer;
    transition: background-color 0.2s ease;
    font-size: 0.9375rem;
}
.puppies-faq-question:hover {
    background: rgba(245, 166, 35, 0.08);
}
.puppies-faq-question span {
    font-weight: 600;
    color: #7A5230;
    padding-right: 1rem;
}
.puppies-faq-question .arrow {
    width: 28px;
    height: 28px;
    min-width: 28px;
    max-width: 28px;
    background: #FFF0E0;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all 0.3s ease;
    font-size: 0.8rem;
    color: #7A5230;
}
.puppies-faq-item.open .puppies-faq-question .arrow {
    background: #F5A623;
    color: #ffffff;
    transform: rotate(180deg);
}
.puppies-faq-answer {
    max-height: 0;
    overflow: hidden;
    padding: 0 1.5rem;
    color: rgba(122, 82, 48, 0.7);
    line-height: 1.75;
    font-size: 0.875rem;
    transition: max-height 0.4s ease, padding 0.4s ease, opacity 0.25s ease;
    opacity: 0;
}
.puppies-faq-item.open .puppies-faq-answer {
    max-height: 500px;
    padding: 0 1.5rem 1rem;
    opacity: 1;
}

/* Puppies CTA */
.puppies-cta {
    padding: 6.25rem 0;
    background: linear-gradient(to bottom, #FFF9F5, white);
}
.puppies-cta-banner {
    border-radius: 1.5rem;
    background: linear-gradient(to right, #F5A623, #E08C0A);
    padding: 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 8px 10px -6px rgba(0, 0, 0, 0.1), 0 20px 25px -5px rgba(245, 166, 35, 0.3);
}
@media (min-width: 640px) {
    .puppies-cta-banner {
        padding: 2.5rem;
        flex-direction: row;
    }
}
.puppies-cta-text {
    text-align: center;
}
@media (min-width: 640px) { .puppies-cta-text { text-align: left; } }
.puppies-cta-title {
    font-size: 1.5rem;
    font-weight: 800;
    color: white;
}
.puppies-cta-subtitle {
    color: rgba(255, 255, 255, 0.7);
    margin-top: 0.5rem;
}
.puppies-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.875rem 1.75rem;
    border-radius: 1rem;
    background: white;
    color: #3D2000;
    font-weight: 700;
    text-decoration: none;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    transition: all 0.2s ease;
    white-space: nowrap;
}
.puppies-cta-btn:hover {
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 8px 10px -6px rgba(0, 0, 0, 0.1);
    transform: translateY(-2px);
}
.puppies-cta-btn svg {
    width: 1rem;
    height: 1rem;
}
.puppies-cta-btn svg:last-child {
    transition: transform 0.2s ease;
}
.puppies-cta-btn:hover svg:last-child {
    transform: translateX(4px);
}

/* ========== PUPPIES SCROLL ANIMATIONS ========== */
.puppies-page .animate-in {
    animation: puppiesFadeUp 0.6s ease-out forwards;
}
@keyframes puppiesFadeUp {
    from {
        opacity: 0;
        transform: translateY(24px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ========== TESTIMONIALS ========== */
.testimonials-section { padding: 6.25rem 0; background: #FFF9F5; }

.testimonials-grid { display: grid; grid-template-columns: 1fr; gap: 1.5rem; margin-top: 3.5rem; }
@media (min-width: 768px) { .testimonials-grid { grid-template-columns: repeat(3, 1fr); gap: 2rem; } }

.testimonial-card {
    border-radius: 16px;
    background: white;
    box-shadow: var(--zcy-shadow-sm);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    padding: 1.5rem;
    height: 100%;
    border: none;
}
.testimonial-card:hover {
    box-shadow: 0 16px 48px rgba(200, 149, 108, 0.18);
    transform: translateY(-6px);
}

.testimonial-stars { display: flex; gap: 0.25rem; margin-bottom: 1rem; }
.testimonial-stars svg {
    width: 1rem;
    height: 1rem;
    fill: #F5A623;
    color: #F5A623;
    transition: transform 0.3s ease;
}
.testimonial-card:hover .testimonial-stars svg { animation: starBounce 0.5s ease; }
.testimonial-card:hover .testimonial-stars svg:nth-child(1) { animation-delay: 0s; }
.testimonial-card:hover .testimonial-stars svg:nth-child(2) { animation-delay: 0.05s; }
.testimonial-card:hover .testimonial-stars svg:nth-child(3) { animation-delay: 0.1s; }
.testimonial-card:hover .testimonial-stars svg:nth-child(4) { animation-delay: 0.15s; }
.testimonial-card:hover .testimonial-stars svg:nth-child(5) { animation-delay: 0.2s; }
@keyframes starBounce {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.25); }
}

.testimonial-content { color: #7A5230; line-height: 1.625; font-size: 0.875rem; margin-bottom: 1.5rem; }
.testimonial-author { display: flex; align-items: center; gap: 0.75rem; }
.testimonial-avatar {
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 9999px;
    background: #F5A623;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 700;
    font-size: 0.875rem;
    transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.testimonial-card:hover .testimonial-avatar { transform: scale(1.1) rotate(5deg); }
.testimonial-name { font-weight: 600; color: #3D2000; font-size: 0.875rem; }
.testimonial-service { font-size: 0.75rem; color: #B08060; }

/* ========== FAQ ========== */
.faq-section { padding: 6.25rem 0; background: linear-gradient(to bottom, white, #FFF9F5); }
.faq-inner { max-width: 48rem; margin: 0 auto; }
.faq-title { font-size: 1.5rem; font-weight: 800; color: #3D2000; margin-bottom: 2rem; }
@media (min-width: 640px) { .faq-title { font-size: 1.875rem; } }

.faq-question { font-size: 1rem; }
@media (min-width: 640px) { .faq-question { font-size: 1.125rem; } }

.faq-list { display: flex; flex-direction: column; gap: 0.75rem; }

.faq-item {
    border-radius: 16px;
    border: 1px solid #F0DCC8;
    background: white;
    overflow: hidden;
    transition: all 0.3s ease;
}
.faq-item:hover { border-color: #F5A623; box-shadow: 0 4px 24px rgba(200, 149, 108, 0.18); }
.faq-item.open { border-color: #F5A623; box-shadow: 0 4px 24px rgba(200, 149, 108, 0.18); }

.faq-question {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 1rem 1.5rem;
    text-align: left;
    font-weight: 600;
    color: #3D2000;
    transition: background 0.3s ease, color 0.3s ease;
    background: none;
    border: none;
    cursor: pointer;
    font-size: 1.125rem;
}
.faq-question:hover { background: rgba(255, 240, 224, 0.5); color: #F5A623; }
.faq-question svg {
    width: 1.25rem;
    height: 1.25rem;
    color: #F5A623;
    flex-shrink: 0;
    transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    margin-left: 1rem;
}
.faq-item.open .faq-question svg { transform: rotate(180deg); }

.faq-answer {
    max-height: 0;
    overflow: hidden;
    padding: 0 1.5rem;
    color: #7A5230;
    line-height: 1.625;
    font-size: 0.875rem;
    border-top: 1px solid #F0DCC8;
    transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1),
                padding 0.35s ease,
                opacity 0.25s ease;
    opacity: 0;
}
.faq-item.open .faq-answer {
    max-height: 300px;
    padding: 1rem 1.5rem 1.25rem;
    opacity: 1;
}

/* ========== CTA BANNER ========== */
.cta-section { padding: 6.25rem 0; background: #FFF9F5; }

.cta-banner {
    border-radius: 1.5rem;
    background: linear-gradient(to right, #F5A623, #E08C0A);
    padding: 2rem 2.5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
    box-shadow: 0 20px 25px -5px rgba(245, 166, 35, 0.3);
    position: relative;
    overflow: hidden;
}

/* CTA Button Styles from Reference */
.cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.875rem 1.75rem;
    border-radius: 50px;
    background: white;
    color: #3D2000;
    font-weight: 700;
    box-shadow: 0 6px 20px rgba(245, 166, 35, 0.4);
    text-decoration: none;
    transition: all 0.3s ease;
}
.cta-btn:hover {
    box-shadow: 0 10px 28px rgba(245, 166, 35, 0.5);
    transform: translateY(-2px);
}
.cta-btn svg {
    transition: transform 0.3s ease;
}
.cta-btn:hover svg:last-child {
    transform: translateX(4px);
}
.cta-banner::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.08);
    pointer-events: none;
}
.cta-banner::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -10%;
    width: 200px;
    height: 200px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    pointer-events: none;
}
@media (min-width: 640px) { .cta-banner { flex-direction: row; justify-content: space-between; padding: 2.5rem; } }
.cta-banner-text { text-align: center; }
@media (min-width: 640px) { .cta-banner-text { text-align: left; } }
.cta-banner-title { font-size: 1.5rem; font-weight: 800; color: white; }
@media (min-width: 640px) { .cta-banner-title { font-size: 1.5rem; } }
.cta-banner-subtitle { color: rgba(255, 255, 255, 0.75); margin-top: 0.5rem; font-size: 1rem; }

/* ========== FOOTER ========== */
.site-footer { background: #2A1500; color: rgba(255,255,255,0.7); }
.footer-inner { max-width: var(--zcy-container); margin: 0 auto; padding: 4rem 1rem; }
@media (min-width: 640px) { .footer-inner { padding-left: 1.5rem; padding-right: 1.5rem; } }
@media (min-width: 1024px) { .footer-inner { padding-left: 2rem; padding-right: 2rem; } }

.footer-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2.5rem;
}
@media (min-width: 768px) { .footer-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .footer-grid { grid-template-columns: 2fr 1fr 1fr 1fr; gap: 48px; } }

.footer-brand .footer-logo { display: inline-flex; align-items: center; margin-bottom: 1rem; text-decoration: none; }
.footer-logo-img {
    width: 100px;
    height: auto;
    object-fit: contain;
    display: block;
}
.footer-logo-bg {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #ffffff;
    border-radius: 14px;
    padding: 10px 16px;
    box-shadow: 0 4px 16px rgba(0,0,0,0.15);
}
.footer-brand p, .footer-desc { font-size: 0.875rem; color: rgba(255,255,255,0.55); line-height: 1.8; }
.footer-desc { white-space: pre-line; }

.footer-col h4 { font-weight: 700; color: #FFFFFF; margin-bottom: 1rem; }
.footer-col ul { display: flex; flex-direction: column; gap: 0.625rem; }
.footer-col ul li { padding: 0; margin: 0; }
.footer-col ul li a { font-size: 0.875rem; color: rgba(255,255,255,0.55); transition: color 0.3s ease; }
.footer-col ul li a:hover { color: #F5A623; text-decoration: underline; }

.footer-contact-item { display: flex; align-items: center; gap: 0.5rem; font-size: 0.875rem; margin-bottom: 0.75rem; }
.footer-contact-item svg { width: 1rem; height: 1rem; color: #F5A623; flex-shrink: 0; }
.footer-contact-item.address { align-items: flex-start; }
.footer-hours { margin-top: 1rem; font-size: 0.875rem; }
.footer-hours-row { display: flex; justify-content: space-between; color: rgba(255,255,255,0.5); margin-top: 0.25rem; }

.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 28px;
    font-size: 0.82rem;
    flex-wrap: wrap;
    gap: 12px;
    border-top: 1px solid rgba(255,255,255,0.08);
    margin-top: 3rem;
}
.footer-bottom a { color: inherit; text-decoration: none; transition: color 0.2s ease; }
.footer-bottom a:hover { color: #F5A623; text-decoration: underline; }
.footer-legal { display: flex; gap: 1.5rem; }

/* ========== BACK TO TOP ========== */
#back-top {
    position: fixed;
    bottom: 32px;
    right: 32px;
    width: 48px;
    height: 48px;
    background: var(--zcy-primary-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    line-height: 1;
    cursor: pointer;
    box-shadow: 0 6px 20px rgba(245,166,35,0.45);
    transition: all 0.3s ease;
    z-index: 999;
    opacity: 0;
    pointer-events: none;
    transform: translateY(16px);
    border: none;
    color: white;
}
#back-top.show {
    opacity: 1;
    pointer-events: all;
    transform: translateY(0);
}
#back-top:hover {
    background: var(--zcy-primary);
    transform: translateY(-4px);
}
@media (max-width: 480px) {
    #back-top {
        bottom: 20px;
        right: 20px;
    }
}

/* ========== PAGE TEMPLATES ========== */
.page-header { padding: 6.25rem 0; background: linear-gradient(to bottom, #FFF9F5, white); text-align: center; }
.page-content { padding: 6.25rem 0; }
.entry-title { font-size: 2.25rem; font-weight: 800; color: var(--zcy-primary-950); }
.entry-content { max-width: 48rem; margin: 0 auto; line-height: 1.8; }
.entry-content p { margin-bottom: 1.5rem; }

/* ========== BREADCRUMB ========== */
.breadcrumb { padding: 1.5rem 0; background: white; }
.breadcrumb-list { display: flex; align-items: center; gap: 0.25rem; font-size: 0.875rem; flex-wrap: wrap; }
.breadcrumb-list li { display: flex; align-items: center; gap: 0.25rem; }
.breadcrumb-list li::after { content: ''; display: inline-block; width: 0.875rem; height: 0.875rem; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%23F5A623' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='m9 18 6-6-6-6'/%3E%3C/svg%3E"); background-size: contain; background-repeat: no-repeat; margin-left: 0.25rem; flex-shrink: 0; }
.breadcrumb-list li:last-child::after { display: none; }
.breadcrumb-list li:last-child { color: #3D2000; font-weight: 500; display: inline-flex; align-items: center; gap: 0.25rem; }
.breadcrumb-list a { color: #F5A623; display: inline-flex; align-items: center; gap: 0.25rem; transition: color 0.2s ease; text-decoration: none; }
.breadcrumb-list a:hover { color: #8B5E3C; }
.breadcrumb-list a svg { width: 0.875rem; height: 0.875rem; }

/* ========== PUPPY CARD OVERLAY ========== */
.puppy-card-image .puppy-card-overlay {
    display: none;
}
.puppy-card-overlay-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.625rem 1.5rem;
    border-radius: 0.5rem;
    background: rgba(255,255,255,0.95);
    color: var(--zcy-primary-700);
    font-weight: 600;
    font-size: 0.875rem;
    box-shadow: 0 8px 24px -4px rgba(0,0,0,0.2);
    transform: translateY(8px);
    transition: all 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.puppy-card:hover .puppy-card-overlay-btn { transform: translateY(0); }
.puppy-card-overlay-btn svg { width: 1.125rem; height: 1.125rem; }

/* ========== PUPPY MODAL ========== */
.puppy-modal {
    position: fixed;
    inset: 0;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
}
.puppy-modal-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(61, 32, 0, 0.5);
    backdrop-filter: blur(4px);
    opacity: 0;
    transition: opacity 0.3s ease;
}
.puppy-modal.open .puppy-modal-backdrop { opacity: 1; }
.puppy-modal-content {
    position: relative;
    background: white;
    border-radius: 1.5rem;
    max-width: 48rem;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 24px 48px -12px rgba(61, 32, 0, 0.2);
    transform: scale(0.95) translateY(20px);
    opacity: 0;
    transition: all 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.puppy-modal.open .puppy-modal-content { transform: scale(1) translateY(0); opacity: 1; }
.puppy-modal-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    z-index: 10;
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 0.5rem;
    background: rgba(255,255,255,0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--zcy-primary-700);
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    transition: all 0.2s ease;
    border: none;
    cursor: pointer;
}
.puppy-modal-close:hover { background: white; transform: scale(1.1); }
.puppy-modal-body {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}
@media (min-width: 768px) { .puppy-modal-body { grid-template-columns: 1fr 1fr; } }
.puppy-modal-image { overflow: hidden; border-radius: 1.5rem 1.5rem 0 0; }
@media (min-width: 768px) { .puppy-modal-image { border-radius: 1.5rem 0 0 1.5rem; } }
.puppy-modal-image img { width: 100%; height: 100%; min-height: 280px; object-fit: cover; }
.puppy-modal-info { padding: 1.5rem 2rem 2rem; }
@media (min-width: 768px) { .puppy-modal-info { padding: 2rem; display: flex; flex-direction: column; justify-content: center; } }

/* ========== SERVICE DETAIL HERO ========== */
@media (min-width: 768px) { .service-hero-grid { grid-template-columns: 1fr 1fr !important; } }
@media (min-width: 768px) { .process-arrow { display: block !important; } }

/* ========== ABOUT PAGE ========== */
@media (min-width: 768px) { .about-story-grid { grid-template-columns: 1fr 1fr !important; } }

.timeline-container { position: relative; padding: 1rem 0; }
.timeline-item { position: relative; margin-bottom: 2.5rem; display: flex; align-items: flex-start; }
.timeline-dot {
    position: absolute; left: 50%; transform: translateX(-50%); z-index: 2;
    width: 3rem; height: 3rem; border-radius: 0.5rem;
    background: #F5A623;
    display: flex; align-items: center; justify-content: center;
    box-shadow: 0 4px 16px rgba(245,166,35,0.4);
}
.timeline-dot span { font-weight: 700; font-size: 0.6875rem; color: white; }
.timeline-card {
    background: white; border-radius: 1rem; padding: 1.5rem;
    box-shadow: 0 1px 3px rgba(200,149,108,0.12); border: 1px solid #F0DCC8;
    transition: all 0.3s ease; width: calc(50% - 3rem);
}
.timeline-card:hover { box-shadow: 0 16px 48px rgba(200,149,108,0.18); }
.timeline-left .timeline-card { margin-right: auto; }
.timeline-right .timeline-card { margin-left: auto; }
@media (max-width: 767px) {
    .timeline-container .timeline-line { left: 1.5rem !important; transform: none !important; }
    .timeline-container .timeline-dot { 
        position: absolute !important; 
        left: 1.5rem !important; 
        top: 0 !important; 
        transform: translateX(-50%) !important; 
    }
    .timeline-container .timeline-item { flex-direction: row !important; padding-left: 4.5rem !important; }
    .timeline-container .timeline-content { width: 100% !important; padding-left: 0 !important; padding-right: 0 !important; text-align: left !important; }
    .timeline-container .timeline-spacer { display: none !important; }
}

/* ========== CONTACT PAGE ========== */
/* 默认小屏幕：单列 */
.contact-layout {
    grid-template-columns: 1fr;
}
/* 平板及以上：双列 */
@media (min-width: 768px) {
    .contact-layout {
        grid-template-columns: 1fr 1fr !important;
    }
    .contact-layout .contact-form-card {
        order: 1;
    }
    .contact-layout .contact-info-container {
        order: 2;
    }
}

/* ========== CONTACT FAQ ========== */
.contact-faq-section {
    padding: 6.25rem 0;
    background: #FFF9F5;
}

.contact-faq-container {
    max-width: 80rem;
    margin: 0 auto;
    padding: 0 1rem;
}

@media (min-width: 640px) {
    .contact-faq-container {
        padding: 0 1.5rem;
    }
}

@media (min-width: 1024px) {
    .contact-faq-container {
        padding: 0 2rem;
    }
}

.contact-faq-inner {
    margin: 0 auto;
}

.contact-faq-header {
    text-align: center;
    margin-bottom: 3rem;
}

.contact-faq-header .badge {
    display: inline-block;
    margin-bottom: 16px;
}

.contact-faq-title {
    font-size: 1.5rem;
    font-weight: 800;
    color: #3D2000;
    margin-bottom: 20px;
    text-align: center;
}

.contact-faq-title .gradient-text {
    background: linear-gradient(135deg, #F5A623, #F5A623, #E08C0A);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.contact-faq-divider {
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, #F5A623, #E08C0A);
    border-radius: 2px;
    margin: 0 auto 20px;
}

.contact-faq-subtitle {
    margin-top: 0;
    margin-bottom: 0;
    color: #B08060;
    font-size: 1.05rem;
    line-height: 1.8;
    max-width: 42rem;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
}

@media (min-width: 640px) {
    .contact-faq-title {
        font-size: 1.875rem;
    }
}

.contact-faq-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.contact-faq-item {
    background: #ffffff;
    border-radius: 16px;
    border: 1px solid #F0DCC8;
    overflow: hidden;
    transition: all 0.3s ease;
}

.contact-faq-item:hover {
    border-color: #F5A623;
    box-shadow: 0 4px 24px rgba(200, 149, 108, 0.18);
}

.contact-faq-item.open {
    border-color: #F5A623;
    box-shadow: 0 4px 24px rgba(200, 149, 108, 0.18);
}

.contact-faq-question {
    padding: 22px 28px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
    font-size: 1rem;
    font-weight: 600;
    color: #3D2000;
    gap: 16px;
    user-select: none;
    width: 100%;
    text-align: left;
    background: none;
    border: none;
    transition: color 0.3s ease;
    position: relative;
}

.contact-faq-question::before {
    content: 'Q';
    width: 28px;
    height: 28px;
    background: #F5A623;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 1.1rem;
    font-weight: 800;
    color: #ffffff;
    line-height: 1;
}

.contact-faq-question > span {
    flex: 1;
}

.contact-faq-question:hover {
    color: #F5A623;
}

.contact-faq-question .arrow {
    width: 28px;
    height: 28px;
    min-width: 28px;
    max-width: 28px;
    background: #FFF0E0;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all 0.3s ease;
    font-size: 0.8rem;
    color: #7A5230;
}

.contact-faq-item.open .contact-faq-question .arrow {
    background: #F5A623;
    color: #ffffff;
    transform: rotate(180deg);
}

.contact-faq-answer {
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transition: max-height 0.35s cubic-bezier(0.4, 0, 0.2, 1),
                opacity 0.3s cubic-bezier(0.4, 0, 0.2, 1),
                padding 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    padding: 0 1.5rem;
    color: #7A5230;
    line-height: 1.9;
    font-size: 0.93rem;
    border-top: none;
}

.contact-faq-item.open .contact-faq-answer {
    max-height: 300px;
    padding: 0 28px 22px 56px;
    opacity: 1;
}

/* ========== ARTICLE EXPANSION ========== */
.article-item.expanded { box-shadow: 0 16px 32px -8px rgba(200,149,108,0.18) !important; transform: translateY(-4px) !important; }
.article-item.expanded .article-expand-icon { transform: rotate(180deg); }
.article-detail { max-height: 0; overflow: hidden; transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1); }

/* ========== CSS ANIMATIONS ========== */
@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
}
.animate-float { animation: float 3s ease-in-out infinite; }

@keyframes paw-print {
    0% { opacity: 0; transform: scale(0.5) rotate(-15deg); }
    50% { opacity: 0.3; transform: scale(1) rotate(0deg); }
    100% { opacity: 0; transform: scale(1.2) rotate(15deg); }
}
.animate-paw { animation: paw-print 4s ease-in-out infinite; }

@keyframes shimmer {
    0% { background-position: -200% 0; }
    100% { background-position: 200% 0; }
}
.animate-shimmer {
    background: linear-gradient(90deg, transparent 0%, rgba(255,255,255,0.4) 50%, transparent 100%);
    background-size: 200% 100%;
    animation: shimmer 3s ease-in-out infinite;
}

@keyframes pulse-glow {
    0%, 100% { box-shadow: 0 0 0 0 rgba(245, 166, 35, 0.4); }
    50% { box-shadow: 0 0 0 8px rgba(245, 166, 35, 0); }
}
.animate-pulse-glow { animation: pulse-glow 2s ease-in-out infinite; }

/* ========== CUSTOM SCROLLBAR ========== */
::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: #FFF0E0; }
::-webkit-scrollbar-thumb { background: #C8956C; border-radius: 4px; }
::-webkit-scrollbar-thumb:hover { background: #A0724A; }

/* ========== GLASS MORPHISM ========== */
.glass {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

/* ========== GRADIENT TEXT ========== */
.gradient-text {
    background: linear-gradient(135deg, #F5A623, #F5A623, #E08C0A);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ========== ANIMATIONS - Page Load Hero Elements ========== */
/* 页面加载时的动画效果�?:1匹配参考代�?*/
.hero-badge {
    opacity: 0;
    transform: translateX(-30px);
    animation: heroBadgeIn 0.6s ease-out 0.2s forwards;
}
@keyframes heroBadgeIn {
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* ========== SERVICE DETAIL HERO ========== */
/* 服务详情页Hero区域样式�?:1匹配原型设计 */
.service-detail-hero {
    padding: 6.25rem 0;
    background: linear-gradient(to bottom right, var(--zcy-primary-50), white, rgba(245, 166, 35, 0.1));
}

.service-detail-hero-container {
    max-width: 80rem;
    margin: 0 auto;
    padding: 0 1rem;
}
@media (min-width: 640px) {
    .service-detail-hero-container {
        padding: 0 1.5rem;
    }
}
@media (min-width: 1024px) {
    .service-detail-hero-container {
        padding: 0 2rem;
    }
}

.service-detail-hero-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    align-items: center;
}
@media (min-width: 1024px) {
    .service-detail-hero-grid {
        grid-template-columns: 1fr 1fr;
        gap: 3rem;
    }
}

.service-detail-hero-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 0.375rem;
    border: 1px solid var(--zcy-primary-200);
    padding: 0.125rem 0.5rem;
    font-size: 0.75rem;
    font-weight: 500;
    background: var(--zcy-primary-100);
    color: var(--zcy-primary-700);
    margin-bottom: 1rem;
}

.service-detail-hero-title {
    font-size: 1.875rem;
    font-weight: 800;
    color: var(--zcy-primary-950);
    line-height: 1.25;
    margin-top: 1rem;
}
@media (min-width: 640px) {
    .service-detail-hero-title {
        font-size: 2.25rem;
    }
}

.service-detail-hero-subtitle {
    margin-top: 1rem;
    color: rgba(139, 94, 60, 0.7);
    line-height: 1.75;
    font-size: 1.125rem;
}

.service-detail-hero-desc {
    margin-top: 0.75rem;
    color: rgba(139, 94, 60, 0.6);
    line-height: 1.75;
}

.service-detail-hero-image {
    border-radius: 1.5rem;
    overflow: hidden;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 8px 10px -6px rgba(0, 0, 0, 0.1);
}

.service-detail-hero-image img {
    width: 100%;
    aspect-ratio: 4 / 3;
    object-fit: cover;
    display: block;
}

/* ========== SERVICE DETAIL CONTENT ========== */
/* 服务详情页内容区域样式，1:1匹配原型设计 */
.service-detail-content {
    padding: 6.25rem 0;
    background: white;
}

.service-detail-content-container {
    max-width: 80rem;
    margin: 0 auto;
    padding: 0 1rem;
}
@media (min-width: 640px) {
    .service-detail-content-container {
        padding: 0 1.5rem;
    }
}
@media (min-width: 1024px) {
    .service-detail-content-container {
        padding: 0 2rem;
    }
}

.service-detail-content-title {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--zcy-primary-950);
    margin-bottom: 2rem;
}
@media (min-width: 640px) {
    .service-detail-content-title {
        font-size: 1.875rem;
    }
}

.service-detail-content-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}
@media (min-width: 768px) {
    .service-detail-content-grid {
        grid-template-columns: 1fr 1fr;
        gap: 1.5rem;
    }
}

.service-detail-content-card {
    background: white;
    border-radius: 1rem;
    box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px -1px rgba(0, 0, 0, 0.1);
    transition: box-shadow 0.3s ease;
    height: 100%;
}
.service-detail-content-card:hover {
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -2px rgba(0, 0, 0, 0.1);
}

.service-detail-content-card-inner {
    padding: 1.5rem;
}

.service-detail-content-card-title {
    font-weight: 700;
    color: var(--zcy-primary-950);
    font-size: 1.125rem;
    margin-bottom: 0.5rem;
}

.service-detail-content-card-desc {
    color: rgba(139, 94, 60, 0.6);
    font-size: 0.875rem;
    line-height: 1.625;
}

/* ========== SERVICE DETAIL PRODUCTS ========== */
/* 服务详情页产品介绍区域样式，1:1匹配原型设计 */
.service-detail-products {
    padding: 6.25rem 0;
    background: rgba(255, 240, 224, 0.5);
}

.service-detail-products-container {
    max-width: 80rem;
    margin: 0 auto;
    padding: 0 1rem;
}
@media (min-width: 640px) {
    .service-detail-products-container {
        padding: 0 1.5rem;
    }
}
@media (min-width: 1024px) {
    .service-detail-products-container {
        padding: 0 2rem;
    }
}

.service-detail-products-card {
    background: white;
    border-radius: 1.5rem;
    box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(240, 220, 200, 0.5);
    padding: 2rem;
}
@media (min-width: 640px) {
    .service-detail-products-card {
        padding: 2rem;
    }
}

.service-detail-products-title {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--zcy-primary-950);
    margin-bottom: 1rem;
}

.service-detail-products-desc {
    color: rgba(139, 94, 60, 0.7);
    line-height: 1.75;
}

.hero-title {
    opacity: 0;
    transform: translateY(30px);
    animation: heroTitleIn 0.7s ease-out 0.3s forwards;
}
@keyframes heroTitleIn {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-subtitle {
    opacity: 0;
    transform: translateY(20px);
    animation: heroSubtitleIn 0.6s ease-out 0.5s forwards;
}
@keyframes heroSubtitleIn {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-buttons {
    opacity: 0;
    transform: translateY(20px);
    animation: heroButtonsIn 0.6s ease-out 0.7s forwards;
}
@keyframes heroButtonsIn {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-stats {
    opacity: 0;
    transform: translateY(30px);
    animation: heroStatsIn 0.6s ease-out 0.9s forwards;
}
@keyframes heroStatsIn {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ========== ANIMATIONS - Scroll Triggered ========== */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.6s ease-out,
                transform 0.6s ease-out;
}
.animate-on-scroll.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Badge: 从左往右滑�?*/
.animate-on-scroll.slide-left {
    opacity: 0;
    transform: translateX(-30px);
    transition: opacity 0.5s cubic-bezier(0.4, 0, 0.2, 1),
                transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}
.animate-on-scroll.slide-left.visible {
    opacity: 1;
    transform: translateX(0);
}

.animate-on-scroll.delay-1 { transition-delay: 0.08s; }
.animate-on-scroll.delay-2 { transition-delay: 0.15s; }
.animate-on-scroll.delay-3 { transition-delay: 0.22s; }
.animate-on-scroll.delay-4 { transition-delay: 0.3s; }
.animate-on-scroll.delay-5 { transition-delay: 0.38s; }

/* Scale in variant for cards */
.animate-scale {
    opacity: 0;
    transform: scale(0.94);
    transition: opacity 0.5s cubic-bezier(0.4, 0, 0.2, 1),
                transform 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.animate-scale.visible {
    opacity: 1;
    transform: scale(1);
}

/* ========== RESPONSIVE ========== */
@media (max-width: 767px) {
    .hero-title { font-size: 2rem; }
    .hero-subtitle { font-size: 0.95rem; line-height: 1.6; }
    .hero-stats { gap: 1.5rem; }
    .hero-buttons { flex-direction: row; gap: 0.75rem; margin-top: 2rem; }
    .hero-buttons .btn { padding: 0.65rem 1.25rem; font-size: 0.9rem; }
    .service-card-image { height: 11rem; }
    .cta-banner { padding: 1.5rem; }
    .faq-answer { max-height: 250px; }
    .about-story-grid { grid-template-columns: 1fr !important; gap: 2rem !important; }
    .trust-grid { grid-template-columns: 1fr !important; }
}
@media (min-width: 640px) { .trust-grid { grid-template-columns: repeat(2, 1fr) !important; } }
@media (min-width: 1024px) { .trust-grid { grid-template-columns: repeat(4, 1fr) !important; } }

.values-grid { grid-template-columns: 1fr; }
@media (min-width: 640px) { .values-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .values-grid { grid-template-columns: repeat(3, 1fr); } }

.values-icon-box {
    transition: transform 0.25s ease-out, box-shadow 0.25s ease-out;
}
.values-card:hover .values-icon-box {
    transform: scale(1.1);
    box-shadow: 0 20px 25px -5px rgba(0,0,0,0.1), 0 10px 10px -5px rgba(0,0,0,0.04);
}

/* ========== SERVICES PAGE HERO ========== */
.services-page-hero {
    padding: 4rem 0 3rem;
    background: linear-gradient(to bottom right, var(--zcy-primary-50), white, var(--zcy-primary-100));
}

.services-page-hero-content {
    text-align: center;
    max-width: 48rem;
    margin: 0 auto;
}

.services-page-hero-title {
    font-size: 1.875rem;
    font-weight: 800;
    color: var(--zcy-primary-950);
    margin-top: 1rem;
    line-height: 1.2;
}
.services-page-hero-title .gradient-text {
}

@media (min-width: 640px) {
    .services-page-hero-title {
        font-size: 2.25rem;
    }
}

@media (min-width: 1024px) {
    .services-page-hero-title {
        font-size: 3rem;
    }
}

.services-page-hero-desc {
    margin-top: 1.5rem;
    color: rgba(139, 94, 60, 0.6);
    font-size: 1.125rem;
    line-height: 1.75;
}

/* ========== SERVICES CARDS SECTION ========== */
.services-cards-section {
    padding: 6.25rem 0;
    background: white;
}

/* ========== SERVICES PROCESS SECTION ========== */
.services-process-section {
    padding: 4rem 0;
    background: var(--zcy-primary-50);
}

@media (min-width: 768px) {
    .services-process-section {
        padding: 5rem 0;
    }
}

.services-section-title {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--zcy-primary-950);
}

@media (min-width: 640px) {
    .services-section-title {
        font-size: 1.875rem;
    }
}

.services-section-desc {
    margin-top: 0.75rem;
    color: rgba(139, 94, 60, 0.6);
    font-size: 1rem;
}

.services-process-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

@media (min-width: 640px) {
    .services-process-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .services-process-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 1.5rem;
    }
}

.services-process-card {
    padding: 1.5rem;
    text-align: center;
    background: white;
    border-radius: 1rem;
    border: none;
    box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px -1px rgba(0, 0, 0, 0.1);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.services-process-card:hover {
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -4px rgba(0, 0, 0, 0.1);
    transform: translateY(-4px);
}

.services-process-icon {
    width: 3rem;
    height: 3rem;
    border-radius: 0.75rem;
    background: linear-gradient(to bottom right, var(--zcy-primary-400), var(--zcy-primary-600));
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    box-shadow: 0 4px 12px -3px rgba(245, 166, 35, 0.2);
    color: white;
    font-weight: 800;
    font-size: 1.125rem;
}

.services-process-title {
    font-size: 1rem;
    font-weight: 700;
    color: var(--zcy-primary-950);
    margin-bottom: 0.5rem;
}

.services-process-desc {
    font-size: 0.875rem;
    color: rgba(139, 94, 60, 0.6);
    line-height: 1.6;
}

/* ========== SERVICES GUARANTEE SECTION ========== */
.services-guarantee-section {
    padding: 4rem 0;
    background: white;
}

@media (min-width: 768px) {
    .services-guarantee-section {
        padding: 5rem 0;
    }
}

.services-guarantee-container {
    border-radius: 1.5rem;
    background: linear-gradient(to right, var(--zcy-primary-50), rgba(255, 240, 224, 0.5));
    border: 1px solid rgba(240, 220, 200, 0.5);
    padding: 2rem;
}

@media (min-width: 640px) {
    .services-guarantee-container {
        padding: 2.5rem;
    }
}

.services-guarantee-container .services-section-title {
    text-align: center;
    margin-bottom: 1.5rem;
}

.services-guarantee-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

@media (min-width: 640px) {
    .services-guarantee-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.services-guarantee-item {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
}

.services-guarantee-icon {
    width: 2rem;
    height: 2rem;
    border-radius: 0.5rem;
    background: rgba(245, 166, 35, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--zcy-primary-600);
    flex-shrink: 0;
}

.services-guarantee-title {
    font-weight: 700;
    color: var(--zcy-primary-950);
    font-size: 0.875rem;
    margin-bottom: 0.25rem;
}

.services-guarantee-desc {
    font-size: 0.75rem;
    color: rgba(139, 94, 60, 0.6);
    line-height: 1.6;
}

/* ========== CONTACT PAGE HERO - NEW WARM STYLE ========== */
.contact-page-hero {
    position: relative;
    overflow: hidden;
    padding: 6.25rem 0;
    background: linear-gradient(135deg, #FFF9F5 0%, #FFF0D8 50%, #FFE8C8 100%);
}

@media (min-width: 768px) {
    .contact-page-hero {
        padding: 6.25rem 0;
    }
}

.contact-page-hero::before {
    content: '';
    position: absolute;
    top: -200px;
    right: -200px;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(245,166,35,0.08), transparent 70%);
    border-radius: 50%;
}

.contact-page-hero::after {
    content: '';
    position: absolute;
    bottom: -150px;
    left: -150px;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(200,149,108,0.1), transparent 70%);
    border-radius: 50%;
}

.contact-page-hero-blob-left {
    position: absolute;
    top: -6rem;
    left: -6rem;
    width: 18rem;
    height: 18rem;
    border-radius: 9999px;
    background: rgba(245,166,35,0.3);
    filter: blur(64px);
    pointer-events: none;
}

.contact-page-hero-blob-right {
    position: absolute;
    bottom: -4rem;
    right: -4rem;
    width: 14rem;
    height: 14rem;
    border-radius: 9999px;
    background: rgba(245,166,35,0.2);
    filter: blur(64px);
    pointer-events: none;
}

.contact-page-hero-content {
    position: relative;
    max-width: 80rem;
    margin: 0 auto;
    padding: 0 1rem;
    text-align: center;
    z-index: 1;
}

@media (min-width: 640px) {
    .contact-page-hero-content {
        padding: 0 1.5rem;
    }
}

@media (min-width: 1024px) {
    .contact-page-hero-content {
        padding: 0 2rem;
    }
}

.contact-page-hero-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 9999px;
    border: 1px solid #F0DCC8;
    padding: 0.5rem 1rem;
    font-size: 0.875rem;
    font-weight: 600;
    width: fit-content;
    white-space: nowrap;
    flex-shrink: 0;
    gap: 0.5rem;
    background-color: #FFF0E0;
    color: #C8956C;
    margin-bottom: 1rem;
    transition: all 0.3s ease;
    overflow: hidden;
}

.contact-page-hero-title {
    font-size: 1.875rem;
    font-weight: 800;
    color: #3D2000;
    line-height: 1.25;
    margin-bottom: 16px;
}

.contact-page-hero-divider {
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, #F5A623, #F5A623);
    border-radius: 2px;
    margin: 0 auto 24px;
}

.contact-page-hero-title .gradient-text {
    background: linear-gradient(135deg, #F5A623, #F5A623, #C8956C);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

@media (min-width: 640px) {
    .contact-page-hero-title {
        font-size: 2.5rem;
    }
}

@media (min-width: 1024px) {
    .contact-page-hero-title {
        font-size: 3rem;
    }
}

.contact-page-hero-desc {
    margin-top: 0;
    color: #B08060;
    max-width: 42rem;
    margin-left: auto;
    margin-right: auto;
    font-size: 1.05rem;
    line-height: 1.8;
}

/* ========== CONTACT FORM - NEW WARM STYLE ========== */
.contact-form-card {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    padding: 0;
    border: 1px solid #F0DCC8;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    border-radius: 1.5rem;
    background: #FFF9F5;
}

.contact-form-card-content {
    padding: 1.5rem;
}

@media (min-width: 640px) {
    .contact-form-card-content {
        padding: 2rem;
    }
}

.contact-form-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: #3D2000;
    margin-bottom: 0.25rem;
}

.contact-form-subtitle {
    font-size: 0.875rem;
    color: rgba(146,64,14,0.6);
    margin-bottom: 1.5rem;
}

.contact-form-space-y-5 > * + * {
    margin-top: 1.25rem;
}

.contact-form-space-y-2 > * + * {
    margin-top: 0.5rem;
}

.contact-form-label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    user-select: none;
    font-size: 0.875rem;
    font-weight: 700;
    color: #7A5230;
}

.contact-form-required {
    color: #dc2626;
}

/* ========== CONTACT FORM INPUTS - NEW WARM STYLE ========== */
.contact-form-input,
.contact-form-textarea,
select {
    display: flex;
    width: 100%;
    min-width: 0;
    border: 1.5px solid #F0DCC8;
    padding: 0.875rem 1rem;
    font-size: 0.9375rem;
    transition: all 0.3s ease;
    outline: none;
    border-radius: 0.75rem;
    background-color: #FFFFFF;
    color: #3D2000;
    font-family: inherit;
}

@media (min-width: 768px) {
    .contact-form-input,
    .contact-form-textarea,
    select {
        font-size: 0.875rem;
        padding: 0.75rem;
    }
}

.contact-form-textarea {
    min-height: 120px;
    resize: none;
}

.contact-form-input::placeholder,
.contact-form-textarea::placeholder {
    color: #B08060 !important;
    opacity: 1 !important;
}

.contact-form-input:focus,
.contact-form-textarea:focus,
select:focus {
    border-color: #F5A623;
    background-color: #ffffff;
    box-shadow: 0 0 0 3px rgba(245,166,35,0.12);
}

/* ========== CONTACT FORM BUTTON - STYLE SOURCE MATCH ========== */
.contact-form-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    white-space: nowrap;
    width: 100%;
    padding: 0.875rem 1rem;
    font-size: 1rem;
    font-weight: 700;
    border-radius: 50px;
    background: #F5A623;
    color: white;
    box-shadow: 0 6px 20px rgba(245,166,35,0.4);
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    margin-top: 1.25rem;
}

.contact-form-btn:hover {
    background: #E08C0A;
    box-shadow: 0 10px 28px rgba(245,166,35,0.5);
    transform: translateY(-2px);
}

.contact-form-footer-text {
    font-size: 0.75rem;
    color: rgba(146,64,14,0.6);
    text-align: center;
}

/* ========== CUSTOM SELECT - STYLE SOURCE MATCH ========== */
.custom-select-wrapper {
    position: relative;
    width: 100%;
}

.custom-select-trigger {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.5rem;
    width: 100%;
    border: 1.5px solid #F0DCC8;
    padding: 0.625rem 0.75rem;
    font-size: 1rem;
    box-shadow: 0 1px 2px 0 rgba(200, 149, 108, 0.12);
    transition: color, box-shadow, border-color 0.2s ease, outline 0.15s ease;
    outline: none;
    border-radius: 0.75rem;
    background-color: #FFFFFF;
    color: #3D2000;
    cursor: pointer;
    white-space: nowrap;
}

@media (min-width: 768px) {
    .custom-select-trigger {
        font-size: 0.875rem;
        padding: 0.75rem;
    }
}

.custom-select-trigger:focus,
.custom-select-trigger[data-state="open"] {
    border-color: #F5A623;
    background-color: #ffffff;
    box-shadow: 0 0 0 3px rgba(245,166,35,0.12);
}

.custom-select-value {
    line-height: 1;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #3D2000;
}

.custom-select-value[data-placeholder="true"] {
    color: #B08060 !important;
    opacity: 1 !important;
}

.custom-select-icon {
    opacity: 0.5;
    flex-shrink: 0;
    pointer-events: none;
    width: 1rem;
    height: 1rem;
    color: #7A5230;
    transition: transform 0.2s ease;
}

.custom-select-trigger[data-state="open"] .custom-select-icon {
    transform: rotate(180deg);
}

.custom-select-content {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    margin-top: 0.25rem;
    z-index: 50;
    min-width: 8rem;
    background-color: #ffffff;
    border: 1.5px solid #F0DCC8;
    border-radius: 0.75rem;
    box-shadow: 0 10px 25px -5px rgba(200, 149, 108, 0.15), 0 4px 6px -2px rgba(200, 149, 108, 0.08);
    overflow: hidden;
    max-height: 300px;
    overflow-y: auto;
    opacity: 0;
    transform: scale(0.95) translateY(-0.5rem);
    transition: opacity 0.15s ease, transform 0.15s ease;
    pointer-events: none;
}

.custom-select-content[data-state="open"] {
    opacity: 1;
    transform: scale(1) translateY(0);
    pointer-events: auto;
}

.custom-select-viewport {
    padding: 0.25rem;
}

.custom-select-item {
    position: relative;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    width: 100%;
    padding: 0.375rem 0.5rem 0.375rem 0.5rem;
    font-size: 0.875rem;
    color: #3D2000;
    cursor: pointer;
    border-radius: 0.375rem;
    outline: none;
    transition: background-color 0.15s ease;
    user-select: none;
}

.custom-select-item:hover,
.custom-select-item:focus {
    background-color: rgba(255,249,245,0.8);
}

.custom-select-item[data-selected="true"] {
    background-color: rgba(255,249,245,0.8);
}

.custom-select-content:hover .custom-select-item[data-selected="true"] {
    background-color: transparent;
}

.custom-select-content:hover .custom-select-item[data-selected="true"]:hover {
    background-color: rgba(255,249,245,0.8);
}

.custom-select-item-indicator {
    position: absolute;
    right: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 0.875rem;
    height: 0.875rem;
}

.custom-select-item-indicator svg {
    width: 1rem;
    height: 1rem;
    color: #7A5230;
}

.custom-select-item-text {
    flex: 1;
}

/* ========== CONTACT INFO CARDS - NEW WARM STYLE ========== */
.contact-info-container {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.contact-info-card {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    padding: 0;
    border: 1px solid #e6e6e6;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    border-radius: 14px;
    background: #FFF9F5;
    transition: all 0.3s ease;
}

.contact-info-card:hover {
    background: #ffffff;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12), 0 0 0 1px #f5a623;
    transform: translateX(6px);
}

/* 导航卡片专属 */
.contact-info-card--nav {
    cursor: pointer;
    position: relative;
}

.contact-info-card--nav:hover {
    border-color: #F5A623;
    box-shadow: 0 0 0 2px rgba(245, 166, 35, 0.25);
}

.nav-hint {
    font-style: normal;
    font-size: 0.72rem;
    color: #F5A623;
    margin-left: 6px;
    font-weight: 500;
    opacity: 0.85;
}

.contact-info-card-content {
    padding: 1.5rem;
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.contact-info-icon-wrapper {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: #F5A623;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 4px 16px rgba(245,166,35,0.4);
    font-size: 1.5rem;
    line-height: 1;
    color: #ffffff;
}

.contact-info-icon-wrapper svg {
    width: 1.25rem;
    height: 1.25rem;
    color: white;
}

/* ========== ICON COLOR OVERRIDES ========== */
/* Phone & Email use inline SVG fill colors; no CSS color override needed */

.contact-info-icon-wrapper img {
    width: 1.25rem;
    height: 1.25rem;
}

.contact-info-details .contact-info-title {
    font-weight: 700;
    color: #7A5230;
    font-size: 0.78rem;
    margin-bottom: 4px;
}

.contact-info-details .contact-info-value {
    color: #3D2000;
    font-weight: 700;
    margin-top: 0.25rem;
    font-size: 1rem;
}

.contact-info-details .contact-info-subtitle {
    font-size: 0.875rem;
    color: #8B5E3C;
    margin-top: 0.125rem;
}

/* Social Buttons */
.contact-social-card h4 {
    font-weight: 700;
    color: #3D2000;
    margin-bottom: 1rem;
}

.contact-social-buttons {
    display: flex;
    gap: 0.75rem;
}

.contact-social-btn {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.375rem;
    cursor: pointer;
    background: none;
    border: none;
    padding: 0;
    text-decoration: none;
    color: inherit;
}

.contact-social-btn-icon {
    width: 3rem;
    height: 3rem;
    border-radius: 0.75rem;
    box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    overflow: hidden;
}

.contact-social-btn-icon img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    border-radius: 0.75rem;
}

.contact-social-btn:hover .contact-social-btn-icon {
    box-shadow: 0 8px 24px rgba(245,166,35,0.25);
    transform: scale(1.05);
}

.contact-social-btn-label {
    font-size: 0.75rem;
    color: #8B5E3C;
}

.contact-social-btn {
    position: relative;
}

.contact-social-btn-tooltip {
    position: absolute;
    bottom: calc(100% + 8px);
    left: 50%;
    transform: translateX(-50%);
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    padding: 8px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.2s ease, transform 0.2s ease;
    z-index: 10;
}

.contact-social-btn-tooltip img {
    display: block;
    max-width: 140px;
    max-height: 140px;
    width: auto;
    height: auto;
    border-radius: 8px;
}

.contact-social-btn:hover .contact-social-btn-tooltip {
    opacity: 1;
    pointer-events: auto;
}

section[style*="background: #fff"] .contact-social-btn-tooltip,
section[style*="background:#fff"] .contact-social-btn-tooltip {
    background: #ffffff !important;
    border-color: #e5e7eb !important;
}

/* Business Hours Card */
.contact-hours-card h4 {
    font-weight: 700;
    color: #3D2000;
    margin-bottom: 1rem;
}

.contact-hours-list {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    font-size: 0.875rem;
}

.contact-hours-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.contact-hours-day {
    color: #8B5E3C;
}

.contact-hours-time {
    color: #F5A623;
    font-weight: 700;
    background-color: #ffffff;
    padding: 0.25rem 0.75rem;
    border-radius: 0.5rem;
    transition: background-color 0.3s ease;
}

.contact-hours-card:hover .contact-hours-time {
    background-color: #FFF9F5;
}

.contact-hours-tip {
    margin-top: 1rem;
    padding: 12px 18px;
    background-color: #FFF9F5;
    border: 1px solid #F0DCC8;
    border-radius: 10px;
}

.contact-hours-tip p {
    font-size: 0.75rem;
    color: #F5A623;
    line-height: 1.625;
    margin: 0;
}

/* ========== CONTACT INFO CARDS - WHITE BG FIX (FORCE OVERRIDE) ========== */
section[style*="background: #fff"] .contact-info-card,
section[style*="background:#fff"] .contact-info-card {
    background: #FFF9F5 !important;
    border: 1px solid #e5e7eb !important;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08) !important;
}

section[style*="background: #fff"] .contact-info-details .contact-info-title,
section[style*="background:#fff"] .contact-info-details .contact-info-title {
    color: #7A5230 !important;
}

section[style*="background: #fff"] .contact-info-details .contact-info-value,
section[style*="background:#fff"] .contact-info-details .contact-info-value {
    color: #3D2000 !important;
}

section[style*="background: #fff"] .contact-info-details .contact-info-subtitle,
section[style*="background:#fff"] .contact-info-details .contact-info-subtitle {
    color: #8B5E3C !important;
}

section[style*="background: #fff"] .contact-social-card h4,
section[style*="background:#fff"] .contact-social-card h4 {
    color: #3D2000 !important;
}

section[style*="background: #fff"] .contact-hours-card h4,
section[style*="background:#fff"] .contact-hours-card h4 {
    color: #3D2000 !important;
}

section[style*="background: #fff"] .contact-social-btn-label,
section[style*="background:#fff"] .contact-social-btn-label {
    color: #8B5E3C !important;
}

section[style*="background: #fff"] .contact-hours-day,
section[style*="background:#fff"] .contact-hours-day {
    color: #8B5E3C !important;
}

section[style*="background: #fff"] .contact-hours-time,
section[style*="background:#fff"] .contact-hours-time {
    color: #F5A623 !important;
    background-color: #ffffff !important;
}

section[style*="background: #fff"] .contact-hours-card:hover .contact-hours-time,
section[style*="background:#fff"] .contact-hours-card:hover .contact-hours-time {
    background-color: #FFF9F5 !important;
}

section[style*="background: #fff"] .contact-hours-tip,
section[style*="background:#fff"] .contact-hours-tip {
    background-color: #FFF9F5 !important;
    border-color: #F0DCC8 !important;
}

section[style*="background: #fff"] .contact-hours-tip p,
section[style*="background:#fff"] .contact-hours-tip p {
    color: #F5A623 !important;
}

/* Left border decoration for contact cards */
section[style*="background: #fff"] .contact-info-card,
section[style*="background:#fff"] .contact-info-card {
    border-left: 3px solid #F5A623 !important;
}

/* Hover effect for contact cards on white background */
section[style*="background: #fff"] .contact-info-card:hover,
section[style*="background:#fff"] .contact-info-card:hover {
    background: #ffffff !important;
    border: 1px solid #F5A623 !important;
    border-left: 3px solid #F5A623 !important;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12), 0 0 0 1px rgba(245,166,35,0.2) !important;
    transform: translateX(6px);
}

/* Icon hover enhancement - 导航卡片专属：变为浅�?*/
section[style*="background: #fff"] .contact-info-card--nav:hover .contact-info-icon-wrapper,
section[style*="background:#fff"] .contact-info-card--nav:hover .contact-info-icon-wrapper {
    background: #F5A623 !important;
    box-shadow: 0 6px 20px rgba(245,166,35,0.3) !important;
}

/* ========== FORM ELEMENTS - FORCE STYLE SOURCE COLORS ========== */
section[style*="background: #fff"] .custom-select-trigger,
section[style*="background:#fff"] .custom-select-trigger {
    border: 1.5px solid #F0DCC8 !important;
    background-color: #FFFFFF !important;
    color: #3D2000 !important;
}

section[style*="background: #fff"] .custom-select-trigger:focus,
section[style*="background:#fff"] .custom-select-trigger:focus,
section[style*="background: #fff"] .custom-select-trigger[data-state="open"],
section[style*="background:#fff"] .custom-select-trigger[data-state="open"] {
    border-color: #F5A623 !important;
    background-color: #FFFFFF !important;
    box-shadow: 0 0 0 3px rgba(245,166,35,0.12) !important;
}

section[style*="background: #fff"] .custom-select-value[data-placeholder="true"],
section[style*="background:#fff"] .custom-select-value[data-placeholder="true"] {
    color: #B08060 !important;
}

section[style*="background: #fff"] .custom-select-content,
section[style*="background:#fff"] .custom-select-content {
    border: 1.5px solid #F0DCC8 !important;
    background-color: #ffffff !important;
}

section[style*="background: #fff"] .custom-select-item:hover,
section[style*="background:#fff"] .custom-select-item:hover,
section[style*="background: #fff"] .custom-select-item:focus,
section[style*="background:#fff"] .custom-select-item:focus,
section[style*="background: #fff"] .custom-select-item[data-selected="true"],
section[style*="background:#fff"] .custom-select-item[data-selected="true"] {
    background-color: rgba(255,249,245,0.8) !important;
}

/* ==========================================================================
   ENCYCLOPEDIA PAGE - 1:1 PROTOTYPE REPLICA (INDEPENDENT STYLES)
   ========================================================================== */

/* ========== ENCYCLOPEDIA HERO ========== */
.encyclopedia-hero {
    position: relative;
    overflow: hidden;
    padding: 6.25rem 0;
    background: linear-gradient(135deg, var(--zcy-primary-50), white, rgba(255, 240, 224, 0.5));
}

.encyclopedia-hero-blob {
    position: absolute;
    border-radius: 9999px;
    filter: blur(64px);
    pointer-events: none;
}

.encyclopedia-hero-blob-1 {
    top: -6rem;
    left: -6rem;
    width: 18rem;
    height: 18rem;
    background: rgba(245, 166, 35, 0.3);
}

.encyclopedia-hero-blob-2 {
    bottom: -4rem;
    right: -4rem;
    width: 14rem;
    height: 14rem;
    background: rgba(245, 166, 35, 0.2);
}

.encyclopedia-hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 42rem;
    margin: 0 auto;
}

.encyclopedia-hero-title {
    font-size: 1.875rem;
    font-weight: 800;
    color: var(--zcy-primary-950);
    margin-top: 1rem;
    line-height: 1.25;
}

@media (min-width: 640px) {
    .encyclopedia-hero-title {
        font-size: 2.5rem;
    }
}

@media (min-width: 1024px) {
    .encyclopedia-hero-title {
        font-size: 3rem;
    }
}

.encyclopedia-hero-desc {
    margin-top: 1rem;
    color: rgba(122, 82, 48, 0.6);
    font-size: 1.125rem;
    line-height: 1.75;
}

.encyclopedia-hero-title .gradient-text {
    background: linear-gradient(135deg, #F5A623, #F5A623, #C8956C);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ========== ENCYCLOPEDIA SECTION TITLES ========== */
.encyclopedia-section-title {
    font-size: 1.5rem;
    font-weight: 800;
    color: #3D2000;
}

@media (min-width: 640px) {
    .encyclopedia-section-title {
        font-size: 1.875rem;
    }
}

.encyclopedia-section-desc {
    margin-top: 1rem;
    color: rgba(122, 82, 48, 0.6);
    font-size: 1rem;
    max-width: 32rem;
    margin-left: auto;
    margin-right: auto;
}

.encyclopedia-section-title .highlight {
    background: linear-gradient(135deg, #F5A623, #F5A623, #C8956C);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.encyclopedia-section-title .gradient-text {
    background: linear-gradient(135deg, #F5A623, #F5A623, #C8956C);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Encyclopedia section header spacing */
.encyclopedia-featured-section .badge,
.encyclopedia-categories-section .badge,
.encyclopedia-articles-section .badge {
    margin-bottom: 1rem;
}

/* ========== ENCYCLOPEDIA CATEGORIES SECTION ========== */
.encyclopedia-categories-section {
    padding: 6.25rem 0;
    background: linear-gradient(to bottom, var(--zcy-primary-50), white);
}

.encyclopedia-categories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
}

@media (min-width: 1024px) {
    .encyclopedia-categories-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.encyclopedia-category-card {
    background: white;
    border-radius: 1rem;
    padding: 1.5rem;
    box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    height: 100%;
}

.encyclopedia-category-card:hover {
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    transform: translateY(-4px);
}

.encyclopedia-category-icon {
    width: 3rem;
    height: 3rem;
    border-radius: 1rem;
    background: linear-gradient(to bottom right, #F5A623, #F5A623);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    color: white;
}

.encyclopedia-category-icon img {
    width: 24px;
    height: 24px;
    object-fit: contain;
}

.encyclopedia-category-card:hover .encyclopedia-category-icon {
    transform: scale(1.1);
}

.encyclopedia-category-name {
    font-weight: 700;
    color: #3D2000;
    font-size: 1.125rem;
    margin-bottom: 0.5rem;
}

.encyclopedia-category-desc {
    font-size: 0.875rem;
    color: rgba(122, 82, 48, 0.6);
    line-height: 1.75;
    margin-bottom: 0.75rem;
}

.encyclopedia-category-meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.encyclopedia-category-count {
    font-size: 0.75rem;
    color: #F5A623;
}

.encyclopedia-category-arrow {
    color: #F5A623;
    transition: transform 0.3s ease, color 0.3s ease;
}

.encyclopedia-category-card:hover .encyclopedia-category-arrow {
    transform: translateX(4px);
    color: #F5A623;
}

/* ========== ENCYCLOPEDIA FEATURED SECTION ========== */
.encyclopedia-featured-section {
    padding: 6.25rem 0;
    background: white;
}

.encyclopedia-featured-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

@media (min-width: 768px) {
    .encyclopedia-featured-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* ========== ENCYCLOPEDIA ARTICLE CARD ========== */
.encyclopedia-article-card {
    border-radius: 1.5rem;
    overflow: hidden;
    background: white;
    box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px -1px rgba(0, 0, 0, 0.1);
    border: none;
    cursor: pointer;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.encyclopedia-article-card:hover {
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -4px rgba(0, 0, 0, 0.1);
    transform: translateY(-4px);
}

.encyclopedia-article-header {
    padding: 1.5rem 1.5rem 0.5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.encyclopedia-article-category {
    display: inline-flex;
    align-items: center;
    gap: 0.375rem;
    padding: 0 0.75rem;
    border-radius: 9999px;
    font-size: 0.75rem;
    font-weight: 500;
    background: var(--zcy-primary-100);
    color: var(--zcy-primary-700);
    border: 1px solid var(--zcy-primary-200);
}

.encyclopedia-article-category svg {
    width: 0.875rem;
    height: 0.875rem;
}

.encyclopedia-article-category img {
    width: 0.875rem;
    height: 0.875rem;
    object-fit: contain;
}

.encyclopedia-article-readtime {
    font-size: 0.75rem;
    color: var(--zcy-primary-500);
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.encyclopedia-article-body {
    padding: 0 1.5rem 1.5rem;
}

.encyclopedia-article-title {
    font-weight: 700;
    color: var(--zcy-primary-950);
    font-size: 1.125rem;
    margin-bottom: 0.75rem;
    line-height: 1.4;
    transition: color 0.3s ease;
}

.encyclopedia-article-card:hover .encyclopedia-article-title {
    color: var(--zcy-primary-700);
}

.encyclopedia-article-excerpt {
    color: rgba(139, 94, 60, 0.6);
    font-size: 0.875rem;
    line-height: 1.65;
    margin-bottom: 1rem;
}

.encyclopedia-article-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.375rem;
    margin-bottom: 1rem;
}

.encyclopedia-article-tag {
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
    font-size: 0.75rem;
    color: var(--zcy-primary-600);
    background: var(--zcy-primary-50);
    padding: 0.1875rem 0.5625rem;
    border-radius: 0.3125rem;
}

.encyclopedia-article-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 0.8125rem;
    color: var(--zcy-primary-500);
}

.encyclopedia-article-cta {
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
    color: var(--zcy-primary-600);
    font-weight: 500;
    transition: all 0.3s ease;
}

.encyclopedia-article-cta-icon {
    transition: transform 0.3s ease;
}

.encyclopedia-article-card:hover .encyclopedia-article-cta-icon {
    transform: translateX(4px);
}

/* ========== ENCYCLOPEDIA ARTICLES SECTION ========== */
.encyclopedia-articles-section {
    padding: 6.25rem 0;
    background: linear-gradient(to bottom, white, var(--zcy-primary-50));
}

.encyclopedia-search-wrapper {
    position: relative;
    max-width: 32rem;
    margin: 0 auto 1.5rem;
}

.encyclopedia-search-icon {
    position: absolute;
    left: 1rem;
    top: 50%;
    transform: translateY(-50%);
    width: 1.125rem;
    height: 1.125rem;
    color: #F5A623;
}

.encyclopedia-search-input {
    width: 100%;
    padding: 0.875rem 1rem 0.875rem 3rem;
    border-radius: 0.875rem;
    border: 1.5px solid rgba(240, 220, 200, 0.6);
    font-size: 0.9375rem;
    outline: none;
    background: white;
    color: var(--zcy-primary-900);
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.encyclopedia-search-input::placeholder {
    color: #F5A623;
}

.encyclopedia-search-input:focus {
    border-color: #F5A623;
    box-shadow: 0 0 0 3px rgba(245, 166, 35, 0.1);
}

.encyclopedia-filter-nav {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.5rem;
    margin-bottom: 3rem;
}

.encyclopedia-filter-btn {
    padding: 0.625rem 1.25rem;
    border-radius: 0.75rem;
    font-size: 0.875rem;
    font-weight: 500;
    border: none;
    background: #FFF9F5;
    color: #C8956C;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.375rem;
}

.encyclopedia-filter-btn:hover {
    background: #FFF0E0;
}

.encyclopedia-filter-btn.active {
    background: linear-gradient(to right, #F5A623, #F5A623);
    color: white;
    box-shadow: 0 4px 6px -1px rgba(245, 166, 35, 0.25);
}

.encyclopedia-filter-btn svg {
    width: 0.875rem;
    height: 0.875rem;
}

.encyclopedia-filter-btn img {
    width: 0.875rem;
    height: 0.875rem;
    object-fit: contain;
}

.encyclopedia-articles-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 1.5rem;
}

@media (min-width: 1024px) {
    .encyclopedia-articles-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.encyclopedia-empty-state {
    text-align: center;
    padding: 4rem 0;
}

.encyclopedia-empty-state svg {
    width: 4rem;
    height: 4rem;
    color: #F5A623;
    opacity: 0.5;
    margin: 0 auto 1rem;
}

.encyclopedia-empty-title {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--zcy-primary-700);
    margin-bottom: 0.25rem;
}

.encyclopedia-empty-desc {
    font-size: 0.875rem;
    color: var(--zcy-primary-500);
}

.encyclopedia-pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.5rem;
    padding: 2rem 0 1rem;
    flex-wrap: wrap;
}

.encyclopedia-page-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
    padding: 0.5rem 1rem;
    border: 1px solid var(--zcy-primary-200);
    border-radius: 0.5rem;
    background: white;
    color: var(--zcy-primary-700);
    font-size: 0.875rem;
    cursor: pointer;
    transition: all 0.2s;
}

.encyclopedia-page-btn:hover:not(:disabled) {
    background: var(--zcy-primary-50);
    border-color: var(--zcy-primary-400);
}

.encyclopedia-page-btn:disabled {
    opacity: 0.4;
    cursor: not-allowed;
}

.encyclopedia-page-numbers {
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.encyclopedia-page-num {
    width: 2.25rem;
    height: 2.25rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--zcy-primary-200);
    border-radius: 0.5rem;
    background: white;
    color: var(--zcy-primary-700);
    font-size: 0.875rem;
    cursor: pointer;
    transition: all 0.2s;
}

.encyclopedia-page-num:hover {
    background: var(--zcy-primary-50);
    border-color: var(--zcy-primary-400);
}

.encyclopedia-page-num.active {
    background: var(--zcy-primary-700);
    color: white;
    border-color: var(--zcy-primary-700);
}

.encyclopedia-page-ellipsis {
    padding: 0 0.25rem;
    color: var(--zcy-primary-400);
    font-size: 0.875rem;
}

/* ========== ENCYCLOPEDIA CTA SECTION ========== */
.encyclopedia-cta-section {
    padding: 6.25rem 0;
    background: white;
}

/* ========== ENCYCLOPEDIA DETAIL VIEW ========== */
.encyclopedia-detail-section {
    padding: 6.25rem 0;
    background: white;
}

.encyclopedia-detail-container {
    max-width: 48rem;
    margin: 0 auto;
}

.encyclopedia-back-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.375rem;
    font-size: 0.875rem;
    color: var(--zcy-primary-600);
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    margin-bottom: 1.5rem;
    transition: all 0.3s ease;
}

.encyclopedia-back-btn:hover {
    color: var(--zcy-primary-700);
}

.encyclopedia-back-icon {
    transition: transform 0.3s ease;
    transform: rotate(180deg);
}

.encyclopedia-back-btn:hover .encyclopedia-back-icon {
    transform: rotate(180deg) translateX(4px);
}

.encyclopedia-detail-header {
    margin-bottom: 2rem;
}

.encyclopedia-detail-top {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.encyclopedia-detail-title {
    font-size: 1.875rem;
    font-weight: 800;
    color: var(--zcy-primary-950);
    line-height: 1.25;
    margin-bottom: 1rem;
}

@media (min-width: 640px) {
    .encyclopedia-detail-title {
        font-size: 2.25rem;
    }
}

@media (min-width: 1024px) {
    .encyclopedia-detail-title {
        font-size: 3rem;
    }
}

.encyclopedia-detail-meta {
    font-size: 0.875rem;
    color: var(--zcy-primary-600);
}

.encyclopedia-detail-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 2rem;
}

.encyclopedia-detail-content {
    margin-bottom: 2.5rem;
}

.encyclopedia-detail-section {
    margin-bottom: 2rem;
}

.encyclopedia-detail-heading {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--zcy-primary-950);
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid rgba(240, 220, 200, 0.6);
}

.encyclopedia-detail-para {
    font-size: 0.9375rem;
    color: rgba(139, 94, 60, 0.8);
    line-height: 1.75;
    margin-bottom: 1rem;
}

.encyclopedia-detail-related {
    padding-top: 2rem;
    border-top: 1px solid rgba(240, 220, 200, 0.6);
}

.encyclopedia-detail-related-title {
    font-size: 1rem;
    font-weight: 700;
    color: var(--zcy-primary-950);
    margin-bottom: 1rem;
}

.encyclopedia-detail-related-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

@media (min-width: 640px) {
    .encyclopedia-detail-related-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.encyclopedia-related-item {
    text-align: left;
    padding: 1rem;
    border-radius: 0.875rem;
    background: rgba(245, 166, 35, 0.1);
    border: 1px solid rgba(240, 220, 200, 0.4);
    cursor: pointer;
    transition: all 0.3s ease;
}

.encyclopedia-related-item:hover {
    background: rgba(240, 220, 200, 0.7);
}

.encyclopedia-related-readtime {
    font-size: 0.75rem;
    color: var(--zcy-primary-500);
    margin-bottom: 0.25rem;
}

.encyclopedia-related-title {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--zcy-primary-900);
}

/* ========== CONTACT MAP SECTION - NEW WARM STYLE ========== */
.contact-map-section {
    padding: 6.25rem 0;
}

@media (min-width: 768px) {
    .contact-map-section {
        padding: 6.25rem 0;
    }
}

.contact-map-container {
    max-width: 80rem;
    margin: 0 auto;
    padding: 0 1rem;
}

@media (min-width: 640px) {
    .contact-map-container {
        padding: 0 1.5rem;
    }
}

@media (min-width: 1024px) {
    .contact-map-container {
        padding: 0 2rem;
    }
}

.contact-map-header {
    text-align: center;
    margin-bottom: 2rem;
}

.contact-map-title {
    font-size: 1.5rem;
    font-weight: 800;
    color: #3D2000;
    line-height: 1.25;
    margin-bottom: 16px;
}

.contact-map-divider {
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, #F5A623, #F5A623);
    border-radius: 2px;
    margin: 0 auto 24px;
}

.contact-map-title .gradient-text {
    background: linear-gradient(135deg, #F5A623, #F5A623, #C8956C);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

@media (min-width: 640px) {
    .contact-map-title {
        font-size: 1.875rem;
    }
}

.contact-map-subtitle {
    margin-top: 0;
    color: #B08060;
    font-size: 1.05rem;
    line-height: 1.8;
}

.contact-map-card {
    border-radius: 1.5rem;
    overflow: hidden;
    border: 1px solid #F0DCC8;
    box-shadow: 0 20px 25px -5px rgba(200, 149, 108, 0.18), 0 8px 10px -6px rgba(200, 149, 108, 0.1);
}

/* 高德地图 iframe 容器 */
.contact-map-iframe-wrapper {
    position: relative;
    background: #FFF9F5;
}

/* iframe 容器 - aspect-ratio 21:9 响应�?*/
.contact-map-iframe-container {
    position: relative;
    width: 100%;
    aspect-ratio: 21 / 9; /* 21:9 固定宽高�?*/
}

.contact-map-iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
    border-radius: 1.5rem 1.5rem 0 0;
}

/* 方案2：透明遮罩�?- 阻止 iframe 自动聚焦 */
.contact-map-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom right, #FFF0E0, #FFF9F5);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10; /* �?iframe 上方 */
    transition: opacity 0.3s ease, visibility 0.3s ease;
    border-radius: 1.5rem 1.5rem 0 0;
}

.contact-map-overlay:hover {
    background: linear-gradient(to bottom right, #FFD080, #FFF0E0);
}

.contact-map-overlay.hidden {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.contact-map-overlay-content {
    text-align: center;
    color: #7A5230;
}

.contact-map-overlay-content p {
    margin-top: 1rem;
    font-size: 1rem;
    font-weight: 600;
}

/* 地图占位�?- 原型样式优化 */
.map-overlay-grid {
    position: absolute;
    inset: 0;
    opacity: 0.1;
    pointer-events: none;
}

.map-overlay-line-h {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 0.5px;
    background: rgba(200, 149, 108, 0.4);
    transform: translateY(-50%);
    pointer-events: none;
}

.map-overlay-line-v {
    position: absolute;
    top: 0;
    bottom: 50%;
    left: 50%;
    width: 0.5px;
    background: rgba(200, 149, 108, 0.4);
    transform: translateX(-50%);
    pointer-events: none;
}

.map-overlay-content {
    position: relative;
    text-align: center;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.map-overlay-icon-wrapper {
    width: 64px;
    height: 64px;
    margin: 0 auto 16px;
    border-radius: 50%;
    background: #F5A623;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 20px 25px -5px rgba(245, 166, 35, 0.3), 0 10px 10px -5px rgba(245, 166, 35, 0.2);
}

.map-overlay-icon-wrapper svg {
    color: #ffffff;
    width: 32px;
    height: 32px;
}

.map-overlay-title {
    font-size: 18px;
    font-weight: 700;
    color: #3D2000;
    margin-bottom: 4px;
}

.map-overlay-address {
    font-size: 14px;
    color: #B08060;
    margin: 0 0 16px;
}

.map-overlay-phone-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 20px;
    background: #ffffff;
    border-radius: 50px;
    box-shadow: 0 4px 6px -1px rgba(200, 149, 108, 0.18), 0 2px 4px -2px rgba(200, 149, 108, 0.1);
    font-size: 14px;
    font-weight: 600;
    color: #7A5230;
}

.map-overlay-phone-btn svg {
    color: #F5A623;
    width: 16px;
    height: 16px;
    flex-shrink: 0;
}

/* 点击提示 - 升级为CTA按钮 */
.map-overlay-cta-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-top: 24px;
    padding: 14px 32px;
    background: #F5A623;
    border: none;
    border-radius: 50px;
    box-shadow: 
        0 10px 25px -5px rgba(245, 166, 35, 0.4),
        0 8px 10px -6px rgba(245, 166, 35, 0.3);
    font-size: 16px;
    font-weight: 700;
    color: #ffffff;
    cursor: pointer;
    user-select: none;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.map-overlay-cta-btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    transform: translate(-50%, -50%);
    transition: width 0.6s ease, height 0.6s ease;
}

.map-overlay-cta-btn:hover {
    background: #E08C0A;
    transform: translateY(-3px);
    box-shadow: 
        0 15px 35px -5px rgba(245, 166, 35, 0.5),
        0 12px 15px -6px rgba(245, 166, 35, 0.4);
}

.map-overlay-cta-btn:hover::before {
    width: 300px;
    height: 300px;
}

.map-overlay-cta-btn:active {
    transform: translateY(-1px);
}

.map-cta-icon,
.map-cta-arrow {
    flex-shrink: 0;
}

.map-cta-icon {
    width: 18px;
    height: 18px;
}

.map-cta-arrow {
    width: 16px;
    height: 16px;
    animation: arrowBounce 1.5s ease-in-out infinite;
}

@keyframes arrowBounce {
    0%, 100% { transform: translateX(0); }
    50% { transform: translateX(4px); }
}

/* 副标题提�?*/
.map-overlay-subtitle {
    margin-top: 12px;
    font-size: 13px;
    color: #B08060;
    opacity: 0.8;
    user-select: text;
}

/* 响应式优化：小屏幕调整为更合适的比例 */
@media (max-width: 1024px) {
    .contact-map-iframe-container {
        aspect-ratio: 16 / 9; /* 平板�?16:9 */
    }
}

@media (max-width: 640px) {
    .contact-map-iframe-container {
        aspect-ratio: 4 / 3; /* 手机�?4:3 */
    }
}

/* 地图下方地址�?*/
.contact-map-addr-bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 1rem 1.25rem;
    background: #fff;
    border-top: 1px solid #F0DCC8;
    color: #7A5230;
    font-size: 0.875rem;
    line-height: 1.4;
}

.contact-map-addr-left,
.contact-map-addr-right {
    display: flex;
    align-items: center;
    gap: 8px;
}

.contact-map-addr-bar svg {
    flex-shrink: 0;
    color: #F5A623;
}

.contact-map-addr-phone {
    margin-left: auto;
    padding: 0.25rem 0.75rem;
    background: #FFF0E0;
    border-radius: 9999px;
    font-size: 0.8125rem;
    font-weight: 600;
    color: #7A5230;
    white-space: nowrap;
}

.contact-map-placeholder {
    position: relative;
    background: linear-gradient(to bottom right, #FFF0E0, #FFF9F5);
    aspect-ratio: 21/9;
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-map-grid {
    position: absolute;
    inset: 0;
    opacity: 0.1;
}

.contact-map-center {
    position: relative;
    text-align: center;
    z-index: 1;
}

.contact-map-pin {
    width: 4rem;
    height: 4rem;
    margin: 0 auto;
    border-radius: 9999px;
    background: #F5A623;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 20px 25px -5px rgba(245, 166, 35, 0.3);
    color: white;
}

.contact-map-pin svg {
    width: 2rem;
    height: 2rem;
}

.contact-map-name {
    font-size: 1.125rem;
    font-weight: 700;
    color: #3D2000;
    margin-top: 1rem;
}

.contact-map-address {
    color: #7A5230;
    font-size: 0.875rem;
    margin-top: 0.25rem;
}

.contact-map-phone {
    margin-top: 1rem;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    border-radius: 0.75rem;
    background: white;
    box-shadow: 0 4px 6px -1px rgba(200, 149, 108, 0.18);
}

.contact-map-phone svg {
    width: 1rem;
    height: 1rem;
    color: #F5A623;
}

.contact-map-phone span {
    font-size: 0.875rem;
    font-weight: 500;
    color: #7A5230;
}

.contact-map-line-horizontal {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 2px;
    background: rgba(200, 149, 108, 0.4);
    transform: translateY(-50%);
}

.contact-map-line-vertical {
    position: absolute;
    top: 0;
    bottom: 50%;
    left: 50%;
    width: 2px;
    background: rgba(200, 149, 108, 0.4);
    transform: translateX(-50%);
}

.contact-map-bottom {
    background: #fff;
    padding: 1rem;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

@media (min-width: 640px) {
    .contact-map-bottom {
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
        padding: 1rem;
    }
}

.contact-map-info-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #7A5230;
    font-size: 0.875rem;
}

.contact-map-info-item svg {
    width: 1rem;
    height: 1rem;
    color: #F5A623;
    flex-shrink: 0;
}

/* ==========================================================================
   SERVICE DETAIL PAGE - 1:1 PROTOTYPE REPLICA (INDEPENDENT STYLES)
   ========================================================================== */

/* ========== SERVICE DETAIL HERO ========== */
.service-detail-hero {
    padding: 6.25rem 0;
    background: linear-gradient(to bottom right, #FFF9F5, white, rgba(245, 166, 35, 0.1));
}

.service-detail-hero-container {
    max-width: 80rem;
    margin: 0 auto;
    padding: 0 1rem;
}
@media (min-width: 640px) {
    .service-detail-hero-container {
        padding: 0 1.5rem;
    }
}
@media (min-width: 1024px) {
    .service-detail-hero-container {
        padding: 0 2rem;
    }
}

.service-detail-hero-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    align-items: center;
}
@media (min-width: 1024px) {
    .service-detail-hero-grid {
        grid-template-columns: 1fr 1fr;
        gap: 3rem;
    }
}

.service-detail-hero-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 0.375rem;
    border: 1px solid #F0DCC8;
    padding: 0.125rem 0.5rem;
    font-size: 0.75rem;
    font-weight: 500;
    gap: 0.25rem;
    background: #FFF0E0;
    color: #C8956C;
    margin-bottom: 1rem;
}

.service-detail-hero-title {
    font-size: 1.875rem;
    font-weight: 800;
    color: #3D2000;
    line-height: 1.25;
}
@media (min-width: 640px) {
    .service-detail-hero-title {
        font-size: 2.25rem;
    }
}

.service-detail-hero-gradient-text {
    background: linear-gradient(135deg, #F5A623, #F5A623, #C8956C);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.service-detail-hero-subtitle {
    margin-top: 1rem;
    color: rgba(122, 82, 48, 0.7);
    font-size: 1.125rem;
    line-height: 1.75;
}

.service-detail-hero-desc {
    margin-top: 0.75rem;
    color: rgba(122, 82, 48, 0.6);
    line-height: 1.75;
}

.service-detail-hero-image-wrapper {
    border-radius: 1.5rem;
    overflow: hidden;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 8px 10px -6px rgba(0, 0, 0, 0.1);
}

.service-detail-hero-image {
    width: 100%;
    aspect-ratio: 4/3;
    object-fit: cover;
}

/* ========== SERVICE DETAIL CONTENT ========== */
.service-detail-content {
    padding: 6.25rem 0;
    background: white;
}

.service-detail-content-container {
    max-width: 80rem;
    margin: 0 auto;
    padding: 0 1rem;
}
@media (min-width: 640px) {
    .service-detail-content-container {
        padding: 0 1.5rem;
    }
}
@media (min-width: 1024px) {
    .service-detail-content-container {
        padding: 0 2rem;
    }
}

.service-detail-content-title {
    font-size: 1.5rem;
    font-weight: 800;
    color: #3D2000;
    margin-bottom: 2rem;
}
@media (min-width: 640px) {
    .service-detail-content-title {
        font-size: 1.875rem;
    }
}

.service-detail-content-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}
@media (min-width: 768px) {
    .service-detail-content-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.service-detail-content-card {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    padding: 1.5rem 0;
    height: 100%;
    border: none;
    box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px -1px rgba(0, 0, 0, 0.1);
    border-radius: 1rem;
    background: white;
    transition: box-shadow 0.3s ease;
}

.service-detail-content-card:hover {
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -2px rgba(0, 0, 0, 0.1);
}

.service-detail-content-card-inner {
    padding: 1.5rem;
}

.service-detail-content-card-title {
    font-weight: 700;
    color: #3D2000;
    font-size: 1.125rem;
    margin-bottom: 0.5rem;
}

.service-detail-content-card-desc {
    color: rgba(122, 82, 48, 0.6);
    font-size: 0.875rem;
    line-height: 1.625;
}

/* ========== SERVICE DETAIL PRODUCTS ========== */
.service-detail-products {
    padding: 6.25rem 0;
    background: rgba(245, 166, 35, 0.1);
}

.service-detail-products-container {
    max-width: 80rem;
    margin: 0 auto;
    padding: 0 1rem;
}
@media (min-width: 640px) {
    .service-detail-products-container {
        padding: 0 1.5rem;
    }
}
@media (min-width: 1024px) {
    .service-detail-products-container {
        padding: 0 2rem;
    }
}

.service-detail-products-card {
    background: white;
    border-radius: 1.5rem;
    box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(240, 220, 200, 0.5);
    padding: 2rem;
}
@media (min-width: 640px) {
    .service-detail-products-card {
        padding: 2rem;
    }
}

.service-detail-products-title {
    font-size: 1.5rem;
    font-weight: 800;
    color: #3D2000;
    margin-bottom: 1rem;
}

.service-detail-products-desc {
    color: rgba(122, 82, 48, 0.7);
    line-height: 1.75;
}

/* ========== SERVICE DETAIL PRICING ========== */
.service-detail-pricing {
    padding: 6.25rem 0;
    background: white;
}

.service-detail-pricing-container {
    max-width: 80rem;
    margin: 0 auto;
    padding: 0 1rem;
}
@media (min-width: 640px) {
    .service-detail-pricing-container {
        padding: 0 1.5rem;
    }
}
@media (min-width: 1024px) {
    .service-detail-pricing-container {
        padding: 0 2rem;
    }
}

.service-detail-pricing-title {
    font-size: 1.5rem;
    font-weight: 800;
    color: #3D2000;
    margin-bottom: 2rem;
}
@media (min-width: 640px) {
    .service-detail-pricing-title {
        font-size: 1.875rem;
    }
}

.service-detail-pricing-table-wrapper {
    overflow-x: auto;
    border-radius: 1rem;
    border: 1px solid rgba(245, 166, 35, 0.6);
}

.service-detail-pricing-table {
    width: 100%;
    font-size: 0.875rem;
    border-collapse: collapse;
    border-spacing: 0;
}

.service-detail-pricing-table th,
.service-detail-pricing-table td {
    border: none;
}

.service-detail-pricing-table-header {
    background: linear-gradient(to right, #F5A623, #F5A623);
    color: white;
}

.service-detail-pricing-th {
    padding: 1rem 1.5rem;
    text-align: left;
    font-weight: 600;
}

.service-detail-pricing-th-center {
    text-align: center;
}

.service-detail-pricing-tr-white {
    background: white;
}

.service-detail-pricing-tr-amber {
    background: rgba(245, 166, 35, 0.1);
}

.service-detail-pricing-td {
    padding: 1rem 1.5rem;
}

.service-detail-pricing-td:first-child {
    font-weight: 500;
    color: #7A5230;
}

.service-detail-pricing-td-center {
    text-align: center;
    color: #C8956C;
}

.service-detail-pricing-note {
    margin-top: 0.75rem;
    font-size: 0.75rem;
    color: rgba(200, 149, 108, 0.6);
}

/* ========== 服务流程section ========== */
.service-detail-process {
    padding: 6.25rem 0;
    background: rgba(245, 166, 35, 0.1);
}

.service-detail-process-container {
    max-width: 80rem;
    margin: 0 auto;
    padding: 0 1rem;
}
@media (min-width: 640px) {
    .service-detail-process-container {
        padding: 0 1.5rem;
    }
}
@media (min-width: 1024px) {
    .service-detail-process-container {
        padding: 0 2rem;
    }
}

.service-detail-process-title {
    font-size: 1.5rem;
    font-weight: 800;
    color: #3D2000;
    margin-bottom: 2rem;
}
@media (min-width: 640px) {
    .service-detail-process-title {
        font-size: 1.875rem;
    }
}

.service-detail-process-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}
@media (min-width: 640px) {
    .service-detail-process-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.service-detail-process-card {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    padding: 1.5rem 0;
    border: 0;
    box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px -1px rgba(0, 0, 0, 0.1);
    border-radius: 1rem;
    background: white;
    height: 100%;
    transition: box-shadow 0.3s ease;
}
.service-detail-process-card:hover {
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -2px rgba(0, 0, 0, 0.1);
}

.service-detail-process-card-inner {
    padding: 1.25rem;
    text-align: center;
}

.service-detail-process-step {
    width: 2.5rem;
    height: 2.5rem;
    margin: 0 auto 0.75rem;
    border-radius: 9999px;
    background: linear-gradient(to bottom right, #F5A623, #F5A623);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 700;
    font-size: 0.875rem;
}

.service-detail-process-card-title {
    font-weight: 700;
    color: #3D2000;
    font-size: 0.875rem;
    margin-bottom: 0.25rem;
}

.service-detail-process-card-desc {
    font-size: 0.75rem;
    color: rgba(200, 149, 108, 0.6);
}

/* ========== 常见问题section ========== */
.service-detail-faq {
    padding: 6.25rem 0;
    background: white;
}

.service-detail-faq-container {
    max-width: 80rem;
    margin: 0 auto;
    padding: 0 1rem;
}
@media (min-width: 640px) {
    .service-detail-faq-container {
        padding: 0 1.5rem;
    }
}
@media (min-width: 1024px) {
    .service-detail-faq-container {
        padding: 0 2rem;
    }
}

.service-detail-faq-title {
    font-size: 1.5rem;
    font-weight: 800;
    color: #3D2000;
    margin-bottom: 2rem;
}
@media (min-width: 640px) {
    .service-detail-faq-title {
        font-size: 1.875rem;
    }
}

.service-detail-faq-list {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.service-detail-faq-item {
    border-radius: 1rem;
    border: 1px solid rgba(245, 166, 35, 0.6);
    background: white;
    overflow: hidden;
}

.service-detail-faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 1.5rem;
    text-align: left;
    background: white;
    border: none;
    cursor: pointer;
    transition: background-color 0.2s ease;
}

.service-detail-faq-question:hover {
    background: rgba(245, 166, 35, 0.1);
}

.service-detail-faq-question span {
    font-weight: 600;
    color: #7A5230;
    padding-right: 1rem;
}

.service-detail-faq-icon {
    width: 1.25rem;
    height: 1.25rem;
    color: #F5A623;
    flex-shrink: 0;
    transition: transform 0.3s ease;
}

.service-detail-faq-question[aria-expanded="true"] .service-detail-faq-icon {
    transform: rotate(180deg);
}

.service-detail-faq-answer {
    max-height: 0;
    overflow: hidden;
    padding: 0 1.5rem;
    color: rgba(122, 82, 48, 0.7);
    line-height: 1.75;
    font-size: 0.875rem;
    transition: max-height 0.4s ease, padding 0.4s ease;
}

.service-detail-faq-question[aria-expanded="true"] + .service-detail-faq-answer {
    max-height: 500px;
    padding: 0 1.5rem 1rem;
}

/* ========== 服务详情页CTA section ========== */
.service-detail-cta {
    padding: 6.25rem 0;
    background: linear-gradient(to bottom, #FFF9F5, white);
}

.service-detail-cta-container {
    max-width: 80rem;
    margin: 0 auto;
    padding: 0 1rem;
}
@media (min-width: 640px) {
    .service-detail-cta-container {
        padding: 0 1.5rem;
    }
}
@media (min-width: 1024px) {
    .service-detail-cta-container {
        padding: 0 2rem;
    }
}

.service-detail-cta-card {
    border-radius: 1.5rem;
    background: linear-gradient(to right, #F5A623, #F5A623);
    padding: 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 8px 10px -6px rgba(0, 0, 0, 0.1), 0 20px 25px -5px rgba(245, 166, 35, 0.2);
}
@media (min-width: 640px) {
    .service-detail-cta-card {
        padding: 2.5rem;
        flex-direction: row;
    }
}

.service-detail-cta-text {
    text-align: center;
}
@media (min-width: 640px) {
    .service-detail-cta-text {
        text-align: left;
    }
}

.service-detail-cta-text h3 {
    font-size: 1.5rem;
    font-weight: 800;
    color: white;
}

.service-detail-cta-text p {
    color: rgba(255, 255, 255, 0.7);
    margin-top: 0.5rem;
}

.service-detail-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.875rem 1.75rem;
    border-radius: 1rem;
    background: white;
    color: #C8956C;
    font-weight: 700;
    text-decoration: none;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    transition: all 0.2s ease;
}

.service-detail-cta-btn:hover {
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 8px 10px -6px rgba(0, 0, 0, 0.1);
    transform: translateY(-2px);
}

.service-detail-cta-btn svg {
    width: 1rem;
    height: 1rem;
}

.service-detail-cta-btn svg:last-child {
    transition: transform 0.2s ease;
}

.service-detail-cta-btn:hover svg:last-child {
    transform: translateX(4px);
}

/* ==========================================================================
   NEW CONTACT PAGE STYLES - REFERENCE PROJECT STYLE
   ========================================================================== */

/* ========== CONTACT HERO SECTION ========== */
.zcy-contact-hero {
    padding: 4rem 0;
    background: linear-gradient(135deg, #3D2000 0%, #6B3A1A 100%);
    position: relative;
    overflow: hidden;
}

.zcy-contact-hero::before {
    content: '';
    position: absolute;
    top: -200px;
    right: -200px;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(245,166,35,0.12), transparent 70%);
    border-radius: 50%;
}

.zcy-contact-hero::after {
    content: '';
    position: absolute;
    bottom: -150px;
    left: -150px;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(200,149,108,0.1), transparent 70%);
    border-radius: 50%;
}

.zcy-contact-hero-inner {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    max-width: 80rem;
    margin: 0 auto;
    padding: 0 1rem;
}

@media (min-width: 1024px) {
    .zcy-contact-hero-inner {
        grid-template-columns: 1fr 1fr;
        gap: 80px;
        align-items: start;
        padding: 0 2rem;
    }
}

.zcy-section-tag {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(255,255,255,0.12);
    border: 1px solid rgba(255,255,255,0.15);
    padding: 0.5rem 1rem;
    border-radius: 9999px;
    font-size: 0.875rem;
    font-weight: 600;
    color: #F5A623;
    margin-bottom: 1rem;
}

.zcy-section-title {
    font-size: 2rem;
    font-weight: 800;
    color: #fff;
    line-height: 1.25;
    margin-bottom: 1rem;
}

@media (min-width: 640px) {
    .zcy-section-title {
        font-size: 2.5rem;
    }
}

.zcy-divider {
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #f5a623, transparent);
    border-radius: 2px;
    margin-bottom: 1rem;
}

.zcy-section-subtitle {
    color: rgba(255,255,255,0.65);
    font-size: 1rem;
    line-height: 1.75;
}

/* ========== CONTACT CARDS ========== */
.zcy-contact-cards {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-top: 32px;
}

.zcy-contact-card {
    display: flex;
    align-items: center;
    gap: 18px;
    background: rgba(255,255,255,0.07);
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 14px;
    padding: 20px 24px;
    transition: all 0.3s ease;
    cursor: pointer;
}

.zcy-contact-card:hover {
    background: rgba(255,255,255,0.14);
    border-color: #f5a623;
    transform: translateX(6px);
}

.zcy-contact-card--nav:hover {
    box-shadow: 0 0 0 2px rgba(245,166,35,0.25);
}

.zcy-cc-icon {
    width: 48px;
    height: 48px;
    background: #f5a623;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    flex-shrink: 0;
    box-shadow: 0 4px 16px rgba(245,166,35,0.4);
}

.zcy-cc-content label {
    font-size: 0.78rem;
    color: rgba(255,255,255,0.5);
    display: block;
    margin-bottom: 4px;
    font-weight: 600;
}

.zcy-cc-content span {
    font-size: 1rem;
    color: #fff;
    font-weight: 700;
}

.zcy-nav-hint {
    font-style: normal;
    font-size: 0.72rem;
    color: #F5A623;
    margin-left: 6px;
    font-weight: 600;
    opacity: 0.85;
}

/* ========== RIGHT SIDE - WECHAT QR ========== */
.zcy-contact-right {
    background: #fff;
    border-radius: 24px;
    padding: 40px;
    box-shadow: 0 24px 80px rgba(0,0,0,0.2);
}

.zcy-wechat-wrap h3 {
    font-size: 1.3rem;
    font-weight: 800;
    color: #3D2000;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.zcy-qr-desc {
    font-size: 0.93rem;
    color: #8B5E3C;
    line-height: 1.8;
    margin-bottom: 28px;
    max-width: 340px;
}

.zcy-qr-img-box {
    background: #FFF0E0;
    border: 3px solid #F5A623;
    border-radius: 20px;
    padding: 16px;
    box-shadow: 0 8px 32px rgba(0,0,0,0.1);
    margin-bottom: 28px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.zcy-qr-img-box:hover {
    transform: scale(1.03);
    box-shadow: 0 16px 48px rgba(245,166,35,0.25);
}

.zcy-qr-placeholder {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    text-align: center;
}

.zcy-qr-placeholder span {
    font-size: 3rem;
    margin-bottom: 0.5rem;
}

.zcy-qr-placeholder p {
    font-size: 0.875rem;
    color: #8B5E3C;
    font-weight: 600;
}

.zcy-qr-tips {
    display: flex;
    flex-direction: column;
    gap: 12px;
    width: 100%;
    max-width: 320px;
}

.zcy-qr-tip-item {
    display: flex;
    align-items: center;
    gap: 10px;
    background: #FFF0E0;
    border: 1px solid #F5A623;
    border-radius: 10px;
    padding: 12px 18px;
    font-size: 0.88rem;
    color: #8B5E3C;
}

.zcy-qr-tip-item strong {
    color: #7A5230;
    font-weight: 700;
}

/* ========== CONTACT FORM SECTION ========== */
.zcy-contact-form-section {
    padding: 4rem 0;
    background: #fff;
}

@media (min-width: 768px) {
    .zcy-contact-form-section {
        padding: 5rem 0;
    }
}

.zcy-contact-form-inner {
    max-width: 48rem;
    margin: 0 auto;
    padding: 0 1rem;
}

@media (min-width: 640px) {
    .zcy-contact-form-inner {
        padding: 0 1.5rem;
    }
}

.zcy-contact-form-card {
    background: #FFF9F5;
    border-radius: 1.5rem;
    padding: 2.5rem;
    border: 1px solid rgba(245, 166, 35, 0.6);
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

@media (min-width: 640px) {
    .zcy-contact-form-card {
        padding: 3rem;
    }
}

.zcy-form-title {
    font-size: 1.5rem;
    font-weight: 800;
    color: #3D2000;
    margin-bottom: 0.75rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.zcy-form-subtitle {
    color: rgba(122, 82, 48, 0.6);
    margin-bottom: 2rem;
    line-height: 1.75;
}

.zcy-contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.zcy-form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.zcy-form-group label {
    font-size: 0.875rem;
    font-weight: 700;
    color: #7A5230;
}

.zcy-required {
    color: #dc2626;
}

.zcy-form-group input,
.zcy-form-group textarea,
.zcy-form-select {
    padding: 0.875rem 1rem;
    border: 1.5px solid #F0DCC8;
    border-radius: 0.75rem;
    font-size: 0.9375rem;
    color: #3D2000;
    background: #fff;
    transition: all 0.3s ease;
    font-family: inherit;
    outline: none;
    resize: none;
    width: 100%;
}

.zcy-form-group input:focus,
.zcy-form-group textarea:focus,
.zcy-form-select:focus {
    border-color: #f5a623;
    box-shadow: 0 0 0 3px rgba(245,166,35,0.12);
}

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

.zcy-form-btn {
    width: 100%;
    padding: 1rem;
    background: linear-gradient(to right, #F5A623, #F5A623);
    color: #fff;
    border: none;
    border-radius: 9999px;
    font-size: 1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: inherit;
    margin-top: 0.5rem;
}

.zcy-form-btn:hover {
    background: linear-gradient(to right, #F5A623, #C8956C);
    box-shadow: 0 8px 24px rgba(245,166,35,0.45);
    transform: translateY(-2px);
}

.zcy-form-footer {
    margin-top: 1rem;
    font-size: 0.75rem;
    color: rgba(122, 82, 48, 0.6);
    text-align: center;
}

/* ========== FAQ SECTION ========== */
.zcy-faq-section {
    padding: 4rem 0;
    background: linear-gradient(to bottom, #FFF9F5, #fff);
}

@media (min-width: 768px) {
    .zcy-faq-section {
        padding: 5rem 0;
    }
}

.zcy-faq-inner {
    max-width: 64rem;
    margin: 0 auto;
    padding: 0 1rem;
}

@media (min-width: 640px) {
    .zcy-faq-inner {
        padding: 0 1.5rem;
    }
}

.zcy-faq-header {
    text-align: center;
    margin-bottom: 2.5rem;
}

.zcy-faq-header .zcy-section-tag {
    background: #FFF0E0;
    border-color: #F5A623;
    color: #C8956C;
    margin: 0 auto 1rem;
}

.zcy-faq-header .zcy-section-title {
    color: #3D2000;
}

.zcy-faq-header .zcy-divider {
    margin-left: auto;
    margin-right: auto;
}

.zcy-faq-header .zcy-section-subtitle {
    color: rgba(122, 82, 48, 0.6);
}

.zcy-faq-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.zcy-faq-item {
    border-radius: 1rem;
    border: 1px solid rgba(245, 166, 35, 0.6);
    background: #fff;
    overflow: hidden;
    transition: all 0.3s ease;
}

.zcy-faq-item:hover {
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.zcy-faq-q {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.25rem 1.5rem;
    text-align: left;
    background: #fff;
    border: none;
    cursor: pointer;
    transition: background-color 0.2s ease;
    font-weight: 600;
    color: #7A5230;
}

.zcy-faq-q:hover {
    background: rgba(255, 240, 224, 0.5);
}

.zcy-q-icon {
    width: 2rem;
    height: 2rem;
    background: linear-gradient(to bottom right, #F5A623, #F5A623);
    color: #fff;
    border-radius: 9999px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    margin-right: 1rem;
    flex-shrink: 0;
}

.zcy-arrow {
    color: #F5A623;
    font-size: 1.25rem;
    transition: transform 0.3s ease;
}

.zcy-faq-item.active .zcy-arrow {
    transform: rotate(180deg);
}

.zcy-faq-a {
    max-height: 0;
    overflow: hidden;
    padding: 0 1.5rem;
    color: rgba(122, 82, 48, 0.7);
    line-height: 1.75;
    font-size: 0.875rem;
    transition: max-height 0.4s ease, padding 0.4s ease;
}

.zcy-faq-item.active .zcy-faq-a {
    max-height: 500px;
    padding: 0 1.5rem 1.5rem;
}

.zcy-faq-a-inner {
    padding-top: 1rem;
    border-top: 1px solid rgba(245, 166, 35, 0.4);
}

/* ========== MAP SECTION ========== */
.zcy-map-section {
    padding: 4rem 0 5rem;
    background: linear-gradient(to bottom, #fff, #FFF9F5);
}

@media (min-width: 768px) {
    .zcy-map-section {
        padding: 5rem 0;
    }
}

.zcy-map-inner {
    max-width: 80rem;
    margin: 0 auto;
    padding: 0 1rem;
}

@media (min-width: 640px) {
    .zcy-map-inner {
        padding: 0 1.5rem;
    }
}

.zcy-map-header {
    text-align: center;
    margin-bottom: 2.5rem;
}

.zcy-map-header .zcy-section-tag {
    background: #FFF0E0;
    border-color: #F5A623;
    color: #C8956C;
    margin: 0 auto 1rem;
}

.zcy-map-header .zcy-section-title {
    color: #3D2000;
}

.zcy-map-header .zcy-divider {
    margin-left: auto;
    margin-right: auto;
}

.zcy-map-header .zcy-section-subtitle {
    color: rgba(122, 82, 48, 0.6);
}

.zcy-map-card {
    border-radius: 1.5rem;
    overflow: hidden;
    border: 1px solid rgba(245, 166, 35, 0.6);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 8px 10px -6px rgba(0, 0, 0, 0.1);
}

.zcy-map-iframe-wrapper {
    position: relative;
    background: #f5f5f5;
}

.zcy-map-iframe-container {
    position: relative;
    width: 100%;
    aspect-ratio: 21 / 9;
}

@media (max-width: 1024px) {
    .zcy-map-iframe-container {
        aspect-ratio: 16 / 9;
    }
}

@media (max-width: 640px) {
    .zcy-map-iframe-container {
        aspect-ratio: 4 / 3;
    }
}

.zcy-map-iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
    border-radius: 1.5rem 1.5rem 0 0;
}

.zcy-map-addr-bar {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 1.25rem;
    background: #fff;
    border-top: 1px solid rgba(245, 166, 35, 0.4);
    color: #3D2000;
    font-size: 0.875rem;
    line-height: 1.4;
}

.zcy-map-addr-phone {
    margin-left: auto;
    padding: 0.25rem 0.75rem;
    background: linear-gradient(to bottom right, #FFF0E0, #FFF9F5);
    border-radius: 9999px;
    font-size: 0.8125rem;
    font-weight: 600;
    color: #8B5E3C;
    white-space: nowrap;
}

.zcy-map-bottom {
    background: #fff;
    padding: 1rem;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

@media (min-width: 640px) {
    .zcy-map-bottom {
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
        padding: 1rem;
    }
}

.zcy-map-info-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #8B5E3C;
    font-size: 0.875rem;
}

/* ========== FADE UP ANIMATIONS ========== */
.fade-up {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeUp 0.8s ease forwards;
}

.fade-up-delay-1 {
    animation-delay: 0.2s;
}

.fade-up-delay-2 {
    animation-delay: 0.4s;
}

@keyframes fadeUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ===== Toast 通知 ===== */
.toast {
    position: fixed;
    top: 90px;
    right: 24px;
    background: #ffffff;
    border: 1px solid #F0DCC8;
    border-radius: 12px;
    padding: 14px 20px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.9rem;
    font-weight: 600;
    color: #3D2000;
    box-shadow: 0 8px 32px rgba(200, 149, 108, 0.18);
    z-index: 2000;
    transform: translateX(120%);
    transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.toast.show {
    transform: translateX(0);
}

.toast-icon {
    font-size: 1.2rem;
}

