/* Reset y variables */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Performance optimizations */
html {
    scroll-behavior: smooth;
}

/* Anti-scraping styles */
.phone-number,
.email-address {
    text-decoration: underline;
    transition: opacity 0.2s ease;
}

.phone-number:hover,
.email-address:hover {
    opacity: 0.8;
}

@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
}

/* Optimize touch scrolling */
.hero-content,
.container,
section {
    -webkit-overflow-scrolling: touch;
}

:root {
    --gold: #C9A961;
    --primary-color: #C9A961;
    --charcoal-premium: #1C1C1C;
    --charcoal: #2C2C2C;
    --accent-wine: #722F37;
    --warm-gray: #8B8680;
    --cream: #FFF8F0;
    --bronze: #B08D57;
    --secondary-color: #1a1a1a;
    --text-light: #666;
    --bg-light: #f8f5f0;
    --bg-dark: #0d0d0d;
    --font-primary: 'Cormorant Garamond', serif;
    --font-secondary: 'Lato', sans-serif;
    --shadow: rgba(0,0,0,0.15);
    --gradient-luxury: linear-gradient(135deg, #1C1C1C 0%, #C9A961 100%);
    --gradient-dark: linear-gradient(135deg, #1C1C1C 0%, #2C2C2C 100%);
}

/* Base styles - Mobile First */
body {
    font-family: var(--font-secondary);
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
    font-size: 16px;
    -webkit-text-size-adjust: 100%;
    -webkit-tap-highlight-color: transparent;
}

h1, h2, h3, h4 {
    font-family: var(--font-primary);
    font-weight: 300;
    line-height: 1.2;
}

/* Mobile-first typography scale */
h1 {
    font-size: 1.75rem;
}

h2 {
    font-size: 1.5rem;
}

h3 {
    font-size: 1.25rem;
}

h4 {
    font-size: 1.1rem;
}

p {
    font-size: 1rem;
    line-height: 1.6;
}

/* Mobile Navigation */
.mobile-nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(26, 26, 26, 0.98);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    padding: 0.8rem 1rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 1000;
    color: white;
    box-shadow: 0 2px 20px rgba(0,0,0,0.3);
    border-bottom: 1px solid rgba(201, 169, 97, 0.2);
    contain: layout style paint;
}

.mobile-nav-logo {
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.nav-logo-img {
    width: 40px;
    height: 40px;
    object-fit: contain;
    filter: drop-shadow(0 2px 4px rgba(0,0,0,0.3));
    transition: transform 0.3s ease;
}

.mobile-nav-logo:hover .nav-logo-img {
    transform: scale(1.1) rotate(5deg);
}

.nav-logo-text {
    font-family: var(--font-primary);
    font-size: 1.4rem;
    color: var(--primary-color);
    font-weight: 400;
    letter-spacing: 1px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
    transition: color 0.3s ease;
}

.mobile-nav-logo:hover .nav-logo-text {
    color: var(--bronze);
}

.mobile-nav-cta {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--primary-color);
    color: white;
    padding: 0.75rem 1.25rem;
    border-radius: 25px;
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 600;
    border: none;
    cursor: pointer;
    font-family: var(--font-secondary);
    transition: all 0.3s ease;
    min-height: 44px;
    touch-action: manipulation;
    -webkit-tap-highlight-color: transparent;
}

.mobile-nav-cta:hover {
    background: var(--bronze);
    transform: translateY(-1px);
}

.mobile-nav-cta:active {
    transform: scale(0.98);
}

.mobile-nav-cta i {
    font-size: 0.9rem;
}

/* Loading Screen */
.loading-screen {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--bg-dark);
    z-index: 9999;
    justify-content: center;
    align-items: center;
}

