/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #8B0000;
    --primary-light: #A52A2A;
    --primary-dark: #660000;
    --secondary-color: #D4AF37;
    --accent-color: #FFD700;
    --sensual-pink: #FF69B4;
    --sensual-purple: #9932CC;
    --sensual-red: #DC143C;
    --text-primary: #1a1a1a;
    --text-secondary: #666666;
    --text-light: #ffffff;
    --background-primary: #ffffff;
    --background-secondary: #fafafa;
    --background-dark: #1a1a1a;
    --background-sensual: #0a0a0a;
    --border-color: #e0e0e0;
    --shadow-light: 0 4px 20px rgba(0, 0, 0, 0.08);
    --shadow-medium: 0 8px 32px rgba(0, 0, 0, 0.12);
    --shadow-heavy: 0 16px 64px rgba(0, 0, 0, 0.16);
    --shadow-sensual: 0 20px 60px rgba(139, 0, 0, 0.3);
    --gradient-primary: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-light) 100%);
    --gradient-secondary: linear-gradient(135deg, var(--secondary-color) 0%, var(--accent-color) 100%);
    --gradient-dark: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 100%);
    --gradient-dark-second-var: linear-gradient(135deg, #1c0d2a 0%, #390c0c 100%);
    --gradient-sensual: linear-gradient(135deg, #991c1c 0%, #96122c 50%, #672389 100%);
    --gradient-intimate: radial-gradient(ellipse at center, rgba(0, 0, 0, 0.2) 0%, rgba(21, 5, 8, 0.1) 50%, transparent 100%);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: var(--text-primary);
    background: #0a0a0a !important;
    overflow-x: hidden;
    position: relative;
    -webkit-overflow-scrolling: touch;
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 80%, rgba(139, 0, 0, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(153, 50, 204, 0.02) 0%, transparent 50%),
        radial-gradient(circle at 40% 40%, rgba(220, 20, 60, 0.01) 0%, transparent 50%);
    pointer-events: none;
    z-index: -1;
}

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

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', serif;
    font-weight: 600;
    line-height: 1.2;
}

.section-title {
    font-size: clamp(2rem, 4vw, 3.5rem);
    margin-bottom: 1rem;
    background: white;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-subtitle {
    font-size: 1.25rem;
    color: var(--text-secondary);
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(10, 10, 10, 0.9);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(139, 0, 0, 0.3);
    z-index: 1000;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 30px rgba(139, 0, 0, 0.1);
    transform: translateY(0);
}

.navbar.scrolled {
    background: rgba(5, 5, 5, 0.95);
    border-bottom: 1px solid rgba(139, 0, 0, 0.5);
    box-shadow: 0 8px 40px rgba(139, 0, 0, 0.2);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.logo-text {
    font-family: 'Playfair Display', serif;
    font-size: 1.75rem;
    font-weight: 700;
    background: var(--gradient-sensual);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    filter: drop-shadow(0 0 10px rgba(139, 0, 0, 0.3));
    animation: sensualGlow 6s ease-in-out infinite;
}

.nav-menu {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.nav-link {
    text-decoration: none;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
    padding: 0.5rem 0;
}

.nav-link:hover {
    color: var(--sensual-red);
    text-shadow: 0 0 10px rgba(220, 20, 60, 0.5);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-sensual);
    transition: width 0.3s ease;
    box-shadow: 0 0 5px rgba(139, 0, 0, 0.5);
}

.nav-link:hover::after {
    width: 100%;
}

.cta-nav {
    background: var(--gradient-sensual);
    color: var(--text-light) !important;
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(139, 0, 0, 0.3);
    border: 1px solid rgba(139, 0, 0, 0.3);
}

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

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

.cta-nav:hover {
    transform: translateY(-2px) scale(1.05);
    box-shadow: 0 8px 30px rgba(139, 0, 0, 0.5);
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.3);
}

.mobile-menu {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 30px;
    height: 30px;
    cursor: pointer;
    z-index: 1001;
}

.mobile-menu span {
    display: block;
    width: 25px;
    height: 3px;
    background: white;
    margin: 3px 0;
    transition: 0.3s;
    border-radius: 2px;
    box-shadow: 0 0 5px rgba(220, 20, 60, 0.3);
}

.mobile-menu.active span:nth-child(1) {
    transform: rotate(-45deg) translate(-5px, 6px);
}

.mobile-menu.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu.active span:nth-child(3) {
    transform: rotate(45deg) translate(-5px, -6px);
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-100%);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 50%, #231616 100%);
}

.hero-bg::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 30%, rgba(112, 0, 0, 0.3) 0%, transparent 40%),
        radial-gradient(circle at 80% 70%, rgba(220, 20, 60, 0.2) 0%, transparent 50%),
        radial-gradient(circle at 50% 50%, rgba(153, 50, 204, 0.1) 0%, transparent 60%);
    animation: pulseIntimate 8s ease-in-out infinite;
}

.gradient-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--gradient-intimate);
    opacity: 0.7;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    animation: fadeInUp 1s ease-out;
    color: var(--text-light);
}

.hero-content::before {
    content: '';
    position: absolute;
    top: -100px;
    left: -100px;
    right: -100px;
    bottom: -100px;
    background: radial-gradient(circle, rgba(0, 0, 0, 0.1) 0%, transparent 70%);
    filter: blur(40px);
    z-index: -1;
    animation: breathe 6s ease-in-out infinite;
}

.hero-title {
    margin-bottom: 2rem;
}

.title-line {
    display: block;
    font-size: clamp(3rem, 8vw, 6rem);
    font-weight: 700;
    background: var(--gradient-sensual);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.5rem;
    filter: drop-shadow(0 4px 8px rgba(139, 0, 0, 0.3));
    text-shadow: 0 0 30px rgba(220, 20, 60, 0.3);
}

.title-subtitle {
    display: block;
    font-size: clamp(1.25rem, 3vw, 2rem);
    color: rgba(255, 255, 255, 0.8);
    font-weight: 400;
    font-style: italic;
    text-shadow: 0 0 20px rgba(139, 0, 0, 0.5);
}

