/* ============================================
   DR. WANG'S DENTAL CLINIC - STYLES
   Chinese-Inspired Vibrant Busy Design
   ============================================ */

/* === VARIABLES === */
:root {
    --red: #cc0000;
    --dark-red: #990000;
    --bright-red: #ff2222;
    --gold: #ffd700;
    --dark-gold: #b8860b;
    --bright-gold: #ffec80;
    --jade-green: #00a86b;
    --lucky-red: #de2910;
    --imperial-yellow: #ffdf00;
    --blue: #0066cc;
    --purple: #6b2fa0;
    --orange: #ff6600;
    --pink: #ff69b4;
    --white: #ffffff;
    --black: #1a1a1a;
    --cream: #fff8e7;
    --font-main: 'Passion One', 'Noto Sans SC', sans-serif;
    --font-chinese: 'Noto Sans SC', sans-serif;
    --font-body: 'Noto Sans SC', Arial, sans-serif;
}

/* === GLOBAL RESET === */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    background: var(--cream);
    color: var(--black);
    overflow-x: hidden;
}

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

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

/* === FLOATING LANTERNS === */
.lantern {
    position: fixed;
    font-size: 3rem;
    z-index: 1;
    opacity: 0.3;
    animation: lanternFloat 8s ease-in-out infinite;
    pointer-events: none;
}
.lantern-1 { top: 10%; left: 2%; animation-delay: 0s; }
.lantern-2 { top: 30%; right: 3%; animation-delay: 1.5s; }
.lantern-3 { top: 55%; left: 1%; animation-delay: 3s; }
.lantern-4 { top: 75%; right: 2%; animation-delay: 4.5s; }
.lantern-5 { top: 90%; left: 4%; animation-delay: 6s; }

@keyframes lanternFloat {
    0%, 100% { transform: translateY(0) rotate(-5deg); }
    50% { transform: translateY(-20px) rotate(5deg); }
}

/* === FLOATING PHONE BUTTON === */
.floating-phone {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: linear-gradient(135deg, var(--bright-red), var(--dark-red));
    color: var(--gold);
    padding: 15px 25px;
    border-radius: 50px;
    font-family: var(--font-main);
    font-size: 1.3rem;
    font-weight: 900;
    letter-spacing: 1px;
    z-index: 9999;
    display: flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 5px 25px rgba(204, 0, 0, 0.5), 0 0 50px rgba(255, 215, 0, 0.3);
    animation: phonePulse 1.5s ease-in-out infinite;
    transition: transform 0.3s;
}
.floating-phone:hover {
    transform: scale(1.1);
}
.phone-icon {
    font-size: 1.5rem;
    animation: phoneRing 0.5s ease-in-out infinite;
}

@keyframes phonePulse {
    0%, 100% { box-shadow: 0 5px 25px rgba(204, 0, 0, 0.5), 0 0 50px rgba(255, 215, 0, 0.3); }
    50% { box-shadow: 0 5px 40px rgba(204, 0, 0, 0.8), 0 0 80px rgba(255, 215, 0, 0.6); }
}

@keyframes phoneRing {
    0%, 100% { transform: rotate(0); }
    25% { transform: rotate(15deg); }
    75% { transform: rotate(-15deg); }
}