.loader {
    width: 50px;
    height: 50px;
    border: 3px solid rgba(201, 169, 97, 0.3);
    border-top-color: var(--primary-color);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

/* Floating elements */
.security-float {
    position: fixed;
    bottom: 100px;
    left: 20px;
    background: rgba(26, 26, 26, 0.9);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 25px;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.8rem;
    z-index: 100;
}

.security-float i {
    font-size: 1.2rem;
    color: var(--primary-color);
}

.whatsapp-float {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 56px;
    height: 56px;
    background: #25d366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(0,0,0,0.3);
    z-index: 100;
    cursor: pointer;
    transition: transform 0.2s ease;
}

.whatsapp-float:active {
    transform: scale(0.95);
}

.whatsapp-float i {
    color: white;
}

/* Hero Section - Mobile First */
.hero {
    min-height: calc(100vh - 60px);
    margin-top: 60px;
    background: linear-gradient(rgba(74,14,30,0.9), rgba(201,169,97,0.9)), 
                url('data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iNDAwIiBoZWlnaHQ9IjgwMCIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KICA8ZGVmcz4KICAgIDxwYXR0ZXJuIGlkPSJsdXh1cnkiIHg9IjAiIHk9IjAiIHdpZHRoPSIxMDAiIGhlaWdodD0iMTAwIiBwYXR0ZXJuVW5pdHM9InVzZXJTcGFjZU9uVXNlIj4KICAgICAgPHJlY3Qgd2lkdGg9IjEwMCIgaGVpZ2h0PSIxMDAiIGZpbGw9InJnYmEoMjU1LDI1NSwyNTUsMC4wMikiLz4KICAgICAgPGNpcmNsZSBjeD0iNTAiIGN5PSI1MCIgcj0iMzAiIGZpbGw9Im5vbmUiIHN0cm9rZT0icmdiYSgyNTUsMjU1LDI1NSwwLjA1KSIgc3Ryb2tlLXdpZHRoPSIxIi8+CiAgICA8L3BhdHRlcm4+CiAgPC9kZWZzPgogIDxyZWN0IHdpZHRoPSIxMDAlIiBoZWlnaHQ9IjEwMCUiIGZpbGw9InVybCgjbHV4dXJ5KSIgLz4KPC9zdmc+');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    padding: 30px 20px;
    position: relative;
    overflow: hidden;
    contain: layout style paint;
}

/* Hero Video Background - Mobile First */
.hero-video-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: -1;
}

.hero-video-wrapper::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(74,14,30,0.92), rgba(201,169,97,0.92));
    z-index: 1;
}

.hero-video-wrapper video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    transform: translateX(-50%) translateY(-50%);
    object-fit: cover;
    pointer-events: none;
}

/* Optimize video for mobile */
@media (max-width: 767px) {
    .hero-video-wrapper video {
        /* Video visible but optimized for mobile */
        display: block;
    }
}

/* Video Play Button */
.video-play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 80px;
    background: rgba(201, 169, 97, 0.9);
    border: 3px solid white;
    border-radius: 50%;
    cursor: pointer;
    z-index: 2;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(0,0,0,0.3);
}

.video-play-button i {
    color: white;
    font-size: 2rem;
    margin-left: 5px;
}

.video-play-button:hover {
    background: rgba(201, 169, 97, 1);
    transform: translate(-50%, -50%) scale(1.1);
}

.video-play-button:active {
    transform: translate(-50%, -50%) scale(0.95);
}

.hero-content {
    text-align: center;
    color: white;
    width: 100%;
    animation: fadeInUp 0.8s ease;
    position: relative;
    z-index: 2;
    max-width: 600px;
    margin: 0 auto;
}

.hero h1 {
    font-size: 1.75rem;
    margin-bottom: 12px;
    font-weight: 300;
    text-shadow: 1px 1px 3px rgba(0,0,0,0.5);
    line-height: 1.15;
}

.hero h1 strong {
    font-weight: 600;
    color: var(--gold);
    display: block;
    font-style: italic;
    margin-top: 6px;
}

.hero-subtitle {
    font-size: 1rem;
    margin-bottom: 12px;
    opacity: 0.95;
    font-weight: 300;
}

.hero-description {
    font-size: 0.95rem;
    margin-bottom: 20px;
    opacity: 0.9;
    line-height: 1.5;
    padding: 0 10px;
}

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

/* Trust Indicators Mobile */
.trust-indicators {
    display: flex;
    justify-content: center;
    gap: 16px;
    margin-bottom: 24px;
    flex-wrap: wrap;
}

.trust-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2px;
    font-size: 0.8rem;
    opacity: 0.9;
}

.trust-item i {
    font-size: 1.25rem;
    color: var(--gold);
}

/* CTA Mobile Optimized */
.cta-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    padding: 0 15px;
    width: 100%;
}

.cta-subtext {
    font-size: 0.875rem;
    opacity: 0.9;
    font-weight: 500;
    margin-bottom: 8px;
}

.availability-notice {
    background: rgba(114,47,55,0.2);
    padding: 12px 24px;
    border-radius: 25px;
    font-size: 0.875rem;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(114,47,55,0.3);
    animation: pulse 2s ease-in-out infinite;
    font-weight: 500;
}

@keyframes pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.9; transform: scale(1.02); }
}

