/*
Theme Name: Formation Strass Dentaire
Theme URI: https://formation-strass-dentaire.be
Description: Thème premium Black & Gold pour Formation Strass Dentaire - Optimisé SEO
Author: Strass Dentaires
Author URI: https://strassdentaires.com
Version: 1.0.0
License: GNU General Public License v2 or later
Text Domain: formation-strass-dentaire
*/

/* ============================================
   VARIABLES CSS - PALETTE BLACK & GOLD
   ============================================ */
:root {
    /* Couleurs principales */
    --gold-primary: #C5A572;
    --gold-secondary: #B8976C;
    --gold-light: #D4BC94;
    --gold-dark: #9A7B4F;
    --gold-gradient: linear-gradient(135deg, #C5A572 0%, #B8976C 50%, #D4BC94 100%);
    
    /* Fonds sombres */
    --black-primary: #0D0D0D;
    --black-secondary: #1A1A1A;
    --black-tertiary: #2D2D2D;
    --brown-dark: #1C1410;
    
    /* Textes */
    --text-light: #FFFFFF;
    --text-muted: #B8B8B8;
    --text-gold: #C5A572;
    
    /* Effets */
    --shadow-gold: 0 4px 30px rgba(197, 165, 114, 0.3);
    --shadow-dark: 0 10px 40px rgba(0, 0, 0, 0.5);
    --glow-gold: 0 0 20px rgba(197, 165, 114, 0.4);
    
    /* Typography */
    --font-display: 'Playfair Display', Georgia, serif;
    --font-body: 'Montserrat', 'Helvetica Neue', sans-serif;
    --font-accent: 'Cormorant Garamond', Georgia, serif;
    
    /* Spacing */
    --section-padding: clamp(60px, 10vw, 120px);
    --container-max: 1200px;
    
    /* Transitions */
    --transition-smooth: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    --transition-bounce: all 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

/* ============================================
   IMPORTS GOOGLE FONTS
   ============================================ */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,500;0,600;0,700;1,400&family=Montserrat:wght@300;400;500;600;700&family=Cormorant+Garamond:ital,wght@0,400;0,500;0,600;1,400&display=swap');

/* ============================================
   RESET & BASE
   ============================================ */
*, *::before, *::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    background-color: var(--black-primary);
    color: var(--text-light);
    line-height: 1.7;
    overflow-x: hidden;
}

/* ============================================
   TYPOGRAPHY
   ============================================ */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-display);
    font-weight: 600;
    line-height: 1.2;
    color: var(--text-light);
}

h1 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    margin-bottom: 1.5rem;
}

h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: 1.25rem;
}

h3 {
    font-size: clamp(1.5rem, 3vw, 2rem);
    margin-bottom: 1rem;
}

p {
    font-size: 1.05rem;
    color: var(--text-muted);
    margin-bottom: 1.25rem;
}

/* Texte doré */
.text-gold, .gold-text {
    color: var(--gold-primary) !important;
}

.text-gradient {
    background: var(--gold-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ============================================
   HEADER & NAVIGATION
   ============================================ */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: linear-gradient(180deg, rgba(13, 13, 13, 0.98) 0%, rgba(13, 13, 13, 0.95) 100%);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(197, 165, 114, 0.15);
    padding: 0.75rem 0;
    transition: var(--transition-smooth);
}

.site-header.scrolled {
    padding: 0.5rem 0;
    box-shadow: var(--shadow-dark);
}

.header-container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

/* Logo */
.site-logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    text-decoration: none;
}

.site-logo img {
    height: 50px;
    width: auto;
}

.site-logo .logo-text {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-light);
}

.site-logo .logo-text span {
    color: var(--gold-primary);
}

/* Navigation */
.main-nav ul {
    display: flex;
    gap: 1.25rem;
    list-style: none;
    margin: 0;
    padding: 0;
}

.main-nav a {
    font-family: var(--font-body);
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--text-light);
    text-decoration: none;
    position: relative;
    padding: 0.5rem 0;
    transition: var(--transition-smooth);
    white-space: nowrap;
}

