/* =====================================================
   BLACK & GOLD CLASSIC THEME VARIABLES
   ===================================================== */

:root {
    /* Primary Gold Colors */
    --primary-gold: #d4af37;
    --secondary-gold: #b8860b;
    --light-gold: #f4d03f;
    --dark-gold: #8b7355;
    --accent-gold: #ffd700;

    /* Background Colors */
    --bg-primary: #000000;
    --bg-secondary: #1a1a1a;
    --bg-tertiary: #2d2d2d;
    --bg-card: rgba(26, 26, 26, 0.9);

    /* Text Colors */
    --text-primary: #f4d03f;
    --text-secondary: #d4af37;
    --text-muted: #d4af37;
    --text-white: #f4d03f;

    /* Border and Effects */
    --border-gold: #d4af37;
    --shadow-gold: rgba(212, 175, 55, 0.3);
    --gradient-gold: linear-gradient(45deg, #d4af37, #f4d03f, #d4af37);

    /* 替换所有粉红色为金色 */
    --accent-color: #d4af37;
    --highlight-color: #f4d03f;
}

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

body {
    font-family: 'Georgia', 'Times New Roman', serif;
    line-height: 1.7;
    color: var(--text-primary);
    background: linear-gradient(135deg, var(--bg-primary) 0%, var(--bg-secondary) 40%, var(--bg-tertiary) 70%, var(--bg-primary) 100%);
    min-height: 100vh;
    position: relative;
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background:
        radial-gradient(circle at 20% 80%, var(--shadow-gold) 0%, transparent 60%),
        radial-gradient(circle at 80% 20%, rgba(212, 175, 55, 0.1) 0%, transparent 60%),
        radial-gradient(circle at 40% 40%, rgba(212, 175, 55, 0.05) 0%, transparent 60%);
    pointer-events: none;
    z-index: -1;
}

/* 金色星尘飘落效果 */
body::after {
    content: '';
    position: fixed;
    top: -100px;
    left: 0;
    width: 100%;
    height: calc(100% + 100px);
    background-image:
        radial-gradient(2px 2px at 20px 30px, rgba(212, 175, 55, 0.8), transparent),
        radial-gradient(2px 2px at 40px 70px, rgba(255, 215, 0, 0.9), transparent),
        radial-gradient(1px 1px at 90px 40px, rgba(212, 175, 55, 0.7), transparent),
        radial-gradient(1px 1px at 130px 80px, rgba(255, 215, 0, 0.8), transparent),
        radial-gradient(2px 2px at 160px 30px, rgba(212, 175, 55, 0.6), transparent),
        radial-gradient(1px 1px at 200px 60px, rgba(255, 215, 0, 0.7), transparent),
        radial-gradient(2px 2px at 240px 20px, rgba(212, 175, 55, 0.8), transparent),
        radial-gradient(1px 1px at 280px 90px, rgba(255, 215, 0, 0.6), transparent),
        radial-gradient(1px 1px at 320px 50px, rgba(212, 175, 55, 0.7), transparent),
        radial-gradient(2px 2px at 360px 10px, rgba(255, 215, 0, 0.8), transparent);
    background-repeat: repeat;
    background-size: 400px 300px;
    animation: goldenStardust 20s linear infinite;
    pointer-events: none;
    z-index: -1;
    opacity: 0.6;
}

@keyframes goldenStardust {
    0% { transform: translateY(-100px) translateX(0); }
    100% { transform: translateY(100vh) translateX(-50px); }
}

header {
    background: linear-gradient(135deg, var(--bg-primary) 0%, var(--bg-secondary) 30%, var(--bg-tertiary) 70%, var(--bg-primary) 100%);
    color: var(--primary-gold);
    text-align: center;
    padding: 3rem 1rem;
    box-shadow: 0 8px 25px var(--shadow-gold);
    position: relative;
    overflow: hidden;
    border-bottom: 2px solid var(--border-gold);
}

header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(circle at 20% 20%, rgba(212, 175, 55, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(244, 208, 63, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 40% 60%, rgba(139, 115, 85, 0.1) 0%, transparent 50%);
    opacity: 0.8;
}

.main-title {
    font-size: 4rem;
    margin-bottom: 2rem;
    text-shadow:
        0 0 20px rgba(212, 175, 55, 0.8),
        0 0 40px rgba(212, 175, 55, 0.6),
        2px 2px 8px rgba(0, 0, 0, 0.9);
    font-weight: 400;
    letter-spacing: 4px;
    position: relative;
    z-index: 1;
    background: var(--gradient-gold);
    background-size: 200% 200%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: shimmerText 3s ease-in-out infinite alternate;
}

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

.main-title::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 150px;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--primary-gold), var(--primary-gold), var(--primary-gold), transparent);
    box-shadow: 0 0 10px rgba(212, 175, 55, 0.8);
}

nav {
    display: flex;
    justify-content: center;
    gap: 2.5rem;
    flex-wrap: wrap;
    position: relative;
    z-index: 1;
}

.nav-link {
    color: var(--primary-gold);
    text-decoration: none;
    padding: 1rem 2rem;
    border: 2px solid transparent;
    border-radius: 30px;
    transition: all 0.4s ease;
    font-weight: 500;
    font-size: 1.1rem;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.1), rgba(114, 47, 55, 0.1));
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
}

.nav-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(212, 175, 55, 0.3), transparent);
    transition: left 0.6s ease;
}

.nav-link:hover::before {
    left: 100%;
}

.nav-link:hover {
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.2), rgba(201, 169, 110, 0.2));
    border: 2px solid var(--primary-gold);
    color: #f8f6f0;
    transform: translateY(-3px);
    box-shadow:
        0 8px 20px rgba(212, 175, 55, 0.4),
        0 0 30px rgba(212, 175, 55, 0.2);
}

/* 波纹效果样式 */
.nav-link::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.6) 0%, rgba(255, 215, 0, 0.4) 50%, transparent 70%);
    transform: translate(-50%, -50%);
    transition: width 0.6s ease-out, height 0.6s ease-out, opacity 0.6s ease-out;
    opacity: 0;
    pointer-events: none;
    z-index: 1;
}

.nav-link:active::after {
    width: 200px;
    height: 200px;
    opacity: 1;
    transition: width 0.3s ease-out, height 0.3s ease-out;
}

main {
    max-width: 1300px;
    margin: 0 auto;
    padding: 3rem 1rem;
}

.section {
    margin-bottom: 5rem;
    background: linear-gradient(135deg, rgba(26, 11, 46, 0.8) 0%, rgba(45, 27, 61, 0.6) 100%);
    padding: 4rem;
    border-radius: 20px;
    box-shadow:
        0 15px 40px rgba(0, 0, 0, 0.5),
        inset 0 1px 0 rgba(212, 175, 55, 0.2);
    border: 1px solid rgba(212, 175, 55, 0.3);
    opacity: 0;
    animation: fadeInUp 1s ease forwards;
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
}

.section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-gold), var(--primary-gold), var(--bg-secondary), var(--primary-gold));
    box-shadow: 0 0 15px rgba(212, 175, 55, 0.6);
}

.section:nth-child(1) { animation-delay: 0.3s; }
.section:nth-child(2) { animation-delay: 0.6s; }
.section:nth-child(3) { animation-delay: 0.9s; }

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

.section h2 {
    color: var(--primary-gold);
    font-size: 2.8rem;
    margin-bottom: 2rem;
    text-align: center;
    position: relative;
    padding-bottom: 1.5rem;
    font-weight: 400;
    text-shadow: 0 0 20px rgba(212, 175, 55, 0.5);
}

.section h2:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-gold), var(--primary-gold), var(--primary-gold));
    border-radius: 2px;
    box-shadow: 0 0 10px rgba(212, 175, 55, 0.6);
}

.content {
    text-align: center;
}

.content > p {
    font-size: 1.3rem;
    color: #f8f6f0;
    margin-bottom: 3rem;
    line-height: 1.8;
    font-style: italic;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    opacity: 0.9;
}

/* Services Grid Styles */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.service-item {
    background: linear-gradient(135deg, rgba(45, 27, 61, 0.8) 0%, rgba(26, 11, 46, 0.6) 100%);
    border: 2px solid rgba(212, 175, 55, 0.3);
    border-radius: 20px;
    padding: 2.5rem 2rem;
    text-align: center;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
}

