/* ========== Scroll Reveal ========== */
.hwc-reveal {
    opacity: 0;
    transform: translateY(36px);
    transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1),
                transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.hwc-reveal.revealed {
    opacity: 1;
    transform: translateY(0);
}

.hwc-reveal-delay-1 { transition-delay: 0.08s; }
.hwc-reveal-delay-2 { transition-delay: 0.16s; }
.hwc-reveal-delay-3 { transition-delay: 0.24s; }
.hwc-reveal-delay-4 { transition-delay: 0.32s; }
.hwc-reveal-delay-5 { transition-delay: 0.4s; }

/* ========== Section Header ========== */
.hwc-section-header {
    text-align: center;
    margin-bottom: 56px;
}

.hwc-section-header__title {
    font-family: Arial, Helvetica, sans-serif;
    font-size: clamp(1.0rem, 2.8vw, 1.0rem);
    font-weight: 500;
    color: var(--primary-color);
    line-height: 1.45;
    margin: 0 0 12px;
    text-align: center;
}

.hwc-section-header__title-zh {
    display: block;
    font-family: 'Noto Sans SC', sans-serif;
    font-size: clamp(1.1rem, 2vw, 1.65rem);
    font-weight: 400;
    margin-top: 4px;
}

.hwc-section-header__desc {
    font-size: clamp(0.88rem, 1.4vw, 0.95rem);
    font-weight: 300;
    color: #666;
    margin: 0 auto;
    max-width: 560px;
    line-height: 1.75;
    text-align: center;
}

.hwc-section-header--light .hwc-section-header__title,
.hwc-section-header--light .hwc-section-header__title-zh {
    color: #fff;
}

.hwc-section-header--light .hwc-section-header__desc {
    color: rgba(255, 255, 255, 0.85);
}

/* ========== Indoor Section ========== */
.hwc-indoor {
    padding: 80px 0 90px;
    background: #fff;
    position: relative;
}

.hwc-indoor::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(45, 70, 57, 0.1), transparent);
}

/* ========== Outdoor Section ========== */
.hwc-outdoor {
    padding: 80px 0 90px;
    background: linear-gradient(160deg, var(--primary-dark) 0%, var(--primary-color) 40%, var(--primary-light) 70%, var(--primary-color) 100%);
    background-size: 200% 200%;
    animation: hwcOutdoorGradient 14s ease infinite;
    position: relative;
    overflow: hidden;
}

.hwc-outdoor::before {
    content: '';
    position: absolute;
    top: -40%;
    right: -15%;
    width: 50%;
    height: 180%;
    background: radial-gradient(ellipse, rgba(196, 162, 101, 0.1) 0%, transparent 65%);
    pointer-events: none;
    animation: hwcOutdoorGlow 9s ease-in-out infinite alternate;
}

@keyframes hwcOutdoorGradient {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

@keyframes hwcOutdoorGlow {
    0% { transform: translate(0, 0); opacity: 0.5; }
    100% { transform: translate(-8%, 5%); opacity: 1; }
}

/* ========== Services Grid ========== */
.hwc-services-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 24px;
    position: relative;
    z-index: 1;
}

.hwc-service-card {
    text-align: center;
    transition: var(--transition);
}

.hwc-service-card:hover {
    transform: translateY(-6px);
}

.hwc-service-card__image-wrap {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    aspect-ratio: 4 / 3;
    margin-bottom: 16px;
    box-shadow: var(--shadow-sm);
}

.hwc-service-card__image-wrap::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(45, 70, 57, 0.35) 0%, transparent 55%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.hwc-service-card:hover .hwc-service-card__image-wrap::after {
    opacity: 1;
}

.hwc-service-card__image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.hwc-service-card:hover .hwc-service-card__image {
    transform: scale(1.07);
}

.hwc-service-card__title {
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--primary-color);
    margin: 0 0 8px;
    line-height: 1.4;
}

