/* ========================================
   VARIABLES ET RESET
   ======================================== */
:root {
    --primary-color: #8B5CF6;
    --secondary-color: #EC4899;
    --accent-color: #F59E0B;
    --dark-bg: #0F0A1F;
    --darker-bg: #070412;
    --text-light: #F3F4F6;
    --text-gray: #9CA3AF;
    --card-bg: rgba(139, 92, 246, 0.05);
    --border-glow: rgba(139, 92, 246, 0.3);
    
    --font-heading: 'Cinzel', serif;
    --font-body: 'Montserrat', sans-serif;
}

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

body {
    font-family: var(--font-body);
    background: var(--dark-bg);
    color: var(--text-light);
    line-height: 1.6;
    overflow-x: hidden;
}

html {
    scroll-behavior: smooth;
}

/* ========================================
   NAVIGATION
   ======================================== */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(15, 10, 31, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 1rem 0;
    border-bottom: 1px solid var(--border-glow);
    transition: all 0.3s ease;
}

.navbar.scrolled {
    padding: 0.5rem 0;
    box-shadow: 0 10px 30px rgba(139, 92, 246, 0.2);
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
}

.logo i {
    font-size: 2rem;
    animation: rotate 20s linear infinite;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-menu a {
    color: var(--text-light);
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    transition: width 0.3s ease;
}

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

.menu-toggle {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--primary-color);
}

/* ========================================
   HERO SECTION
   ======================================== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: linear-gradient(135deg, var(--darker-bg) 0%, var(--dark-bg) 100%);
    padding-top: 80px;
}

.stars {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    pointer-events: none;
}

.stars::before,
.stars::after {
    content: '';
    position: absolute;
    width: 2px;
    height: 2px;
    background: white;
    border-radius: 50%;
    box-shadow: 
        100px 200px white, 200px 100px white, 300px 300px white,
        400px 150px white, 150px 400px white, 500px 250px white,
        250px 500px white, 350px 450px white, 450px 350px white,
        600px 200px white, 700px 400px white, 800px 100px white,
        50px 600px white, 900px 300px white, 1000px 500px white,
        1100px 150px white, 1200px 350px white, 200px 650px white;
    animation: twinkle 3s infinite;
}

.stars::after {
    animation-delay: 1.5s;
}

@keyframes twinkle {
    0%, 100% { opacity: 0.3; }
    50% { opacity: 1; }
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-text h1 {
    font-family: var(--font-heading);
    font-size: 4rem;
    line-height: 1.2;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color), var(--accent-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.subtitle {
    font-size: 1.5rem;
    color: var(--text-gray);
    margin-bottom: 1.5rem;
    font-weight: 300;
}

.description {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 2rem;
    color: var(--text-gray);
}

.cta-button {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 2.5rem;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(139, 92, 246, 0.4);
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(139, 92, 246, 0.6);
}

/* Mystical Circle Animation */
.mystical-circle {
    position: relative;
    width: 400px;
    height: 400px;
    margin: 0 auto;
}

.mystical-circle::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 300px;
    height: 300px;
    border: 2px solid var(--primary-color);
    border-radius: 50%;
    animation: pulse 3s ease-in-out infinite;
}

.mystical-circle::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 250px;
    height: 250px;
    border: 2px solid var(--secondary-color);
    border-radius: 50%;
    animation: pulse 3s ease-in-out infinite 1.5s;
}

.number {
    position: absolute;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    box-shadow: 0 5px 20px rgba(139, 92, 246, 0.5);
    animation: float 4s ease-in-out infinite;
}