.service-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-gold), var(--primary-gold), var(--primary-gold));
    box-shadow: 0 0 10px rgba(212, 175, 55, 0.6);
}

.service-item:hover {
    transform: translateY(-5px);
    border-color: var(--primary-gold);
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.2) 0%, rgba(45, 27, 61, 0.8) 100%);
    box-shadow: 0 20px 40px rgba(212, 175, 55, 0.4);
}

.service-item h3 {
    color: var(--primary-gold);
    font-size: 1.4rem;
    margin-bottom: 1.5rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.service-item p {
    color: #f8f6f0;
    font-size: 1rem;
    line-height: 1.6;
    opacity: 0.9;
    font-style: italic;
}

/* Pricing Grid Styles */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
    align-items: stretch;
}

.dynamic-poster,
.elegant-silhouette-poster {
    grid-column: 2 / 3;
    grid-row: 2;
}

.pricing-card:nth-child(5) {
    grid-column: 1 / 2;
    grid-row: 2;
}

.pricing-card:nth-child(6) {
    grid-column: 3 / 4;
    grid-row: 2;
}

.pricing-card {
    background: linear-gradient(135deg, rgba(45, 27, 61, 0.8) 0%, rgba(26, 11, 46, 0.6) 100%);
    border: 2px solid rgba(212, 175, 55, 0.3);
    border-radius: 20px;
    padding: 2.5rem;
    text-align: center;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.pricing-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, var(--primary-gold), var(--primary-gold), var(--bg-secondary));
    box-shadow: 0 0 15px rgba(212, 175, 55, 0.6);
}