.hero-description {
    font-size: 1.5rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    font-weight: 300;
    letter-spacing: 0.5px;
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 4rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.stat {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    background: var(--gradient-sensual);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 0 30px rgba(139, 0, 0, 0.5);
    filter: drop-shadow(0 0 10px rgba(220, 20, 60, 0.3));
}

.stat-label {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
    text-transform: uppercase;
    letter-spacing: 1px;
    text-shadow: 0 1px 5px rgba(0, 0, 0, 0.5);
}

.hero-cta {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Buttons */
.cta-primary {
    background: var(--gradient-sensual);
    color: var(--text-light);
    border: none;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-sensual);
}

.cta-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.7s ease;
}

.cta-primary:hover::before {
    left: 100%;
}

.cta-primary:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 20px 60px rgba(139, 0, 0, 0.4);
    filter: brightness(1.1);
}

.cta-secondary {
    background: black;
    color: rgba(255, 255, 255, 0.9);
    border: 2px solid white;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
}

.cta-secondary::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--gradient-sensual);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: -1;
}

.cta-secondary:hover::before {
    opacity: 1;
}

.cta-secondary:hover {
    color: var(--text-light);
    border-color: var(--gradient-sensual) !important;
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(139, 0, 0, 0.3);
}

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

.cta-primary:hover .cta-arrow,
.cta-secondary:hover .cta-arrow {
    transform: translateX(4px);
}

.play-icon {
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    animation: bounce 2s infinite;
    transition: all 0.3s ease;
    z-index: 10;
}

.scroll-arrow {
    width: 30px;
    height: 30px;
    border-right: 2px solid var(--sensual-red);
    border-bottom: 2px solid var(--sensual-red);
    transform: rotate(45deg);
    filter: drop-shadow(0 0 10px rgba(220, 20, 60, 0.5));
    animation: sensualGlow 3s ease-in-out infinite;
}

/* Trust Section */
.trust-section {
    padding: 4rem 0;
    background: linear-gradient(135deg, #0f0f0f 0%, #1a1a1a 100%);
    border-top: 1px solid rgba(139, 0, 0, 0.2);
    position: relative;
    overflow: hidden;
}

.trust-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 25% 25%, rgba(139, 0, 0, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 75% 75%, rgba(153, 50, 204, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.trust-content {
    text-align: center;
}

.trust-text {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    color: rgba(255, 255, 255, 0.8);
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.trust-badges {
    display: flex;
    justify-content: center;
    gap: 3rem;
    flex-wrap: wrap;
}

.badge {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 1.5rem;
    background: rgba(26, 26, 26, 0.8);
    backdrop-filter: blur(10px);
    border-radius: 50px;
    box-shadow: 
        0 8px 32px rgba(139, 0, 0, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    font-weight: 500;
    color: rgba(255, 255, 255, 0.9);
    border: 1px solid rgba(139, 0, 0, 0.2);
    transition: all 0.3s ease;
}

.badge:hover {
    transform: translateY(-2px);
    box-shadow: 
        0 12px 40px rgba(139, 0, 0, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.15);
    border-color: rgba(139, 0, 0, 0.4);
}

.badge-icon {
    font-size: 1.5rem;
}

/* Expertise Section */
.expertise-section {
    padding: 6rem 0;
    background: linear-gradient(135deg, #000000 0%, #000000 100%);
    position: relative;
}

.expertise-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 20%, rgba(139, 0, 0, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(153, 50, 204, 0.02) 0%, transparent 50%);
    pointer-events: none;
}

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

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

.service-card {
    background: var(--gradient-dark-second-var);
    backdrop-filter: blur(10px);
    padding: 3rem 2rem;
    border-radius: 20px;
    box-shadow: 
        0 8px 32px rgba(0, 0, 0, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.8);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(139, 0, 0, 0.1);
}

.card-text1{
    color: white !important;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, transparent 0%, rgba(139, 0, 0, 0.02) 50%, transparent 100%);
    pointer-events: none;
}

.service-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 
        0 20px 60px rgba(139, 0, 0, 0.15),
        inset 0 1px 0 rgba(255, 255, 255, 0.9);
    border-color: rgba(139, 0, 0, 0.2);
}

.service-card.featured {
    background: var(--gradient-sensual);
    color: var(--text-light);
    transform: scale(1.05);
    position: relative;
    overflow: hidden;
    border: 2px white !important;
    box-shadow: var(--shadow-sensual);
    animation: sensualGlow 4s ease-in-out infinite;
}

.service-card.featured::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    animation: shimmer 8s linear infinite;
    pointer-events: none;
}

.featured-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: var(--accent-color);
    color: var(--text-primary);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}

.service-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    display: block;
}

.service-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    color: inherit;
}

.service-list {
    list-style: none;
    color: white !important;
    margin-bottom: 2rem;
}

.service-list li {
    padding: 0.5rem 0;
    position: relative;
    padding-left: 1.5rem;
}

.service-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--secondary-color);
    font-weight: bold;
}

.service-card.featured .service-list li::before {
    color: var(--accent-color);
}

.service-result {
    padding: 1rem;
    background: rgba(212, 175, 55, 0.1);
    border-radius: 10px;
    text-align: center;
}

.service-card.featured .service-result {
    background: rgba(255, 255, 255, 0.2);
}

.result-label {
    display: block;
    color: white !important;
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
}

.card-text2{
    color: white !important;
}

.result-value {
    display: block;
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--secondary-color);
}

.service-card.featured .result-value {
    color: var(--accent-color);
}

/* Velvet Days Section */
.velvet-days-section {
    padding: 6rem 0;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 50%, #2a1a2a 100%);
    color: var(--text-light);
    position: relative;
    overflow: hidden;
}

.velvet-days-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 10% 20%, rgba(139, 0, 0, 0.3) 0%, transparent 50%),
        radial-gradient(circle at 90% 80%, rgba(153, 50, 204, 0.2) 0%, transparent 50%),
        radial-gradient(circle at 50% 100%, rgba(220, 20, 60, 0.1) 0%, transparent 70%);
    pointer-events: none;
    animation: shimmer 10s ease-in-out infinite;
}