/* === MARQUEE BANNER === */
.marquee-banner {
    background: linear-gradient(90deg, var(--dark-red), var(--red), var(--dark-red));
    color: var(--gold);
    padding: 10px 0;
    overflow: hidden;
    white-space: nowrap;
    font-family: var(--font-main);
    font-size: 1.2rem;
    font-weight: 700;
    letter-spacing: 2px;
    border-bottom: 3px solid var(--gold);
}
.marquee-content {
    display: inline-block;
    animation: marqueeScroll 20s linear infinite;
}
.marquee-content span {
    margin: 0 40px;
}
@keyframes marqueeScroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* === NAVIGATION === */
.main-nav {
    background: linear-gradient(180deg, #1a0000, #330000);
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 4px solid var(--gold);
    box-shadow: 0 4px 20px rgba(0,0,0,0.5);
}
.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 8px 20px;
}
.nav-logo-img {
    height: 55px;
    border-radius: 50%;
    border: 2px solid var(--gold);
}
.nav-links {
    display: flex;
    gap: 5px;
}
.nav-link {
    color: var(--gold);
    font-family: var(--font-main);
    font-size: 1.05rem;
    font-weight: 700;
    padding: 8px 14px;
    border-radius: 8px;
    transition: all 0.3s;
    letter-spacing: 1px;
}
.nav-link:hover {
    background: var(--red);
    color: var(--white);
    transform: scale(1.08);
}
.nav-phone {
    background: linear-gradient(135deg, var(--gold), var(--dark-gold));
    color: var(--dark-red);
    font-family: var(--font-main);
    font-size: 1.2rem;
    font-weight: 900;
    padding: 10px 20px;
    border-radius: 50px;
    letter-spacing: 1px;
    transition: all 0.3s;
    white-space: nowrap;
}
.nav-phone:hover {
    transform: scale(1.05);
    box-shadow: 0 0 20px rgba(255, 215, 0, 0.6);
}
.phone-bounce {
    display: inline-block;
    animation: phoneRing 0.5s ease-in-out infinite;
}
.mobile-menu-btn {
    display: none;
    background: var(--gold);
    color: var(--dark-red);
    border: none;
    font-size: 2rem;
    padding: 5px 12px;
    border-radius: 8px;
    cursor: pointer;
}

/* === HERO SECTION === */
.hero {
    position: relative;
    min-height: 85vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--dark-red) 0%, var(--red) 30%, #cc3300 60%, var(--dark-red) 100%);
    overflow: hidden;
}
.hero-bg-pattern {
    position: absolute;
    inset: 0;
    background-image: 
        radial-gradient(circle at 20% 50%, rgba(255,215,0,0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 30%, rgba(255,215,0,0.1) 0%, transparent 50%),
        radial-gradient(circle at 50% 80%, rgba(255,255,255,0.05) 0%, transparent 50%);
    background-size: 100% 100%;
}
.hero-bg-pattern::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url("data:image/svg+xml,%3Csvg width='80' height='80' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M40 0 C45 20 60 35 80 40 C60 45 45 60 40 80 C35 60 20 45 0 40 C20 35 35 20 40 0Z' fill='rgba(255,215,0,0.04)'/%3E%3C/svg%3E");
    background-size: 80px 80px;
}
.hero-clouds .cloud {
    position: absolute;
    font-size: 4rem;
    opacity: 0.15;
    animation: cloudFloat 15s linear infinite;
}
.cloud-1 { top: 10%; animation-delay: 0s; }
.cloud-2 { top: 40%; animation-delay: 5s; }
.cloud-3 { top: 70%; animation-delay: 10s; }
@keyframes cloudFloat {
    0% { transform: translateX(-100px); }
    100% { transform: translateX(calc(100vw + 100px)); }
}