.pricing-card.featured {
    border-color: var(--primary-gold);
    transform: scale(1.02);
    box-shadow:
        0 25px 50px rgba(0, 0, 0, 0.6),
        0 0 40px rgba(212, 175, 55, 0.3);
    background: linear-gradient(135deg, #1a0b2e 0%, #2d1b3d 50%, var(--bg-secondary) 100%);
}

.pricing-card.featured::before {
    height: 8px;
    background: linear-gradient(90deg, var(--primary-gold), var(--primary-gold), var(--primary-gold));
    animation: pulseGlow 2s ease-in-out infinite alternate;
}

.pricing-card.exclusive {
    border-color: var(--primary-gold);
    background: linear-gradient(135deg, #2d1b3d 0%, #1a0b2e 50%, #0f0613 100%);
    box-shadow:
        0 30px 60px rgba(0, 0, 0, 0.7),
        0 0 50px rgba(201, 169, 110, 0.3);
    transform: scale(1.02);
}

.pricing-card.exclusive::before {
    height: 8px;
    background: linear-gradient(90deg, var(--primary-gold), var(--primary-gold), var(--primary-gold));
    animation: exclusiveGlow 3s ease-in-out infinite alternate;
}

@keyframes pulseGlow {
    0% { box-shadow: 0 0 15px rgba(212, 175, 55, 0.6); }
    100% { box-shadow: 0 0 25px rgba(212, 175, 55, 0.9); }
}

@keyframes exclusiveGlow {
    0% { box-shadow: 0 0 20px rgba(201, 169, 110, 0.6); }
    100% { box-shadow: 0 0 35px rgba(201, 169, 110, 0.9); }
}

.pricing-card:hover {
    transform: translateY(-10px);
    box-shadow:
        0 30px 60px rgba(0, 0, 0, 0.6),
        0 0 30px rgba(212, 175, 55, 0.4);
}

.pricing-card.featured:hover {
    transform: scale(1.02) translateY(-10px);
}

.pricing-card.exclusive:hover {
    transform: scale(1.02) translateY(-10px);
    box-shadow:
        0 35px 70px rgba(0, 0, 0, 0.8),
        0 0 50px rgba(201, 169, 110, 0.5);
}

.pricing-card h3 {
    color: var(--primary-gold);
    font-size: 1.4rem;
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.pricing-card.featured h3 {
    color: var(--primary-gold);
    text-shadow: 0 0 10px rgba(212, 175, 55, 0.5);
}

.pricing-card.exclusive h3 {
    color: var(--primary-gold);
    text-shadow: 0 0 10px rgba(201, 169, 110, 0.5);
    font-size: 1.5rem;
}

.price {
    font-size: 3rem;
    font-weight: bold;
    color: var(--primary-gold);
    margin-bottom: 0.8rem;
    font-family: 'Georgia', serif;
    text-shadow: 0 0 20px rgba(212, 175, 55, 0.5);
}

.pricing-card.exclusive .price {
    color: var(--primary-gold);
    text-shadow: 0 0 20px rgba(201, 169, 110, 0.5);
    font-size: 3.2rem;
}

.duration {
    color: #f8f6f0;
    font-size: 1.1rem;
    margin-bottom: 2rem;
    font-style: italic;
    opacity: 0.8;
}

.deposit-note {
    background: rgba(212, 175, 55, 0.2);
    border: 1px solid var(--border-gold);
    border-radius: 8px;
    padding: 0.8rem;
    margin-top: 1rem;
    font-size: 0.9rem;
    color: var(--accent-gold);
    font-weight: bold;
    text-align: center;
}

.pricing-card ul {
    list-style: none;
    text-align: left;
    flex-grow: 1;
}

.pricing-card ul li {
    padding: 0.6rem 0;
    border-bottom: 1px solid rgba(212, 175, 55, 0.2);
    position: relative;
    padding-left: 2rem;
    font-size: 0.95rem;
    color: #f8f6f0;
    opacity: 0.9;
}

.pricing-card ul li:before {
    content: '◆';
    position: absolute;
    left: 0;
    color: var(--primary-gold);
    font-weight: bold;
    font-size: 1.1rem;
    text-shadow: 0 0 5px rgba(212, 175, 55, 0.5);
}

.pricing-card.exclusive ul li:before {
    color: var(--primary-gold);
    text-shadow: 0 0 5px rgba(201, 169, 110, 0.5);
}

.pricing-card ul li:last-child {
    border-bottom: none;
}

/* Fixed Dancing Silhouette Styles */
.dynamic-poster,
.elegant-silhouette-poster {
    background: linear-gradient(135deg, #1a0b2e 0%, #2d1b3d 30%, var(--bg-secondary) 70%, #1a0b2e 100%);
    border: 3px solid var(--primary-gold);
    border-radius: 20px;
    padding: 1.5rem;
    text-align: center;
    position: relative;
    overflow: hidden;
    box-shadow:
        0 25px 50px rgba(0, 0, 0, 0.8),
        0 0 50px rgba(212, 175, 55, 0.4),
        inset 0 1px 0 rgba(212, 175, 55, 0.3);
    backdrop-filter: blur(10px);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    min-height: 100%;
    height: auto;
    animation: posterBreathing 5s ease-in-out infinite;
}

.dynamic-poster::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 6px;
    background: linear-gradient(90deg, var(--primary-gold), var(--primary-gold), var(--primary-gold));
    box-shadow: 0 0 20px rgba(212, 175, 55, 0.8);
    animation: enhancedPosterGlow 3s ease-in-out infinite alternate;
}

@keyframes enhancedPosterGlow {
    0% { box-shadow: 0 0 20px rgba(212, 175, 55, 0.8); }
    100% { box-shadow: 0 0 50px rgba(212, 175, 55, 1); }
}

@keyframes posterBreathing {
    0%, 100% {
        box-shadow:
            0 25px 50px rgba(0, 0, 0, 0.8),
            0 0 50px rgba(212, 175, 55, 0.4);
        transform: scale(1);
    }
    50% {
        box-shadow:
            0 30px 60px rgba(0, 0, 0, 0.9),
            0 0 80px rgba(212, 175, 55, 0.6);
        transform: scale(1.01);
    }
}

.poster-title {
    color: var(--primary-gold);
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 1rem;
    text-shadow:
        0 0 20px rgba(212, 175, 55, 0.8),
        0 0 40px rgba(212, 175, 55, 0.6);
    background: linear-gradient(45deg, var(--primary-gold), var(--primary-gold), var(--primary-gold));
    background-size: 200% 200%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: titleShimmer 4s ease-in-out infinite;
    letter-spacing: 2px;
}

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

.dancing-silhouette {
    flex-grow: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 1.5rem 0;
    perspective: 1200px;
    min-height: 200px;
}

.silhouette-figure {
    position: relative;
    animation: gracefulDanceFlow 6s ease-in-out infinite;
    filter: drop-shadow(0 0 25px rgba(212, 175, 55, 0.9));
    transform-style: preserve-3d;
    scale: 1.8;
    transform: rotateZ(-15deg) translateY(-5px);
}

@keyframes gracefulDanceFlow {
    0%, 100% {
        transform: rotateZ(-15deg) translateY(-5px) scale(1);
    }
    25% {
        transform: rotateZ(-12deg) translateY(-8px) scale(1.01);
    }
    50% {
        transform: rotateZ(-18deg) translateY(-10px) scale(1.02);
    }
    75% {
        transform: rotateZ(-14deg) translateY(-6px) scale(1.01);
    }
}

.head {
    width: 14px;
    height: 18px;
    background: linear-gradient(135deg, var(--primary-gold) 0%, var(--primary-gold) 50%, #1a0b2e 100%);
    border-radius: 50%;
    margin: 0 auto 1px;
    box-shadow: 0 0 15px rgba(212, 175, 55, 0.8);
    animation: coordinatedHeadMovement 6s ease-in-out infinite;
    position: relative;
}

@keyframes coordinatedHeadMovement {
    0%, 100% { transform: translateX(1px) rotate(8deg) translateY(-2px); }
    25% { transform: translateX(2px) rotate(10deg) translateY(-3px); }
    50% { transform: translateX(0px) rotate(6deg) translateY(-4px); }
    75% { transform: translateX(1px) rotate(9deg) translateY(-2px); }
}

.body {
    position: relative;
}

.torso {
    width: 20px;
    height: 45px;
    background: linear-gradient(180deg, var(--primary-gold) 0%, var(--primary-gold) 20%, var(--bg-secondary) 45%, var(--primary-gold) 70%, var(--bg-secondary) 90%, #1a0b2e 100%);
    margin: 0 auto;
    border-radius: 52% 48% 25% 20%;
    box-shadow: 0 0 15px rgba(212, 175, 55, 0.7);
    animation: coordinatedTorsoMovement 6s ease-in-out infinite;
    position: relative;
    border: 1px solid rgba(212, 175, 55, 0.3);
}

@keyframes coordinatedTorsoMovement {
    0%, 100% { transform: rotate(-18deg) scaleY(1.06) scaleX(0.96) translateY(2px) translateX(1px); }
    25% { transform: rotate(-16deg) scaleY(1.08) scaleX(0.94) translateY(1px) translateX(2px); }
    50% { transform: rotate(-20deg) scaleY(1.10) scaleX(0.98) translateY(3px) translateX(0px); }
    75% { transform: rotate(-17deg) scaleY(1.07) scaleX(0.95) translateY(2px) translateX(1px); }
}

.arms {
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    width: 70px;
    height: 45px;
}

.arm {
    position: absolute;
    width: 5px;
    height: 42px;
    background: linear-gradient(180deg, var(--primary-gold) 0%, var(--primary-gold) 25%, var(--bg-secondary) 65%, #1a0b2e 90%, #000 100%);
    border-radius: 60% 40% 45% 40%;
    transform-origin: top center;
    box-shadow: 0 0 10px rgba(212, 175, 55, 0.7);
    border: 1px solid rgba(212, 175, 55, 0.3);
}

.left-arm {
    left: -2px;
    animation: coordinatedLeftArm 6s ease-in-out infinite;
}

.right-arm {
    right: -5px;
    animation: coordinatedRightArm 6s ease-in-out infinite;
}

@keyframes coordinatedLeftArm {
    0%, 100% { transform: rotate(-105deg) scale(1.04) translateX(-16px) translateY(-10px); }
    25% { transform: rotate(-100deg) scale(1.06) translateX(-18px) translateY(-12px); }
    50% { transform: rotate(-110deg) scale(1.08) translateX(-14px) translateY(-8px); }
    75% { transform: rotate(-103deg) scale(1.05) translateX(-17px) translateY(-11px); }
}

@keyframes coordinatedRightArm {
    0%, 100% { transform: rotate(-42deg) scale(1.02) translateX(14px) translateY(-6px); }
    25% { transform: rotate(-38deg) scale(1.04) translateX(16px) translateY(-8px); }
    50% { transform: rotate(-46deg) scale(1.05) translateX(12px) translateY(-4px); }
    75% { transform: rotate(-40deg) scale(1.03) translateX(15px) translateY(-7px); }
}

.hips {
    width: 22px;
    height: 16px;
    background: linear-gradient(135deg, var(--bg-secondary) 0%, var(--primary-gold) 25%, var(--primary-gold) 65%, var(--primary-gold) 90%, var(--bg-secondary) 100%);
    margin: 4px auto;
    border-radius: 58% 42% 50% 50%;
    box-shadow: 0 0 14px rgba(212, 175, 55, 0.7);
    animation: coordinatedHipsMovement 6s ease-in-out infinite;
    position: relative;
    border: 1px solid rgba(212, 175, 55, 0.3);
}

@keyframes coordinatedHipsMovement {
    0%, 100% { transform: rotate(-22deg) scale(1.03) translateX(3px) translateY(1px); }
    25% { transform: rotate(-20deg) scale(1.05) translateX(4px) translateY(0px); }
    50% { transform: rotate(-24deg) scale(1.07) translateX(2px) translateY(2px); }
    75% { transform: rotate(-21deg) scale(1.04) translateX(3px) translateY(1px); }
}

.legs {
    position: relative;
    margin-top: 8px;
}

.leg {
    position: absolute;
    width: 6px;
    height: 45px;
    background: linear-gradient(180deg, var(--primary-gold) 0%, var(--primary-gold) 20%, var(--bg-secondary) 55%, #1a0b2e 80%, #000 100%);
    border-radius: 60% 40% 35% 30%;
    transform-origin: top center;
    box-shadow: 0 0 10px rgba(212, 175, 55, 0.7);
    border: 1px solid rgba(212, 175, 55, 0.25);
}

.supporting-leg {
    left: 10px;
    animation: coordinatedSupportLeg 6s ease-in-out infinite;
}

.lifted-leg {
    right: 2px;
    animation: coordinatedLiftedLeg 6s ease-in-out infinite;
}

@keyframes coordinatedSupportLeg {
    0%, 100% { transform: rotate(-6deg) scale(1.02) translateY(0px) translateX(1px); }
    25% { transform: rotate(-4deg) scale(1.03) translateY(1px) translateX(2px); }
    50% { transform: rotate(-8deg) scale(1.04) translateY(-1px) translateX(0px); }
    75% { transform: rotate(-5deg) scale(1.03) translateY(2px) translateX(1px); }
}

@keyframes coordinatedLiftedLeg {
    0%, 100% { transform: rotate(-92deg) scale(1.06) translateX(-22px) translateY(-30px); }
    25% { transform: rotate(-88deg) scale(1.08) translateX(-24px) translateY(-32px); }
    50% { transform: rotate(-96deg) scale(1.10) translateX(-20px) translateY(-28px); }
    75% { transform: rotate(-90deg) scale(1.07) translateX(-23px) translateY(-31px); }
}

.poster-tagline {
    color: var(--primary-gold);
    font-size: 1.1rem;
    font-style: italic;
    margin-top: 1rem;
    opacity: 0.9;
    text-shadow: 0 0 10px rgba(201, 169, 110, 0.5);
    animation: gentleTaglineGlow 3s ease-in-out infinite alternate;
}

@keyframes gentleTaglineGlow {
    0% { opacity: 0.7; }
    100% { opacity: 1; text-shadow: 0 0 15px rgba(201, 169, 110, 0.8); }
}

/* Day Navigation Links */
.day-navigation {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 1.5rem;
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(212, 175, 55, 0.3);
}

.day-link {
    color: var(--primary-gold);
    text-decoration: none;
    padding: 1rem 2rem;
    border: 2px solid transparent;
    border-radius: 30px;
    transition: all 0.4s ease;
    font-weight: 500;
    font-size: 1.1rem;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.1), rgba(114, 47, 55, 0.1));
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.day-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(212, 175, 55, 0.3), transparent);
    transition: left 0.6s ease;
}

.day-link:hover::before {
    left: 100%;
}

.day-link:hover {
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.2), rgba(201, 169, 110, 0.2));
    border: 2px solid var(--primary-gold);
    color: #f8f6f0;
    transform: translateY(-3px);
    box-shadow:
        0 8px 20px rgba(212, 175, 55, 0.4),
        0 0 30px rgba(212, 175, 55, 0.2);
}

/* 日期按钮波纹效果 */
.day-link::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.7) 0%, rgba(255, 215, 0, 0.5) 50%, transparent 70%);
    transform: translate(-50%, -50%);
    transition: width 0.6s ease-out, height 0.6s ease-out, opacity 0.6s ease-out;
    opacity: 0;
    pointer-events: none;
    z-index: 1;
}