.hwc-service-card__desc {
    font-size: 0.82rem;
    font-weight: 300;
    color: var(--text-muted);
    line-height: 1.65;
    margin: 0;
}

/* Outdoor card variants */
.hwc-service-card--outdoor .hwc-service-card__image-wrap {
    border: 2px solid rgba(255, 255, 255, 0.35);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

.hwc-service-card--outdoor .hwc-service-card__title {
    color: #fff;
}

.hwc-service-card--outdoor .hwc-service-card__desc {
    color: rgba(255, 255, 255, 0.78);
}

.hwc-service-card--outdoor .hwc-service-card__image-wrap::after {
    background: linear-gradient(to top, rgba(30, 48, 40, 0.5) 0%, transparent 55%);
}

.hwc-service-card--outdoor:hover .hwc-service-card__image-wrap {
    border-color: rgba(196, 162, 101, 0.6);
}

/* ========== Responsive ========== */
@media (max-width: 1200px) {
    .hwc-services-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 28px;
    }
}

@media (max-width: 900px) {
    .hwc-indoor,
    .hwc-outdoor {
        padding: 64px 0 72px;
    }

    .hwc-section-header {
        margin-bottom: 44px;
    }

    .hwc-services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }
}

@media (max-width: 600px) {
    .hwc-indoor,
    .hwc-outdoor {
        padding: 52px 0 60px;
    }

    .hwc-services-grid {
        grid-template-columns: 1fr;
        gap: 32px;
        max-width: 400px;
        margin: 0 auto;
    }

    .hwc-section-header__title-zh {
        font-size: 1.15rem;
    }
}

@media (max-width: 480px) {
    .blog-hero__btn {
        width: 100%;
        justify-content: center;
    }
}

/* ========== Shared Buttons ========== */
.hwc-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 13px 28px;
    font-size: 0.92rem;
    font-weight: 500;
    border-radius: 50px;
    border: none;
    cursor: pointer;
    transition: var(--transition);
    text-align: center;
}

.hwc-btn--primary {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-light) 50%, var(--primary-dark) 100%);
    background-size: 200% 200%;
    color: #fff;
    animation: gradientShift 5s ease infinite;
}

.hwc-btn--primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(45, 70, 57, 0.35);
    color: #fff;
}

.hwc-btn--gold {
    background: linear-gradient(135deg, #b8956a 0%, var(--accent-gold) 40%, var(--accent-gold-light) 70%, #b8956a 100%);
    background-size: 200% 200%;
    color: #fff;
    animation: gradientShift 4s ease infinite;
}

.hwc-btn--gold:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(196, 162, 101, 0.4);
    color: #fff;
}

.hwc-btn--block {
    width: 100%;
}

.hwc-btn .arrow {
    transition: transform 0.3s ease;
}

.hwc-btn:hover .arrow {
    transform: translateX(4px);
}

.hwc-section-header--left {
    text-align: left;
}



/* ========== Annual Care Plan ========== */
.hwc-plan {
    padding: 80px 0 90px;
    background: var(--section-bg);
    position: relative;
}

.hwc-plan__body {
    display: grid;
    grid-template-columns: 1fr 320px;
    gap: 32px;
    align-items: stretch;
}

.hwc-plan__cards {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}

.hwc-freq-card {
    position: relative;
    background: #fff;
    border: 1px solid rgba(45, 70, 57, 0.12);
    border-radius: 12px;
    padding: 28px 16px 24px;
    text-align: center;
    transition: var(--transition);
    box-shadow: var(--shadow-sm);
     
}

.hwc-freq-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-md);
    border-color: rgba(45, 70, 57, 0.2);
}

.hwc-freq-card--popular {
    border-color: var(--primary-color);
    box-shadow: 0 8px 28px rgba(45, 70, 57, 0.15);
}

.hwc-freq-card--popular:hover {
    border-color: var(--accent-gold);
}

