/*
Theme Name: Zenchesoi Theme
Theme URI: https://zenchesoi.bj
Description: Thème WordPress Premium pour Spa à domicile, converti depuis la landing page Zenchesoi.
Author: Antigravity
Version: 1.0.0
Text Domain: zenchesoi
*/

:root {
    /* Palette de Couleurs Premium - Liquid Glass Luxury */
    --primary: #050B18;
    /* Obsidian Navy Deep */
    --primary-light: #0A1630;
    --secondary: #D4AF37;
    /* Antique Gold */
    --secondary-dark: #B38F2D;
    --accent: #E63946;
    /* Sophisticated Red for CTAs */
    --bg-light: #FDFBF7;
    /* Warm Premium Cream */
    --bg-white: #FFFFFF;
    --bg-glass: rgba(255, 255, 255, 0.03);
    --bg-glass-dark: rgba(5, 11, 24, 0.85);
    --text-main: #1A1A1A;
    --text-light: #FDFBF7;
    --text-muted: #64748B;
    --text-gold: #D4AF37;

    /* Gradients & Effects */
    --gradient-gold: linear-gradient(135deg, #D4AF37 0%, #B38F2D 100%);
    --gradient-navy: linear-gradient(135deg, #050B18 0%, #0A1630 100%);
    --aurora-1: rgba(10, 22, 48, 0.5);
    --aurora-2: rgba(212, 175, 55, 0.1);

    /* Shadows & Depth */
    --shadow-premium: 0 30px 60px -12px rgba(0, 0, 0, 0.18);
    --shadow-gold: 0 20px 40px rgba(212, 175, 55, 0.15);
    --blur: saturate(180%) blur(25px);

    /* Border Radius & Layout */
    --radius-xl: 32px;
    --radius-lg: 20px;
    --radius-md: 12px;
    --container-width: 1300px;
    --ease-out-expo: cubic-bezier(0.16, 1, 0.3, 1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    color: var(--text-main);
    background-color: var(--bg-light);
    line-height: 1.7;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

h1,
h2,
h3,
h4 {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 600;
    line-height: 1.1;
    letter-spacing: -0.01em;
}

.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 40px;
}

section {
    padding: 140px 0;
    position: relative;
}

.glass-card {
    background: var(--bg-glass);
    backdrop-filter: var(--blur);
    -webkit-backdrop-filter: var(--blur);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-xl);
    padding: 50px;
    transition: all 0.5s var(--ease-out-expo);
}

.section-header {
    max-width: 800px;
    margin: 0 auto 100px;
    text-align: center;
}

.section-header span {
    color: var(--secondary);
    text-transform: uppercase;
    letter-spacing: 4px;
    font-size: 0.8rem;
    font-weight: 600;
    display: block;
    margin-bottom: 20px;
    font-family: 'Inter', sans-serif;
}

/* Utility Classes */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 20px 40px;
    border-radius: 100px;
    text-decoration: none;
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-size: 0.85rem;
    transition: all 0.4s var(--ease-out-expo);
    cursor: pointer;
    border: none;
}

.btn-whatsapp {
    background: var(--gradient-gold);
    color: var(--primary);
    box-shadow: var(--shadow-gold);
    position: relative;
    overflow: hidden;
}

.btn-whatsapp::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transform: rotate(45deg);
    transition: 0.6s;
    pointer-events: none;
}

.btn-whatsapp:hover::after {
    left: 100%;
}

.badge-gold {
    background: rgba(212, 175, 55, 0.1);
    color: var(--secondary);
    border: 1px solid rgba(212, 175, 55, 0.2);
    padding: 8px 24px;
    border-radius: 100px;
    font-size: 0.8rem;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 25px;
    font-family: 'Inter', sans-serif;
}

/* Modern Header */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 30px 0;
    z-index: 1000;
    transition: all 0.5s var(--ease-out-expo);
}

header.scrolled {
    background: var(--bg-glass-dark);
    backdrop-filter: var(--blur);
    -webkit-backdrop-filter: var(--blur);
    padding: 15px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.header-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo img {
    height: 70px;
    width: auto;
    transition: all 0.5s var(--ease-out-expo);
    filter: brightness(0) invert(1);
}

header.scrolled .logo img {
    height: 50px;
}

/* Hero Section Premium */
#hero {
    height: 100vh;
    min-height: 800px;
    position: relative;
    display: flex;
    align-items: center;
    color: var(--text-light);
    text-align: center;
    overflow: hidden;
    background-color: var(--primary);
}

/* Aurora Background Effect */
#hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background:
        radial-gradient(circle at 20% 30%, var(--aurora-1) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, var(--aurora-2) 0%, transparent 50%);
    filter: blur(80px);
    z-index: 2;
    opacity: 0.6;
    animation: aurora-drift 20s infinite alternate linear;
}

@keyframes aurora-drift {
    0% {
        transform: scale(1) translate(0, 0);
    }

    100% {
        transform: scale(1.1) translate(20px, 10px);
    }
}

.hero-slider {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 2s ease-in-out;
    transform: scale(1.1);
}