/* Ambiance Bar */
.ambiance-bar {
    background: var(--bg-light);
    padding: 1.5rem 20px;
    overflow-x: auto;
}

.ambiance-items {
    display: flex;
    gap: 2rem;
    justify-content: center;
    min-width: fit-content;
}

.ambiance-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    white-space: nowrap;
    font-size: 0.9rem;
}

.ambiance-item i {
    font-size: 1.2rem;
    color: var(--primary-color);
}

/* Buttons */
.btn-primary {
    background: var(--gold);
    color: white;
    padding: 18px 32px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.05rem;
    transition: all 0.3s ease;
    display: inline-block;
    letter-spacing: 0.5px;
    box-shadow: 0 6px 20px rgba(201,169,97,0.4);
    width: 100%;
    max-width: 280px;
    text-align: center;
    cursor: pointer;
    border: none;
    -webkit-appearance: none;
    appearance: none;
    touch-action: manipulation;
    min-height: 48px;
    line-height: 48px;
}

a.btn-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    line-height: normal;
}

.btn-primary:hover {
    background: #b89651;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(201, 169, 97, 0.5);
    color: white;
}

.btn-primary:active {
    transform: scale(0.98);
    box-shadow: 0 3px 10px rgba(201,169,97,0.3);
}

.btn-primary:focus {
    outline: 2px solid var(--primary-color);
    outline-offset: 2px;
}

/* Sections - Mobile First */
section {
    padding: 40px 20px;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
}

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

.section-header h2 {
    font-size: 1.75rem;
    margin-bottom: 0.75rem;
}

.section-header p {
    font-size: 0.95rem;
    color: var(--text-light);
    line-height: 1.5;
}

.light {
    background: var(--bg-light);
}

.dark {
    background: var(--bg-dark);
    color: white;
}

.dark .section-header p {
    color: rgba(255,255,255,0.7);
}

/* Grid layouts - Mobile First */
.transparency-grid,
.service-features {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.transparency-card,
.feature {
    text-align: center;
    padding: 1.5rem;
    background: white;
    border-radius: 10px;
    box-shadow: 0 3px 15px rgba(0,0,0,0.08);
}

.transparency-icon i,
.feature-icon i {
    font-size: 2.5rem;
    margin-bottom: 0.75rem;
    color: var(--primary-color);
    display: block;
}

.dark .transparency-card,
.dark .feature {
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(201, 169, 97, 0.3);
}

/* Experience Details - Mobile First */
.experience-details {
    background: white;
    padding: 1.5rem;
    border-radius: 15px;
    box-shadow: 0 3px 15px rgba(0,0,0,0.08);
}

.experience-list {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0.75rem;
    margin-top: 1rem;
}

.experience-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0.5rem;
}

.experience-item i {
    font-size: 1.5rem;
    color: var(--primary-color);
    flex-shrink: 0;
}