.hero-content {
    position: relative;
    z-index: 10;
    text-align: center;
    padding: 40px 20px;
}
.hero-logo {
    width: 320px;
    height: 320px;
    border-radius: 50%;
    border: 8px solid var(--gold);
    box-shadow: 0 0 50px rgba(255, 215, 0, 0.5), 0 0 100px rgba(255, 215, 0, 0.2);
    animation: logoRock 2s ease-in-out infinite;
    margin-bottom: 25px;
    transform-origin: center center;
}
@keyframes logoRock {
    0%, 100% { transform: rotate(0deg) scale(1); box-shadow: 0 0 50px rgba(255, 215, 0, 0.5), 0 0 100px rgba(255, 215, 0, 0.2); }
    25% { transform: rotate(8deg) scale(1.02); box-shadow: 0 0 60px rgba(255, 215, 0, 0.7), 0 0 110px rgba(255, 215, 0, 0.3); }
    75% { transform: rotate(-8deg) scale(1.02); box-shadow: 0 0 60px rgba(255, 215, 0, 0.7), 0 0 110px rgba(255, 215, 0, 0.3); }
}
.hero-title {
    margin-bottom: 15px;
}
.title-chinese {
    display: block;
    font-family: var(--font-chinese);
    font-size: 3.5rem;
    font-weight: 900;
    color: var(--gold);
    text-shadow: 3px 3px 0 rgba(0,0,0,0.3), 0 0 30px rgba(255,215,0,0.5);
    letter-spacing: 8px;
}
.title-english {
    display: block;
    font-family: var(--font-main);
    font-size: 4rem;
    font-weight: 900;
    color: var(--white);
    text-shadow: 4px 4px 0 rgba(0,0,0,0.4), 0 0 20px rgba(255,255,255,0.3);
    letter-spacing: 6px;
    line-height: 1.1;
}
.hero-subtitle {
    font-family: var(--font-main);
    font-size: 1.8rem;
    color: var(--bright-gold);
    text-shadow: 2px 2px 0 rgba(0,0,0,0.3);
    margin-bottom: 25px;
    letter-spacing: 3px;
}
.hero-phone-link {
    display: inline-block;
    background: linear-gradient(135deg, var(--gold), var(--imperial-yellow), var(--gold));
    color: var(--dark-red);
    font-family: var(--font-main);
    font-size: 2.5rem;
    font-weight: 900;
    padding: 18px 50px;
    border-radius: 60px;
    letter-spacing: 3px;
    box-shadow: 0 8px 30px rgba(0,0,0,0.4), inset 0 2px 0 rgba(255,255,255,0.3);
    animation: ctaPulse 2s ease-in-out infinite;
    transition: transform 0.3s;
}
.hero-phone-link:hover {
    transform: scale(1.08);
}
@keyframes ctaPulse {
    0%, 100% { box-shadow: 0 8px 30px rgba(0,0,0,0.4), 0 0 20px rgba(255,215,0,0.3); }
    50% { box-shadow: 0 8px 40px rgba(0,0,0,0.5), 0 0 50px rgba(255,215,0,0.6); }
}
.hero-badges {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
    margin-top: 30px;
}
.badge {
    padding: 10px 22px;
    border-radius: 50px;
    font-family: var(--font-main);
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: 1px;
    animation: badgeBounce 2s ease-in-out infinite;
}
.badge-gold { background: var(--gold); color: var(--dark-red); animation-delay: 0s; }
.badge-red { background: var(--bright-red); color: var(--white); animation-delay: 0.3s; }
.badge-green { background: var(--jade-green); color: var(--white); animation-delay: 0.6s; }
.badge-blue { background: var(--blue); color: var(--white); animation-delay: 0.9s; }
@keyframes badgeBounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-5px); }
}

.hero-decorations .decoration {
    position: absolute;
    font-size: 4rem;
    opacity: 0.3;
    animation: decorSpin 10s linear infinite;
}
.deco-1 { top: 10%; left: 5%; }
.deco-2 { top: 15%; right: 8%; animation-delay: 2.5s; }
.deco-3 { bottom: 15%; left: 8%; animation-delay: 5s; }
.deco-4 { bottom: 10%; right: 5%; animation-delay: 7.5s; }
@keyframes decorSpin {
    0% { transform: rotate(0deg) scale(1); }
    50% { transform: rotate(10deg) scale(1.2); }
    100% { transform: rotate(0deg) scale(1); }
}

/* === BLINK BANNER === */
.blink-banner {
    background: linear-gradient(90deg, var(--gold), var(--imperial-yellow), var(--gold));
    padding: 15px;
    text-align: center;
    border-top: 4px solid var(--red);
    border-bottom: 4px solid var(--red);
}
.blink-text {
    font-family: var(--font-main);
    font-size: 1.8rem;
    font-weight: 900;
    color: var(--dark-red);
    letter-spacing: 2px;
    animation: blink 1s step-end infinite;
}
@keyframes blink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.3; }
}

/* === SECTION TITLES === */
.section-title {
    text-align: center;
    font-family: var(--font-main);
    font-size: 3rem;
    font-weight: 900;
    color: var(--dark-red);
    letter-spacing: 4px;
    margin-bottom: 50px;
    text-shadow: 2px 2px 0 rgba(0,0,0,0.1);
    position: relative;
}
.section-title-light {
    color: var(--gold);
    text-shadow: 2px 2px 0 rgba(0,0,0,0.3);
}
.title-deco-left, .title-deco-right {
    font-size: 2.5rem;
    vertical-align: middle;
}
.section-decoration {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 10px;
    letter-spacing: 15px;
}