.hero-slide.active {
    opacity: 1;
    animation: ken-burns 10s forwards linear;
}

@keyframes ken-burns {
    from {
        transform: scale(1.1);
    }

    to {
        transform: scale(1);
    }
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom,
            rgba(5, 11, 24, 0.4) 0%,
            rgba(5, 11, 24, 0.7) 100%);
    z-index: 2;
}

#hero .container {
    position: relative;
    z-index: 10;
}

#hero h1 {
    font-size: clamp(3rem, 8vw, 5.5rem);
    margin-bottom: 30px;
    line-height: 1;
    font-weight: 500;
}

#hero p {
    font-size: clamp(1.1rem, 2vw, 1.3rem);
    max-width: 900px;
    margin: 0 auto 45px;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.8);
    font-family: 'Inter', sans-serif;
}

.usp-list {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-bottom: 50px;
    flex-wrap: wrap;
}

.usp-item {
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 500;
    color: var(--text-light);
    background: rgba(255, 255, 255, 0.05);
    padding: 10px 20px;
    border-radius: 50px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
}

.usp-item i {
    color: var(--secondary);
}

.social-proof-hero {
    margin-top: 60px;
}

/* Problem Section */
#problem {
    background-color: var(--bg-light);
}

.section-title h2 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    color: var(--primary);
    margin-bottom: 25px;
}

.problem-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.problem-card {
    background: var(--bg-white);
    padding: 50px 40px;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-premium);
    text-align: left;
    transition: all 0.5s var(--ease-out-expo);
    border: 1px solid rgba(0, 0, 0, 0.03);
    position: relative;
    overflow: hidden;
}

.problem-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 40px 80px -15px rgba(0, 0, 0, 0.12);
}

.problem-card i {
    font-size: 2.5rem;
    color: var(--secondary);
    margin-bottom: 30px;
    display: block;
}

.problem-card h3 {
    font-size: 1.8rem;
    margin-bottom: 20px;
    color: var(--primary);
}

.problem-card p {
    color: var(--text-muted);
    font-size: 1rem;
}

/* Solution Section */
#solution {
    background-color: var(--bg-white);
}

.solution-content {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 100px;
    align-items: center;
}

.solution-img {
    position: relative;
}

.solution-img img {
    width: 100%;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-premium);
}

.solution-img::after {
    content: '';
    position: absolute;
    top: -20px;
    left: -20px;
    width: 100%;
    height: 100%;
    border: 2px solid var(--secondary);
    border-radius: var(--radius-xl);
    z-index: -1;
    opacity: 0.3;
}

.check-list {
    list-style: none;
    margin: 40px 0;
}

.check-list li {
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 20px;
    font-weight: 500;
    font-size: 1.1rem;
}

.check-list li i {
    color: var(--secondary);
    font-size: 1.4rem;
    flex-shrink: 0;
}

/* Pricing Section Premium */
#pricing {
    background-color: var(--primary);
    color: var(--text-light);
    overflow: hidden;
}

#pricing .section-title h2 {
    color: var(--text-light);
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-top: 60px;
}

.pricing-card {
    background: var(--bg-white);
    color: var(--text-main);
    border-radius: var(--radius-xl);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: all 0.6s var(--ease-out-expo);
    position: relative;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.pricing-card:hover {
    transform: translateY(-20px);
    box-shadow: var(--shadow-gold);
}

.pricing-card.featured {
    transform: scale(1.08);
    border: 2px solid var(--secondary);
    z-index: 10;
}

.pricing-card.featured:hover {
    transform: scale(1.1) translateY(-20px);
}

.card-img-wrapper {
    width: 100%;
    height: 240px;
    overflow: hidden;
    position: relative;
}

.card-img-wrapper::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 50%;
    background: linear-gradient(to top, var(--bg-white), transparent);
}

.card-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 1.2s var(--ease-out-expo);
}

.pricing-card:hover .card-img-wrapper img {
    transform: scale(1.15);
}

.card-body {
    padding: 40px 30px;
    text-align: center;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.card-badge {
    background: rgba(212, 175, 55, 0.1);
    color: var(--secondary);
    padding: 6px 16px;
    border-radius: 100px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    display: inline-block;
    margin-bottom: 20px;
    align-self: center;
    letter-spacing: 1px;
}

.pricing-card h3 {
    font-size: 2rem;
    margin-bottom: 15px;
    color: var(--primary);
}

.price {
    font-size: 2.8rem;
    font-family: 'Cormorant Garamond', serif;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 25px;
}

.price span {
    font-size: 1rem;
    color: var(--text-muted);
    font-weight: 400;
    font-family: 'Inter', sans-serif;
}

.pricing-list {
    list-style: none;
    margin-bottom: 40px;
    text-align: left;
    flex-grow: 1;
}

.pricing-list li {
    font-size: 0.95rem;
    margin-bottom: 15px;
    display: flex;
    gap: 15px;
    color: var(--text-muted);
    line-height: 1.4;
}

.pricing-list li i {
    color: var(--secondary);
    margin-top: 4px;
}

.btn-pricing {
    width: 100%;
    padding: 18px;
    font-size: 0.9rem;
}

.btn-gold {
    background-color: var(--secondary);
    color: var(--primary);
}

/* Process Section Premium */
.process-timeline {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
    margin-top: 80px;
    position: relative;
}

.process-step {
    text-align: center;
    padding: 40px 20px;
    position: relative;
    background: var(--bg-white);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(0, 0, 0, 0.03);
    transition: all 0.4s var(--ease-out-expo);
}

.process-step:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-premium);
}