.hwc-freq-card__badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    padding: 4px 14px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    background-size: 200% 200%;
    animation: gradientShift 4s ease infinite;
    color: #fff;
    font-size: 0.72rem;
    font-weight: 500;
    border-radius: 50px;
    white-space: nowrap;
}

.hwc-freq-card__icon {
    width: 84px;
    height: 84px;
    padding: 10px 10px;
    margin: 0 auto 16px;
    color: var(--primary-color);
    background: #fff;
    border-radius: 50%;
    border: solid 1px var(--primary-color);
}

.hwc-freq-card__icon svg {
    width: 42px;
    height: 42px;
    position: relative;
    top: 5px;
}

.hwc-freq-card__title {
    font-size: 1rem;
    font-weight: 500;
    color: var(--primary-color);
    margin: 0 0 8px;
}

.hwc-freq-card__desc {
    font-size: 0.82rem;
    font-weight: 300;
    color: var(--text-muted);
    margin: 0;
    line-height: 1.5;
}

.hwc-plan__summary {
    background: rgba(255, 255, 255, 0.85);
    border: 1px solid rgba(45, 70, 57, 0.1);
    border-radius: 16px;
    padding: 32px 28px;
    display: flex;
    flex-direction: column;
    box-shadow: var(--shadow-sm);
}

.hwc-plan__summary-title {
    font-size: 1.05rem;
    font-weight: 500;
    color: var(--primary-color);
    margin: 0 0 20px;
}

.hwc-plan__includes {
    flex: 1;
    margin: 0 0 28px;
}

.hwc-plan__includes li {
    position: relative;
    padding-left: 24px;
    margin-bottom: 12px;
    font-size: 0.88rem;
    font-weight: 300;
    color: var(--text-muted);
    line-height: 1.5;
}

.hwc-plan__includes li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 5px;
    width: 14px;
    height: 14px;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-gold));
    border-radius: 50%;
    opacity: 0.85;
}

.hwc-plan__includes li::after {
    content: '✓';
    position: absolute;
    left: 4px;
    top: 7px;
    font-size: 0.6rem;
    color: #fff;
    line-height: 1;
}

/* ========== Pricing ========== */
.hwc-pricing {
    padding: 80px 0 90px;
    background: #fff;
}

.hwc-pricing__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    align-items: stretch;
}

.hwc-price-card {
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    border: 1px solid rgba(45, 70, 57, 0.08);
}

.hwc-price-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-md);
}

.hwc-price-card--featured {
    transform: scale(1.03);
    box-shadow: 0 12px 40px rgba(196, 162, 101, 0.25);
    border-color: rgba(196, 162, 101, 0.3);
    z-index: 1;
}

.hwc-price-card--featured:hover {
    transform: scale(1.03) translateY(-8px);
}

.hwc-price-card__header {
    padding: 28px 24px;
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary-color) 50%, var(--primary-light) 100%);
    background-size: 200% 200%;
    animation: hwcPriceHeaderGradient 8s ease infinite;
    color: #fff;
    text-align: center;
}