.day-link:active::after {
    width: 180px;
    height: 180px;
    opacity: 1;
    transition: width 0.3s ease-out, height 0.3s ease-out;
}

.day-link.featured {
    border-color: var(--primary-gold);
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.2) 0%, rgba(45, 27, 61, 0.6) 100%);
    box-shadow: 0 12px 30px rgba(212, 175, 55, 0.3);
}

.day-link.exclusive {
    border-color: var(--primary-gold);
    background: linear-gradient(135deg, rgba(201, 169, 110, 0.2) 0%, rgba(26, 11, 46, 0.6) 100%);
    box-shadow: 0 12px 30px rgba(201, 169, 110, 0.3);
}

/* Therapist Cards Grid Layout */
.therapists-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
    max-width: 1400px;
    margin-left: auto;
    margin-right: auto;
}

/* Special grid for daily roosters page with 12 cards */
#daily-roosters .therapists-grid {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.8rem;
    max-width: 1600px;
}

/* Vertical Therapist Card Design */
.therapist-card {
    background: linear-gradient(135deg, rgba(45, 27, 61, 0.8) 0%, rgba(26, 11, 46, 0.6) 100%);
    border: 2px solid rgba(212, 175, 55, 0.3);
    border-radius: 20px;
    overflow: hidden;
    position: relative;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.5);
    transition: all 0.6s cubic-bezier(0.23, 1, 0.320, 1);
    aspect-ratio: 3/4;
    display: flex;
    flex-direction: column;
    transform-style: preserve-3d;
}

.therapist-card:hover {
    transform: translateY(-15px) rotateX(5deg) rotateY(-2deg) scale(1.02);
    box-shadow:
        0 35px 80px rgba(0, 0, 0, 0.8),
        0 0 50px rgba(212, 175, 55, 0.6),
        inset 0 0 20px rgba(212, 175, 55, 0.1);
    border-color: var(--accent-gold);
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.15) 0%, rgba(45, 27, 61, 0.8) 50%, rgba(26, 11, 46, 0.6) 100%);
}

.therapist-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(212, 175, 55, 0.1), transparent);
    transform: rotate(45deg);
    opacity: 0;
    transition: all 0.6s ease;
    pointer-events: none;
    z-index: 1;
}

.therapist-card:hover::before {
    opacity: 1;
    transform: rotate(45deg) translate(50%, 50%);
    animation: goldSweep 1.5s ease-out;
}

@keyframes goldSweep {
    0% { transform: rotate(45deg) translate(-200%, -200%); opacity: 0; }
    50% { opacity: 1; }
    100% { transform: rotate(45deg) translate(200%, 200%); opacity: 0; }
}

.therapist-card.featured {
    border-color: var(--primary-gold);
    background: linear-gradient(135deg, #1a0b2e 0%, #2d1b3d 50%, var(--bg-secondary) 100%);
    box-shadow: 0 20px 45px rgba(212, 175, 55, 0.4);
}

.therapist-card.exclusive {
    border-color: var(--primary-gold);
    background: linear-gradient(135deg, #2d1b3d 0%, #1a0b2e 50%, #0f0613 100%);
    box-shadow: 0 20px 45px rgba(201, 169, 110, 0.4);
}

/* Photo Upload Area */
.therapist-photo {
    height: 60%;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.1) 0%, rgba(201, 169, 110, 0.1) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    border-bottom: 1px solid rgba(212, 175, 55, 0.3);
}

/* Therapist Card Photo Styling */
.therapist-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 20%;
    border-radius: 0;
}

.photo-placeholder {
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none" stroke="%23c9a96e" stroke-width="1" opacity="0.5"><rect x="3" y="3" width="18" height="18" rx="2" ry="2"/><circle cx="8.5" cy="8.5" r="1.5"/><polyline points="21,15 16,10 5,21"/></svg>') center/60px no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-gold);
    font-size: 0.9rem;
    text-align: center;
    opacity: 0.7;
    transition: all 0.3s ease;
    cursor: pointer;
}

.photo-placeholder:hover {
    background-color: rgba(212, 175, 55, 0.1);
    opacity: 1;
}

.photo-upload-text {
    position: absolute;
    bottom: 10px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 0.8rem;
    color: var(--primary-gold);
    opacity: 0.8;
}

/* Therapist Info Area */
.therapist-info {
    height: 40%;
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: center;
}

.therapist-card .therapist-name {
    font-size: 1.8rem;
    font-weight: bold;
    color: var(--primary-gold);
    margin-bottom: 0.5rem;
    text-shadow: 0 0 15px rgba(212, 175, 55, 0.4);
    transition: all 0.4s ease;
    position: relative;
    z-index: 2;
}

.therapist-card:hover .therapist-name {
    color: var(--accent-gold);
    text-shadow:
        0 0 20px rgba(212, 175, 55, 0.8),
        0 0 40px rgba(212, 175, 55, 0.6),
        0 0 60px rgba(212, 175, 55, 0.4);
    transform: scale(1.05);
    animation: nameGlow 2s ease-in-out infinite alternate;
}

@keyframes nameGlow {
    0% { text-shadow: 0 0 20px rgba(212, 175, 55, 0.8), 0 0 40px rgba(212, 175, 55, 0.6); }
    100% { text-shadow: 0 0 25px rgba(212, 175, 55, 1), 0 0 50px rgba(212, 175, 55, 0.8); }
}

.therapist-card.featured .therapist-name {
    color: var(--primary-gold);
    text-shadow: 0 0 20px rgba(212, 175, 55, 0.6);
}

.therapist-card.exclusive .therapist-name {
    color: var(--primary-gold);
    text-shadow: 0 0 20px rgba(201, 169, 110, 0.6);
}

.therapist-card .therapist-nationality {
    font-size: 1rem;
    color: var(--primary-gold);
    margin-bottom: 0.8rem;
    font-weight: 500;
    opacity: 0.8;
    font-style: italic;
}

footer {
    background: linear-gradient(135deg, var(--bg-primary) 0%, var(--bg-secondary) 30%, var(--bg-tertiary) 70%, var(--bg-primary) 100%);
    color: var(--text-primary);
    text-align: center;
    padding: 4rem 2rem;
    margin-top: 5rem;
    position: relative;
    overflow: hidden;
    border-top: 2px solid var(--border-gold);
    box-shadow:
        0 -15px 40px rgba(0, 0, 0, 0.6),
        inset 0 2px 0 rgba(212, 175, 55, 0.3);
}

footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, var(--primary-gold), var(--accent-gold), var(--secondary-gold), var(--primary-gold));
    box-shadow:
        0 0 20px rgba(212, 175, 55, 0.8),
        0 0 40px rgba(212, 175, 55, 0.6);
    animation: footerGlow 3s ease-in-out infinite alternate;
}

footer::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(circle at 20% 80%, var(--shadow-gold) 0%, transparent 60%),
        radial-gradient(circle at 80% 20%, rgba(212, 175, 55, 0.1) 0%, transparent 60%),
        radial-gradient(circle at 50% 50%, rgba(212, 175, 55, 0.05) 0%, transparent 70%);
    pointer-events: none;
    z-index: 1;
}