.main-nav a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gold-gradient);
    transition: var(--transition-smooth);
}

.main-nav a:hover {
    color: var(--gold-primary);
}

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

/* CTA Header */
.header-cta {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    background: var(--gold-gradient);
    color: var(--black-primary);
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 0.8rem;
    padding: 0.5rem 1rem;
    border-radius: 50px;
    text-decoration: none;
    transition: var(--transition-smooth);
    box-shadow: var(--shadow-gold);
    margin-left: 1rem;
    white-space: nowrap;
}

.header-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 35px rgba(197, 165, 114, 0.45);
}

/* Mobile Menu Toggle */
.menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}

.menu-toggle span {
    display: block;
    width: 25px;
    height: 2px;
    background: var(--gold-primary);
    margin: 6px 0;
    transition: var(--transition-smooth);
}

/* ============================================
   HERO SECTION
   ============================================ */
.hero-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--black-primary);
    overflow: hidden;
    padding-top: 80px;
}

/* Fond avec effet */
.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(ellipse at 20% 50%, rgba(197, 165, 114, 0.08) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 50%, rgba(197, 165, 114, 0.05) 0%, transparent 50%),
        radial-gradient(ellipse at 50% 100%, rgba(197, 165, 114, 0.1) 0%, transparent 40%);
    pointer-events: none;
}

/* Particules décoratives */
.hero-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    pointer-events: none;
}

.particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: var(--gold-primary);
    border-radius: 50%;
    opacity: 0.3;
    animation: float 6s ease-in-out infinite;
}

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

/* Hero Content */
.hero-content {
    position: relative;
    z-index: 2;
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 2rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.hero-text {
    animation: fadeInUp 1s ease-out;
}

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

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(197, 165, 114, 0.1);
    border: 1px solid rgba(197, 165, 114, 0.3);
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.85rem;
    color: var(--gold-primary);
    margin-bottom: 1.5rem;
}

.hero-badge svg {
    width: 16px;
    height: 16px;
}

.hero-title {
    font-size: clamp(2.8rem, 5.5vw, 4.5rem);
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 1.5rem;
}

.hero-title .highlight {
    position: relative;
    color: var(--gold-primary);
}

.hero-title .highlight::after {
    content: '';
    position: absolute;
    bottom: 5px;
    left: 0;
    width: 100%;
    height: 8px;
    background: rgba(197, 165, 114, 0.2);
    z-index: -1;
}

.hero-description {
    font-size: 1.2rem;
    color: var(--text-muted);
    margin-bottom: 2rem;
    max-width: 500px;
}

/* Hero Buttons */
.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 3rem;
}

/* Hero Stats */
.hero-stats {
    display: flex;
    gap: 2.5rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(197, 165, 114, 0.2);
}

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

.stat-number {
    font-family: var(--font-display);
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--gold-primary);
    line-height: 1;
    margin-bottom: 0.25rem;
}

.stat-label {
    font-size: 0.85rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Hero Image */
.hero-visual {
    position: relative;
    animation: fadeInRight 1s ease-out 0.3s both;
}

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

.hero-image-wrapper {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-gold);
}

.hero-image-wrapper::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: var(--gold-gradient);
    border-radius: 22px;
    z-index: -1;
    opacity: 0.5;
}

.hero-image-wrapper img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 20px;
}

/* Floating elements */
.floating-card {
    position: absolute;
    background: rgba(26, 26, 26, 0.95);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(197, 165, 114, 0.2);
    border-radius: 15px;
    padding: 1rem 1.25rem;
    box-shadow: var(--shadow-dark);
    animation: floatCard 4s ease-in-out infinite;
}

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

.floating-card.card-price {
    top: 10%;
    right: -20px;
    animation-delay: 0.5s;
}

.floating-card.card-certified {
    bottom: 15%;
    left: -30px;
}