.velvet-days-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.velvet-days-text .section-title {
    color: var(--text-light);
    background: var(--gradient-secondary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-align: left;
}

.velvet-days-subtitle {
    font-size: 1.5rem;
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-style: italic;
}

.velvet-days-description {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 3rem;
    color: rgba(255, 255, 255, 0.9);
}

.velvet-features {
    margin-bottom: 3rem;
}

.feature {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 2rem;
}

.feature-icon {
    font-size: 2rem;
    margin-top: 0.25rem;
}

.feature-text h4 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
    color: var(--text-light);
}

.feature-text p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
}

.velvet-days-visual {
    position: relative;
}

.image-stack {
    position: relative;
    height: 500px;
}

.image-card {
    position: absolute;
    width: 280px;
    height: 200px;
    border-radius: 15px;
    background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
    box-shadow: var(--shadow-heavy);
    transition: transform 0.3s ease;
}

.image-1 {
    top: 0;
    left: 0;
    z-index: 3;
}

.image-2 {
    top: 100px;
    left: 100px;
    z-index: 2;
    opacity: 0.9;
}

.image-3 {
    top: 200px;
    left: 50px;
    z-index: 1;
    opacity: 0.8;
}

.image-stack:hover .image-card {
    transform: translateY(-20px) rotate(5deg);
}

/* Results Section */
.results-section {
    padding: 6rem 0;
    background: linear-gradient(135deg, #1a1a1a 0%, #2a1a2a 100%);
    position: relative;
    overflow: hidden;
}

.results-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 30% 30%, rgba(139, 0, 0, 0.2) 0%, transparent 60%),
        radial-gradient(circle at 70% 70%, rgba(153, 50, 204, 0.1) 0%, transparent 50%);
    pointer-events: none;
    animation: pulseIntimate 15s ease-in-out infinite;
}

.testimonials-slider {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
}

.testimonial {
    display: none;
    background: rgba(10, 10, 10, 0.9);
    backdrop-filter: blur(20px);
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 
        0 20px 60px rgba(63, 0, 0, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    text-align: center;
    border: 1px solid rgba(49, 0, 0, 0.2);
    position: relative;
}

.testimonial::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, transparent 0%, rgba(139, 0, 0, 0.05) 50%, transparent 100%);
    border-radius: 20px;
    pointer-events: none;
}

.testimonial.active {
    display: block;
    animation: fadeIn 0.5s ease;
}

.testimonial-text {
    margin-bottom: 2rem;
}

.testimonial blockquote {
    font-size: 1.25rem;
    line-height: 1.8;
    font-style: italic;
    margin-bottom: 1rem;
    color: rgba(255, 255, 255, 0.9);
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.testimonial cite {
    color: rgba(255, 255, 255, 0.7);
    font-weight: 500;
}

.stat-before-after {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    flex-wrap: wrap;
}

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

.stat-item .stat-label {
    display: block;
    font-size: 0.9rem;
    color: var(--text-secondary);
    margin-bottom: 0.5rem;
}

.stat-item .stat-value {
    display: block;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--sensual-red);
    text-shadow: 0 0 10px rgba(220, 20, 60, 0.3);
}

.stat-item .stat-value.highlight {
    color: var(--secondary-color);
    font-size: 1.75rem;
}

.stat-arrow {
    font-size: 1.5rem;
    color: var(--sensual-red);
    font-weight: bold;
    filter: drop-shadow(0 0 5px rgba(220, 20, 60, 0.4));
}

.slider-controls {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 2rem;
}

.slider-btn {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: none;
    background: var(--border-color);
    cursor: pointer;
    transition: all 0.3s ease;
}

.slider-btn.active {
    background: var(--sensual-red);
    transform: scale(1.2);
    box-shadow: 0 0 15px rgba(220, 20, 60, 0.5);
}

/* FAQ Section */
.faq-section {
    padding: 6rem 0;
    background: var(--gradient-dark-second-var);
    position: relative;
}

.faq-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 15% 15%, rgba(139, 0, 0, 0.02) 0%, transparent 50%),
        radial-gradient(circle at 85% 85%, rgba(153, 50, 204, 0.015) 0%, transparent 50%);
    pointer-events: none;
}

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

.faq-item {
    margin-bottom: 1rem;
    border: 1px solid rgba(139, 0, 0, 0.1);
    border-radius: 15px;
    overflow: hidden;
    background: rgba(26, 26, 26, 0.9);
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 20px rgba(139, 0, 0, 0.05);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-item:hover {
    border-color: rgba(139, 0, 0, 0.2);
    box-shadow: 0 8px 30px rgba(139, 0, 0, 0.1);
    transform: translateY(-2px);
}

.faq-question {
    width: 100%;
    padding: 1.5rem;
    background: rgba(26, 26, 26, 0.95);
    border: none;
    border-radius: 15px;
    text-align: left;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 1.1rem;
    font-weight: 600;
    color: white !important;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.faq-question span {
    color: white !important;
    position: relative;
    z-index: 2;
}

.faq-question::after {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 0%;
    height: 100%;
    background: var(--gradient-sensual);
    border-radius: 15px;
    opacity: 0;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1;
}

.faq-question:hover::after {
    width: 100%;
    opacity: 1;
}

.faq-question:hover {
    color: white !important;
    transform: scale(1.02);
    box-shadow: 0 8px 25px rgba(139, 0, 0, 0.3);
}

.faq-question:hover span {
    color: white !important;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.3);
}

.faq-icon {
    font-size: 1.5rem;
    color: white !important;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    transform-origin: center;
}

.faq-question.active .faq-icon {
    transform: rotate(45deg) scale(1.1);
    color: white !important;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    background: rgba(20, 20, 20, 0.95);
    border-top: 1px solid rgba(139, 0, 0, 0.1);
}

.faq-answer.active {
    max-height: 500px; /* Increased for longer answers */
    border-top-color: rgba(139, 0, 0, 0.3);
}

.faq-answer p {
    padding: 1.5rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.9) !important;
    font-size: 1rem;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
    animation: fadeInUp 0.5s ease-out;
    margin: 0;
}