.number:nth-child(1) { top: 0%; left: 50%; transform: translate(-50%, -50%); animation-delay: 0s; }
.number:nth-child(2) { top: 15%; right: 15%; animation-delay: 0.5s; }
.number:nth-child(3) { top: 50%; right: 0%; transform: translateY(-50%); animation-delay: 1s; }
.number:nth-child(4) { bottom: 15%; right: 15%; animation-delay: 1.5s; }
.number:nth-child(5) { bottom: 0%; left: 50%; transform: translate(-50%, 50%); animation-delay: 2s; }
.number:nth-child(6) { bottom: 15%; left: 15%; animation-delay: 2.5s; }
.number:nth-child(7) { top: 50%; left: 0%; transform: translateY(-50%); animation-delay: 3s; }
.number:nth-child(8) { top: 15%; left: 15%; animation-delay: 3.5s; }
.number:nth-child(9) { top: 50%; left: 50%; transform: translate(-50%, -50%); animation-delay: 4s; }

@keyframes float {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(180deg); }
}

@keyframes pulse {
    0%, 100% { transform: translate(-50%, -50%) scale(1); opacity: 0.5; }
    50% { transform: translate(-50%, -50%) scale(1.1); opacity: 1; }
}

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

/* Fade-in Animations */
.fade-in {
    animation: fadeIn 1s ease-out;
}

.fade-in-delay {
    animation: fadeIn 1s ease-out 0.3s backwards;
}

.fade-in-delay-2 {
    animation: fadeIn 1s ease-out 0.6s backwards;
}

.fade-in-delay-3 {
    animation: fadeIn 1s ease-out 0.9s backwards;
}

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

/* ========================================
   CONTAINER
   ======================================== */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* ========================================
   SECTIONS COMMUNES
   ======================================== */
section {
    padding: 4rem 0;
}

.services {
    padding: 3rem 0;
}

.section-title {
    font-family: var(--font-heading);
    font-size: 3rem;
    text-align: center;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-subtitle {
    text-align: center;
    font-size: 1.2rem;
    color: var(--text-gray);
    margin-bottom: 2.5rem;
    font-weight: 300;
}

/* ========================================
   SERVICES SECTION
   ======================================== */
.services {
    background: var(--darker-bg);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-top: 2rem;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

.service-card {
    background: var(--card-bg);
    border: 1px solid var(--border-glow);
    border-radius: 15px;
    padding: 1.5rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.1), rgba(236, 72, 153, 0.1));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(139, 92, 246, 0.3);
    border-color: var(--primary-color);
}

.service-card:hover::before {
    opacity: 1;
}

.service-card.featured {
    border: 2px solid var(--primary-color);
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.1), rgba(236, 72, 153, 0.1));
}

.popular-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: linear-gradient(135deg, var(--accent-color), #F59E0B);
    color: white;
    padding: 0.4rem 0.8rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    box-shadow: 0 5px 15px rgba(245, 158, 11, 0.4);
}

.card-icon {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 0.8rem;
}

.service-card h3 {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    margin-bottom: 0.6rem;
    color: var(--text-light);
}

.price {
    font-size: 2rem;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 0.3rem;
}

.savings {
    color: var(--accent-color);
    font-weight: 600;
    margin-bottom: 1rem;
    font-size: 0.9rem;
}

.service-features {
    list-style: none;
    margin: 1rem 0;
}

.service-features li {
    padding: 0.4rem 0;
    display: flex;
    align-items: center;
    gap: 0.6rem;
    border-bottom: 1px solid rgba(139, 92, 246, 0.1);
    font-size: 0.9rem;
}

.service-features i {
    color: var(--primary-color);
    font-size: 1rem;
}

.service-features .fa-star {
    color: var(--primary-color);
}

.order-button {
    width: 100%;
    padding: 0.8rem 1.5rem;
    background: linear-gradient(135deg, #EC4899, #F472B6);
    color: white;
    border: none;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 1rem;
    position: relative;
    z-index: 10;
}

.order-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(236, 72, 153, 0.6);
}

.featured-button {
    background: linear-gradient(135deg, #EC4899, #F472B6);
}

/* ========================================
   NUMÉROLOGIE EXPLIQUÉE
   ======================================== */
.numerologie-explained {
    background: var(--dark-bg);
}

.explanation-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-bottom: 4rem;
}

.explanation-card {
    background: var(--card-bg);
    border: 1px solid var(--border-glow);
    border-radius: 15px;
    padding: 2.5rem;
    transition: all 0.3s ease;
    position: relative;
}