.floating-card .card-icon {
    width: 40px;
    height: 40px;
    background: var(--gold-gradient);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 0.5rem;
}

.floating-card .card-icon svg {
    width: 20px;
    height: 20px;
    color: var(--black-primary);
}

.floating-card .card-title {
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--gold-primary);
    margin-bottom: 0.25rem;
}

.floating-card .card-text {
    font-size: 0.8rem;
    color: var(--text-muted);
    margin: 0;
}

/* ============================================
   BUTTONS
   ============================================ */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 1rem;
    padding: 1rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    cursor: pointer;
    border: none;
    transition: var(--transition-smooth);
}

.btn-primary {
    background: var(--gold-gradient);
    color: var(--black-primary);
    box-shadow: var(--shadow-gold);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 40px rgba(197, 165, 114, 0.5);
}

.btn-secondary {
    background: transparent;
    color: var(--text-light);
    border: 2px solid rgba(197, 165, 114, 0.5);
}

.btn-secondary:hover {
    background: rgba(197, 165, 114, 0.1);
    border-color: var(--gold-primary);
    color: var(--gold-primary);
}

.btn-outline-gold {
    background: transparent;
    color: var(--gold-primary);
    border: 2px solid var(--gold-primary);
}

.btn-outline-gold:hover {
    background: var(--gold-primary);
    color: var(--black-primary);
}

.btn svg {
    width: 18px;
    height: 18px;
}

/* ============================================
   SECTIONS COMMUNES
   ============================================ */
.section {
    padding: var(--section-padding) 0;
    position: relative;
}

.section-dark {
    background: var(--black-primary);
}

.section-darker {
    background: var(--black-secondary);
}

.section-gradient {
    background: linear-gradient(180deg, var(--black-primary) 0%, var(--black-secondary) 100%);
}

.container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 2rem;
}

.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 4rem;
}

.section-label {
    display: inline-block;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--gold-primary);
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 1rem;
}

.section-title {
    margin-bottom: 1rem;
}

.section-description {
    font-size: 1.1rem;
    color: var(--text-muted);
}

/* ============================================
   AVANTAGES / FEATURES
   ============================================ */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.feature-card {
    background: var(--black-secondary);
    border: 1px solid rgba(197, 165, 114, 0.1);
    border-radius: 20px;
    padding: 2rem;
    transition: var(--transition-smooth);
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--gold-gradient);
    transform: scaleX(0);
    transform-origin: left;
    transition: var(--transition-smooth);
}

.feature-card:hover {
    transform: translateY(-5px);
    border-color: rgba(197, 165, 114, 0.3);
    box-shadow: var(--shadow-gold);
}

.feature-card:hover::before {
    transform: scaleX(1);
}

.feature-icon {
    width: 60px;
    height: 60px;
    background: rgba(197, 165, 114, 0.1);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.feature-icon svg {
    width: 28px;
    height: 28px;
    color: var(--gold-primary);
}

.feature-title {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
}

.feature-text {
    color: var(--text-muted);
    font-size: 0.95rem;
    margin: 0;
}

/* ============================================
   PROGRAMME / CURRICULUM
   ============================================ */
.curriculum-timeline {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
}

.curriculum-timeline::before {
    content: '';
    position: absolute;
    left: 30px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(180deg, var(--gold-primary) 0%, rgba(197, 165, 114, 0.2) 100%);
}

.curriculum-item {
    position: relative;
    padding-left: 80px;
    padding-bottom: 3rem;
}

.curriculum-item:last-child {
    padding-bottom: 0;
}

.curriculum-number {
    position: absolute;
    left: 0;
    top: 0;
    width: 60px;
    height: 60px;
    background: var(--gold-gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--black-primary);
    box-shadow: var(--glow-gold);
}

.curriculum-content {
    background: var(--black-secondary);
    border: 1px solid rgba(197, 165, 114, 0.15);
    border-radius: 15px;
    padding: 1.5rem 2rem;
}

.curriculum-title {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
    color: var(--gold-primary);
}

.curriculum-description {
    color: var(--text-muted);
    margin-bottom: 1rem;
}

.curriculum-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.curriculum-list li {
    position: relative;
    padding-left: 1.5rem;
    margin-bottom: 0.5rem;
    color: var(--text-muted);
    font-size: 0.95rem;
}

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

/* ============================================
   PRICING / TARIFS
   ============================================ */
.pricing-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

.pricing-card {
    background: var(--black-secondary);
    border: 1px solid rgba(197, 165, 114, 0.15);
    border-radius: 25px;
    padding: 2.5rem;
    position: relative;
    transition: var(--transition-smooth);
}

.pricing-card.featured {
    border-color: var(--gold-primary);
    transform: scale(1.05);
    box-shadow: var(--shadow-gold);
}

.pricing-card.featured::before {
    content: 'POPULAIRE';
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--gold-gradient);
    color: var(--black-primary);
    font-size: 0.75rem;
    font-weight: 700;
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    letter-spacing: 1px;
}