/* === SERVICES SECTION === */
.services {
    padding: 80px 20px;
    background: linear-gradient(180deg, var(--cream), #fff0d0, var(--cream));
    position: relative;
}
.services::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 8px;
    background: repeating-linear-gradient(90deg, var(--red) 0px, var(--red) 30px, var(--gold) 30px, var(--gold) 60px);
}
.services-grid {
    max-width: 1300px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}
.service-card {
    background: var(--white);
    border-radius: 20px;
    padding: 35px 25px;
    text-align: center;
    border: 4px solid var(--card-color);
    box-shadow: 0 8px 30px rgba(0,0,0,0.1);
    transition: all 0.4s;
    position: relative;
    overflow: hidden;
}
.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 6px;
    background: linear-gradient(90deg, var(--card-color), var(--card-glow), var(--card-color));
}
.service-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 15px 50px rgba(0,0,0,0.2), 0 0 30px var(--card-glow);
}
.service-icon {
    font-size: 4rem;
    margin-bottom: 15px;
}
.service-name {
    font-family: var(--font-main);
    font-size: 1.5rem;
    font-weight: 900;
    color: var(--card-color);
    letter-spacing: 2px;
    margin-bottom: 12px;
    line-height: 1.3;
}
.service-desc {
    font-size: 0.95rem;
    color: #555;
    line-height: 1.6;
    margin-bottom: 15px;
}
.service-price {
    font-family: var(--font-main);
    font-size: 1.2rem;
    color: var(--card-color);
    margin-bottom: 15px;
    letter-spacing: 1px;
}
.service-btn {
    display: inline-block;
    background: linear-gradient(135deg, var(--card-color), var(--card-glow));
    color: var(--white);
    font-family: var(--font-main);
    font-size: 1.1rem;
    font-weight: 700;
    padding: 12px 30px;
    border-radius: 50px;
    letter-spacing: 2px;
    transition: all 0.3s;
}
.service-btn:hover {
    transform: scale(1.08);
    box-shadow: 0 5px 20px rgba(0,0,0,0.3);
}
.services-image {
    max-width: 800px;
    margin: 50px auto 0;
    text-align: center;
}
.services-image img {
    border-radius: 20px;
    border: 5px solid var(--gold);
    box-shadow: 0 10px 40px rgba(0,0,0,0.2);
}

/* === SCROLLING BANNERS === */
.scroll-banner {
    padding: 15px 0;
    overflow: hidden;
    white-space: nowrap;
    font-family: var(--font-main);
    font-size: 1.3rem;
    font-weight: 700;
    letter-spacing: 3px;
}
.scroll-banner-red {
    background: linear-gradient(90deg, var(--red), var(--dark-red), var(--red));
    color: var(--gold);
    border-top: 3px solid var(--gold);
    border-bottom: 3px solid var(--gold);
}
.scroll-banner-gold {
    background: linear-gradient(90deg, var(--gold), var(--imperial-yellow), var(--gold));
    color: var(--dark-red);
    border-top: 3px solid var(--red);
    border-bottom: 3px solid var(--red);
}
.scroll-content {
    display: inline-block;
    animation: marqueeScroll 25s linear infinite;
}
.scroll-reverse {
    animation: marqueeScrollReverse 25s linear infinite;
}
@keyframes marqueeScrollReverse {
    0% { transform: translateX(-50%); }
    100% { transform: translateX(0); }
}