.hwc-price-card--featured .hwc-price-card__header {
    background: linear-gradient(135deg, #a08050 0%, var(--accent-gold) 40%, var(--accent-gold-light) 70%, #b8956a 100%);
    background-size: 200% 200%;
    animation: hwcPriceGoldGradient 6s ease infinite;
}

@keyframes hwcPriceHeaderGradient {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

@keyframes hwcPriceGoldGradient {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

.hwc-price-card__name {
    font-size: 1rem;
    font-weight: 500;
    margin: 0 0 12px;
}

.hwc-price-card__price {
    font-family: Arial, Helvetica, sans-serif;
    font-size: clamp(1.75rem, 3vw, 2.25rem);
    font-weight: 600;
    margin: 0;
    line-height: 1.2;
}

.hwc-price-card__currency {
    font-size: 0.85em;
    font-weight: 500;
}

.hwc-price-card__unit {
    font-family: 'Noto Sans SC', sans-serif;
    font-size: 0.45em;
    font-weight: 300;
    opacity: 0.85;
}

.hwc-price-card__body {
    flex: 1;
    display: flex;
    flex-direction: column;
    padding: 28px 24px 32px;
    background: #fff;
}

.hwc-price-card__features {
    flex: 1;
    margin: 0 0 28px;
}

.hwc-price-card__features li {
    position: relative;
    padding-left: 16px;
    margin-bottom: 12px;
    font-size: 0.88rem;
    font-weight: 300;
    color: var(--text-muted);
    line-height: 1.5;
}

.hwc-price-card__features li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 9px;
    width: 5px;
    height: 5px;
    background: var(--accent-gold);
    border-radius: 50%;
}

/* ========== Add-on Services ========== */
.hwc-addon {
    padding: 80px 0 90px;
    background: linear-gradient(160deg, var(--primary-dark) 0%, var(--primary-color) 45%, var(--primary-light) 100%);
    background-size: 200% 200%;
    animation: hwcOutdoorGradient 14s ease infinite;
    position: relative;
    overflow: hidden;
}

.hwc-addon::before {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -10%;
    width: 45%;
    height: 160%;
    background: radial-gradient(ellipse, rgba(196, 162, 101, 0.1) 0%, transparent 65%);
    pointer-events: none;
    animation: hwcOutdoorGlow 9s ease-in-out infinite alternate;
}

.hwc-addon__grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 24px;
    position: relative;
    z-index: 1;
}

.hwc-addon-item {
    text-align: center;
    padding: 24px 12px;
    border-radius: 12px;
    transition: var(--transition);
}

.hwc-addon-item:hover {
    background: rgba(255, 255, 255, 0.06);
    transform: translateY(-4px);
}

.hwc-addon-item__icon {
    width: 48px;
    height: 48px;
    margin: 0 auto 16px;
    color: rgba(255, 255, 255, 0.9);
}

.hwc-addon-item__icon svg {
    width: 100%;
    height: 100%;
}

.hwc-addon-item__title {
    font-size: 0.95rem;
    font-weight: 500;
    color: #fff;
    margin: 0 0 8px;
}

.hwc-addon-item__desc {
    font-size: 0.82rem;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.75);
    margin: 0;
    line-height: 1.6;
}

/* ========== Page Contact CTA ========== */
.hwc-contact {
    padding: 72px 0;
    background: linear-gradient(145deg, var(--primary-color) 0%, var(--primary-dark) 60%, var(--primary-color) 100%);
    background-size: 200% 200%;
    animation: contactGradient 12s ease infinite;
    position: relative;
    overflow: hidden;
}

.hwc-contact::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(196, 162, 101, 0.4), transparent);
}

.hwc-contact__inner {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 40px;
    align-items: center;
}

.hwc-contact__lead {
    font-size: clamp(1.1rem, 2vw, 1.35rem);
    font-weight: 400;
    color: #fff;
    line-height: 1.65;
    margin: 0;
}

.hwc-contact__visual {
    flex-shrink: 0;
}

.hwc-contact__image {
    width: 200px;
    height: 200px;
    object-fit: cover;
    border-radius: 50%;
    border: 3px solid rgba(255, 255, 255, 0.25);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
    transition: transform 0.6s ease;
}

.hwc-contact:hover .hwc-contact__image {
    transform: scale(1.05);
}

.hwc-contact__action {
    text-align: left;
}

.hwc-contact__whatsapp-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 32px;
    background: #fff;
    color: var(--primary-color);
    font-size: 1rem;
    font-weight: 500;
    border-radius: 50px;
    margin-bottom: 24px;
    transition: var(--transition);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

.hwc-contact__whatsapp-btn svg {
    width: 24px;
    height: 24px;
    color: #25D366;
    flex-shrink: 0;
}