@keyframes footerGlow {
    0% {
        box-shadow:
            0 0 20px rgba(212, 175, 55, 0.8),
            0 0 40px rgba(212, 175, 55, 0.6);
    }
    100% {
        box-shadow:
            0 0 30px rgba(212, 175, 55, 1),
            0 0 60px rgba(212, 175, 55, 0.8);
    }
}

footer p {
    margin-bottom: 1rem;
    font-size: 1.2rem;
    position: relative;
    z-index: 2;
    opacity: 0.95;
    font-family: 'Georgia', 'Times New Roman', serif;
    line-height: 1.6;
}

footer p:first-child {
    color: var(--primary-gold);
    font-weight: 700;
    font-size: 1.4rem;
    text-shadow:
        0 0 20px rgba(212, 175, 55, 0.8),
        0 0 40px rgba(212, 175, 55, 0.6),
        2px 2px 8px rgba(0, 0, 0, 0.9);
    background: var(--gradient-gold);
    background-size: 200% 200%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: footerTextShimmer 4s ease-in-out infinite;
    letter-spacing: 2px;
}

footer p:last-child {
    color: var(--text-muted);
    font-size: 1.1rem;
    opacity: 0.9;
    font-style: italic;
    text-shadow: 0 0 10px rgba(212, 175, 55, 0.3);
}

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

/* =====================================================
   BRAND NEW MANAGEMENT 烟花爆炸特效
   ===================================================== */

.brand-announcement {
    position: relative;
    text-align: center;
    margin: 2rem 0;
    z-index: 10;
}

.fireworks-container {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.firework {
    position: absolute;
    width: 4px;
    height: 4px;
    border-radius: 50%;
    animation: fireworkExplode 2s ease-out infinite;
}

.firework::before,
.firework::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: inherit;
}

.firework-1 {
    background: radial-gradient(circle, var(--accent-gold), var(--primary-gold));
    top: -20px;
    left: -150px;
    animation-delay: 0s;
    animation-duration: 3s;
}

.firework-2 {
    background: radial-gradient(circle, var(--light-gold), var(--accent-gold));
    top: -30px;
    right: -150px;
    animation-delay: 0.5s;
    animation-duration: 2.5s;
}

.firework-3 {
    background: radial-gradient(circle, var(--primary-gold), var(--secondary-gold));
    top: 20px;
    left: -200px;
    animation-delay: 1s;
    animation-duration: 3.5s;
}

.firework-4 {
    background: radial-gradient(circle, var(--accent-gold), var(--light-gold));
    top: 20px;
    right: -200px;
    animation-delay: 1.5s;
    animation-duration: 2s;
}

.firework-5 {
    background: radial-gradient(circle, var(--light-gold), var(--primary-gold));
    top: -40px;
    left: 0;
    animation-delay: 2s;
    animation-duration: 4s;
}

.firework-6 {
    background: radial-gradient(circle, var(--secondary-gold), var(--accent-gold));
    top: 40px;
    right: 0;
    animation-delay: 2.5s;
    animation-duration: 3s;
}

@keyframes fireworkExplode {
    0% {
        transform: scale(0);
        opacity: 1;
        box-shadow:
            0 0 0 0 currentColor,
            0 0 0 0 currentColor,
            0 0 0 0 currentColor,
            0 0 0 0 currentColor,
            0 0 0 0 currentColor,
            0 0 0 0 currentColor,
            0 0 0 0 currentColor,
            0 0 0 0 currentColor;
    }
    20% {
        transform: scale(1);
        opacity: 1;
        box-shadow:
            0 0 0 0 currentColor,
            0 0 0 0 currentColor,
            0 0 0 0 currentColor,
            0 0 0 0 currentColor,
            0 0 0 0 currentColor,
            0 0 0 0 currentColor,
            0 0 0 0 currentColor,
            0 0 0 0 currentColor;
    }
    25% {
        transform: scale(1.2);
        opacity: 0.9;
        box-shadow:
            30px 0 10px var(--accent-gold),
            -30px 0 10px var(--light-gold),
            0 30px 10px var(--primary-gold),
            0 -30px 10px var(--secondary-gold),
            21px 21px 8px var(--accent-gold),
            -21px -21px 8px var(--light-gold),
            21px -21px 8px var(--primary-gold),
            -21px 21px 8px var(--secondary-gold);
    }
    50% {
        transform: scale(1.5);
        opacity: 0.7;
        box-shadow:
            60px 0 15px var(--accent-gold),
            -60px 0 15px var(--light-gold),
            0 60px 15px var(--primary-gold),
            0 -60px 15px var(--secondary-gold),
            42px 42px 12px var(--accent-gold),
            -42px -42px 12px var(--light-gold),
            42px -42px 12px var(--primary-gold),
            -42px 42px 12px var(--secondary-gold);
    }
    75% {
        transform: scale(2);
        opacity: 0.4;
        box-shadow:
            90px 0 20px var(--accent-gold),
            -90px 0 20px var(--light-gold),
            0 90px 20px var(--primary-gold),
            0 -90px 20px var(--secondary-gold),
            63px 63px 16px var(--accent-gold),
            -63px -63px 16px var(--light-gold),
            63px -63px 16px var(--primary-gold),
            -63px 63px 16px var(--secondary-gold);
    }
    100% {
        transform: scale(3);
        opacity: 0;
        box-shadow:
            120px 0 25px transparent,
            -120px 0 25px transparent,
            0 120px 25px transparent,
            0 -120px 25px transparent,
            85px 85px 20px transparent,
            -85px -85px 20px transparent,
            85px -85px 20px transparent,
            -85px 85px 20px transparent;
    }
}

.co-title {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--accent-gold);
    text-transform: uppercase;
    margin: 0;
    position: relative;
    z-index: 2;
    text-shadow:
        0 0 20px var(--accent-gold),
        0 0 40px var(--light-gold),
        0 0 60px var(--primary-gold),
        2px 2px 8px rgba(0, 0, 0, 0.9);
    background: linear-gradient(45deg, var(--accent-gold), var(--light-gold), var(--accent-gold));
    background-size: 200% 200%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: coTitlePulse 2s ease-in-out infinite alternate;
    font-family: 'Georgia', 'Times New Roman', serif;
    border: 3px solid var(--accent-gold);
    padding: 1rem 2rem;
    border-radius: 15px;
    background-color: rgba(0, 0, 0, 0.8);
    box-shadow:
        0 0 30px rgba(212, 175, 55, 0.8),
        inset 0 0 20px rgba(212, 175, 55, 0.2);
}

@keyframes coTitlePulse {
    0% {
        background-position: 0% 50%;
        transform: scale(1);
        text-shadow:
            0 0 20px var(--accent-gold),
            0 0 40px var(--light-gold),
            0 0 60px var(--primary-gold);
    }
    100% {
        background-position: 100% 50%;
        transform: scale(1.05);
        text-shadow:
            0 0 30px var(--accent-gold),
            0 0 60px var(--light-gold),
            0 0 90px var(--primary-gold);
    }
}

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

.back-link {
    color: var(--primary-gold);
    text-decoration: none;
    font-size: 1.1rem;
    font-weight: 600;
    padding: 1rem 2rem;
    border: 2px solid rgba(201, 169, 110, 0.3);
    border-radius: 10px;
    transition: all 0.3s ease;
    background: linear-gradient(135deg, rgba(201, 169, 110, 0.1) 0%, rgba(45, 27, 61, 0.3) 100%);
}

.back-link:hover {
    border-color: var(--primary-gold);
    background: linear-gradient(135deg, rgba(201, 169, 110, 0.2) 0%, rgba(45, 27, 61, 0.5) 100%);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(201, 169, 110, 0.3);
}

.day-links {
    display: flex;
    gap: 1rem;
}

.prev-day, .next-day {
    color: #f8f6f0;
    text-decoration: none;
    font-size: 1rem;
    font-weight: 500;
    padding: 0.8rem 1.5rem;
    border: 2px solid rgba(212, 175, 55, 0.3);
    border-radius: 10px;
    transition: all 0.3s ease;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.1) 0%, rgba(45, 27, 61, 0.3) 100%);
}

