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

body {
    font-family: 'Georgia', 'Times New Roman', serif;
    line-height: 1.7;
    color: #f8f6f0;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a0b2e 50%, #2d1b3d 100%);
    min-height: 100vh;
}

header {
    background: linear-gradient(135deg, #1a0b2e 0%, #2d1b3d 30%, #0f0613 70%, #1a0b2e 100%);
    color: #e8175d;
    text-align: center;
    padding: 3rem 1rem;
    box-shadow: 0 8px 25px rgba(232, 23, 93, 0.4);
    position: relative;
    overflow: hidden;
}

header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(circle at 20% 20%, rgba(232, 23, 93, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(201, 169, 110, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 40% 60%, rgba(114, 47, 55, 0.1) 0%, transparent 50%);
    opacity: 0.6;
}

.main-title {
    font-size: 4rem;
    margin-bottom: 2rem;
    text-shadow:
        0 0 20px rgba(232, 23, 93, 0.6),
        0 0 40px rgba(232, 23, 93, 0.4),
        2px 2px 8px rgba(0, 0, 0, 0.8);
    font-weight: 400;
    letter-spacing: 4px;
    position: relative;
    z-index: 1;
    background: linear-gradient(45deg, #e8175d, #c9a96e, #e8175d);
    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, #e8175d, #c9a96e, #e8175d, transparent);
    box-shadow: 0 0 10px rgba(232, 23, 93, 0.8);
}

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

.nav-link {
    color: #c9a96e;
    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(232, 23, 93, 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(232, 23, 93, 0.3), transparent);
    transition: left 0.6s ease;
}

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

.nav-link:hover {
    background: linear-gradient(135deg, rgba(232, 23, 93, 0.2), rgba(201, 169, 110, 0.2));
    border: 2px solid #e8175d;
    color: #f8f6f0;
    transform: translateY(-3px);
    box-shadow:
        0 8px 20px rgba(232, 23, 93, 0.4),
        0 0 30px rgba(232, 23, 93, 0.2);
}

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(232, 23, 93, 0.2);
    border: 1px solid rgba(232, 23, 93, 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, #e8175d, #c9a96e, #722f37, #e8175d);
    box-shadow: 0 0 15px rgba(232, 23, 93, 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: #e8175d;
    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(232, 23, 93, 0.5);
}

.section h2:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 3px;
    background: linear-gradient(90deg, #e8175d, #c9a96e, #e8175d);
    border-radius: 2px;
    box-shadow: 0 0 10px rgba(232, 23, 93, 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(232, 23, 93, 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, #e8175d, #c9a96e, #e8175d);
    box-shadow: 0 0 10px rgba(232, 23, 93, 0.6);
}

.service-item:hover {
    transform: translateY(-5px);
    border-color: #e8175d;
    background: linear-gradient(135deg, rgba(232, 23, 93, 0.2) 0%, rgba(45, 27, 61, 0.8) 100%);
    box-shadow: 0 20px 40px rgba(232, 23, 93, 0.4);
}

.service-item h3 {
    color: #c9a96e;
    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(232, 23, 93, 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, #e8175d, #c9a96e, #722f37);
    box-shadow: 0 0 15px rgba(232, 23, 93, 0.6);
}

.pricing-card.featured {
    border-color: #e8175d;
    transform: scale(1.02);
    box-shadow:
        0 25px 50px rgba(0, 0, 0, 0.6),
        0 0 40px rgba(232, 23, 93, 0.3);
    background: linear-gradient(135deg, #1a0b2e 0%, #2d1b3d 50%, #722f37 100%);
}

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

.pricing-card.exclusive {
    border-color: #c9a96e;
    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, #c9a96e, #e8175d, #c9a96e);
    animation: exclusiveGlow 3s ease-in-out infinite alternate;
}

@keyframes pulseGlow {
    0% { box-shadow: 0 0 15px rgba(232, 23, 93, 0.6); }
    100% { box-shadow: 0 0 25px rgba(232, 23, 93, 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(232, 23, 93, 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: #c9a96e;
    font-size: 1.4rem;
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.pricing-card.featured h3 {
    color: #e8175d;
    text-shadow: 0 0 10px rgba(232, 23, 93, 0.5);
}

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

.price {
    font-size: 3rem;
    font-weight: bold;
    color: #e8175d;
    margin-bottom: 0.8rem;
    font-family: 'Georgia', serif;
    text-shadow: 0 0 20px rgba(232, 23, 93, 0.5);
}

.pricing-card.exclusive .price {
    color: #c9a96e;
    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;
}

.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(232, 23, 93, 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: #e8175d;
    font-weight: bold;
    font-size: 1.1rem;
    text-shadow: 0 0 5px rgba(232, 23, 93, 0.5);
}

.pricing-card.exclusive ul li:before {
    color: #c9a96e;
    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%, #722f37 70%, #1a0b2e 100%);
    border: 3px solid #e8175d;
    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(232, 23, 93, 0.4),
        inset 0 1px 0 rgba(232, 23, 93, 0.3);
    backdrop-filter: blur(10px);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    min-height: 100%;
    height: auto;
}

.dynamic-poster::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 6px;
    background: linear-gradient(90deg, #e8175d, #c9a96e, #e8175d);
    box-shadow: 0 0 20px rgba(232, 23, 93, 0.8);
    animation: posterGlow 3s ease-in-out infinite alternate;
}

@keyframes posterGlow {
    0% { box-shadow: 0 0 20px rgba(232, 23, 93, 0.8); }
    100% { box-shadow: 0 0 40px rgba(232, 23, 93, 1); }
}

.poster-title {
    color: #e8175d;
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 1rem;
    text-shadow:
        0 0 20px rgba(232, 23, 93, 0.8),
        0 0 40px rgba(232, 23, 93, 0.6);
    background: linear-gradient(45deg, #e8175d, #c9a96e, #e8175d);
    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(232, 23, 93, 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, #e8175d 0%, #c9a96e 50%, #1a0b2e 100%);
    border-radius: 50%;
    margin: 0 auto 1px;
    box-shadow: 0 0 15px rgba(232, 23, 93, 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, #e8175d 0%, #c9a96e 20%, #722f37 45%, #e8175d 70%, #722f37 90%, #1a0b2e 100%);
    margin: 0 auto;
    border-radius: 52% 48% 25% 20%;
    box-shadow: 0 0 15px rgba(232, 23, 93, 0.7);
    animation: coordinatedTorsoMovement 6s ease-in-out infinite;
    position: relative;
    border: 1px solid rgba(232, 23, 93, 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, #e8175d 0%, #c9a96e 25%, #722f37 65%, #1a0b2e 90%, #000 100%);
    border-radius: 60% 40% 45% 40%;
    transform-origin: top center;
    box-shadow: 0 0 10px rgba(232, 23, 93, 0.7);
    border: 1px solid rgba(232, 23, 93, 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, #722f37 0%, #e8175d 25%, #c9a96e 65%, #e8175d 90%, #722f37 100%);
    margin: 4px auto;
    border-radius: 58% 42% 50% 50%;
    box-shadow: 0 0 14px rgba(232, 23, 93, 0.7);
    animation: coordinatedHipsMovement 6s ease-in-out infinite;
    position: relative;
    border: 1px solid rgba(232, 23, 93, 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, #e8175d 0%, #c9a96e 20%, #722f37 55%, #1a0b2e 80%, #000 100%);
    border-radius: 60% 40% 35% 30%;
    transform-origin: top center;
    box-shadow: 0 0 10px rgba(232, 23, 93, 0.7);
    border: 1px solid rgba(232, 23, 93, 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: #c9a96e;
    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(232, 23, 93, 0.3);
}

.day-link {
    color: #c9a96e;
    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(232, 23, 93, 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(232, 23, 93, 0.3), transparent);
    transition: left 0.6s ease;
}

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

.day-link:hover {
    background: linear-gradient(135deg, rgba(232, 23, 93, 0.2), rgba(201, 169, 110, 0.2));
    border: 2px solid #e8175d;
    color: #f8f6f0;
    transform: translateY(-3px);
    box-shadow:
        0 8px 20px rgba(232, 23, 93, 0.4),
        0 0 30px rgba(232, 23, 93, 0.2);
}

.day-link.featured {
    border-color: #e8175d;
    background: linear-gradient(135deg, rgba(232, 23, 93, 0.2) 0%, rgba(45, 27, 61, 0.6) 100%);
    box-shadow: 0 12px 30px rgba(232, 23, 93, 0.3);
}

.day-link.exclusive {
    border-color: #c9a96e;
    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(232, 23, 93, 0.3);
    border-radius: 20px;
    overflow: hidden;
    position: relative;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.5);
    transition: all 0.4s ease;
    aspect-ratio: 3/4;
    display: flex;
    flex-direction: column;
}

.therapist-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.7);
    border-color: #e8175d;
}

.therapist-card.featured {
    border-color: #e8175d;
    background: linear-gradient(135deg, #1a0b2e 0%, #2d1b3d 50%, #722f37 100%);
    box-shadow: 0 20px 45px rgba(232, 23, 93, 0.4);
}

.therapist-card.exclusive {
    border-color: #c9a96e;
    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(232, 23, 93, 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(232, 23, 93, 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: #c9a96e;
    font-size: 0.9rem;
    text-align: center;
    opacity: 0.7;
    transition: all 0.3s ease;
    cursor: pointer;
}

.photo-placeholder:hover {
    background-color: rgba(232, 23, 93, 0.1);
    opacity: 1;
}

.photo-upload-text {
    position: absolute;
    bottom: 10px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 0.8rem;
    color: #c9a96e;
    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: #e8175d;
    margin-bottom: 0.5rem;
    text-shadow: 0 0 15px rgba(232, 23, 93, 0.4);
}

.therapist-card.featured .therapist-name {
    color: #e8175d;
    text-shadow: 0 0 20px rgba(232, 23, 93, 0.6);
}

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

.therapist-card .therapist-nationality {
    font-size: 1rem;
    color: #c9a96e;
    margin-bottom: 0.8rem;
    font-weight: 500;
    opacity: 0.8;
    font-style: italic;
}

footer {
    background: linear-gradient(135deg, #0f0613 0%, #1a0b2e 50%, #2d1b3d 100%);
    color: #f8f6f0;
    text-align: center;
    padding: 3rem;
    margin-top: 4rem;
    position: relative;
    overflow: hidden;
}

footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #e8175d, #c9a96e, #722f37, #e8175d);
    box-shadow: 0 0 15px rgba(232, 23, 93, 0.6);
}

footer p {
    margin-bottom: 0.8rem;
    font-size: 1.1rem;
}

footer p:first-child {
    color: #e8175d;
    font-weight: 600;
    text-shadow: 0 0 10px rgba(232, 23, 93, 0.5);
}

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

.back-link {
    color: #c9a96e;
    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: #c9a96e;
    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(232, 23, 93, 0.3);
    border-radius: 10px;
    transition: all 0.3s ease;
    background: linear-gradient(135deg, rgba(232, 23, 93, 0.1) 0%, rgba(45, 27, 61, 0.3) 100%);
}

.prev-day:hover, .next-day:hover {
    border-color: #e8175d;
    background: linear-gradient(135deg, rgba(232, 23, 93, 0.2) 0%, rgba(45, 27, 61, 0.5) 100%);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(232, 23, 93, 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(232, 23, 93, 0.3);
    background: linear-gradient(135deg, rgba(232, 23, 93, 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(232, 23, 93, 0.9) 0%, rgba(201, 169, 110, 0.9) 100%);
    border: none;
    color: white;
    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(232, 23, 93, 1) 0%, rgba(201, 169, 110, 1) 100%);
    transform: scale(1.15);
    box-shadow: 0 8px 25px rgba(232, 23, 93, 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: #c9a96e;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 500;
    border: 1px solid rgba(232, 23, 93, 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: #e8175d;
    opacity: 1;
    box-shadow: 0 4px 15px rgba(232, 23, 93, 0.4);
}

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

.gallery-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #c9a96e;
    font-size: 1.2rem;
    text-align: center;
    background: linear-gradient(135deg, rgba(232, 23, 93, 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: #e8175d;
    font-weight: 600;
    margin-bottom: 2rem;
    text-shadow: 0 0 30px rgba(232, 23, 93, 0.6);
    background: linear-gradient(45deg, #e8175d, #c9a96e, #e8175d);
    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(232, 23, 93, 0.2);
    transition: all 0.3s ease;
}

.info-row:hover {
    border-color: #e8175d;
    background: linear-gradient(135deg, rgba(232, 23, 93, 0.1) 0%, rgba(45, 27, 61, 0.6) 100%);
    transform: translateX(5px);
}

.info-label {
    color: #c9a96e;
    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(232, 23, 93, 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, #e8175d, #c9a96e, #e8175d);
    box-shadow: 0 0 15px rgba(232, 23, 93, 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: #e8175d;
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    text-shadow: 0 0 15px rgba(232, 23, 93, 0.5);
}

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

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

.service-tag:hover {
    background: linear-gradient(135deg, rgba(232, 23, 93, 0.3) 0%, rgba(201, 169, 110, 0.3) 100%);
    border-color: #e8175d;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(232, 23, 93, 0.3);
}

/* Schedule Information */
.schedule-info h3 {
    color: #c9a96e;
    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;
    }
}



/* Elegant Silhouette Poster for Pricing Page */
.elegant-silhouette-poster {
    background: linear-gradient(135deg, #1a0b2e 0%, #2d1b3d 30%, #722f37 70%, #1a0b2e 100%);
    border: 3px solid #e8175d;
    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(232, 23, 93, 0.4),
        inset 0 1px 0 rgba(232, 23, 93, 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;
}

.elegant-silhouette-poster::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 6px;
    background: linear-gradient(90deg, #e8175d, #c9a96e, #e8175d);
    box-shadow: 0 0 20px rgba(232, 23, 93, 0.8);
    animation: enhancedPosterGlow 3s ease-in-out infinite alternate;
}

@keyframes enhancedPosterGlow {
    0% { box-shadow: 0 0 20px rgba(232, 23, 93, 0.8); }
    100% { box-shadow: 0 0 50px rgba(232, 23, 93, 1); }
}

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

.yoga-silhouette-showcase {
    flex-grow: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 1.5rem 0;
    position: relative;
    min-height: 200px;
    background:
        radial-gradient(circle at 30% 30%, rgba(232, 23, 93, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 70% 70%, rgba(255, 107, 157, 0.1) 0%, transparent 50%);
    border-radius: 15px;
    overflow: hidden;
}

.yoga-silhouette-showcase::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        conic-gradient(from 0deg at 50% 50%,
            rgba(232, 23, 93, 0.1) 0deg,
            rgba(255, 107, 157, 0.15) 120deg,
            rgba(201, 169, 110, 0.1) 240deg,
            rgba(232, 23, 93, 0.1) 360deg);
    animation: rotatingAuraPricing 12s linear infinite;
    opacity: 0.6;
}

@keyframes rotatingAuraPricing {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.pricing-page-silhouette {
    max-width: 140px;
    max-height: 200px;
    width: auto;
    height: auto;
    /* 去掉白底，黑色变诱惑玫瑰红渐变 */
    filter:
        brightness(0) saturate(100%)
        invert(18%) sepia(95%) saturate(5486%) hue-rotate(328deg) brightness(97%) contrast(94%)
        drop-shadow(0 0 25px rgba(232, 23, 93, 1))
        drop-shadow(0 0 50px rgba(255, 107, 157, 0.8))
        drop-shadow(0 0 75px rgba(201, 169, 110, 0.6));
    transition: all 0.4s ease;
    position: relative;
    z-index: 2;
    cursor: pointer;
    background: transparent;
    animation: gentleFloatPricing 6s ease-in-out infinite;
}

@keyframes gentleFloatPricing {
    0%, 100% { transform: translateY(0px) scale(1); }
    50% { transform: translateY(-6px) scale(1.02); }
}

.pricing-page-silhouette:hover {
    filter:
        brightness(0) saturate(100%)
        invert(15%) sepia(99%) saturate(6486%) hue-rotate(315deg) brightness(115%) contrast(110%)
        drop-shadow(0 0 35px rgba(232, 23, 93, 1))
        drop-shadow(0 0 70px rgba(255, 107, 157, 1))
        drop-shadow(0 0 105px rgba(201, 169, 110, 0.8));
    transform: scale(1.05) rotate(1deg);
    animation-play-state: paused;
}

.poster-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg,
        rgba(232, 23, 93, 0.3) 0%,
        rgba(255, 107, 157, 0.2) 25%,
        rgba(201, 169, 110, 0.15) 50%,
        rgba(255, 107, 157, 0.2) 75%,
        rgba(232, 23, 93, 0.3) 100%);
    mix-blend-mode: overlay;
    pointer-events: none;
    animation: pricingOverlayFlow 8s ease-in-out infinite;
    z-index: 1;
}

@keyframes pricingOverlayFlow {
    0%, 100% {
        opacity: 0.5;
        transform: scale(1) rotate(0deg);
    }
    50% {
        opacity: 0.8;
        transform: scale(1.03) rotate(180deg);
    }
}

.poster-tagline {
    color: #c9a96e;
    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: taglineGlow 3s ease-in-out infinite alternate;
}

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

/* Therapist Card Links */
.therapist-card-link {
    text-decoration: none;
    color: inherit;
    display: block;
    transition: all 0.3s ease;
}

.therapist-card-link:hover {
    text-decoration: none;
    color: inherit;
}

.therapist-card-link:hover .therapist-card {
    transform: translateY(-15px);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.8);
    border-color: #e8175d;
}

.therapist-card-link:hover .therapist-card.featured {
    transform: scale(1.02) translateY(-15px);
    box-shadow:
        0 35px 70px rgba(232, 23, 93, 0.6),
        0 0 50px rgba(232, 23, 93, 0.4);
}

.therapist-card-link:hover .therapist-card.exclusive {
    transform: scale(1.02) translateY(-15px);
    box-shadow:
        0 35px 70px rgba(201, 169, 110, 0.6),
        0 0 50px rgba(201, 169, 110, 0.4);
}

/* =====================================================
   CONTACT PAGE QR CODES STYLING
   ===================================================== */

.qr-codes-section {
    margin: 3rem 0;
    padding: 2rem 0;
}

.qr-codes-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    max-width: 600px;
    margin: 0 auto;
    padding: 0 1rem;
}

.qr-code-card {
    background: linear-gradient(135deg, #1a0b2e 0%, #2d1b3d 100%);
    border-radius: 20px;
    padding: 2rem;
    text-align: center;
    border: 2px solid transparent;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.qr-code-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(232, 23, 93, 0.1) 0%, rgba(201, 169, 110, 0.1) 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 1;
}

.qr-code-card:hover::before {
    opacity: 1;
}

.qr-code-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
}

.whatsapp-qr {
    border-color: rgba(37, 211, 102, 0.3);
}

.whatsapp-qr:hover {
    border-color: #25d366;
    box-shadow: 0 20px 40px rgba(37, 211, 102, 0.3);
}

.wechat-qr {
    border-color: rgba(7, 193, 96, 0.3);
}

.wechat-qr:hover {
    border-color: #07c160;
    box-shadow: 0 20px 40px rgba(7, 193, 96, 0.3);
}

.qr-card-header {
    margin-bottom: 1.5rem;
    z-index: 2;
    position: relative;
}

.platform-icon {
    font-size: 2rem;
    margin-bottom: 0.5rem;
    display: block;
}

.qr-card-header h3 {
    color: #f5f5f5;
    font-size: 1.3rem;
    margin: 0;
    font-weight: 600;
}

.qr-frame {
    background: white;
    border-radius: 15px;
    padding: 1rem;
    margin: 0 auto;
    max-width: 200px;
    position: relative;
    z-index: 2;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
}

.qr-code-card:hover .qr-frame {
    transform: scale(1.05);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.3);
}

.qr-image {
    width: 100%;
    height: auto;
    border-radius: 8px;
    display: block;
}

.qr-placeholder {
    width: 100%;
    height: 150px;
    background: #f8f9fa;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #6c757d;
    font-weight: 500;
}

.placeholder-text {
    text-align: center;
    color: #6c757d;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .qr-codes-container {
        grid-template-columns: 1fr;
        gap: 2rem;
        max-width: 350px;
    }

    .qr-code-card {
        padding: 1.5rem;
    }

    .qr-frame {
        max-width: 180px;
    }
}

/* Extra small screens - Force single column pricing layout */
@media (max-width: 600px) {
    .pricing-grid {
        display: grid !important;
        grid-template-columns: 1fr !important;
        gap: 1.5rem !important;
        max-width: 400px !important;
        margin: 0 auto !important;
    }

    .pricing-card {
        grid-column: 1 !important;
        grid-row: auto !important;
        max-width: none !important;
        margin: 0 !important;
        width: 100% !important;
    }

    .elegant-silhouette-poster {
        grid-column: 1 !important;
        grid-row: auto !important;
        order: -1 !important;
    }
}

/* =====================================================
   OUR SHOP SECTION STYLING
   ===================================================== */

.our-shop-section {
    margin: 4rem 0;
    padding: 2rem 0;
    border-top: 1px solid rgba(232, 23, 93, 0.2);
}

.our-shop-section h2 {
    text-align: center;
    color: #e8175d;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    font-weight: bold;
    text-shadow: 0 0 20px rgba(232, 23, 93, 0.4);
    position: relative;
}

.our-shop-section h2::after {
    content: '';
    display: block;
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, #e8175d, #c9a96e);
    margin: 1rem auto;
    border-radius: 2px;
}

.shop-description {
    text-align: center;
    max-width: 600px;
    margin: 0 auto 3rem;
    padding: 0 1rem;
}

.shop-description p {
    color: #f5f5f5;
    font-size: 1.1rem;
    line-height: 1.6;
    opacity: 0.9;
}

.shop-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

/* Remove special featured photo styling - all photos same size now */
.shop-gallery .featured-photo {
    /* No special sizing */
}

/* All photos now have equal treatment */
.shop-gallery .shop-photo-card {
    cursor: pointer;
    transition: all 0.3s ease;
}

.shop-gallery .shop-photo-card:hover {
    transform: scale(1.02);
}



.shop-photo-card {
    background: linear-gradient(135deg, #1a0b2e 0%, #2d1b3d 100%);
    border-radius: 15px;
    border: 2px solid rgba(232, 23, 93, 0.3);
    overflow: hidden;
    transition: all 0.4s ease;
    position: relative;
}

.shop-photo-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(232, 23, 93, 0.1) 0%, rgba(201, 169, 110, 0.1) 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 1;
}

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

.shop-photo-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(232, 23, 93, 0.3);
    border-color: #e8175d;
}

.shop-photo-frame {
    aspect-ratio: 4/3;
    position: relative;
    z-index: 2;
}

.photo-upload-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(232, 23, 93, 0.1) 0%, rgba(201, 169, 110, 0.1) 100%);
    color: #c9a96e;
    text-align: center;
    transition: all 0.3s ease;
    cursor: pointer;
}

.photo-upload-placeholder:hover {
    background: linear-gradient(135deg, rgba(232, 23, 93, 0.2) 0%, rgba(201, 169, 110, 0.2) 100%);
    color: #e8175d;
}

.upload-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    opacity: 0.7;
}

.upload-text {
    font-size: 1rem;
    font-weight: 500;
    line-height: 1.4;
}

.upload-text small {
    font-size: 0.85rem;
    opacity: 0.8;
    color: #c9a96e;
}

/* When actual photos are uploaded */
.shop-photo-frame img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.shop-photo-card:hover img {
    transform: scale(1.05);
}

.photo-caption {
    padding: 1rem;
    text-align: center;
    color: #c9a96e;
    font-size: 0.9rem;
    font-weight: 500;
    border-top: 1px solid rgba(232, 23, 93, 0.2);
    background: rgba(232, 23, 93, 0.1);
    z-index: 2;
    position: relative;
}

.featured-photo .photo-caption {
    color: #e8175d;
    font-weight: 600;
    font-size: 1rem;
}

/* Enhanced shop image styling */
.shop-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: all 0.4s ease;
    border-radius: 8px 8px 0 0;
}

.shop-photo-card:hover .shop-image {
    filter: brightness(1.1) contrast(1.05);
}

/* Mobile responsive for shop gallery */
/* Mobile responsive for Our Shop */
@media (max-width: 768px) {
    .our-shop-section {
        margin: 3rem 0;
        padding: 1.5rem 0;
    }

    .our-shop-section h2 {
        font-size: 2rem;
        margin-bottom: 2rem;
    }

    .shop-description {
        margin-bottom: 2rem;
        padding: 0 0.5rem;
    }

    .shop-description p {
        font-size: 1rem;
    }

    .shop-gallery {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 1.5rem;
        padding: 0 0.5rem;
    }

    .shop-photo-card {
        min-height: 200px;
    }

    .shop-photo-frame {
        aspect-ratio: 16/10;
    }
}

@media (max-width: 480px) {
    .our-shop-section {
        margin: 2rem 0;
        padding: 1rem 0;
    }

    .our-shop-section h2 {
        font-size: 1.8rem;
    }

    .shop-gallery {
        grid-template-columns: 1fr;
        gap: 1.2rem;
        padding: 0 0.5rem;
    }

    .shop-photo-card {
        min-height: auto;
    }

    .shop-photo-frame {
        aspect-ratio: 4/3;
    }

    .photo-caption {
        padding: 0.8rem;
        font-size: 0.85rem;
    }
}

/* =====================================================
   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(232, 23, 93, 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: #e8175d;
    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(232, 23, 93, 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: white;
    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;
    }
}