.hwc-contact__whatsapp-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 28px rgba(0, 0, 0, 0.25);
    color: var(--primary-dark);
}

.hwc-contact__whatsapp-btn .arrow {
    transition: transform 0.3s ease;
}

.hwc-contact__whatsapp-btn:hover .arrow {
    transform: translateX(4px);
}

.hwc-contact__phone {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: Arial, Helvetica, sans-serif;
    font-size: clamp(1.5rem, 2.5vw, 1.85rem);
    font-weight: 600;
    color: #fff;
    margin-bottom: 16px;
    transition: var(--transition);
}

.hwc-contact__phone svg {
    width: 22px;
    height: 22px;
    flex-shrink: 0;
    opacity: 0.8;
}

.hwc-contact__phone:hover {
    color: var(--accent-gold-light);
}

.hwc-contact__hours {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 0.85rem;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.78);
    line-height: 1.65;
    margin: 0;
}

.hwc-contact__hours svg {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
    margin-top: 2px;
    opacity: 0.7;
}

.hwc-contact__hours-note {
    display: block;
    font-size: 0.82rem;
    color: rgba(255, 255, 255, 0.55);
    margin-top: 2px;
}

/* ========== New Sections Responsive ========== */
@media (max-width: 1100px) {
    .hwc-plan__body {
        grid-template-columns: 1fr;
    }

    .hwc-plan__summary {
        max-width: 480px;
    }

    .hwc-addon__grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .hwc-contact__inner {
        grid-template-columns: 1fr 1fr;
        gap: 32px;
    }

    .hwc-contact__visual {
        grid-column: 1 / -1;
        justify-self: center;
        order: -1;
    }
}

@media (max-width: 900px) {
    .hwc-plan,
    .hwc-pricing,
    .hwc-addon,
    .hwc-contact {
        padding: 64px 0 72px;
    }

    .hwc-plan__cards {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .hwc-pricing__grid {
        grid-template-columns: 1fr;
        max-width: 420px;
        margin: 0 auto;
        gap: 24px;
    }

    .hwc-price-card--featured {
        transform: none;
    }

    .hwc-price-card--featured:hover {
        transform: translateY(-8px);
    }

    .hwc-addon__grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .hwc-contact__inner {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hwc-contact__action {
        text-align: center;
    }

    .hwc-contact__phone,
    .hwc-contact__hours {
        justify-content: center;
    }

    .hwc-contact__hours {
        flex-direction: column;
        align-items: center;
    }
}

@media (max-width: 600px) {
    .hwc-plan,
    .hwc-pricing,
    .hwc-addon,
    .hwc-contact {
        padding: 52px 0 60px;
    }

    .hwc-plan__cards {
        grid-template-columns: 1fr;
        max-width: 320px;
        margin: 0 auto;
    }

    .hwc-plan__summary {
        max-width: 100%;
    }

    .hwc-addon__grid {
        grid-template-columns: 1fr;
        max-width: 360px;
        margin: 0 auto;
    }

    .hwc-contact__whatsapp-btn {
        width: 82vw;
        justify-content: center;
        padding: 10px 22px;
        border-radius: 44px;
        font-size: 0.8rem;
    }

    .hwc-contact__image {
        width: 160px;
        height: 160px;
    }
}

@media (max-width: 480px) {
    .hwc-section-header__title{
        font-size: 14px; color: #888;
    }

    .hwc-section-header__title-zh{
        color: var(--primary-color);
    }

    .hwc-plan__cards .hwc-freq-card{
        margin-bottom: 30px;
    }

    .hwc-addon-item__icon{
        border: solid 1px white;
        border-radius: 50%;
        padding: 10px;
        width: 60px;
        height: 60px;
    }

    .hwc-addon-item{
        border: solid 1px #ccc;
    }

    .hwc-service-card__title{
        margin-bottom: 4px;
    }




}