/* === ABOUT SECTION === */
.about {
    padding: 80px 20px;
    background: linear-gradient(135deg, #1a0000 0%, var(--dark-red) 50%, #330000 100%);
    position: relative;
    overflow: hidden;
}
.about-pattern {
    position: absolute;
    inset: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' xmlns='http://www.w3.org/2000/svg'%3E%3Ccircle cx='30' cy='30' r='2' fill='rgba(255,215,0,0.08)'/%3E%3C/svg%3E");
    background-size: 60px 60px;
}
.about-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 2;
}
.about-frame {
    width: 280px;
    height: 280px;
    margin: 0 auto;
    border-radius: 50%;
    border: 6px solid var(--gold);
    overflow: hidden;
    box-shadow: 0 0 40px rgba(255, 215, 0, 0.3);
}
.about-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.about-badges {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
    margin-top: 20px;
}
.about-badge {
    background: linear-gradient(135deg, var(--gold), var(--dark-gold));
    color: var(--dark-red);
    font-family: var(--font-main);
    font-size: 0.85rem;
    font-weight: 700;
    padding: 8px 16px;
    border-radius: 50px;
    letter-spacing: 1px;
}
.about-name {
    font-family: var(--font-main);
    font-size: 2.8rem;
    font-weight: 900;
    color: var(--gold);
    letter-spacing: 4px;
    margin-bottom: 20px;
    text-shadow: 2px 2px 0 rgba(0,0,0,0.3);
}
.about-bio {
    font-size: 1.1rem;
    color: #ffdfdf;
    line-height: 1.8;
    margin-bottom: 15px;
}
.about-highlights {
    display: flex;
    gap: 30px;
    margin: 30px 0;
}
.highlight {
    text-align: center;
    flex: 1;
}
.highlight-number {
    display: block;
    font-family: var(--font-main);
    font-size: 3rem;
    font-weight: 900;
    color: var(--gold);
    text-shadow: 2px 2px 0 rgba(0,0,0,0.3);
}
.highlight-label {
    font-size: 0.85rem;
    color: #ffaaaa;
    letter-spacing: 1px;
    line-height: 1.4;
}
.about-cta {
    display: inline-block;
    background: linear-gradient(135deg, var(--gold), var(--imperial-yellow));
    color: var(--dark-red);
    font-family: var(--font-main);
    font-size: 1.5rem;
    font-weight: 900;
    padding: 15px 40px;
    border-radius: 50px;
    letter-spacing: 2px;
    margin-top: 10px;
    transition: all 0.3s;
    box-shadow: 0 5px 25px rgba(255,215,0,0.3);
}
.about-cta:hover {
    transform: scale(1.05);
    box-shadow: 0 5px 40px rgba(255,215,0,0.6);
}