.explanation-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary-color);
    box-shadow: 0 15px 40px rgba(139, 92, 246, 0.2);
}

.card-number {
    position: absolute;
    top: -20px;
    left: 30px;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.2rem;
    box-shadow: 0 5px 15px rgba(139, 92, 246, 0.4);
}

.explanation-card h3 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.explanation-card p {
    color: var(--text-gray);
    line-height: 1.8;
}

.main-numbers {
    margin-top: 4rem;
}

.subsection-title {
    font-family: var(--font-heading);
    font-size: 2rem;
    text-align: center;
    margin-bottom: 3rem;
    color: var(--primary-color);
}

.numbers-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.number-card {
    background: var(--card-bg);
    border: 1px solid var(--border-glow);
    border-radius: 15px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
}

.number-card:hover {
    transform: scale(1.05);
    border-color: var(--secondary-color);
    box-shadow: 0 10px 30px rgba(236, 72, 153, 0.3);
}

.number-icon {
    font-size: 2.5rem;
    color: var(--secondary-color);
    margin-bottom: 1rem;
}

.number-card h4 {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: var(--text-light);
}

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

/* ========================================
   CÉLÉBRITÉS
   ======================================== */
.celebrities {
    background: var(--darker-bg);
}

.celebrities-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.celebrity-card {
    background: var(--card-bg);
    border: 1px solid var(--border-glow);
    border-radius: 15px;
    padding: 2.5rem 2rem;
    text-align: center;
    transition: all 0.3s ease;
}

.celebrity-card:hover {
    transform: translateY(-10px);
    border-color: var(--accent-color);
    box-shadow: 0 20px 40px rgba(245, 158, 11, 0.3);
}



.celebrity-card h4 {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    margin-bottom: 0.8rem;
    color: var(--text-light);
}