.step-icon {
    width: 70px;
    height: 70px;
    background: var(--primary);
    color: var(--secondary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    font-size: 1.5rem;
    font-weight: 700;
    font-family: 'Cormorant Garamond', serif;
    box-shadow: var(--shadow-gold);
}

.process-step h4 {
    font-size: 1.2rem;
    margin-bottom: 15px;
    letter-spacing: 1px;
    color: var(--primary);
}

.process-step p {
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.5;
}

/* Testimonials Premium */
.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.testimonial-card {
    background: var(--bg-white);
    padding: 50px 40px;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-premium);
    border: 1px solid rgba(0, 0, 0, 0.02);
    position: relative;
}

.testimonial-card::before {
    content: '\f10d';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    top: 40px;
    right: 40px;
    font-size: 3rem;
    color: rgba(212, 175, 55, 0.1);
}

.client-info {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-top: 30px;
}

.client-img {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--secondary);
    padding: 3px;
}

.client-meta h4 {
    font-size: 1.1rem;
    margin-bottom: 5px;
}

.client-meta p {
    font-size: 0.85rem;
    color: var(--text-muted);
}

.stars {
    color: var(--secondary);
    margin-bottom: 25px;
    font-size: 0.9rem;
}

/* FAQ Premium */
.faq-accordion {
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    background: var(--bg-white);
    border-radius: var(--radius-lg);
    margin-bottom: 20px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
    border: 1px solid rgba(0, 0, 0, 0.03);
    transition: all 0.3s ease;
}

.faq-item:hover {
    border-color: rgba(212, 175, 55, 0.3);
}

.faq-question {
    padding: 25px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-weight: 600;
    color: var(--primary);
    font-size: 1.1rem;
}

.faq-answer {
    padding: 0 40px;
    max-height: 0;
    overflow: hidden;
    transition: all 0.5s var(--ease-out-expo);
    opacity: 0;
    color: var(--text-muted);
    line-height: 1.7;
}

.faq-item.active .faq-answer {
    padding-bottom: 30px;
    max-height: 300px;
    opacity: 1;
}

.faq-item.active .fa-chevron-down {
    transform: rotate(180deg);
    color: var(--secondary);
}

/* Final CTA Premium */
#final-cta {
    background: var(--gradient-navy);
    color: var(--text-light);
    text-align: center;
    position: relative;
    overflow: hidden;
    padding: 120px 0;
}

#final-cta h2 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    margin-bottom: 25px;
    color: var(--text-light);
}

.btn-whatsapp-large {
    font-size: 1.1rem;
    padding: 24px 60px;
    margin-top: 40px;
}

/* Footer Modern */
footer {
    background-color: #02050B;
    color: rgba(255, 255, 255, 0.5);
    padding: 100px 0 50px;
    text-align: center;
}

.footer-logo {
    height: 100px;
    margin-bottom: 50px;
    filter: brightness(0) invert(1);
    opacity: 0.9;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-bottom: 50px;
    flex-wrap: wrap;
}

.footer-links a {
    color: var(--text-light);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    transition: all 0.3s;
    opacity: 0.7;
}

.footer-links a:hover {
    color: var(--secondary);
    opacity: 1;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 40px;
    font-size: 0.85rem;
    max-width: 800px;
    margin: 0 auto;
}

/* WhatsApp Sticky Premium */
.whatsapp-fixed {
    position: fixed;
    bottom: 40px;
    right: 40px;
    z-index: 999;
    background: rgba(37, 211, 102, 0.9);
    backdrop-filter: blur(10px);
    color: white;
    width: 70px;
    height: 70px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.2rem;
    box-shadow: 0 15px 35px rgba(37, 211, 102, 0.3);
    text-decoration: none;
    transition: all 0.4s var(--ease-out-expo);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.whatsapp-fixed:hover {
    transform: scale(1.1) translateY(-10px);
    background: #25D366;
}

/* Responsive */
@media (max-width: 1024px) {
    .pricing-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }

    .pricing-card.featured {
        transform: scale(1);
    }

    .pricing-card.featured:hover {
        transform: translateY(-10px);
    }
}

@media (max-width: 768px) {

    .problem-grid,
    .solution-content,
    .testimonial-grid {
        grid-template-columns: 1fr;
    }

    .process-timeline {
        flex-direction: column;
        gap: 40px;
    }

    .pricing-grid {
        grid-template-columns: 1fr;
    }

    .usp-list {
        flex-direction: column;
        align-items: center;
        gap: 10px;
    }
}