.prev-day:hover, .next-day:hover {
    border-color: var(--primary-gold);
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.2) 0%, rgba(45, 27, 61, 0.5) 100%);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(212, 175, 55, 0.3);
}

/* Responsive Design */
@media (max-width: 1200px) {
    .pricing-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 1.5rem;
        max-width: 900px;
    }

    .pricing-card {
        padding: 2rem;
    }

    .price {
        font-size: 2.5rem;
    }
}

@media (max-width: 900px) {
    .pricing-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
        max-width: 600px;
    }

    .pricing-card:nth-child(1) {
        grid-column: 1 / 3;
        max-width: 280px;
        margin: 0 auto;
    }

    .pricing-card:nth-child(2) {
        grid-column: 1;
        grid-row: 2;
    }

    .pricing-card:nth-child(3) {
        grid-column: 2;
        grid-row: 2;
    }

    .dynamic-poster,
    .elegant-silhouette-poster {
        grid-column: 1 / 3;
        grid-row: 3;
        max-width: 350px;
        margin: 0 auto;
    }

    .pricing-card:nth-child(5) {
        grid-column: 1;
        grid-row: 4;
    }

    .pricing-card:nth-child(6) {
        grid-column: 2;
        grid-row: 4;
    }
}

@media (max-width: 768px) {
    /* Header improvements for mobile */
    header {
        padding: 1rem;
        min-height: auto;
    }

    .main-title {
        font-size: 2.2rem;
        letter-spacing: 1.5px;
        margin-bottom: 1rem;
    }

    nav {
        gap: 1rem;
        flex-wrap: wrap;
        justify-content: center;
    }

    .nav-link {
        padding: 0.8rem 1.5rem;
        font-size: 1rem;
    }

    .section {
        padding: 2.5rem 2rem;
        margin-bottom: 3rem;
    }

    .section h2 {
        font-size: 2.2rem;
    }

    .therapists-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
        max-width: 350px;
    }

    #daily-roosters .therapists-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
        max-width: 100%;
    }

    .therapist-card {
        aspect-ratio: 2/3;
    }

    .therapist-card .therapist-name {
        font-size: 1.5rem;
    }

    .therapist-card .therapist-nationality {
        font-size: 0.9rem;
    }

    .pricing-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
        max-width: 400px;
    }

    .dynamic-poster,
    .elegant-silhouette-poster {
        grid-column: 1;
        grid-row: auto;
        padding: 1.5rem;
        min-height: 280px;
        order: -1; /* Move to top on mobile */
    }

    /* Reset ALL grid positioning for mobile */
    .pricing-card:nth-child(1),
    .pricing-card:nth-child(2),
    .pricing-card:nth-child(3),
    .pricing-card:nth-child(5),
    .pricing-card:nth-child(6) {
        grid-column: 1 !important;
        grid-row: auto !important;
        max-width: none !important;
        margin: 0 !important;
    }

    .pricing-card.featured,
    .pricing-card.exclusive {
        transform: none;
    }

    .pricing-card.featured:hover,
    .pricing-card.exclusive:hover {
        transform: translateY(-10px);
    }

    .price {
        font-size: 2.5rem;
    }

    .pricing-card.exclusive .price {
        font-size: 2.7rem;
    }

    .poster-title {
        font-size: 1.6rem;
        letter-spacing: 1px;
    }

    .poster-tagline {
        font-size: 1rem;
    }

    .pricing-page-silhouette {
        max-height: 150px;
        width: auto;
    }

    /* Better mobile spacing for pricing cards */
    .pricing-card h3 {
        font-size: 1.2rem;
        margin-bottom: 1rem;
        text-align: center;
    }

    .duration {
        font-size: 0.9rem;
        margin-bottom: 0.8rem;
    }

    .dancing-silhouette {
        margin: 1rem 0;
        min-height: 160px;
    }

    .silhouette-figure {
        scale: 1.2;
    }

    .poster-tagline {
        font-size: 1rem;
    }

    .day-navigation {
        flex-direction: column;
        text-align: center;
    }

    .day-links {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    #daily-roosters .therapists-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        max-width: 320px;
    }

    /* Pricing page extra small screen optimization */
    .pricing-grid {
        gap: 1.2rem;
        max-width: 350px;
        padding: 0 0.5rem;
    }

    .pricing-card {
        padding: 1.2rem;
    }

    .pricing-card h3 {
        font-size: 1.1rem;
    }

    .price {
        font-size: 1.8rem;
        margin: 0.5rem 0;
    }

    .duration {
        font-size: 0.85rem;
        margin-bottom: 0.8rem;
    }

    .elegant-silhouette-poster {
        padding: 1rem;
        min-height: 180px;
    }

    .poster-title {
        font-size: 1.3rem;
    }

    .poster-tagline {
        font-size: 0.9rem;
    }

    .pricing-page-silhouette {
        max-height: 100px;
    }

    /* Extra assurance - reset ALL grid positioning for very small screens */
    .pricing-card:nth-child(1),
    .pricing-card:nth-child(2),
    .pricing-card:nth-child(3),
    .pricing-card:nth-child(5),
    .pricing-card:nth-child(6) {
        grid-column: 1 !important;
        grid-row: auto !important;
        max-width: none !important;
        margin: 0 !important;
        width: 100% !important;
    }
}

html {
    scroll-behavior: smooth;
}

.section {
    scroll-margin-top: 2rem;
}

/* Therapist Detail Page Styles */
.therapist-detail-section {
    max-width: 1400px;
    margin: 0 auto;
    padding: 2rem;
}

.back-navigation {
    margin-bottom: 2rem;
}

.therapist-detail-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

/* Photo Gallery Section */
.therapist-photo-gallery {
    position: relative;
}

.main-photo {
    width: 100%;
    height: 600px;
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.6);
    border: 2px solid rgba(212, 175, 55, 0.3);
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.1) 0%, rgba(201, 169, 110, 0.1) 100%);
}

.gallery-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
    transition: opacity 0.5s ease;
}

.gallery-image.active {
    opacity: 1;
}

.photo-nav {
    position: absolute;
    top: 50%;
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding: 0 1rem;
    pointer-events: none;
    transform: translateY(-50%);
}

.photo-nav-btn {
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.9) 0%, rgba(201, 169, 110, 0.9) 100%);
    border: none;
    color: var(--light-gold);
    font-size: 2rem;
    font-weight: bold;
    width: 55px;
    height: 55px;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
    pointer-events: all;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
    display: none; /* Hidden by default */
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.2);
}

.photo-nav-btn:hover {
    background: linear-gradient(135deg, rgba(212, 175, 55, 1) 0%, rgba(201, 169, 110, 1) 100%);
    transform: scale(1.15);
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.6);
}

.photo-nav-btn.visible {
    display: flex;
}

.prev-photo::before {
    content: '‹';
    line-height: 1;
}

.next-photo::before {
    content: '›';
    line-height: 1;
}

/* Photo Counter */
.photo-counter {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, rgba(26, 11, 46, 0.9) 0%, rgba(45, 27, 61, 0.9) 100%);
    color: var(--primary-gold);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 500;
    border: 1px solid rgba(212, 175, 55, 0.3);
    backdrop-filter: blur(10px);
    display: none; /* Hidden by default */
}

.photo-counter.visible {
    display: block;
}

/* Thumbnail Navigation */
.photo-thumbnails {
    display: flex;
    gap: 0.5rem;
    margin-top: 1rem;
    justify-content: center;
    max-width: 100%;
    overflow-x: auto;
    padding: 0.5rem 0;
}

.thumbnail {
    width: 60px;
    height: 80px;
    object-fit: cover;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    opacity: 0.6;
}

.thumbnail:hover {
    opacity: 0.8;
    transform: scale(1.05);
}

.thumbnail.active {
    border-color: var(--primary-gold);
    opacity: 1;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.4);
}

/* Loading state */
.gallery-loading {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: var(--primary-gold);
    font-size: 1.2rem;
    text-align: center;
}

.gallery-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-gold);
    font-size: 1.2rem;
    text-align: center;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.1) 0%, rgba(201, 169, 110, 0.1) 100%);
}

/* Detailed Information Section */
.therapist-info-detailed {
    padding: 2rem 0;
}