/* Testimonials - Mobile First */
.testimonial-slider {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

.testimonial {
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(201, 169, 97, 0.3);
    padding: 2rem;
    border-radius: 15px;
}

.testimonial-rating {
    color: var(--primary-color);
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.testimonial-rating i {
    margin-right: 2px;
}

.testimonial-text {
    font-style: italic;
    margin-bottom: 1rem;
    line-height: 1.8;
}

.testimonial-author {
    font-weight: 600;
    color: var(--primary-color);
}

.testimonial-details {
    font-size: 0.9rem;
    opacity: 0.7;
}

/* Process Cards - Mobile First */
.process-cards {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.25rem;
    list-style: none;
}

.process-card {
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(201, 169, 97, 0.3);
    padding: 2rem;
    border-radius: 15px;
    position: relative;
}

.process-number {
    position: absolute;
    top: -15px;
    left: 20px;
    background: var(--primary-color);
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.2rem;
}

/* Service Categories */
.service-category {
    margin-bottom: 4rem;
}

.category-title {
    font-size: 2.2rem;
    text-align: center;
    margin-bottom: 0.5rem;
    color: var(--primary-color);
    font-family: var(--font-primary);
}

.category-title i {
    margin-right: 0.5rem;
}

.category-subtitle {
    text-align: center;
    font-size: 1.2rem;
    color: var(--text-light);
    margin-bottom: 3rem;
}

/* Massage Grid - Mobile First */
.massage-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.massage-card {
    background: white;
    padding: 1.5rem;
    border-radius: 15px;
    box-shadow: 0 3px 15px rgba(0,0,0,0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

@media (hover: hover) {
    .massage-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 8px 30px rgba(0,0,0,0.15);
    }
}

.massage-icon {
    text-align: center;
    margin-bottom: 1rem;
}

.massage-icon i {
    font-size: 2rem;
    color: var(--primary-color);
}

.massage-card h4 {
    font-size: 1.2rem;
    margin-bottom: 0.75rem;
    color: var(--charcoal-premium);
    font-family: var(--font-primary);
}

.massage-card p {
    color: var(--text-light);
    line-height: 1.6;
    font-size: 0.95rem;
}

/* Tantric Special Section */
.tantric-special {
    background: linear-gradient(135deg, rgba(201,169,97,0.1) 0%, rgba(114,47,55,0.1) 100%);
    padding: 3rem;
    border-radius: 20px;
    border: 2px solid var(--primary-color);
}

.tantric-description {
    max-width: 800px;
    margin: 0 auto 3rem;
}

.tantric-description img {
    max-width: 100%;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    border: 2px solid rgba(201, 169, 97, 0.3);
}

/* Tantric Gallery - Mobile First */
.tantric-gallery {
    margin: 2rem 0;
}

.gallery-container {
    position: relative;
    width: 100%;
    max-width: 600px;
    margin: 0 auto;
    overflow: hidden;
    border-radius: 15px;
}

.gallery-track {
    display: flex;
    transition: transform 0.3s ease;
}

.gallery-slide {
    min-width: 100%;
    position: relative;
}

.gallery-slide img {
    width: 100%;
    height: auto;
    aspect-ratio: 16/10;
    object-fit: cover;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.gallery-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.8) 0%, transparent 100%);
    color: white;
    padding: 1.5rem 1rem 1rem;
    font-style: italic;
    font-size: 0.95rem;
    text-align: center;
    border-radius: 0 0 15px 15px;
}

.gallery-dots {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 1rem;
}

.gallery-dots .dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    border: none;
    background: rgba(201, 169, 97, 0.3);
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 0;
}

.gallery-dots .dot.active {
    background: var(--primary-color);
    transform: scale(1.2);
}

.gallery-dots .dot:hover {
    background: var(--primary-color);
    opacity: 0.7;
}

/* Touch swipe support */
@media (hover: none) {
    .gallery-track {
        cursor: grab;
    }
    
    .gallery-track:active {
        cursor: grabbing;
    }
}

.lead-text {
    font-size: 1.3rem;
    font-style: italic;
    text-align: center;
    margin-bottom: 2rem;
    color: var(--accent-wine);
    font-family: var(--font-primary);
}

.tantric-intro {
    max-width: 760px;
    margin: 0 auto 1.5rem;
    text-align: center;
    line-height: 1.7;
    color: var(--text-light);
}

.tantric-features {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    margin: 2rem 0;
}

.tantric-features h4 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: var(--charcoal-premium);
}

.tantric-features ul {
    list-style: none;
}

.tantric-features li {
    padding: 0.5rem 0;
    color: var(--text-light);
}

.tantric-features i {
    color: var(--primary-color);
    margin-right: 0.5rem;
}

.tantric-ideal {
    text-align: center;
    font-style: italic;
    font-size: 1.1rem;
    margin: 2rem 0;
    color: var(--accent-wine);
}

.tantric-message {
    text-align: center;
    font-size: 1.2rem;
    color: var(--primary-color);
    font-family: var(--font-primary);
}

.tantric-message i {
    margin-right: 0.5rem;
}

/* Tantric Pricing - Mobile First */
.tantric-pricing {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.pricing-option {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    position: relative;
}

.pricing-option.featured {
    border: 2px solid var(--primary-color);
    transform: scale(1.05);
}

.pricing-option .badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary-color);
    color: white;
    padding: 0.5rem 1.5rem;
    border-radius: 20px;
    font-size: 0.9rem;
}

.pricing-option h4 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    color: var(--charcoal-premium);
    font-family: var(--font-primary);
}

.price-details {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 1rem 0;
    padding: 0.5rem 0;
    border-bottom: 1px solid rgba(0,0,0,0.1);
}

.price-details:last-child {
    border-bottom: none;
}

.price {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
}

.duration {
    font-size: 1rem;
    color: var(--text-light);
}

/* Service CTA */
.service-cta {
    text-align: center;
    margin-top: 2rem;
}