/* === SPECIALS SECTION === */
.specials {
    padding: 80px 20px;
    background: linear-gradient(180deg, var(--cream), #ffe0e0, #fff0c0, var(--cream));
    position: relative;
}
.specials::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 8px;
    background: repeating-linear-gradient(90deg, var(--gold) 0px, var(--gold) 30px, var(--red) 30px, var(--red) 60px);
}
.specials-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}
.special-card {
    border-radius: 20px;
    padding: 40px 25px;
    text-align: center;
    position: relative;
    overflow: hidden;
    transition: all 0.4s;
    box-shadow: 0 8px 30px rgba(0,0,0,0.15);
}
.special-card:hover {
    transform: translateY(-10px) scale(1.03);
}
.special-gold {
    background: linear-gradient(135deg, #fff8dc, #fff0b0, #fff8dc);
    border: 4px solid var(--gold);
}
.special-red {
    background: linear-gradient(135deg, #ffe0e0, #ffc0c0, #ffe0e0);
    border: 4px solid var(--red);
}
.special-green {
    background: linear-gradient(135deg, #e0ffe0, #b0ffb0, #e0ffe0);
    border: 4px solid var(--jade-green);
}
.special-ribbon {
    position: absolute;
    top: 15px;
    right: -35px;
    background: var(--bright-red);
    color: var(--white);
    font-family: var(--font-main);
    font-size: 0.9rem;
    font-weight: 700;
    padding: 5px 40px;
    transform: rotate(45deg);
    letter-spacing: 1px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.3);
}
.special-icon {
    font-size: 4rem;
    margin-bottom: 15px;
}
.special-card h3 {
    font-family: var(--font-main);
    font-size: 1.8rem;
    font-weight: 900;
    color: var(--dark-red);
    letter-spacing: 2px;
    margin-bottom: 5px;
}
.special-card h4 {
    font-family: var(--font-chinese);
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 15px;
}
.special-price {
    margin: 20px 0;
}
.price-old {
    font-family: var(--font-main);
    font-size: 1.3rem;
    color: #999;
    text-decoration: line-through;
    margin-right: 10px;
}
.price-new {
    font-family: var(--font-main);
    font-size: 3rem;
    font-weight: 900;
    color: var(--bright-red);
    text-shadow: 2px 2px 0 rgba(0,0,0,0.1);
}
.special-card p {
    font-size: 1rem;
    color: #555;
    margin-bottom: 20px;
}
.special-btn {
    display: inline-block;
    background: linear-gradient(135deg, var(--red), var(--bright-red));
    color: var(--white);
    font-family: var(--font-main);
    font-size: 1.2rem;
    font-weight: 700;
    padding: 12px 35px;
    border-radius: 50px;
    letter-spacing: 2px;
    transition: all 0.3s;
    animation: ctaPulse 2s ease-in-out infinite;
}
.special-btn:hover {
    transform: scale(1.08);
}

/* === TESTIMONIALS === */
.testimonials {
    padding: 80px 20px;
    background: linear-gradient(135deg, #1a0000, #330000, #1a0000);
    position: relative;
}
.testimonials-bg {
    position: absolute;
    inset: 0;
    background: url("data:image/svg+xml,%3Csvg width='100' height='100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M50 0 L100 50 L50 100 L0 50Z' fill='none' stroke='rgba(255,215,0,0.05)' stroke-width='1'/%3E%3C/svg%3E");
    background-size: 100px 100px;
}
.testimonials-grid {
    max-width: 1300px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    position: relative;
    z-index: 2;
}
.testimonial-card {
    background: linear-gradient(135deg, rgba(255,255,255,0.1), rgba(255,255,255,0.05));
    border: 2px solid rgba(255, 215, 0, 0.3);
    border-radius: 16px;
    padding: 30px;
    backdrop-filter: blur(10px);
    transition: all 0.3s;
}
.testimonial-card:hover {
    transform: translateY(-5px);
    border-color: var(--gold);
    box-shadow: 0 10px 30px rgba(255, 215, 0, 0.2);
}
.stars {
    font-size: 1.3rem;
    margin-bottom: 12px;
    letter-spacing: 3px;
}
.testimonial-text {
    font-size: 1rem;
    color: #ffdfdf;
    line-height: 1.6;
    font-style: italic;
    margin-bottom: 15px;
}
.testimonial-author {
    font-family: var(--font-main);
    font-size: 1.1rem;
    color: var(--gold);
    letter-spacing: 1px;
}

/* === CLINIC SHOWCASE === */
.clinic-showcase {
    padding: 80px 20px;
    background: linear-gradient(180deg, var(--cream), #fff0d0);
}
.clinic-image-container {
    max-width: 1000px;
    margin: 0 auto 50px;
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    border: 5px solid var(--gold);
    box-shadow: 0 15px 50px rgba(0,0,0,0.2);
}
.clinic-image {
    width: 100%;
    display: block;
}
.clinic-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0,0,0,0.8));
    padding: 40px 30px 25px;
    color: var(--white);
}
.clinic-overlay h3 {
    font-family: var(--font-main);
    font-size: 2rem;
    color: var(--gold);
    letter-spacing: 3px;
}
.clinic-overlay p {
    font-size: 1.1rem;
    opacity: 0.8;
}
.clinic-features {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 20px;
}
.feature {
    text-align: center;
    background: var(--white);
    border-radius: 16px;
    padding: 25px 15px;
    font-size: 0.9rem;
    border: 3px solid var(--gold);
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
    transition: all 0.3s;
    line-height: 1.5;
}
.feature:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

/* === BIG CTA === */
.big-cta {
    padding: 80px 20px;
    background: linear-gradient(135deg, var(--red), #ff3300, var(--bright-red), var(--red));
    text-align: center;
    position: relative;
    overflow: hidden;
}
.cta-sparkles .sparkle {
    position: absolute;
    font-size: 2rem;
    animation: sparkleFloat 3s ease-in-out infinite;
    opacity: 0.5;
}
.sparkle:nth-child(1) { top: 10%; left: 10%; animation-delay: 0s; }
.sparkle:nth-child(2) { top: 20%; right: 15%; animation-delay: 0.5s; }
.sparkle:nth-child(3) { bottom: 20%; left: 20%; animation-delay: 1s; }
.sparkle:nth-child(4) { bottom: 10%; right: 10%; animation-delay: 1.5s; }
.sparkle:nth-child(5) { top: 50%; left: 50%; animation-delay: 2s; }
@keyframes sparkleFloat {
    0%, 100% { transform: scale(1) rotate(0); opacity: 0.5; }
    50% { transform: scale(1.5) rotate(180deg); opacity: 1; }
}
.cta-title {
    font-family: var(--font-main);
    font-size: 3.5rem;
    font-weight: 900;
    color: var(--white);
    letter-spacing: 5px;
    text-shadow: 3px 3px 0 rgba(0,0,0,0.3);
    margin-bottom: 10px;
}
.cta-subtitle {
    font-family: var(--font-chinese);
    font-size: 2rem;
    color: var(--bright-gold);
    margin-bottom: 30px;
    text-shadow: 2px 2px 0 rgba(0,0,0,0.3);
}
.cta-phone {
    display: inline-block;
    background: linear-gradient(135deg, var(--gold), var(--imperial-yellow), var(--bright-gold));
    color: var(--dark-red);
    font-family: var(--font-main);
    font-size: 4rem;
    font-weight: 900;
    padding: 25px 70px;
    border-radius: 80px;
    letter-spacing: 5px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.4), 0 0 60px rgba(255,215,0,0.4);
    animation: ctaPulse 2s ease-in-out infinite;
    transition: transform 0.3s;
    margin-bottom: 20px;
}
.cta-phone:hover {
    transform: scale(1.08);
}
.cta-text {
    font-family: var(--font-main);
    font-size: 1.8rem;
    color: var(--white);
    letter-spacing: 3px;
    text-shadow: 2px 2px 0 rgba(0,0,0,0.3);
}
.cta-text-cn {
    font-family: var(--font-chinese);
    font-size: 1.5rem;
    color: var(--bright-gold);
    letter-spacing: 3px;
    margin-top: 5px;
}

/* === CONTACT SECTION === */
.contact {
    padding: 80px 20px;
    background: linear-gradient(135deg, #1a0000, var(--dark-red), #330000);
}
.contact-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
}
.contact-info {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}
.contact-card {
    background: linear-gradient(135deg, rgba(255,255,255,0.1), rgba(255,255,255,0.05));
    border: 2px solid rgba(255,215,0,0.3);
    border-radius: 16px;
    padding: 25px;
    text-align: center;
    color: #ffdfdf;
    transition: all 0.3s;
}
.contact-card:hover {
    border-color: var(--gold);
    transform: translateY(-3px);
}
.contact-icon {
    font-size: 3rem;
    margin-bottom: 10px;
}
.contact-card h3 {
    font-family: var(--font-main);
    font-size: 1.2rem;
    color: var(--gold);
    letter-spacing: 2px;
    margin-bottom: 10px;
}
.contact-phone {
    font-family: var(--font-main);
    font-size: 1.5rem;
    font-weight: 900;
    color: var(--gold);
    letter-spacing: 1px;
}
.contact-card p {
    font-size: 0.95rem;
    line-height: 1.6;
}

/* === CONTACT FORM === */
.contact-form-wrapper {
    background: linear-gradient(135deg, rgba(255,255,255,0.1), rgba(255,255,255,0.05));
    border: 2px solid rgba(255,215,0,0.3);
    border-radius: 20px;
    padding: 35px;
}
.form-title {
    font-family: var(--font-main);
    font-size: 1.8rem;
    color: var(--gold);
    text-align: center;
    letter-spacing: 3px;
    margin-bottom: 25px;
}
.contact-form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}
.contact-form input,
.contact-form select,
.contact-form textarea {
    background: rgba(255,255,255,0.1);
    border: 2px solid rgba(255,215,0,0.3);
    border-radius: 12px;
    padding: 14px 18px;
    font-size: 1rem;
    color: var(--white);
    font-family: var(--font-body);
    transition: all 0.3s;
}
.contact-form input::placeholder,
.contact-form textarea::placeholder {
    color: rgba(255,200,200,0.6);
}
.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--gold);
    box-shadow: 0 0 15px rgba(255,215,0,0.3);
}
.contact-form select {
    cursor: pointer;
}
.contact-form select option {
    background: #330000;
    color: var(--white);
}
.form-submit {
    background: linear-gradient(135deg, var(--gold), var(--imperial-yellow));
    color: var(--dark-red);
    font-family: var(--font-main);
    font-size: 1.4rem;
    font-weight: 900;
    padding: 16px;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    letter-spacing: 2px;
    transition: all 0.3s;
    box-shadow: 0 5px 20px rgba(255,215,0,0.3);
}
.form-submit:hover {
    transform: scale(1.05);
    box-shadow: 0 5px 30px rgba(255,215,0,0.5);
}