.therapist-name-large {
    font-size: 3.5rem;
    color: var(--primary-gold);
    font-weight: 600;
    margin-bottom: 2rem;
    text-shadow: 0 0 30px rgba(212, 175, 55, 0.6);
    background: linear-gradient(45deg, var(--primary-gold), var(--primary-gold), var(--primary-gold));
    background-size: 200% 200%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: shimmerText 4s ease-in-out infinite;
    letter-spacing: 3px;
}

.info-grid {
    display: grid;
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.info-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem;
    background: linear-gradient(135deg, rgba(45, 27, 61, 0.6) 0%, rgba(26, 11, 46, 0.4) 100%);
    border-radius: 10px;
    border: 1px solid rgba(212, 175, 55, 0.2);
    transition: all 0.3s ease;
}

.info-row:hover {
    border-color: var(--primary-gold);
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.1) 0%, rgba(45, 27, 61, 0.6) 100%);
    transform: translateX(5px);
}

.info-label {
    color: var(--primary-gold);
    font-weight: 600;
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.info-value {
    color: #f8f6f0;
    font-size: 1.2rem;
    font-weight: 500;
    text-align: right;
}

.detailed-description {
    background: linear-gradient(135deg, rgba(26, 11, 46, 0.8) 0%, rgba(45, 27, 61, 0.6) 100%);
    padding: 2rem;
    border-radius: 15px;
    border: 1px solid rgba(212, 175, 55, 0.3);
    margin-bottom: 3rem;
    position: relative;
    overflow: hidden;
}

.detailed-description::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-gold), var(--primary-gold), var(--primary-gold));
    box-shadow: 0 0 15px rgba(212, 175, 55, 0.6);
}

.detailed-description p {
    color: #f8f6f0;
    font-size: 1.2rem;
    line-height: 1.8;
    margin: 0;
    font-style: italic;
    opacity: 0.95;
}

/* Services Offered */
.services-offered {
    margin-bottom: 3rem;
}

.services-offered h3 {
    color: var(--primary-gold);
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    text-shadow: 0 0 15px rgba(212, 175, 55, 0.5);
}

.service-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

.service-tag {
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.2) 0%, rgba(201, 169, 110, 0.2) 100%);
    color: #f8f6f0;
    padding: 0.8rem 1.5rem;
    border-radius: 25px;
    border: 1px solid rgba(212, 175, 55, 0.4);
    font-size: 0.9rem;
    font-weight: 500;
    transition: all 0.3s ease;
    cursor: default;
}

.service-tag:hover {
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.3) 0%, rgba(201, 169, 110, 0.3) 100%);
    border-color: var(--primary-gold);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(212, 175, 55, 0.3);
}

/* Schedule Information */
.schedule-info h3 {
    color: var(--primary-gold);
    font-size: 1.6rem;
    margin-bottom: 1rem;
    text-shadow: 0 0 10px rgba(201, 169, 110, 0.5);
}

.schedule-text {
    color: #f8f6f0;
    font-size: 1.1rem;
    background: linear-gradient(135deg, rgba(201, 169, 110, 0.1) 0%, rgba(45, 27, 61, 0.3) 100%);
    padding: 1rem;
    border-radius: 10px;
    border: 1px solid rgba(201, 169, 110, 0.3);
    margin: 0;
}

/* Responsive Design for Detail Pages */
@media (max-width: 768px) {
    .therapist-detail-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .main-photo {
        height: 400px;
    }

    .therapist-name-large {
        font-size: 2.5rem;
        letter-spacing: 2px;
    }

    .info-row {
        flex-direction: column;
        text-align: center;
        gap: 0.5rem;
    }

    .info-value {
        text-align: center;
    }

    .service-tags {
        justify-content: center;
    }
}

/* =====================================================
   LIGHTBOX STYLES FOR FULL-SCREEN IMAGE VIEWING
   ===================================================== */

.lightbox {
    display: none;
    position: fixed;
    z-index: 9999;
    padding-top: 50px;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(5px);
}

.lightbox-content {
    margin: auto;
    display: block;
    width: auto;
    height: auto;
    max-width: 90%;
    max-height: 80%;
    object-fit: contain;
    border-radius: 8px;
    box-shadow: 0 4px 50px rgba(212, 175, 55, 0.3);
    animation: lightboxZoom 0.3s ease-out;
}

@keyframes lightboxZoom {
    from {
        transform: scale(0.8);
        opacity: 0;
    }
    to {
        transform: scale(1);
        opacity: 1;
    }
}

.lightbox-close {
    position: absolute;
    top: 20px;
    right: 35px;
    color: #f5f5f5;
    font-size: 40px;
    font-weight: bold;
    transition: 0.3s;
    cursor: pointer;
    z-index: 10000;
    text-shadow: 0 0 10px rgba(0, 0, 0, 0.8);
}

.lightbox-close:hover,
.lightbox-close:focus {
    color: var(--primary-gold);
    text-decoration: none;
    transform: scale(1.1);
}

.lightbox-caption {
    margin: auto;
    display: block;
    width: 80%;
    max-width: 700px;
    text-align: center;
    color: #f5f5f5;
    padding: 20px;
    font-size: 1.1rem;
    font-weight: 500;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.1) 0%, rgba(201, 169, 110, 0.1) 100%);
    border-radius: 8px;
    margin-top: 20px;
    backdrop-filter: blur(10px);
}

/* Add hover hint to shop images */
.shop-image {
    position: relative;
    cursor: pointer;
}

.shop-photo-card::after {
    content: '🔍 Click to enlarge';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: rgba(0, 0, 0, 0.8);
    color: var(--light-gold);
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.9rem;
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
    z-index: 10;
}

.shop-photo-card:hover::after {
    opacity: 1;
}

/* Mobile responsiveness for lightbox */
@media (max-width: 768px) {
    .lightbox {
        padding-top: 20px;
    }

    .lightbox-content {
        max-width: 95%;
        max-height: 70%;
    }

    .lightbox-close {
        top: 10px;
        right: 20px;
        font-size: 30px;
    }

    .lightbox-caption {
        width: 90%;
        font-size: 1rem;
        padding: 15px;
    }
}

/* =====================================================
   通用金色波纹点击效果
   ===================================================== */

/* 为所有可点击元素添加波纹效果基础类 */
.golden-ripple {
    position: relative;
    overflow: hidden;
    cursor: pointer;
}

.golden-ripple::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.6) 0%, rgba(255, 215, 0, 0.4) 50%, transparent 70%);
    transform: translate(-50%, -50%);
    transition: width 0.6s ease-out, height 0.6s ease-out, opacity 0.6s ease-out;
    opacity: 0;
    pointer-events: none;
    z-index: 10;
}

.golden-ripple:active::after {
    width: 300px;
    height: 300px;
    opacity: 1;
    transition: width 0.3s ease-out, height 0.3s ease-out;
}

/* 定价卡片点击效果 */
.pricing-card::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.4) 0%, rgba(255, 215, 0, 0.3) 50%, transparent 70%);
    transform: translate(-50%, -50%);
    transition: width 0.8s ease-out, height 0.8s ease-out, opacity 0.8s ease-out;
    opacity: 0;
    pointer-events: none;
    z-index: 1;
}

.pricing-card:active::after {
    width: 400px;
    height: 400px;
    opacity: 1;
    transition: width 0.4s ease-out, height 0.4s ease-out;
}

/* 模特卡片链接点击效果 */
.therapist-card-link::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.5) 0%, rgba(255, 215, 0, 0.3) 50%, transparent 70%);
    transform: translate(-50%, -50%);
    transition: width 0.8s ease-out, height 0.8s ease-out, opacity 0.8s ease-out;
    opacity: 0;
    pointer-events: none;
    z-index: 2;
}

.therapist-card-link:active::after {
    width: 350px;
    height: 350px;
    opacity: 1;
    transition: width 0.4s ease-out, height 0.4s ease-out;
}

/* Contact Page Styles */
.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

.contact-item {
    background: rgba(45, 45, 45, 0.8);
    padding: 2rem;
    border-radius: 15px;
    border: 2px solid var(--border-gold);
    transition: all 0.3s ease;
    text-align: center;
}

.contact-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px var(--shadow-gold);
    border-color: var(--accent-gold);
}