/* Mobile optimizations for tantric pricing */
@media (max-width: 767px) {
    .pricing-option {
        padding: 1.5rem 1rem;
    }
    
    .pricing-option.featured {
        transform: scale(1);
    }
    
    .pricing-option h4 {
        font-size: 1.25rem;
        margin-bottom: 1rem;
    }
    
    .price-details {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 0.5rem;
        margin: 0.75rem 0;
        padding: 0.5rem 0;
    }
    
    .price {
        font-size: 1.25rem;
        line-height: 1.2;
    }
    
    .duration {
        font-size: 0.875rem;
        line-height: 1.2;
    }
    
    /* Special styling for 4 hands service */
    .pricing-option.featured .price-details {
        border-bottom: none;
        padding: 0;
        margin: 0.5rem 0;
    }
    
    .pricing-option.featured .price-details .price {
        display: block;
        margin: 0.25rem 0;
    }
    
    /* Compact badge for mobile */
    .pricing-option .badge {
        font-size: 0.8rem;
        padding: 0.4rem 1rem;
        top: -12px;
    }
}

/* Pricing cards - Mobile First */
.pricing-cards {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin-top: 2rem;
}

.pricing-card {
    background: white;
    border-radius: 15px;
    padding: 2rem;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    position: relative;
    transition: transform 0.3s ease;
}

.pricing-card:hover {
    transform: translateY(-3px);
}

.pricing-card.featured {
    border: 2px solid var(--primary-color);
    transform: none;
}

.popular-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary-color);
    color: white;
    padding: 0.5rem 1.5rem;
    border-radius: 20px;
    font-size: 0.9rem;
}

.package-name {
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
}

.package-duration {
    color: var(--text-light);
    margin-bottom: 1rem;
}

.package-price {
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary-color);
    margin: 1rem 0;
}

.package-price small {
    font-size: 1.2rem;
    font-weight: 400;
}

.package-features {
    list-style: none;
    margin: 2rem 0;
    text-align: left;
}

.package-features li {
    padding: 0.5rem 0;
    position: relative;
    padding-left: 1.5rem;
}

.package-features li::before {
    content: "";
    position: absolute;
    left: 0;
    width: 20px;
    height: 20px;
    background: var(--primary-color);
    -webkit-mask: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M9 16.2L4.8 12l-1.4 1.4L9 19 21 7l-1.4-1.4L9 16.2z"/></svg>') no-repeat center;
    mask: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M9 16.2L4.8 12l-1.4 1.4L9 19 21 7l-1.4-1.4L9 16.2z"/></svg>') no-repeat center;
}

/* Therapists Gallery - Mobile First */
.therapists-gallery {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin-top: 2rem;
    justify-content: center;
}

/* Center a single therapist card on all screen sizes */
.therapists-gallery.single-card {
    grid-template-columns: minmax(0, 420px);
    justify-content: center;
    max-width: 420px;
    margin-left: auto;
    margin-right: auto;
}

/* Special styling when there are only 2 therapist cards */
@media (min-width: 576px) {
    .therapists-gallery:has(.therapist-card:nth-child(2):last-child) {
        grid-template-columns: repeat(2, minmax(250px, 400px));
        justify-content: center;
        max-width: 900px;
        margin-left: auto;
        margin-right: auto;
    }
}

/* On mobile, show 2 cards side by side when there are only 2 */
@media (max-width: 575px) {
    .therapists-gallery:has(.therapist-card:nth-child(2):last-child) {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
}

.therapist-card {
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(201, 169, 97, 0.3);
    border-radius: 15px;
    overflow: hidden;
    transition: transform 0.3s ease;
}

@media (hover: hover) {
    .therapist-card:hover {
        transform: translateY(-5px);
        border-color: var(--primary-color);
    }
}

.therapist-card img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    object-position: center;
}

.therapist-card h4 {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin: 1rem 0 0.5rem;
    text-align: center;
}

.therapist-card p {
    text-align: center;
    padding: 0 1rem 1.5rem;
    opacity: 0.8;
}

/* Atmosphere Grid - Mobile First */
.atmosphere-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    justify-items: center;
    text-align: center;
    max-width: 400px;
    margin: 0 auto;
}

.atmosphere-item {
    text-align: center;
    max-width: 300px;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 1.5rem;
    background: rgba(255,255,255,0.03);
    border-radius: 15px;
    border: 1px solid rgba(201, 169, 97, 0.2);
}

.atmosphere-image i {
    font-size: 3rem;
    margin-bottom: 0.75rem;
    color: var(--primary-color);
    display: block;
    margin-left: auto;
    margin-right: auto;
}