.pricing-card:hover {
    transform: translateY(-5px);
    border-color: rgba(197, 165, 114, 0.4);
}

.pricing-card.featured:hover {
    transform: scale(1.05) translateY(-5px);
}

.pricing-header {
    text-align: center;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid rgba(197, 165, 114, 0.1);
    margin-bottom: 1.5rem;
}

.pricing-title {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.pricing-price {
    font-family: var(--font-display);
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--gold-primary);
    line-height: 1;
}

.pricing-price span {
    font-size: 1rem;
    color: var(--text-muted);
    font-family: var(--font-body);
    font-weight: 400;
}

.pricing-features {
    list-style: none;
    padding: 0;
    margin: 0 0 2rem;
}

.pricing-features li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    color: var(--text-muted);
}

.pricing-features li svg {
    width: 18px;
    height: 18px;
    color: var(--gold-primary);
    flex-shrink: 0;
}

.pricing-card .btn {
    width: 100%;
}

/* ============================================
   TESTIMONIALS / TÉMOIGNAGES
   ============================================ */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.testimonial-card {
    background: var(--black-secondary);
    border: 1px solid rgba(197, 165, 114, 0.1);
    border-radius: 20px;
    padding: 2rem;
    position: relative;
    transition: var(--transition-smooth);
}

.testimonial-card:hover {
    border-color: rgba(197, 165, 114, 0.3);
    box-shadow: var(--shadow-gold);
}

.testimonial-quote {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    font-family: var(--font-display);
    font-size: 4rem;
    color: var(--gold-primary);
    opacity: 0.2;
    line-height: 1;
}

.testimonial-stars {
    display: flex;
    gap: 0.25rem;
    margin-bottom: 1rem;
}

.testimonial-stars svg {
    width: 18px;
    height: 18px;
    color: var(--gold-primary);
    fill: var(--gold-primary);
}

.testimonial-stars svg.empty {
    fill: none;
    color: var(--gold-dark);
}

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

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.testimonial-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--gold-gradient);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--black-primary);
}

.testimonial-info {
    flex: 1;
}

.testimonial-name {
    font-weight: 600;
    color: var(--text-light);
    margin-bottom: 0.25rem;
}

.testimonial-role {
    font-size: 0.85rem;
    color: var(--text-muted);
}

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

.faq-item {
    background: var(--black-secondary);
    border: 1px solid rgba(197, 165, 114, 0.1);
    border-radius: 15px;
    margin-bottom: 1rem;
    overflow: hidden;
    transition: var(--transition-smooth);
}

.faq-item:hover {
    border-color: rgba(197, 165, 114, 0.3);
}

.faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.5rem 2rem;
    background: none;
    border: none;
    cursor: pointer;
    font-family: var(--font-body);
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-light);
    text-align: left;
    transition: var(--transition-smooth);
}

.faq-question:hover {
    color: var(--gold-primary);
}