.faq-answer.active p {
    animation: slideInFade 0.6s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

/* Contact Section */
.contact-section {
    padding: 6rem 0;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a0a1a 50%, #2a0a2a 100%);
    color: var(--text-light);
    position: relative;
    overflow: hidden;
}

.contact-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 30% 40%, rgba(139, 0, 0, 0.4) 0%, transparent 60%),
        radial-gradient(circle at 70% 60%, rgba(153, 50, 204, 0.3) 0%, transparent 50%);
    pointer-events: none;
    animation: pulseIntimate 12s ease-in-out infinite;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.contact-text .section-title {
    color: white;
    text-align: left;
}

.contact-subtitle {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 3rem;
}

.contact-benefits {
    margin-bottom: 2rem;
}

.benefit {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.benefit-icon {
    font-size: 1.5rem;
}

.contact-form-container {
    background: rgba(18, 18, 18, 0.8);
    backdrop-filter: blur(20px);
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 
        var(--shadow-heavy),
        inset 0 1px 0 rgba(255, 255, 255, 0.1),
        0 0 30px rgba(139, 0, 0, 0.3);
    border: 1px solid rgba(86, 0, 0, 0.2);
    position: relative;
}

.contact-form-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, transparent 30%, rgba(80, 0, 0, 0.05) 50%, transparent 70%);
    border-radius: 20px;
    pointer-events: none;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 1rem;
    border: 2px solid rgba(139, 0, 0, 0.3);
    border-radius: 10px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: rgba(10, 10, 10, 0.6);
    color: var(--text-light);
    backdrop-filter: blur(10px);
}

.form-group input::placeholder,
.form-group select::placeholder,
.form-group textarea::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--sensual-red);
    box-shadow: 
        0 0 20px rgba(139, 0, 0, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    background: rgba(20, 10, 10, 0.8);
}

.form-group textarea {
    resize: vertical;
    min-height: 100px;
}

.form-submit {
    margin-top: 1rem;
}

.form-privacy {
    text-align: center;
    color: var(--text-secondary);
    margin-top: 1rem;
}

/* Footer */
.footer {
    background: rgb(6, 6, 6);
    color: var(--text-light);
    padding: 3rem 0 1rem;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
}

.footer-logo .logo-text {
    color: var(--text-light);
}

.footer-logo p {
    color: rgba(255, 255, 255, 0.7);
    margin-top: 0.5rem;
}

.footer-links {
    display: flex;
    gap: 2rem;
}

.footer-link {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-link:hover {
    color: var(--text-light);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.5);
}

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

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateX(-50%) translateY(0);
    }
    40% {
        transform: translateX(-50%) translateY(-12px);
    }
    60% {
        transform: translateX(-50%) translateY(-6px);
    }
}

@keyframes pulseIntimate {
    0%, 100% {
        opacity: 0.6;
        transform: scale(1);
    }
    50% {
        opacity: 0.9;
        transform: scale(1.08);
    }
}

@keyframes breathe {
    0%, 100% {
        transform: scale(1);
        opacity: 0.7;
    }
    50% {
        transform: scale(1.12);
        opacity: 1;
    }
}

@keyframes shimmer {
    0%, 100% {
        opacity: 0.4;
        transform: translateX(-12px);
    }
    50% {
        opacity: 0.8;
        transform: translateX(12px);
    }
}

@keyframes sensualGlow {
    0%, 100% {
        filter: drop-shadow(0 0 8px rgba(139, 0, 0, 0.4));
    }
    50% {
        filter: drop-shadow(0 0 25px rgba(220, 20, 60, 0.7));
    }
}

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

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