.atmosphere-item h4 {
    margin-bottom: 0.5rem;
}

.atmosphere-item p {
    margin: 0;
    font-size: 0.95rem;
    opacity: 0.85;
}

/* FAQ */
.faq-list {
    max-width: 800px;
    margin: 0 auto;
}


.faq-item {
    background: white;
    border-radius: 10px;
    margin-bottom: 1rem;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.faq-question {
    width: 100%;
    padding: 1.25rem;
    text-align: left;
    background: none;
    border: none;
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    min-height: 48px;
    touch-action: manipulation;
}

.faq-question::after {
    content: "+";
    font-size: 1.5rem;
    color: var(--primary-color);
    transition: transform 0.3s ease;
    min-width: 44px;
    min-height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.faq-question[aria-expanded="true"]::after {
    transform: rotate(45deg);
}

.faq-answer {
    padding: 0 1.5rem;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-answer.active {
    max-height: 300px;
    padding: 1.5rem;
}

/* Discretion Features - Mobile First */
.discretion-features {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

.discretion-feature {
    text-align: center;
}

.discretion-icon i {
    font-size: 2.5rem;
    margin-bottom: 0.75rem;
    color: var(--primary-color);
    display: block;
}

/* Final CTA - Mobile First */
.final-cta {
    padding: 60px 20px;
    background: linear-gradient(135deg, var(--accent-wine), var(--charcoal-premium));
    color: white;
    text-align: center;
}

.final-cta-content {
    max-width: 600px;
    margin: 0 auto;
}

.final-cta h2 {
    font-size: 1.75rem;
    margin-bottom: 16px;
    line-height: 1.15;
    color: white;
}

.final-cta h2 strong {
    font-weight: 600;
    color: var(--gold);
    font-style: italic;
    display: block;
    margin-top: 8px;
}

.guarantee-box {
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(10px);
    padding: 24px 20px;
    border-radius: 16px;
    margin: 32px auto;
    border: 2px solid var(--gold);
}

.guarantee-box h3 {
    font-size: 1.3rem;
    margin-bottom: 12px;
    color: var(--gold);
}

.guarantee-box p {
    font-size: 0.95rem;
    line-height: 1.6;
}

/* Contact Info */
.contact-info {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.contact-item i {
    font-size: 1.2rem;
    color: var(--primary-color);
}

.contact-item a {
    color: var(--primary-color);
    text-decoration: none;
    padding: 8px;
    margin: -8px;
    display: inline-block;
}

/* Footer */
footer {
    background: var(--bg-dark);
    color: white;
    padding: 3rem 20px 2rem;
    text-align: center;
}

.footer-content {
    max-width: 800px;
    margin: 0 auto;
}

.footer-bottom {
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255,255,255,0.1);
}

footer a {
    color: var(--primary-color);
    text-decoration: none;
}

/* Modal */
.modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.8);
    align-items: center;
    justify-content: center;
}

.modal-content {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    max-width: 500px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
}

.modal-header {
    margin-bottom: 2rem;
}

.modal-header h3 {
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

.modal-header p {
    color: var(--text-light);
}

.modal-close {
    position: absolute;
    top: 0.5rem;
    right: 0.5rem;
    font-size: 2rem;
    border: none;
    background: none;
    cursor: pointer;
    color: #999;
    min-width: 44px;
    min-height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    touch-action: manipulation;
}

.modal-close:hover {
    color: #333;
}

/* Forms */
.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
}

.form-group input,
.form-group select {
    width: 100%;
    padding: 0.8rem;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 1rem;
}

.form-group input:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--primary-color);
}

.btn-submit {
    width: 100%;
    background: var(--primary-color);
    color: white;
    padding: 1.25rem;
    border: none;
    border-radius: 5px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    min-height: 48px;
    touch-action: manipulation;
    -webkit-appearance: none;
    appearance: none;
}

.btn-submit:hover {
    background: #b89651;
}

.btn-submit:active {
    transform: scale(0.98);
}

.btn-submit:focus {
    outline: 2px solid var(--primary-color);
    outline-offset: 2px;
}

/* Language Switcher */
.language-switcher {
    display: flex;
    gap: 0.5rem;
    margin-left: auto;
    align-items: center;
}

.lang-btn {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    padding: 0.5rem 0.75rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: white;
    font-size: 0.9rem;
    min-height: 40px;
}

.lang-btn:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: var(--primary-color);
}

.lang-btn.active {
    background: var(--primary-color);
    border-color: var(--primary-color);
    color: white;
}