.faq-icon {
    width: 30px;
    height: 30px;
    border: 2px solid var(--gold-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-smooth);
    flex-shrink: 0;
}

.faq-icon svg {
    width: 14px;
    height: 14px;
    color: var(--gold-primary);
    transition: var(--transition-smooth);
}

.faq-item.active .faq-icon {
    background: var(--gold-primary);
}

.faq-item.active .faq-icon svg {
    color: var(--black-primary);
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
}

.faq-item.active .faq-answer {
    max-height: 500px;
}

.faq-answer-content {
    padding: 0 2rem 1.5rem;
    color: var(--text-muted);
    line-height: 1.8;
}

/* ============================================
   CTA SECTION
   ============================================ */
.cta-section {
    position: relative;
    padding: var(--section-padding) 0;
    background: linear-gradient(135deg, var(--black-secondary) 0%, var(--brown-dark) 100%);
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(ellipse at 30% 50%, rgba(197, 165, 114, 0.15) 0%, transparent 50%),
        radial-gradient(ellipse at 70% 50%, rgba(197, 165, 114, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.cta-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
}

.cta-title {
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: 1rem;
}

.cta-description {
    font-size: 1.2rem;
    color: var(--text-muted);
    margin-bottom: 2rem;
}

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

/* ============================================
   FOOTER
   ============================================ */
.site-footer {
    background: var(--black-primary);
    border-top: 1px solid rgba(197, 165, 114, 0.1);
    padding: 4rem 0 2rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-brand {
    max-width: 300px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
    text-decoration: none;
}

.footer-logo img {
    height: 40px;
}

.footer-logo span {
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-light);
}

.footer-description {
    color: var(--text-muted);
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
}

.footer-social {
    display: flex;
    gap: 0.75rem;
}

.footer-social a {
    width: 40px;
    height: 40px;
    background: rgba(197, 165, 114, 0.1);
    border: 1px solid rgba(197, 165, 114, 0.2);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold-primary);
    transition: var(--transition-smooth);
}

.footer-social a:hover {
    background: var(--gold-primary);
    color: var(--black-primary);
}

.footer-social svg {
    width: 18px;
    height: 18px;
}

.footer-column h4 {
    font-family: var(--font-display);
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 1.5rem;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 0.75rem;
}

.footer-links a {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 0.95rem;
    transition: var(--transition-smooth);
}

.footer-links a:hover {
    color: var(--gold-primary);
}

.footer-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    margin-bottom: 1rem;
    color: var(--text-muted);
    font-size: 0.95rem;
}

.footer-contact-item svg {
    width: 18px;
    height: 18px;
    color: var(--gold-primary);
    flex-shrink: 0;
    margin-top: 2px;
}