/* === FOOTER === */
.footer {
    background: linear-gradient(180deg, #0a0000, #1a0000);
    border-top: 5px solid var(--gold);
    padding: 50px 20px 30px;
    text-align: center;
}
.footer-logo-img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    border: 3px solid var(--gold);
    margin-bottom: 10px;
}
.footer h3 {
    font-family: var(--font-main);
    font-size: 1.5rem;
    color: var(--gold);
    letter-spacing: 3px;
}
.footer h4 {
    font-family: var(--font-chinese);
    font-size: 1rem;
    color: #ffaaaa;
    margin-bottom: 20px;
}
.footer-phone {
    display: inline-block;
    font-family: var(--font-main);
    font-size: 1.8rem;
    font-weight: 900;
    color: var(--gold);
    letter-spacing: 2px;
    margin-bottom: 10px;
    transition: all 0.3s;
}
.footer-phone:hover {
    color: var(--bright-gold);
    transform: scale(1.05);
}
.footer-contact p {
    color: #ffaaaa;
    font-size: 0.95rem;
    line-height: 1.6;
}
.footer-bottom {
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid rgba(255,215,0,0.2);
}
.footer-bottom p {
    color: #888;
    font-size: 0.85rem;
}
.footer-decorations {
    font-size: 1.5rem;
    margin-top: 15px;
    letter-spacing: 8px;
}