.lang-flag {
    font-size: 1.2rem;
    line-height: 1;
}

.lang-code {
    font-weight: 600;
    font-size: 0.85rem;
}

@media (max-width: 767px) {
    .language-switcher {
        position: absolute;
        top: 1rem;
        right: 4rem;
    }
    
    .lang-btn {
        padding: 0.4rem 0.6rem;
    }
    
    .lang-code {
        display: none;
    }
}

/* Exit popup */
.exit-popup {
    display: none;
    position: fixed;
    z-index: 3000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.9);
    align-items: center;
    justify-content: center;
}

.exit-content {
    background: white;
    padding: 3rem;
    border-radius: 15px;
    max-width: 400px;
    width: 90%;
    text-align: center;
    position: relative;
}

.exit-content h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
}

.exit-content p {
    margin-bottom: 1rem;
    color: var(--text-light);
}

.exit-close {
    position: absolute;
    top: 0.5rem;
    right: 0.5rem;
    font-size: 2rem;
    border: none;
    background: none;
    cursor: pointer;
    color: #999;
    min-width: 44px;
    min-height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    touch-action: manipulation;
}

/* Countdown - Mobile First */
.countdown {
    background: rgba(201,169,97,0.15);
    padding: 16px;
    border-radius: 16px;
    margin: 20px auto;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(201,169,97,0.3);
    max-width: 320px;
}

.countdown-title {
    font-size: 1rem;
    margin-bottom: 16px;
    opacity: 0.9;
}

.countdown-timer {
    display: flex;
    justify-content: center;
    gap: 8px;
}

.countdown-item {
    background: rgba(255,255,255,0.1);
    padding: 10px 8px;
    border-radius: 12px;
    min-width: 56px;
}

.countdown-value {
    font-size: 1.5rem;
    font-weight: 400;
    color: var(--gold);
    display: block;
    line-height: 1;
}

.countdown-label {
    font-size: 0.75rem;
    opacity: 0.8;
    text-transform: uppercase;
}

/* Privacy notice */
.privacy-notice {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #333;
    color: white;
    padding: 1rem;
    text-align: center;
    font-size: 0.9rem;
    z-index: 1000;
}

.privacy-notice a {
    color: var(--primary-color);
    text-decoration: underline;
}

.privacy-close {
    position: absolute;
    right: 0.5rem;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
    min-width: 44px;
    min-height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    touch-action: manipulation;
}