.footer-bottom {
    padding-top: 2rem;
    border-top: 1px solid rgba(197, 165, 114, 0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-copyright {
    color: var(--text-muted);
    font-size: 0.9rem;
}

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

.footer-legal a {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 0.9rem;
    transition: var(--transition-smooth);
}

.footer-legal a:hover {
    color: var(--gold-primary);
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 3rem;
    }
    
    .hero-stats {
        justify-content: center;
    }
    
    .hero-buttons {
        justify-content: center;
    }
    
    .hero-visual {
        max-width: 500px;
        margin: 0 auto;
    }
    
    .floating-card {
        display: none;
    }
    
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .main-nav {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--black-primary);
        border-top: 1px solid rgba(197, 165, 114, 0.1);
        padding: 1rem;
    }
    
    .main-nav.active {
        display: block;
    }
    
    .main-nav ul {
        flex-direction: column;
        gap: 0;
    }
    
    .main-nav li {
        border-bottom: 1px solid rgba(197, 165, 114, 0.1);
    }
    
    .main-nav a {
        display: block;
        padding: 1rem;
    }
    
    .menu-toggle {
        display: block;
    }
    
    .header-cta {
        display: none;
    }
    
    .hero-stats {
        flex-direction: column;
        gap: 1.5rem;
        align-items: center;
    }
    
    .stat-item {
        text-align: center;
    }
    
    .pricing-card.featured {
        transform: none;
    }
    
    .pricing-card.featured:hover {
        transform: translateY(-5px);
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .footer-brand {
        max-width: none;
    }
    
    .footer-social {
        justify-content: center;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 1rem;
    }
    
    .hero-buttons {
        flex-direction: column;
    }
    
    .btn {
        width: 100%;
    }
    
    .pricing-cards {
        grid-template-columns: 1fr;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
}

/* ============================================
   ANIMATIONS ON SCROLL
   ============================================ */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.animate-on-scroll.animated {
    opacity: 1;
    transform: translateY(0);
}

/* Stagger animations */
.animate-on-scroll:nth-child(1) { transition-delay: 0.1s; }
.animate-on-scroll:nth-child(2) { transition-delay: 0.2s; }
.animate-on-scroll:nth-child(3) { transition-delay: 0.3s; }
.animate-on-scroll:nth-child(4) { transition-delay: 0.4s; }
.animate-on-scroll:nth-child(5) { transition-delay: 0.5s; }
.animate-on-scroll:nth-child(6) { transition-delay: 0.6s; }

/* ============================================
   UTILITIES
   ============================================ */
.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }

.mb-0 { margin-bottom: 0; }
.mb-1 { margin-bottom: 0.5rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }
.mb-4 { margin-bottom: 2rem; }
.mb-5 { margin-bottom: 3rem; }

.mt-0 { margin-top: 0; }
.mt-1 { margin-top: 0.5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mt-4 { margin-top: 2rem; }
.mt-5 { margin-top: 3rem; }

.hidden { display: none; }
.visible { display: block; }

/* ============================================
   WORDPRESS SPECIFIC OVERRIDES
   ============================================ */
.wp-block-button__link {
    background: var(--gold-gradient) !important;
    color: var(--black-primary) !important;
    border-radius: 50px !important;
    padding: 1rem 2rem !important;
    font-weight: 600 !important;
}

.wp-block-button__link:hover {
    box-shadow: var(--shadow-gold) !important;
}

/* Elementor overrides */
.elementor-section {
    background-color: var(--black-primary);
}

.elementor-widget-heading .elementor-heading-title {
    font-family: var(--font-display) !important;
}

/* WooCommerce overrides */
.woocommerce .button,
.woocommerce input.button,
.woocommerce-page .button {
    background: var(--gold-gradient) !important;
    color: var(--black-primary) !important;
    border-radius: 50px !important;
    border: none !important;
    padding: 0.75rem 1.5rem !important;
    font-weight: 600 !important;
    transition: var(--transition-smooth) !important;
}

.woocommerce .button:hover {
    box-shadow: var(--shadow-gold) !important;
    transform: translateY(-2px);
}

/* Tutor LMS overrides */
.tutor-wrap {
    background-color: var(--black-primary) !important;
    color: var(--text-light) !important;
}

.tutor-course-card {
    background: var(--black-secondary) !important;
    border: 1px solid rgba(197, 165, 114, 0.1) !important;
    border-radius: 15px !important;
}

.tutor-btn-primary {
    background: var(--gold-gradient) !important;
    color: var(--black-primary) !important;
}

/* Tutor Dashboard Black & Gold */
.tutor-dashboard,
.tutor-dashboard-content,
.tutor-dashboard-content-inner {
    background-color: var(--black-primary) !important;
    color: var(--text-light) !important;
}

.tutor-dashboard-left-menu {
    background-color: var(--black-secondary) !important;
}

.tutor-dashboard-menu-item a {
    color: var(--text-muted) !important;
}

.tutor-dashboard-menu-item a:hover,
.tutor-dashboard-menu-item.active a {
    color: var(--gold-primary) !important;
    background-color: rgba(197, 165, 114, 0.1) !important;
}

.tutor-dashboard-header {
    background-color: var(--black-secondary) !important;
    border-color: rgba(197, 165, 114, 0.1) !important;
}

.tutor-card {
    background-color: var(--black-secondary) !important;
    border: 1px solid rgba(197, 165, 114, 0.1) !important;
    color: var(--text-light) !important;
}

.tutor-card-title,
.tutor-text-medium-h4,
.tutor-text-medium-h5,
.tutor-text-medium-h6 {
    color: var(--text-light) !important;
}

.tutor-iconic-btn {
    background-color: var(--gold-primary) !important;
    color: var(--black-primary) !important;
}

.tutor-form-control,
.tutor-form-select {
    background-color: var(--black-tertiary) !important;
    border-color: rgba(197, 165, 114, 0.2) !important;
    color: var(--text-light) !important;
}

/* Override texte blanc sur fond sombre */
.tutor-dashboard p,
.tutor-dashboard span,
.tutor-dashboard div {
    color: var(--text-muted);
}

.tutor-dashboard h1,
.tutor-dashboard h2,
.tutor-dashboard h3,
.tutor-dashboard h4,
.tutor-dashboard h5 {
    color: var(--text-light) !important;
}

/* Progress bar gold */
.tutor-progress-bar {
    background-color: var(--black-tertiary) !important;
}

.tutor-progress-value {
    background: var(--gold-gradient) !important;
}

/* Stars gold */
.tutor-star-rating-group .tutor-icon-star-full {
    color: var(--gold-primary) !important;
}

/* ============================================
   WOOCOMMERCE COMPLETE STYLING
   ============================================ */
.woocommerce-page,
.woocommerce {
    background-color: var(--black-primary);
    color: var(--text-light);
    padding-top: 120px;
}

.woocommerce .woocommerce-products-header__title {
    color: var(--text-light) !important;
    font-family: var(--font-display);
    font-size: 2.5rem;
    margin-bottom: 2rem;
}

.woocommerce .woocommerce-result-count,
.woocommerce .woocommerce-ordering select {
    color: var(--text-muted);
    background: var(--black-secondary);
    border: 1px solid rgba(197, 165, 114, 0.2);
    border-radius: 10px;
    padding: 0.5rem 1rem;
}

.woocommerce ul.products {
    display: grid !important;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)) !important;
    gap: 2rem !important;
}