.celebrity-role {
    color: var(--accent-color);
    font-size: 0.9rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.celebrity-quote {
    color: var(--text-gray);
    font-style: italic;
    line-height: 1.6;
    font-size: 0.95rem;
}

.celebrities-cta {
    margin-top: 4rem;
    text-align: center;
    padding: 3rem;
    background: var(--card-bg);
    border: 2px solid var(--border-glow);
    border-radius: 20px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.celebrities-cta h3 {
    font-family: var(--font-heading);
    font-size: 2rem;
    color: var(--text-light);
    margin-bottom: 1rem;
}

.celebrities-cta p {
    color: var(--text-gray);
    font-size: 1.1rem;
    margin-bottom: 2rem;
    line-height: 1.8;
}

.cta-buttons-row {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-primary-button,
.cta-secondary-button {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    padding: 1rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    white-space: nowrap;
    cursor: pointer;
    border: none;
    font-family: var(--font-body);
}

.cta-primary-button {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    box-shadow: 0 5px 20px rgba(139, 92, 246, 0.4);
}

.cta-primary-button:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(139, 92, 246, 0.6);
}

.cta-secondary-button {
    background: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.cta-secondary-button:hover {
    background: var(--primary-color);
    color: white;
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(139, 92, 246, 0.4);
}

.cta-primary-button i,
.cta-secondary-button i {
    font-size: 1.2rem;
}

/* ========================================
   TÉMOIGNAGES
   ======================================== */
.testimonials {
    background: var(--dark-bg);
}

.testimonials-slider {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.testimonial-card {
    background: var(--card-bg);
    border: 1px solid var(--border-glow);
    border-radius: 15px;
    padding: 2.5rem;
    transition: all 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(139, 92, 246, 0.2);
}

.stars-wrapper {
    display: flex;
    gap: 0.3rem;
    margin-bottom: 1.5rem;
    justify-content: center;
}

.stars-wrapper i {
    color: var(--accent-color);
    font-size: 1.2rem;
}

.testimonial-text {
    color: var(--text-gray);
    line-height: 1.8;
    margin-bottom: 1.5rem;
    font-style: italic;
}

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

.google-reviews-link {
    text-align: center;
    margin-top: 3rem;
}

.reviews-button {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 2.5rem;
    background: white;
    color: #4285F4;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 5px 20px rgba(66, 133, 244, 0.3);
}

.reviews-button:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 40px rgba(66, 133, 244, 0.5);
}

.reviews-button i {
    font-size: 1.5rem;
}

/* ========================================
   CONTACT
   ======================================== */
.contact {
    background: var(--darker-bg);
}

.contact-buttons {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin: 3rem auto;
    max-width: 900px;
}

.contact-cta-button {
    background: var(--card-bg);
    border: 2px solid var(--border-glow);
    border-radius: 20px;
    padding: 2.5rem;
    display: flex;
    align-items: center;
    gap: 1.5rem;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
    font-family: var(--font-body);
    text-align: left;
    width: 100%;
}

.contact-cta-button:hover {
    transform: translateY(-10px);
    border-color: var(--primary-color);
    box-shadow: 0 20px 50px rgba(139, 92, 246, 0.4);
}

.contact-cta-button.featured-cta {
    border: 2px solid var(--primary-color);
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.1), rgba(236, 72, 153, 0.1));
}

.contact-cta-button i {
    font-size: 3rem;
    color: var(--primary-color);
}

.contact-cta-button.featured-cta i {
    color: var(--accent-color);
}

.contact-cta-button h4 {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    color: var(--text-light);
    margin-bottom: 0.5rem;
}

.contact-cta-button p {
    color: var(--text-gray);
    font-size: 0.95rem;
}

.contact-email-info {
    text-align: center;
    margin-top: 3rem;
    padding: 2rem;
    background: var(--card-bg);
    border: 1px solid var(--border-glow);
    border-radius: 15px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.contact-email-info p {
    color: var(--text-gray);
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}

.contact-email-info a {
    color: var(--secondary-color);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.contact-email-info a:hover {
    color: var(--primary-color);
}

.contact-note {
    color: var(--accent-color);
    font-size: 0.9rem;
    font-style: italic;
    margin-top: 0.5rem;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 4rem;
    margin-top: 3rem;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.info-card {
    background: var(--card-bg);
    border: 1px solid var(--border-glow);
    border-radius: 15px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
}

.info-card:hover {
    border-color: var(--primary-color);
    transform: translateX(10px);
}

.info-card i {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.info-card h4 {
    font-family: var(--font-heading);
    margin-bottom: 0.5rem;
    color: var(--text-light);
}

.info-card p {
    color: var(--text-gray);
}

.contact-form {
    background: var(--card-bg);
    border: 1px solid var(--border-glow);
    border-radius: 15px;
    padding: 3rem;
}

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

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--text-light);
    font-weight: 500;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    background: rgba(139, 92, 246, 0.05);
    border: 1px solid var(--border-glow);
    border-radius: 10px;
    color: var(--text-light);
    font-family: var(--font-body);
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 20px rgba(139, 92, 246, 0.2);
}

.submit-button {
    width: 100%;
    padding: 1rem 2rem;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    border: none;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}

.submit-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(139, 92, 246, 0.5);
}

/* ========================================
   FOOTER
   ======================================== */
.footer {
    background: var(--darker-bg);
    border-top: 1px solid var(--border-glow);
    padding: 4rem 0 2rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-section h4 {
    font-family: var(--font-heading);
    margin-bottom: 1.5rem;
    color: var(--primary-color);
}

.footer-section p {
    color: var(--text-gray);
    line-height: 1.8;
    margin-bottom: 1rem;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.8rem;
}

.footer-section ul li a {
    color: var(--text-gray);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: var(--primary-color);
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: var(--card-bg);
    border: 1px solid var(--border-glow);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: var(--primary-color);
    color: white;
    transform: translateY(-5px);
}

.newsletter-form {
    display: flex;
    gap: 0.5rem;
}

.newsletter-form input {
    flex: 1;
    padding: 0.8rem 1rem;
    background: rgba(139, 92, 246, 0.05);
    border: 1px solid var(--border-glow);
    border-radius: 25px;
    color: var(--text-light);
    font-family: var(--font-body);
}

.newsletter-form button {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border: none;
    border-radius: 50%;
    color: white;
    cursor: pointer;
    transition: all 0.3s ease;
}

.newsletter-form button:hover {
    transform: scale(1.1);
}

.footer-link {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

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

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(139, 92, 246, 0.1);
    color: var(--text-gray);
}

.footer-bottom > p {
    margin-bottom: 2rem;
    font-size: 0.95rem;
}

.footer-bottom i {
    color: var(--secondary-color);
}

.footer-disclaimer {
    background: rgba(139, 92, 246, 0.05);
    border: 1px solid rgba(139, 92, 246, 0.15);
    border-radius: 15px;
    padding: 2rem;
    margin-top: 2rem;
    text-align: left;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

.footer-disclaimer p {
    font-size: 0.85rem;
    line-height: 1.8;
    color: var(--text-gray);
    margin-bottom: 1rem;
}

.footer-disclaimer p:last-child {
    margin-bottom: 0;
}

.footer-disclaimer strong {
    color: var(--primary-color);
    font-weight: 600;
    font-size: 0.9rem;
}

/* ========================================
   MODAL
   ======================================== */
.modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(10px);
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
}

.modal-content {
    background: var(--dark-bg);
    border: 2px solid var(--primary-color);
    border-radius: 20px;
    margin: 10% auto;
    padding: 3rem;
    max-width: 500px;
    position: relative;
    animation: modalSlideIn 0.3s ease-out;
}

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

.close-modal {
    position: absolute;
    top: 20px;
    right: 30px;
    font-size: 2rem;
    color: var(--text-gray);
    cursor: pointer;
    transition: color 0.3s ease;
}

.close-modal:hover {
    color: var(--primary-color);
}

.modal-content h3 {
    font-family: var(--font-heading);
    font-size: 2rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.modal-buttons {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
}

.modal-btn {
    flex: 1;
    padding: 1rem;
    border: none;
    border-radius: 25px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.modal-btn.cancel {
    background: var(--card-bg);
    border: 1px solid var(--border-glow);
    color: var(--text-light);
}

.modal-btn.confirm {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
}

.modal-btn:hover {
    transform: translateY(-3px);
}

/* Modal Choix Thème */
.theme-choice-modal {
    max-width: 900px;
    padding: 3rem 2rem;
    overflow-y: auto;
    max-height: 90vh;
}

.modal-subtitle {
    color: var(--text-gray);
    font-size: 1.1rem;
    margin-bottom: 2rem;
    text-align: center;
}

.theme-options {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-top: 2rem;
}

.theme-option-card {
    background: var(--card-bg);
    border: 2px solid var(--border-glow);
    border-radius: 20px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
    text-decoration: none;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.theme-option-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary-color);
    box-shadow: 0 20px 50px rgba(139, 92, 246, 0.4);
}

.theme-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.theme-icon i {
    font-size: 2.5rem;
    color: white;
}

.theme-option-card h4 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    color: var(--text-light);
    margin-bottom: 1rem;
}

.theme-price {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 1rem;
}

.theme-description {
    color: var(--text-gray);
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    flex-grow: 1;
}

.theme-btn {
    width: 100%;
    padding: 1rem 1.5rem;
    background: linear-gradient(135deg, #EC4899, #F472B6);
    color: white;
    border: none;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.theme-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(236, 72, 153, 0.6);
}

/* ========================================
   RESPONSIVE
   ======================================== */
@media (max-width: 1024px) {
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .mystical-circle {
        width: 300px;
        height: 300px;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .explanation-grid,
    .numbers-grid,
    .celebrities-grid,
    .testimonials-slider {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-content {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background: rgba(15, 10, 31, 0.98);
        width: 100%;
        text-align: center;
        padding: 2rem;
        transition: left 0.3s ease;
        border-top: 1px solid var(--border-glow);
    }

    .nav-menu.active {
        left: 0;
    }

    .menu-toggle {
        display: block;
    }

    .hero-text h1 {
        font-size: 2.5rem;
    }

    .subtitle {
        font-size: 1.2rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .explanation-grid,
    .numbers-grid,
    .celebrities-grid,
    .testimonials-slider {
        grid-template-columns: 1fr;
    }

    .contact-content {
        grid-template-columns: 1fr;
    }

    .contact-buttons {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .contact-cta-button {
        padding: 2rem;
    }

    .theme-options {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .theme-choice-modal {
        margin: 2% auto;
        padding: 1.5rem 1rem;
        max-width: 95%;
        max-height: 95vh;
        overflow-y: auto;
    }
    
    .theme-choice-modal h3 {
        font-size: 1.5rem;
        margin-bottom: 0.5rem;
    }
    
    .modal-subtitle {
        font-size: 0.95rem;
        margin-bottom: 1rem;
    }
    
    .theme-option-card {
        padding: 1.5rem 1rem;
    }
    
    .theme-icon {
        width: 60px;
        height: 60px;
        margin-bottom: 1rem;
    }
    
    .theme-icon i {
        font-size: 2rem;
    }
    
    .theme-option-card h4 {
        font-size: 1.2rem;
        margin-bottom: 0.5rem;
    }
    
    .theme-price {
        font-size: 2rem;
        margin-bottom: 0.5rem;
    }
    
    .theme-description {
        font-size: 0.85rem;
        margin-bottom: 1rem;
    }
    
    .theme-btn {
        padding: 0.8rem 1rem;
        font-size: 0.9rem;
    }
    
    .close-modal {
        top: 10px;
        right: 15px;
        font-size: 1.5rem;
    }
    
    .modal-content {
        margin: 5% auto;
        padding: 2rem 1.5rem;
        max-width: 95%;
    }

    .contact-cta-button i {
        font-size: 2.5rem;
    }

    .contact-cta-button h4 {
        font-size: 1.1rem;
    }

    .celebrities-cta {
        padding: 2rem 1rem;
    }

    .celebrities-cta h3 {
        font-size: 1.5rem;
    }

    .celebrities-cta p {
        font-size: 1rem;
    }

    .cta-buttons-row {
        flex-direction: column;
        align-items: stretch;
    }

    .cta-primary-button,
    .cta-secondary-button {
        width: 100%;
        justify-content: center;
    }

    .footer-content {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 1rem;
    }

    .hero-text h1 {
        font-size: 2rem;
    }

    .mystical-circle {
        width: 250px;
        height: 250px;
    }

    .number {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }

    /* Popup ultra-optimisé pour petits écrans */
    .theme-choice-modal {
        margin: 1% auto;
        padding: 1rem 0.75rem;
        max-width: 98%;
        max-height: 98vh;
    }
    
    .theme-choice-modal h3 {
        font-size: 1.3rem;
        line-height: 1.3;
    }
    
    .modal-subtitle {
        font-size: 0.85rem;
        margin-bottom: 0.75rem;
    }
    
    .theme-options {
        gap: 0.75rem;
        margin-top: 0.75rem;
    }
    
    .theme-option-card {
        padding: 1.25rem 0.75rem;
        border-radius: 15px;
    }
    
    .theme-icon {
        width: 50px;
        height: 50px;
        margin-bottom: 0.75rem;
    }
    
    .theme-icon i {
        font-size: 1.5rem;
    }
    
    .theme-option-card h4 {
        font-size: 1.1rem;
        line-height: 1.3;
    }
    
    .theme-price {
        font-size: 1.8rem;
        margin-bottom: 0.4rem;
    }
    
    .theme-description {
        font-size: 0.8rem;
        line-height: 1.5;
        margin-bottom: 0.75rem;
    }
    
    .theme-btn {
        padding: 0.7rem 0.8rem;
        font-size: 0.85rem;
    }
    
    .close-modal {
        top: 8px;
        right: 12px;
        font-size: 1.3rem;
    }
}