/* Navbar animations */
@keyframes slideInDown {
    from {
        transform: translateY(-100%);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.mobile-nav {
    animation: slideInDown 0.5s ease-out;
}

/* Media Queries - Mobile First Approach */

/* Small devices (landscape phones, 576px and up) */
@media (min-width: 576px) {
    .hero h1 {
        font-size: 2rem;
    }
    
    .section-header h2 {
        font-size: 2rem;
    }
    
    .btn-primary {
        font-size: 1.1rem;
    }
    
    .trust-indicators {
        gap: 20px;
    }
    
    .trust-item {
        font-size: 0.875rem;
    }
    
    .trust-item i {
        font-size: 1.5rem;
    }
}

/* Tablets (768px and up) */
@media (min-width: 768px) {
    /* Typography scale up */
    h1 {
        font-size: 2.5rem;
    }
    
    h2 {
        font-size: 2rem;
    }
    
    h3 {
        font-size: 1.5rem;
    }
    
    h4 {
        font-size: 1.25rem;
    }
    
    body {
        font-size: 17px;
    }
    
    .mobile-nav {
        padding: 1rem 2rem;
    }
    
    .nav-logo-img {
        width: 45px;
        height: 45px;
    }
    
    .nav-logo-text {
        font-size: 1.6rem;
        display: block;
    }
    
    .hero {
        margin-top: 0;
        min-height: 100vh;
        padding: 50px 30px;
    }
    
    .hero h1 {
        font-size: 2.5rem;
        margin-bottom: 20px;
    }
    
    .hero h1 strong {
        display: inline;
        margin-top: 0;
        margin-left: 0.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.25rem;
        margin-bottom: 20px;
    }
    
    .hero-description {
        font-size: 1.1rem;
        margin-bottom: 32px;
    }
    
    /* Video overlay menos oscuro en tablets */
    .hero-video-wrapper::after {
        background: linear-gradient(rgba(74,14,30,0.7), rgba(201,169,97,0.7));
    }
    
    /* Show video on tablets */
    .hero-video-wrapper video {
        display: block;
    }
    
    /* Grids - 2 columns */
    .transparency-grid,
    .service-features,
    .experience-list,
    .testimonial-slider,
    .process-cards,
    .massage-grid,
    .tantric-pricing,
    .pricing-cards,
    .therapists-gallery,
    .discretion-features {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
    
    .atmosphere-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
        justify-items: center;
        max-width: 600px;
        margin: 0 auto;
    }
    
    /* Sections */
    section {
        padding: 60px 30px;
    }
    
    .section-header {
        margin-bottom: 3rem;
    }
    
    .section-header h2 {
        font-size: 2.25rem;
        margin-bottom: 1rem;
    }
    
    .section-header p {
        font-size: 1.1rem;
    }
    
    /* Cards and components */
    .transparency-card,
    .feature,
    .massage-card,
    .pricing-card {
        padding: 2rem;
    }
    
    .transparency-icon i,
    .feature-icon i {
        font-size: 3rem;
        margin-bottom: 1rem;
    }
    
    .massage-icon i {
        font-size: 2.5rem;
    }
    
    .atmosphere-image i {
        font-size: 3.5rem;
        margin-bottom: 1rem;
    }
    
    .discretion-icon i {
        font-size: 3rem;
        margin-bottom: 1rem;
    }
    
    /* Buttons */
    .btn-primary {
        max-width: 350px;
        padding: 18px 40px;
    }
    
    /* Therapist cards */
    .therapist-card img {
        height: 350px;
    }
    
    /* Final CTA */
    .final-cta {
        padding: 80px 40px;
    }
    
    .final-cta h2 {
        font-size: 2.25rem;
        margin-bottom: 24px;
    }
    
    /* Pricing cards */
    .pricing-card.featured {
        transform: scale(1.05);
    }
    
    .package-price {
        font-size: 3rem;
    }
    
    /* Gallery improvements */
    .gallery-container {
        max-width: 700px;
    }
    
    .gallery-slide img {
        aspect-ratio: 16/9;
    }
    
    .gallery-caption {
        font-size: 1rem;
        padding: 2rem 1.5rem 1.5rem;
    }
}

/* Desktop (1024px and up) */
@media (min-width: 1024px) {
    /* Typography scale up */
    h1 {
        font-size: 3rem;
    }
    
    h2 {
        font-size: 2.5rem;
    }
    
    h3 {
        font-size: 1.75rem;
    }
    
    h4 {
        font-size: 1.5rem;
    }
    
    .hero h1 {
        font-size: 3rem;
        margin-bottom: 24px;
    }
    
    .hero-subtitle {
        font-size: 1.5rem;
    }
    
    .hero-description {
        font-size: 1.2rem;
    }
    
    /* Video overlay aún menos oscuro en desktop */
    .hero-video-wrapper::after {
        background: linear-gradient(rgba(74,14,30,0.6), rgba(201,169,97,0.6));
    }
    
    /* Grids - 3 columns */
    .service-features,
    .massage-grid,
    .pricing-cards,
    .therapists-gallery {
        grid-template-columns: repeat(3, 1fr);
    }

    /* Transparency grid - 2 columns centered */
    .transparency-grid {
        grid-template-columns: repeat(2, 1fr);
        max-width: 900px;
        margin: 0 auto 2rem;
    }
    
    /* Auto-fit grids */
    .experience-list {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    }
    
    .tantric-pricing {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    }
    
    .atmosphere-grid {
        grid-template-columns: repeat(2, 1fr);
        justify-items: center;
        max-width: 600px;
        margin: 0 auto;
    }
    
    .discretion-features {
        grid-template-columns: repeat(4, 1fr);
    }
    
    /* Hero adjustments */
    .hero {
        padding: 60px 40px;
    }
    
    /* Sections */
    section {
        padding: 80px 40px;
    }
    
    .section-header h2 {
        font-size: 2.75rem;
    }
    
    /* Final CTA Desktop */
    .final-cta h2 {
        font-size: 2.5rem;
    }
    
    .final-cta {
        padding: 100px 40px;
    }
    
    .countdown-value {
        font-size: 2rem;
    }
    
    /* Therapist cards */
    .therapist-card img {
        height: 400px;
    }
}

/* Large desktop (1200px and up) */
@media (min-width: 1200px) {
    .hero h1 {
        font-size: 3.5rem;
    }
    
    /* Limit content width for readability */
    .container {
        max-width: 1200px;
    }
    
    .hero-content {
        max-width: 900px;
    }
}