.woocommerce ul.products li.product {
    background: var(--black-secondary) !important;
    border: 1px solid rgba(197, 165, 114, 0.1) !important;
    border-radius: 15px !important;
    padding: 1.5rem !important;
    transition: var(--transition-smooth) !important;
    margin: 0 !important;
    width: 100% !important;
    float: none !important;
}

.woocommerce ul.products li.product:hover {
    border-color: rgba(197, 165, 114, 0.3) !important;
    transform: translateY(-5px);
}

.woocommerce ul.products li.product a img {
    border-radius: 10px !important;
    margin-bottom: 1rem !important;
}

.woocommerce ul.products li.product .woocommerce-loop-product__title {
    color: var(--text-light) !important;
    font-size: 1.1rem !important;
    font-weight: 600 !important;
    padding: 0 !important;
    margin-bottom: 0.5rem !important;
}

.woocommerce ul.products li.product .price {
    color: var(--gold-primary) !important;
    font-size: 1.25rem !important;
    font-weight: 700 !important;
    margin-bottom: 1rem !important;
}

.woocommerce ul.products li.product .price del {
    color: var(--text-muted) !important;
    opacity: 0.6;
}

.woocommerce ul.products li.product .price ins {
    text-decoration: none !important;
    color: var(--gold-primary) !important;
}

.woocommerce span.onsale {
    background: var(--gold-primary) !important;
    color: var(--black-primary) !important;
    border-radius: 50px !important;
    padding: 0.5rem 1rem !important;
    font-weight: 600 !important;
    min-height: auto !important;
    min-width: auto !important;
    line-height: 1.5 !important;
}

/* Hide sidebar and widgets on shop page */
.woocommerce-page .widget-area,
.woocommerce-page aside,
.woocommerce-page .sidebar {
    display: none !important;
}