@keyframes bounceIn {
    0% {
        opacity: 0;
        transform: scale(0.3) translateY(40px);
    }
    50% {
        opacity: 1;
        transform: scale(1.08) translateY(-8px);
    }
    70% {
        transform: scale(0.95) translateY(4px);
    }
    100% {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}

@keyframes glowPulse {
    0%, 100% {
        box-shadow: 0 0 10px rgba(139, 0, 0, 0.4);
    }
    50% {
        box-shadow: 0 0 30px rgba(220, 20, 60, 0.7);
    }
}

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

@keyframes smoothSlide {
    from {
        opacity: 0;
        transform: translateX(-40px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes floatGentle {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-8px);
    }
}

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

/* Enhanced Button Animations */
.cta-primary, .cta-secondary {
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    transform-origin: center;
}

.cta-primary:hover, .cta-secondary:hover {
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Enhanced Service Card Animations */
.service-card {
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    transform-origin: center;
}

.service-card:hover {
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Enhanced Navigation Animations */
.nav-link {
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.nav-link::after {
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Enhanced Trust Badge Animations */
.badge {
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    animation: floatGentle 6s ease-in-out infinite;
}

.badge:nth-child(2) {
    animation-delay: 2s;
}

.badge:nth-child(3) {
    animation-delay: 4s;
}

/* Enhanced Image Stack Animations */
.image-card {
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.image-stack:hover .image-1 {
    transform: translateY(-25px) rotate(8deg) scale(1.05);
}

.image-stack:hover .image-2 {
    transform: translateY(-20px) translateX(120px) rotate(-5deg) scale(1.02);
}

.image-stack:hover .image-3 {
    transform: translateY(-15px) translateX(60px) rotate(3deg) scale(1.03);
}

/* Enhanced Testimonial Animations */
.testimonial {
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.testimonial.active {
    animation: fadeInScale 0.8s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

/* Enhanced Form Animations */
.form-group input, .form-group select, .form-group textarea {
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Enhanced Scroll Indicator */
.scroll-indicator {
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Enhanced Feature Animations */
.feature {
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.feature:hover {
    transform: translateX(10px);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Enhanced Stat Animations */
.stat {
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.stat:hover {
    transform: scale(1.05);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Smooth Page Transitions */
.trust-section, .expertise-section, .velvet-days-section, 
.results-section, .faq-section, .contact-section {
    animation: slideInUp 1.2s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

.expertise-section {
    animation-delay: 0.2s;
}

.velvet-days-section {
    animation-delay: 0.4s;
}

.results-section {
    animation-delay: 0.6s;
}

.faq-section {
    animation-delay: 0.8s;
}

.contact-section {
    animation-delay: 1s;
}

/* Mobile Navigation */
.mobile-menu {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 30px;
    height: 30px;
    cursor: pointer;
    z-index: 1001;
}

.mobile-menu:hover {
    background: rgba(139, 0, 0, 0.1);
}

.mobile-menu span {
    display: block;
    width: 25px;
    height: 3px;
    background: white;
    margin: 3px 0;
    transition: 0.3s;
    border-radius: 2px;
    box-shadow: 0 0 5px rgba(220, 20, 60, 0.3);
}

.mobile-menu.active span:nth-child(1) {
    transform: rotate(-45deg) translate(-5px, 6px);
}

.mobile-menu.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu.active span:nth-child(3) {
    transform: rotate(45deg) translate(-5px, -6px);
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-100%);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Mobile Menu Overlay */
.nav-menu.active {
    display: flex;
    position: fixed;
    top: 80px;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(10, 10, 10, 0.98);
    backdrop-filter: blur(20px);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 3rem;
    z-index: 999;
    animation: slideDown 0.3s ease;
}

.nav-menu.active .nav-link {
    font-size: 1.5rem;
    color: rgba(255, 255, 255, 0.9);
    text-align: center;
    padding: 1rem 2rem;
    border-radius: 10px;
    transition: all 0.3s ease;
}

.nav-menu.active .nav-link:hover {
    background: rgba(139, 0, 0, 0.2);
    transform: scale(1.05);
}

.nav-menu.active .cta-nav {
    font-size: 1.25rem;
    padding: 1rem 2rem;
    margin-top: 2rem;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive Design - Mobile First Approach */
@media (max-width: 1200px) {
    .container {
        max-width: 100%;
        padding: 0 20px;
    }
    
    .services-grid {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 1.5rem;
    }
}

@media (max-width: 992px) {
    /* Navigation */
    .nav-menu {
        display: none;
    }
    
    .mobile-menu {
        display: flex;
    }
    
    .nav-container {
        padding: 1rem;
    }
    
    /* Hero Section */
    .hero {
        min-height: 90vh;
        padding: 2rem 0;
    }
    
    .hero-content {
        padding-top: 2rem;
        text-align: center;
    }
    
    .title-line {
        font-size: clamp(2.5rem, 8vw, 4rem);
    }
    
    .title-subtitle {
        font-size: clamp(1.1rem, 4vw, 1.5rem);
    }
    
    .hero-description {
        font-size: 1.2rem;
        margin-bottom: 2rem;
        padding: 0 1rem;
    }
    
    .hero-stats {
        flex-direction: column;
        gap: 1.5rem;
        margin: 2rem 0;
        align-items: center;
    }
    
    .stat {
        min-width: 200px;
        max-width: 250px;
    }
    
    .hero-cta {
        flex-direction: column;
        gap: 1rem;
        align-items: center;
    }
    
    .cta-primary, .cta-secondary {
        width: 100%;
        max-width: 300px;
        padding: 1.2rem 2rem;
        justify-content: center;
    }
    
    /* Trust Section */
    .trust-badges {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }
    
    .badge {
        width: 100%;
        max-width: 280px;
        justify-content: center;
        padding: 1rem 1.5rem;
    }
    
    /* Expertise Section */
    .services-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .service-card {
        padding: 2rem 1.5rem;
        margin-bottom: 1rem;
    }
    
    .service-card.featured {
        transform: scale(1);
        margin: 1rem 0;
    }
    
    /* Velvet Days Section */
    .velvet-days-content {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center;
    }
    
    .velvet-days-text .section-title {
        text-align: center;
    }
    
    .image-stack {
        height: 350px;
        margin: 0 auto;
        max-width: 400px;
    }
    
    .image-card {
        width: 220px;
        height: 160px;
    }
    
    .feature {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
        margin-bottom: 2rem;
    }
    
    /* Contact Section */
    .contact-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .contact-text .section-title {
        text-align: center;
    }
    
    .contact-subtitle {
        text-align: center;
    }
    
    .contact-form-container {
        padding: 2.5rem 2rem;
        margin: 0 1rem;
    }
    
    /* Testimonials */
    .testimonial {
        padding: 2rem 1.5rem;
        margin: 0 1rem;
    }
    
    .stat-before-after {
        flex-direction: column;
        gap: 1.5rem;
        align-items: center;
    }
    
    .stat-arrow {
        transform: rotate(90deg);
        font-size: 2rem;
    }
    
    /* Footer */
    .footer-content {
        flex-direction: column;
        gap: 2rem;
        text-align: center;
    }
    
    .footer-links {
        flex-direction: column;
        gap: 1rem;
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 16px;
    }
    
    /* Navigation */
    .nav-container {
        padding: 0.8rem 1rem;
    }
    
    .logo-text {
        font-size: 1.5rem;
    }
    
    /* Mobile Menu */
    .nav-menu.active {
        display: flex;
        position: fixed;
        top: 70px;
        left: 0;
        right: 0;
        bottom: 0;
        background: rgba(10, 10, 10, 0.98);
        backdrop-filter: blur(20px);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 2rem;
        z-index: 999;
        animation: slideDown 0.3s ease;
        padding: 2rem;
    }
    
    .nav-menu.active .nav-link {
        font-size: 1.3rem;
        color: rgba(255, 255, 255, 0.9);
        text-align: center;
        padding: 1rem 2rem;
        border-radius: 10px;
        width: 100%;
        max-width: 250px;
    }
    
    .nav-menu.active .cta-nav {
        font-size: 1.2rem;
        padding: 1rem 2rem;
        margin-top: 1rem;
    }
    
    /* Hero */
    .hero {
        min-height: 100vh;
        padding: 1rem 0;
    }
    
    .hero-content {
        padding-top: 1rem;
    }
    
    .title-line {
        font-size: clamp(2rem, 10vw, 3.5rem);
        margin-bottom: 0.5rem;
    }
    
    .title-subtitle {
        font-size: clamp(1rem, 5vw, 1.3rem);
    }
    
    .hero-description {
        font-size: 1.1rem;
        margin-bottom: 2rem;
        padding: 0 0.5rem;
        line-height: 1.5;
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    .stat-label {
        font-size: 0.85rem;
    }
    
    /* Sections */
    .section-title {
        font-size: clamp(1.8rem, 8vw, 2.8rem);
        margin-bottom: 1rem;
        text-align: center;
    }
    
    .section-subtitle {
        font-size: 1.1rem;
        margin-bottom: 2rem;
        padding: 0 1rem;
    }
    
    /* Service Cards */
    .service-card {
        padding: 2rem 1.5rem;
        margin-bottom: 1.5rem;
    }
    
    .service-card h3 {
        font-size: 1.3rem;
        margin-bottom: 1rem;
    }
    
    .service-icon {
        font-size: 2.5rem;
        margin-bottom: 1rem;
    }
    
    /* Velvet Days */
    .velvet-days-content {
        gap: 2rem;
    }
    
    .velvet-features {
        gap: 1.5rem;
    }
    
    .feature {
        margin-bottom: 1.5rem;
    }
    
    .feature-icon {
        font-size: 1.8rem;
    }
    
    .feature-text h4 {
        font-size: 1.2rem;
        margin-bottom: 0.5rem;
    }
    
    .feature-text p {
        font-size: 0.95rem;
        line-height: 1.5;
    }
    
    /* Image Stack */
    .image-stack {
        height: 300px;
        max-width: 350px;
    }
    
    .image-card {
        width: 200px;
        height: 140px;
    }
    
    /* Contact Form */
    .contact-form-container {
        padding: 2rem 1.5rem;
        margin: 0 0.5rem;
    }
    
    .form-group input,
    .form-group select,
    .form-group textarea {
        padding: 1.2rem;
        font-size: 16px; /* Prevents zoom on iOS */
        border-radius: 8px;
    }
    
    /* FAQ */
    .faq-list {
        margin: 0 0.5rem;
    }
    
    .faq-question {
        padding: 1.2rem;
        font-size: 1rem;
        line-height: 1.4;
    }
    
    .faq-answer p {
        padding: 1.2rem;
        font-size: 0.95rem;
        line-height: 1.6;
    }
    
    /* Testimonials */
    .testimonial {
        padding: 1.5rem 1rem;
        margin: 0 0.5rem;
    }
    
    .testimonial blockquote {
        font-size: 1.1rem;
        line-height: 1.6;
    }
    
    .stat-item .stat-value {
        font-size: 1.3rem;
    }
    
    .stat-item .stat-value.highlight {
        font-size: 1.5rem;
    }
    
    /* Loader Mobile */
    .loader-text {
        font-size: 2.5rem;
    }
    
    .loader-tagline {
        font-size: 1rem;
    }
    
    .loader-progress {
        width: 250px;
    }
    
    .loader-animation {
        gap: 0.8rem;
        margin-bottom: 2rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 12px;
    }
    
    /* Navigation */
    .nav-container {
        padding: 0.7rem 0.8rem;
    }
    
    .logo-text {
        font-size: 1.3rem;
    }
    
    .mobile-menu span {
        width: 22px;
        height: 2px;
    }
    
    /* Hero */
    .hero {
        min-height: 100vh;
        padding: 0.5rem 0;
    }
    
    .title-line {
        font-size: clamp(1.8rem, 12vw, 3rem);
        line-height: 1.1;
    }
    
    .title-subtitle {
        font-size: clamp(0.9rem, 6vw, 1.2rem);
    }
    
    .hero-description {
        font-size: 1rem;
        padding: 0 0.5rem;
        margin-bottom: 1.5rem;
    }
    
    .hero-stats {
        gap: 1rem;
        margin: 1.5rem 0;
    }
    
    .stat {
        min-width: 150px;
        max-width: 180px;
    }
    
    .stat-number {
        font-size: 1.8rem;
    }
    
    .stat-label {
        font-size: 0.8rem;
    }
    
    .cta-primary, .cta-secondary {
        padding: 1rem 1.5rem;
        font-size: 0.95rem;
        max-width: 280px;
    }
    
    /* Sections */
    .section-title {
        font-size: clamp(1.5rem, 10vw, 2.2rem);
        margin-bottom: 0.8rem;
        line-height: 1.2;
    }
    
    .section-subtitle {
        font-size: 1rem;
        margin-bottom: 1.5rem;
        padding: 0 0.5rem;
    }
    
    /* Trust Badges */
    .trust-text {
        font-size: 1.1rem;
        margin-bottom: 1.5rem;
        padding: 0 1rem;
    }
    
    .badge {
        padding: 0.8rem 1.2rem;
        font-size: 0.9rem;
        max-width: 250px;
    }
    
    .badge-icon {
        font-size: 1.3rem;
    }
    
    /* Service Cards */
    .service-card {
        padding: 1.5rem 1.2rem;
        margin-bottom: 1rem;
    }
    
    .service-card h3 {
        font-size: 1.2rem;
        line-height: 1.3;
    }
    
    .service-icon {
        font-size: 2.2rem;
    }
    
    .service-list li {
        font-size: 0.9rem;
        padding: 0.4rem 0;
    }
    
    /* Velvet Days */
    .velvet-days-content {
        gap: 1.5rem;
    }
    
    .feature {
        margin-bottom: 1.2rem;
    }
    
    .feature-icon {
        font-size: 1.6rem;
    }
    
    .feature-text h4 {
        font-size: 1.1rem;
    }
    
    .feature-text p {
        font-size: 0.9rem;
    }
    
    /* Image Stack */
    .image-stack {
        height: 250px;
        max-width: 300px;
    }
    
    .image-card {
        width: 170px;
        height: 120px;
    }
    
    /* Contact */
    .contact-content {
        gap: 2rem;
    }
    
    .contact-form-container {
        padding: 1.5rem 1rem;
        margin: 0 0.2rem;
    }
    
    .contact-benefits {
        gap: 0.8rem;
    }
    
    .benefit {
        font-size: 0.95rem;
        align-items: center;
        text-align: center;
        gap: 0.8rem;
    }
    
    .benefit-icon {
        font-size: 1.3rem;
    }
    
    /* FAQ */
    .faq-list {
        margin: 0 0.2rem;
    }
    
    .faq-question {
        padding: 1rem;
        font-size: 0.95rem;
    }
    
    .faq-answer p {
        padding: 1rem;
        font-size: 0.9rem;
    }
    
    /* Testimonials */
    .testimonial {
        padding: 1.2rem 0.8rem;
        margin: 0 0.2rem;
    }
    
    .testimonial blockquote {
        font-size: 1rem;
        line-height: 1.5;
    }
    
    .testimonial cite {
        font-size: 0.85rem;
    }
    
    .stat-item .stat-label {
        font-size: 0.8rem;
    }
    
    .stat-item .stat-value {
        font-size: 1.2rem;
    }
    
    .stat-item .stat-value.highlight {
        font-size: 1.4rem;
    }
    
    /* Footer */
    .footer {
        padding: 2rem 0 1rem;
    }
    
    .footer-logo .logo-text {
        font-size: 1.4rem;
    }
    
    .footer-logo p {
        font-size: 0.9rem;
    }
    
    .footer-link {
        font-size: 0.9rem;
        padding: 0.5rem 0;
    }
    
    .footer-bottom p {
        font-size: 0.8rem;
    }
    
    /* Loader Mobile */
    .loader-text {
        font-size: 2rem;
    }
    
    .loader-tagline {
        font-size: 0.9rem;
    }
    
    .loader-progress {
        width: 200px;
    }
    
    .loader-circle {
        width: 16px;
        height: 16px;
    }
    
    .loader-animation {
        gap: 0.8rem;
        margin-bottom: 2rem;
    }
}

/* Extra Small Devices */
@media (max-width: 360px) {
    .container {
        padding: 0 10px;
    }
    
    .title-line {
        font-size: clamp(1.6rem, 14vw, 2.5rem);
    }
    
    .hero-description {
        font-size: 0.95rem;
    }
    
    .stat {
        min-width: 130px;
        max-width: 160px;
    }
    
    .cta-primary, .cta-secondary {
        padding: 0.9rem 1.2rem;
        font-size: 0.9rem;
        max-width: 260px;
    }
    
    .service-card {
        padding: 1.2rem 1rem;
    }
    
    .contact-form-container {
        padding: 1.2rem 0.8rem;
    }
    
    .testimonial {
        padding: 1rem 0.6rem;
    }
    
    .faq-question {
        padding: 0.8rem;
        font-size: 0.9rem;
    }
}

/* Landscape Mobile Optimization */
@media (max-width: 768px) and (orientation: landscape) {
    .hero {
        min-height: 100vh;
        padding: 1rem 0;
    }
    
    .hero-content {
        padding-top: 0.5rem;
    }
    
    .hero-stats {
        flex-direction: row;
        gap: 1rem;
        margin: 1rem 0;
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .velvet-days-content {
        gap: 2rem;
    }
    
    .nav-menu.active {
        top: 60px;
        padding: 1rem;
        gap: 1.5rem;
    }
    
    .nav-menu.active .nav-link {
        padding: 0.8rem 1.5rem;
        font-size: 1.1rem;
    }
}

/* Touch-specific optimizations */
@media (hover: none) and (pointer: coarse) {
    .service-card:hover,
    .badge:hover,
    .faq-item:hover {
        transform: none;
    }
    
    .service-card:active {
        transform: scale(0.98);
        transition: transform 0.1s ease;
    }
    
    .cta-primary:active,
    .cta-secondary:active {
        transform: scale(0.95);
        transition: transform 0.1s ease;
    }
    
    .nav-link:hover {
        background: rgba(139, 0, 0, 0.1);
    }
    
    /* Better button touch targets */
    .cta-primary,
    .cta-secondary,
    .faq-question,
    .nav-link {
        min-height: 44px; /* iOS recommended touch target */
        display: flex;
        align-items: center;
        justify-content: center;
    }
}

/* High-density displays */
@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
    .hero-bg,
    .velvet-days-section,
    .contact-section {
        background-attachment: scroll; /* Better performance on mobile */
    }
}

/* Accessibility - Reduced Motion */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
    
    .hero-bg::before,
    .velvet-days-section::before,
    .contact-section::before {
        animation: none !important;
    }
    
    .scroll-indicator {
        animation: none !important;
    }
}

/* Safe area handling for notched devices */
@supports (padding: max(0px)) {
    .navbar {
        padding-left: max(16px, env(safe-area-inset-left));
        padding-right: max(16px, env(safe-area-inset-right));
    }
    
    .container {
        padding-left: max(16px, env(safe-area-inset-left));
        padding-right: max(16px, env(safe-area-inset-right));
    }
    
    @media (max-width: 768px) {
        .nav-menu.active {
            padding-left: max(16px, env(safe-area-inset-left));
            padding-right: max(16px, env(safe-area-inset-right));
            padding-bottom: max(16px, env(safe-area-inset-bottom));
        }
    }
}

/* Print styles */
@media print {
    .navbar,
    .scroll-indicator,
    .mobile-menu,
    .loader-overlay {
        display: none !important;
    }
    
    body {
        background: white !important;
        color: black !important;
    }
    
    .hero-bg,
    .velvet-days-section::before,
    .contact-section::before {
        display: none !important;
    }
    
    .section-title,
    .hero-title {
        color: black !important;
        background: none !important;
        -webkit-text-fill-color: initial !important;
    }
} 

/* Premium Loader Styles */
.loader-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a0a1a 50%, #2a0a2a 100%);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.loader-overlay.fade-out {
    opacity: 0;
    visibility: hidden;
    transform: scale(1.1);
}

.loader-container {
    text-align: center;
    position: relative;
    z-index: 2;
}

.loader-logo {
    margin-bottom: 3rem;
}

.loader-text {
    font-family: 'Playfair Display', serif;
    font-size: 3.5rem;
    font-weight: 700;
    background: var(--gradient-sensual);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: block;
    margin-bottom: 1rem;
    animation: loaderTextGlow 2s ease-in-out infinite;
}

.loader-tagline {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.8);
    font-style: italic;
    animation: loaderFadeIn 1s ease-out 0.5s both;
}

.loader-animation {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 3rem;
}

.loader-circle {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: var(--gradient-sensual);
    animation: loaderBounce 1.4s ease-in-out infinite both;
    box-shadow: 0 0 20px rgba(139, 0, 0, 0.5);
}

.loader-circle:nth-child(1) {
    animation-delay: -0.32s;
}

.loader-circle:nth-child(2) {
    animation-delay: -0.16s;
}

.loader-circle:nth-child(3) {
    animation-delay: 0s;
}

.loader-progress {
    width: 300px;
    height: 4px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 2px;
    margin: 0 auto 1.5rem;
    overflow: hidden;
    position: relative;
}

.loader-progress-bar {
    height: 100%;
    background: var(--gradient-sensual);
    border-radius: 2px;
    width: 0%;
    transition: width 0.3s ease-out;
    position: relative;
    box-shadow: 0 0 15px rgba(139, 0, 0, 0.6);
}

.loader-progress-bar::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    animation: loaderShimmer 2s infinite;
}

.loader-percentage {
    font-size: 1.1rem;
    color: var(--sensual-red);
    font-weight: 600;
    font-family: 'Inter', sans-serif;
}

.loader-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 1;
}

.loader-particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: var(--sensual-red);
    border-radius: 50%;
    animation: loaderFloat 6s linear infinite;
    box-shadow: 0 0 10px rgba(220, 20, 60, 0.5);
}

.loader-particle:nth-child(1) {
    left: 10%;
    animation-delay: 0s;
    animation-duration: 8s;
}

.loader-particle:nth-child(2) {
    left: 20%;
    animation-delay: 2s;
    animation-duration: 6s;
}

.loader-particle:nth-child(3) {
    left: 80%;
    animation-delay: 4s;
    animation-duration: 10s;
}

.loader-particle:nth-child(4) {
    left: 90%;
    animation-delay: 1s;
    animation-duration: 7s;
}

.loader-particle:nth-child(5) {
    left: 50%;
    animation-delay: 3s;
    animation-duration: 9s;
}

/* Loader Animations */
@keyframes loaderTextGlow {
    0%, 100% {
        filter: drop-shadow(0 0 10px rgba(139, 0, 0, 0.4));
        transform: scale(1);
    }
    50% {
        filter: drop-shadow(0 0 25px rgba(220, 20, 60, 0.8));
        transform: scale(1.02);
    }
}

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

@keyframes loaderBounce {
    0%, 80%, 100% {
        transform: scale(0.8);
        opacity: 0.5;
    }
    40% {
        transform: scale(1.2);
        opacity: 1;
    }
}

@keyframes loaderShimmer {
    0% {
        transform: translateX(-100%);
    }
    100% {
        transform: translateX(100%);
    }
}

@keyframes loaderFloat {
    0% {
        transform: translateY(100vh) scale(0);
        opacity: 0;
    }
    10% {
        opacity: 1;
        transform: translateY(90vh) scale(1);
    }
    90% {
        opacity: 1;
        transform: translateY(-10vh) scale(1);
    }
    100% {
        transform: translateY(-100vh) scale(0);
        opacity: 0;
    }
}

/* Hide content during loading */
body.loading .navbar,
body.loading .hero,
body.loading .trust-section,
body.loading .expertise-section,
body.loading .velvet-days-section,
body.loading .results-section,
body.loading .faq-section,
body.loading .contact-section,
body.loading .footer {
    opacity: 0;
    pointer-events: none;
}

/* Mobile responsive loader */
@media (max-width: 768px) {
    .loader-text {
        font-size: 2.5rem;
    }
    
    .loader-tagline {
        font-size: 1rem;
    }
    
    .loader-progress {
        width: 250px;
    }
    
    .loader-animation {
        margin-bottom: 2rem;
    }
}

@media (max-width: 480px) {
    .loader-text {
        font-size: 2rem;
    }
    
    .loader-progress {
        width: 200px;
    }
} 

/* Slider Controls */
.slider-controls {
    display: flex;
    justify-content: center;
    gap: 0.75rem;
    margin-top: 2.5rem;
}

.slider-btn {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: none;
    background: rgba(255, 255, 255, 0.4);
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    flex-shrink: 0; /* Prevents shrinking */
}

.slider-btn:hover {
    background: rgba(255, 255, 255, 0.7);
    transform: scale(1.2);
}

.slider-btn.active {
    background: white;
    transform: scale(1.3);
}

/* Mobile Navbar Background Fix */
@media (max-width: 992px) {
    .navbar {
        background: rgba(10, 10, 10, 0.95);
        backdrop-filter: blur(20px);
        border-bottom: 1px solid rgba(139, 0, 0, 0.1);
    }
}

/* Feature Icon and Text Alignment Fix */
.feature {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: rgba(26, 26, 26, 0.5);
    border-radius: 15px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.feature:hover {
    background: rgba(26, 26, 26, 0.7);
    transform: translateY(-2px);
}

.feature-icon {
    font-size: 2.5rem;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    background: var(--gradient-sensual);
    border-radius: 12px;
    margin-top: 0;
}

.feature-text {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.feature-text h4 {
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: white;
    line-height: 1.3;
}

.feature-text p {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.5;
    margin: 0;
} 

/* Feature Mobile Responsive */
@media (max-width: 768px) {
    .feature {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
        margin-bottom: 1.5rem;
        padding: 1.5rem 1rem;
    }
    
    .feature-icon {
        width: 50px;
        height: 50px;
        font-size: 2rem;
        margin: 0 auto;
        align-self: center;
    }
    
    .feature-text {
        align-items: center;
        text-align: center;
    }
    
    .feature-text h4 {
        font-size: 1.2rem;
        text-align: center;
    }
    
    .feature-text p {
        font-size: 0.95rem;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .feature {
        padding: 1.2rem 0.8rem;
        margin-bottom: 1.2rem;
    }
    
    .feature-icon {
        width: 45px;
        height: 45px;
        font-size: 1.8rem;
    }
    
    .feature-text h4 {
        font-size: 1.1rem;
        line-height: 1.3;
    }
    
    .feature-text p {
        font-size: 0.9rem;
    }
    
    /* Slider Controls Mobile */
    .slider-controls {
        margin-top: 2rem;
        gap: 1rem;
    }
    
    .slider-btn {
        width: 14px;
        height: 14px;
    }
    
    .slider-btn:hover,
    .slider-btn.active {
        transform: scale(1.2);
    }
}

/* Mobile menu body lock */
body.menu-open {
    overflow: hidden;
    position: fixed;
    width: 100%;
}

/* Remove tap highlight on mobile */
* {
    -webkit-tap-highlight-color: transparent;
}