.contact-item h3 {
    color: var(--accent-gold);
    font-size: 1.3rem;
    margin-bottom: 1rem;
}

.contact-qr-section {
    margin: 3rem 0;
    text-align: center;
}

.contact-qr-section h3 {
    color: var(--primary-gold);
    margin-bottom: 2rem;
    font-size: 1.5rem;
}

.qr-codes {
    display: flex;
    justify-content: center;
    gap: 3rem;
    flex-wrap: wrap;
}

.qr-item {
    text-align: center;
}

.qr-code {
    width: 150px;
    height: 150px;
    border: 3px solid var(--border-gold);
    border-radius: 15px;
    padding: 10px;
    background: rgba(26, 26, 26, 0.9);
    transition: all 0.3s ease;
}

.qr-code:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 25px var(--shadow-gold);
}

.qr-item p {
    margin-top: 1rem;
    color: var(--text-primary);
    font-weight: bold;
}

.contact-note {
    background: rgba(212, 175, 55, 0.1);
    border: 2px solid var(--border-gold);
    border-radius: 15px;
    padding: 2rem;
    margin-top: 3rem;
}

.contact-note h3 {
    color: var(--accent-gold);
    margin-bottom: 1.5rem;
    text-align: center;
}

.contact-note ul {
    list-style: none;
    padding: 0;
}

.contact-note li {
    margin-bottom: 0.8rem;
    padding-left: 1.5rem;
    position: relative;
}

.contact-note li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--accent-gold);
    font-weight: bold;
}

.nav-link.active {
    background: var(--gradient-gold);
    color: var(--bg-primary);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px var(--shadow-gold);
}

/* Facility Gallery Styles */
.facility-gallery {
    margin: 4rem 0 2rem 0;
    text-align: center;
}

.facility-gallery h3 {
    color: var(--primary-gold);
    font-size: 2rem;
    margin-bottom: 3rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.gallery-item {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    background: rgba(45, 45, 45, 0.8);
    border: 2px solid var(--border-gold);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}

.gallery-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px var(--shadow-gold);
    border-color: var(--accent-gold);
}

.facility-image {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: transform 0.3s ease;
    flex-shrink: 0;
}

.gallery-item:hover .facility-image {
    transform: scale(1.05);
}

.gallery-overlay {
    position: static;
    background: rgba(45, 45, 45, 0.9);
    color: var(--text-primary);
    padding: 1.5rem;
    text-align: center;
    border-top: 2px solid var(--border-gold);
}

.gallery-overlay h4 {
    color: var(--accent-gold);
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    font-weight: bold;
}

.gallery-overlay p {
    font-size: 0.9rem;
    opacity: 0.9;
}

/* Responsive adjustments for gallery */
@media (max-width: 768px) {
    .gallery-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .facility-gallery h3 {
        font-size: 1.5rem;
        margin-bottom: 2rem;
    }

    .gallery-overlay {
        padding: 1.5rem;
    }
}

/* =====================================================
   FLOATING CONTACT BUTTON (Added)
   ===================================================== */

.floating-contact {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 9999;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.floating-contact-btn {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: var(--gradient-gold);
    border: 3px solid var(--border-gold);
    color: var(--bg-primary);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    font-weight: bold;
    box-shadow:
        0 8px 25px var(--shadow-gold),
        0 0 40px rgba(212, 175, 55, 0.4),
        inset 0 2px 5px rgba(255, 255, 255, 0.3);
    transition: all 0.4s cubic-bezier(0.23, 1, 0.320, 1);
    animation: contactPulse 3s ease-in-out infinite;
    backdrop-filter: blur(10px);
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
}

.floating-contact-btn:hover {
    transform: scale(1.15) translateY(-5px);
    box-shadow:
        0 15px 40px var(--shadow-gold),
        0 0 60px rgba(212, 175, 55, 0.6),
        inset 0 2px 8px rgba(255, 255, 255, 0.4);
    background: linear-gradient(45deg, var(--secondary-gold), var(--light-gold), var(--secondary-gold));
    animation-play-state: paused;
}

.floating-contact-btn:active {
    transform: scale(1.05) translateY(-2px);
}

@keyframes contactPulse {
    0%, 100% {
        box-shadow:
            0 8px 25px var(--shadow-gold),
            0 0 40px rgba(212, 175, 55, 0.4),
            inset 0 2px 5px rgba(255, 255, 255, 0.3);
    }
    50% {
        box-shadow:
            0 12px 35px var(--shadow-gold),
            0 0 60px rgba(212, 175, 55, 0.6),
            inset 0 2px 8px rgba(255, 255, 255, 0.4);
    }
}

/* Contact Options Modal */
.floating-contact-modal {
    display: none;
    position: fixed;
    bottom: 120px;
    right: 30px;
    background: var(--bg-card);
    border: 2px solid var(--border-gold);
    border-radius: 20px;
    padding: 1.5rem;
    box-shadow:
        0 20px 40px rgba(0, 0, 0, 0.8),
        0 0 30px var(--shadow-gold),
        inset 0 1px 0 rgba(212, 175, 55, 0.3);
    backdrop-filter: blur(15px);
    z-index: 9998;
    animation: modalSlideUp 0.3s ease-out;
    min-width: 200px;
}

@keyframes modalSlideUp {
    from {
        opacity: 0;
        transform: translateY(20px) scale(0.9);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.floating-contact-modal::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--gradient-gold);
    border-radius: 20px 20px 0 0;
    box-shadow: 0 0 15px var(--shadow-gold);
}

.floating-contact-modal h3 {
    color: var(--primary-gold);
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    text-align: center;
    text-shadow: 0 0 10px var(--shadow-gold);
}

.floating-contact-number {
    color: var(--secondary-gold);
    font-size: 1rem;
    font-weight: bold;
    text-align: center;
    margin-bottom: 1rem;
    padding: 0.5rem;
    background: rgba(212, 175, 55, 0.1);
    border-radius: 8px;
    border: 1px solid rgba(212, 175, 55, 0.3);
}

.floating-contact-options {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.floating-contact-option {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.8rem 1rem;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    border: 1px solid transparent;
    position: relative;
    overflow: hidden;
}

.floating-contact-option::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transition: left 0.5s ease;
}

.floating-contact-option:hover::before {
    left: 100%;
}

.floating-contact-option.call {
    background: linear-gradient(135deg, rgba(34, 139, 34, 0.3) 0%, rgba(0, 128, 0, 0.2) 100%);
    color: #90EE90;
    border-color: rgba(34, 139, 34, 0.5);
}

.floating-contact-option.call:hover {
    background: linear-gradient(135deg, rgba(34, 139, 34, 0.5) 0%, rgba(0, 128, 0, 0.4) 100%);
    border-color: #90EE90;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(34, 139, 34, 0.4);
}

.floating-contact-option.message {
    background: linear-gradient(135deg, rgba(30, 144, 255, 0.3) 0%, rgba(0, 123, 255, 0.2) 100%);
    color: #87CEEB;
    border-color: rgba(30, 144, 255, 0.5);
}

.floating-contact-option.message:hover {
    background: linear-gradient(135deg, rgba(30, 144, 255, 0.5) 0%, rgba(0, 123, 255, 0.4) 100%);
    border-color: #87CEEB;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(30, 144, 255, 0.4);
}

.contact-icon {
    font-size: 1.1rem;
}

/* Close button for modal */
.floating-modal-close {
    position: absolute;
    top: -8px;
    right: -8px;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: var(--gradient-gold);
    color: var(--bg-primary);
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    font-weight: bold;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
}

.floating-modal-close:hover {
    transform: scale(1.1);
    box-shadow: 0 4px 12px var(--shadow-gold);
}

/* Mobile responsive for floating contact */
@media (max-width: 768px) {
    .floating-contact {
        bottom: 20px;
        right: 20px;
    }

    .floating-contact-btn {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }

    .floating-contact-modal {
        bottom: 90px;
        right: 20px;
        left: 20px;
        min-width: auto;
    }

    .floating-contact-options {
        gap: 0.6rem;
    }

    .floating-contact-option {
        padding: 0.7rem;
        font-size: 0.85rem;
    }
}