.woocommerce-page .content-area,
.woocommerce-page main {
    width: 100% !important;
    max-width: 1200px !important;
    margin: 0 auto !important;
    padding: 2rem !important;
}

/* Cart & Checkout */
.woocommerce-cart table.cart,
.woocommerce table.shop_table {
    background: var(--black-secondary) !important;
    border: 1px solid rgba(197, 165, 114, 0.1) !important;
    border-radius: 15px !important;
    overflow: hidden;
}

.woocommerce table.shop_table th {
    background: var(--black-tertiary) !important;
    color: var(--gold-primary) !important;
    border-color: rgba(197, 165, 114, 0.1) !important;
}

.woocommerce table.shop_table td {
    border-color: rgba(197, 165, 114, 0.1) !important;
    color: var(--text-light) !important;
}

.woocommerce table.shop_table td.product-name a {
    color: var(--gold-primary) !important;
}

/* Forms */
.woocommerce form .form-row input.input-text,
.woocommerce form .form-row textarea,
.woocommerce-page input[type="text"],
.woocommerce-page input[type="email"],
.woocommerce-page input[type="password"],
.woocommerce-page textarea {
    background: var(--black-tertiary) !important;
    border: 1px solid rgba(197, 165, 114, 0.2) !important;
    color: var(--text-light) !important;
    border-radius: 10px !important;
    padding: 0.75rem 1rem !important;
}

.woocommerce form .form-row label,
.woocommerce-page label {
    color: var(--text-light) !important;
}

/* Notices */
.woocommerce-message,
.woocommerce-info {
    background: rgba(197, 165, 114, 0.1) !important;
    border-top-color: var(--gold-primary) !important;
    color: var(--text-light) !important;
}

.woocommerce-message::before,
.woocommerce-info::before {
    color: var(--gold-primary) !important;
}

/* Product single page */
.woocommerce div.product div.summary {
    color: var(--text-light);
}

.woocommerce div.product .product_title {
    color: var(--text-light) !important;
    font-family: var(--font-display);
}

.woocommerce div.product p.price,
.woocommerce div.product span.price {
    color: var(--gold-primary) !important;
    font-size: 2rem !important;
}

.woocommerce div.product .woocommerce-product-details__short-description,
.woocommerce div.product .product_meta {
    color: var(--text-muted) !important;
}

.woocommerce .quantity .qty {
    background: var(--black-tertiary) !important;
    border: 1px solid rgba(197, 165, 114, 0.2) !important;
    color: var(--text-light) !important;
    border-radius: 10px !important;
}

/* Tabs */
.woocommerce div.product .woocommerce-tabs ul.tabs {
    padding: 0 !important;
    margin: 0 0 2rem !important;
}

.woocommerce div.product .woocommerce-tabs ul.tabs::before {
    border-color: rgba(197, 165, 114, 0.1) !important;
}

.woocommerce div.product .woocommerce-tabs ul.tabs li {
    background: var(--black-secondary) !important;
    border-color: rgba(197, 165, 114, 0.1) !important;
    border-radius: 10px 10px 0 0 !important;
}

.woocommerce div.product .woocommerce-tabs ul.tabs li a {
    color: var(--text-muted) !important;
}

.woocommerce div.product .woocommerce-tabs ul.tabs li.active {
    background: var(--black-tertiary) !important;
    border-bottom-color: var(--black-tertiary) !important;
}

.woocommerce div.product .woocommerce-tabs ul.tabs li.active a {
    color: var(--gold-primary) !important;
}

.woocommerce div.product .woocommerce-tabs .panel {
    background: var(--black-secondary) !important;
    color: var(--text-light) !important;
    border: 1px solid rgba(197, 165, 114, 0.1) !important;
    border-radius: 0 0 15px 15px !important;
    padding: 2rem !important;
}

.woocommerce div.product .woocommerce-tabs .panel h2 {
    color: var(--gold-primary) !important;
}