/* === RESPONSIVE === */
@media (max-width: 1024px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .clinic-features {
        grid-template-columns: repeat(3, 1fr);
    }
    .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: #1a0000;
        flex-direction: column;
        padding: 20px;
        border-bottom: 3px solid var(--gold);
    }
    .nav-links.active {
        display: flex;
    }
    .mobile-menu-btn {
        display: block;
    }
    .nav-phone {
        display: none;
    }
    .title-chinese { font-size: 2rem; letter-spacing: 4px; }
    .title-english { font-size: 2.5rem; letter-spacing: 3px; }
    .hero-subtitle { font-size: 1.2rem; }
    .hero-phone-link { font-size: 1.6rem; padding: 14px 30px; }
    .hero-logo { width: 220px; height: 220px; }
    .section-title { font-size: 2rem; }
    .about-content { grid-template-columns: 1fr; text-align: center; }
    .services-grid { grid-template-columns: 1fr; }
    .specials-grid { grid-template-columns: 1fr; }
    .testimonials-grid { grid-template-columns: 1fr; }
    .contact-grid { grid-template-columns: 1fr; }
    .contact-info { grid-template-columns: 1fr; }
    .clinic-features { grid-template-columns: repeat(2, 1fr); }
    .cta-title { font-size: 2rem; }
    .cta-phone { font-size: 2.5rem; padding: 20px 40px; }
    .blink-text { font-size: 1.2rem; }
    .floating-phone { bottom: 15px; right: 15px; padding: 12px 18px; font-size: 1rem; }
}

@media (max-width: 480px) {
    .hero-badges { flex-direction: column; align-items: center; }
    .about-highlights { flex-direction: column; gap: 15px; }
    .clinic-features { grid-template-columns: 1fr 1fr; }
    .marquee-banner { font-size: 0.9rem; }
}

/* === ANIMATIONS FOR SCROLL REVEAL === */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}
