/* ============================================
   STYLE.CSS - HEYTiC - VERSION COMPLÈTE CORRIGÉE
   ============================================ */

/* === RESET & BASE STYLES === */
:root {
    /* COULEURS HARMONISÉES ET VISIBLES */
    --primary: #007BFF;
    --primary-dark: #0056b3;
    --primary-light: #e6f2ff;
    --secondary: #6c757d;
    --success: #28a745;
    --danger: #dc3545;
    --warning: #ffc107;
    --info: #17a2b8;
    --light: #f8f9fa;
    --dark: #212529;
    
    /* NOUVELLE PALETTE COHÉRENTE */
    --text-primary: #212529;       /* Texte principal NOIR visible */
    --text-secondary: #495057;     /* Texte secondaire */
    --text-light: #f8f9fa;         /* Texte clair sur fond sombre */
    --bg-primary: #ffffff;         /* Fond principal */
    --bg-secondary: #f8f9fa;       /* Fond secondaire */
    --bg-dark: #121826;            /* Fond sombre */
    --border-color: #dee2e6;       /* Couleur des bordures */
    
    /* Dégradés */
    --blue-gradient: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    --orange-gradient: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    --green-gradient: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
    --purple-gradient: linear-gradient(135deg, #a18cd1 0%, #fbc2eb 100%);
    --primary-gradient: linear-gradient(135deg, #007BFF, #0056b3);
    
    /* Espacements */
    --space-xs: 8px;
    --space-sm: 16px;
    --space-md: 24px;
    --space-lg: 32px;
    --space-xl: 48px;
    
    /* Bordures */
    --border-radius-sm: 8px;
    --border-radius: 12px;
    --border-radius-lg: 20px;
    --border-radius-xl: 30px;
    
    /* Ombres */
    --shadow-sm: 0 2px 10px rgba(0, 0, 0, 0.08);
    --shadow-md: 0 4px 20px rgba(0, 0, 0, 0.12);
    --shadow-lg: 0 8px 30px rgba(0, 0, 0, 0.15);
    --shadow-xl: 0 15px 40px rgba(0, 0, 0, 0.2);
    
    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition: 0.3s ease;
    --transition-slow: 0.5s ease;
    
    /* Typographie */
    --font-primary: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    --font-heading: 'Poppins', 'Inter', sans-serif;
}

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-primary);
    color: var(--text-primary);
    background: var(--bg-primary);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}

/* === TYPOGRAPHY === */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: var(--space-sm);
    color: var(--text-primary);
}

h1 {
    font-size: 2.5rem;
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

h2 {
    font-size: 2rem;
    position: relative;
    padding-bottom: var(--space-xs);
}

h2:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 4px;
    background: var(--primary);
    border-radius: 2px;
}

h3 {
    font-size: 1.5rem;
    color: var(--text-primary);
}

h4 {
    font-size: 1.25rem;
    color: var(--text-primary);
}

p {
    margin-bottom: var(--space-sm);
    color: var(--text-secondary);
}

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

a:hover {
    color: var(--primary-dark);
}

.highlight {
    color: var(--primary);
    font-weight: 700;
}

.section-title {
    text-align: center;
    margin-bottom: var(--space-lg);
    position: relative;
}

.section-title:after {
    left: 50%;
    transform: translateX(-50%);
}

.section-subtitle {
    text-align: center;
    color: var(--secondary);
    max-width: 700px;
    margin: 0 auto var(--space-lg);
    font-size: 1.1rem;
}

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

.text-right {
    text-align: right;
}

/* === LAYOUT & CONTAINERS === */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--space-md);
}

.container-sm {
    max-width: 800px;
}

.container-lg {
    max-width: 1400px;
}

/* === BANNER PROMOTIONNELLE === */
.banner {
    background: linear-gradient(90deg, #ff6b6b, #ff8e53);
    color: white;
    padding: 12px 0;
    position: relative;
    overflow: hidden;
}

.banner .container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-sm);
    flex-wrap: wrap;
}

.banner i {
    font-size: 1.2rem;
    animation: swing 2s infinite ease-in-out;
}

@keyframes swing {
    0%, 100% { transform: rotate(0deg); }
    25% { transform: rotate(10deg); }
    75% { transform: rotate(-10deg); }
}

.banner strong {
    font-weight: 700;
}

.banner .btn-small {
    background: white;
    color: #ff6b6b;
    margin-left: var(--space-sm);
}

.banner .btn-small:hover {
    transform: scale(1.05);
}

/* === HEADER CORRIGÉ - VISIBLE === */
.header {
    background: var(--bg-dark);
    box-shadow: var(--shadow-lg);
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 15px 0;
}

.header .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: var(--space-md);
}

.logo {
    display: flex;
    flex-direction: column;
}

.logo h1 {
    margin: 0;
    font-size: 1.8rem;
    display: flex;
    align-items: center;
    gap: var(--space-xs);
    background: none;
    -webkit-background-clip: initial;
    background-clip: initial;
    color: var(--text-light);
}

.logo p {
    margin: 0;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
}

.main-nav {
    display: flex;
    gap: var(--space-md);
    align-items: center;
}

.main-nav a {
    color: var(--text-light);
    font-weight: 500;
    padding: 8px 16px;
    border-radius: var(--border-radius);
    display: flex;
    align-items: center;
    gap: 8px;
    position: relative;
}

.main-nav a:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--primary);
    transition: all var(--transition);
    transform: translateX(-50%);
}

.main-nav a:hover {
    color: white;
    background: rgba(255, 255, 255, 0.1);
}

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

.main-nav a.active {
    color: white;
    background: var(--primary);
}

.main-nav a.active:after {
    width: 80%;
}

.header-cta {
    display: flex;
    gap: var(--space-sm);
}

/* === HERO SECTION === */
.hero-section {
    padding: var(--space-xl) 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-xl);
    align-items: center;
    min-height: 80vh;
}

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

.hero-text h2 {
    font-size: 3rem;
    line-height: 1.1;
    margin-bottom: var(--space-md);
    animation: typing 3s steps(40, end);
    overflow: hidden;
    white-space: nowrap;
    border-right: 3px solid var(--primary);
    color: var(--text-primary);
}

@keyframes typing {
    from { width: 0; }
    to { width: 100%; }
}

.hero-text p {
    font-size: 1.2rem;
    color: var(--text-secondary);
    margin-bottom: var(--space-lg);
}

.hero-buttons {
    display: flex;
    gap: var(--space-md);
    flex-wrap: wrap;
}

.hero-image {
    position: relative;
    animation: slideInRight 1s ease;
}

.hero-image img {
    width: 100%;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-xl);
    transform: perspective(1000px) rotateY(-10deg);
    transition: transform var(--transition-slow);
}

.hero-image:hover img {
    transform: perspective(1000px) rotateY(0deg);
}

/* === STATISTIQUES === */
.stats-section {
    padding: var(--space-lg) 0;
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
}

.stats-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: var(--space-md);
}

.stat-card {
    background: white;
    padding: var(--space-lg);
    border-radius: var(--border-radius);
    text-align: center;
    box-shadow: var(--shadow-md);
    transition: all var(--transition);
    position: relative;
    overflow: hidden;
}

.stat-card:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--primary);
}

.stat-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: var(--space-xs);
    background: linear-gradient(90deg, var(--primary), #0b8cff);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

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

/* === PACKS === */
.packs-section {
    padding: var(--space-xl) 0;
    background: white;
}

.packs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--space-lg);
    margin-top: var(--space-lg);
}

.pack-card {
    background: white;
    border-radius: var(--border-radius);
    padding: var(--space-lg);
    box-shadow: var(--shadow-md);
    transition: all var(--transition);
    position: relative;
    border: 2px solid transparent;
}

.pack-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary);
}

.pack-card.featured {
    border: 2px solid var(--primary);
    transform: scale(1.05);
}

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

.pack-badge {
    position: absolute;
    top: -12px;
    right: 20px;
    background: var(--primary);
    color: white;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}

.pack-card h3 {
    color: var(--primary);
    margin-bottom: var(--space-sm);
}

.pack-price {
    margin-bottom: var(--space-md);
}

.old-price {
    text-decoration: line-through;
    color: var(--secondary);
    font-size: 1rem;
    margin-right: var(--space-xs);
}

.current-price {
    font-size: 1.8rem;
    font-weight: 700;
    color: #e60000;
}

.pack-features {
    list-style: none;
    margin-bottom: var(--space-lg);
}

.pack-features li {
    margin-bottom: var(--space-xs);
    display: flex;
    align-items: center;
    gap: var(--space-xs);
    color: var(--text-primary);
}

.pack-features i {
    color: var(--success);
}

/* === FORMULAIRES - CORRIGÉS === */
.form-section {
    padding: var(--space-xl) 0;
}

.form-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--space-md);
    margin-bottom: var(--space-md);
}

.form-card {
    background: var(--bg-primary);
    padding: var(--space-lg);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-md);
    margin-bottom: var(--space-md);
    border: 1px solid var(--border-color);
}

.form-card h3 {
    color: var(--text-primary);
}

/* === CHOISISSEZ VOTRE PACK - CORRIGÉ === */
.packs-selection {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: var(--space-sm);
    margin: var(--space-md) 0;
}

.pack-option {
    border: 2px solid var(--border-color);
    border-radius: var(--border-radius-sm);
    padding: var(--space-md);
    cursor: pointer;
    transition: all var(--transition);
    background: var(--bg-primary);
}

.pack-option:hover {
    border-color: var(--primary);
    background: var(--primary-light);
}

.pack-option.selected {
    border-color: var(--primary);
    background: var(--primary-light);
}

.pack-option input {
    display: none;
}

.pack-content h4 {
    margin: 0 0 var(--space-xs) 0;
    color: var(--text-primary);
}

.pack-price-display {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

/* === OPTIONS SUPPLEMENTAIRES - CORRIGÉ === */
.custom-options {
    margin-top: var(--space-md);
    padding: var(--space-md);
    background: var(--bg-secondary);
    border-radius: var(--border-radius-sm);
    border: 1px solid var(--border-color);
}

.custom-options h4 {
    color: var(--text-primary);
    margin-bottom: var(--space-md);
}

.options-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: var(--space-sm);
}

.option-checkbox {
    display: flex;
    align-items: center;
    gap: var(--space-xs);
    padding: 8px;
    background: var(--bg-primary);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius-sm);
    cursor: pointer;
    transition: all var(--transition);
}

.option-checkbox:hover {
    border-color: var(--primary);
    background: var(--primary-light);
}

.option-checkbox span {
    color: var(--text-primary);
    font-weight: 500;
}

.option-checkbox input[type="checkbox"] {
    accent-color: var(--primary);
    margin: 0;
}

/* === VOS PRODUITS - CORRIGÉ === */
#products-section {
    margin-top: var(--space-md);
    padding: var(--space-md);
    background: var(--bg-secondary);
    border-radius: var(--border-radius);
    border: 1px solid var(--border-color);
}

#products-section h3 {
    color: var(--text-primary);
    margin-bottom: var(--space-md);
}

.products-container {
    margin: var(--space-md) 0;
}

.product-item {
    background: var(--bg-primary);
    padding: var(--space-md);
    border-radius: var(--border-radius-sm);
    border: 1px solid var(--border-color);
    margin-bottom: var(--space-md);
}

.product-item label {
    color: var(--text-primary);
    font-weight: 600;
    display: block;
    margin-bottom: var(--space-xs);
}

.product-item .form-control {
    background: var(--bg-primary);
    color: var(--text-primary);
    border-color: var(--border-color);
}

/* === FORM GROUPS CORRIGÉS === */
.form-group {
    margin-bottom: var(--space-md);
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    color: var(--text-primary);
    font-weight: 600;
}

.form-control {
    width: 100%;
    padding: 14px 16px;
    border: 2px solid var(--border-color);
    border-radius: var(--border-radius-sm);
    font-size: 1rem;
    color: var(--text-primary);
    background: var(--bg-primary);
    transition: var(--transition);
    font-family: var(--font-primary);
}

.form-control:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(0, 123, 255, 0.1);
}

textarea.form-control {
    min-height: 120px;
    resize: vertical;
}

.input-with-button {
    display: flex;
    gap: var(--space-xs);
}

.input-with-button .form-control {
    flex: 1;
}

/* === RÉSUMÉ DE COMMANDE - CORRIGÉ === */
.summary {
    background: var(--bg-secondary);
    padding: var(--space-lg);
    border-radius: var(--border-radius);
    border: 1px solid var(--border-color);
}

.summary h3 {
    color: var(--text-primary);
}

.summary-details {
    margin: var(--space-md) 0;
}

.summary-item {
    display: flex;
    justify-content: space-between;
    padding: 12px 0;
    border-bottom: 1px solid var(--border-color);
    color: var(--text-primary);
}

.summary-item:last-child {
    border-bottom: none;
}

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

.form-actions {
    display: flex;
    gap: var(--space-md);
    margin-top: var(--space-lg);
}

/* === BUTTONS CORRIGÉS === */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-xs);
    padding: 12px 24px;
    border-radius: var(--border-radius);
    font-weight: 600;
    font-size: 0.95rem;
    cursor: pointer;
    transition: all var(--transition);
    border: 2px solid transparent;
    text-align: center;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn: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;
    z-index: -1;
}

.btn:hover:before {
    left: 100%;
}

.btn-primary {
    background: var(--primary);
    color: white;
    box-shadow: 0 4px 15px rgba(0, 123, 255, 0.3);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 123, 255, 0.4);
    color: white;
}

.btn-secondary {
    background: var(--bg-primary);
    color: var(--primary);
    border: 2px solid var(--primary);
}

.btn-secondary:hover {
    background: var(--primary-light);
    transform: translateY(-2px);
    color: var(--primary);
}

.btn-success {
    background: var(--success);
    color: white;
}

.btn-danger {
    background: var(--danger);
    color: white;
}

.btn-warning {
    background: var(--warning);
    color: var(--dark);
}

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

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

.btn-light {
    background: white;
    color: var(--dark);
    border: 1px solid var(--border-color);
}

.btn-large {
    padding: 16px 32px;
    font-size: 1.1rem;
}

.btn-small {
    padding: 8px 16px;
    font-size: 0.85rem;
}

.btn-block {
    display: block;
    width: 100%;
}

.btn-whatsapp {
    background: #25D366;
    color: white;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
}

.btn-whatsapp:hover {
    background: #128C7E;
    color: white;
}

.btn-icon {
    width: 40px;
    height: 40px;
    padding: 0;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

/* === SUIVI & PAIEMENT - CORRIGÉ === */
.track-section {
    padding: var(--space-xl) 0;
}

.track-card {
    background: var(--bg-primary);
    padding: var(--space-lg);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-md);
    border: 1px solid var(--border-color);
}

.track-form {
    margin-bottom: var(--space-lg);
    padding-bottom: var(--space-lg);
    border-bottom: 1px solid var(--border-color);
}

.request-details {
    animation: fadeIn 0.8s ease;
}

.details-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: var(--space-md);
    margin: var(--space-md) 0;
}

.detail-item {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.detail-label {
    font-size: 0.9rem;
    color: var(--text-secondary);
}

.detail-value {
    font-weight: 600;
    color: var(--text-primary);
}

.badge {
    background: var(--primary-light);
    color: var(--primary);
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    display: inline-block;
}

.status-card {
    background: var(--bg-secondary);
    padding: var(--space-md);
    border-radius: var(--border-radius);
    margin: var(--space-md) 0;
    border: 1px solid var(--border-color);
}

.status-content {
    margin: var(--space-md) 0;
}

.status-indicator {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: var(--space-xs);
}

.status-dot {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: var(--border-color);
    position: relative;
    z-index: 1;
}

.status-dot.active {
    background: var(--primary);
    animation: pulseDot 2s infinite;
}

@keyframes pulseDot {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

.status-line {
    height: 2px;
    background: var(--border-color);
    flex: 1;
    max-width: 100px;
}

.status-labels {
    display: flex;
    justify-content: space-between;
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.status-badge {
    padding: 6px 16px;
    border-radius: 20px;
    font-weight: 600;
    font-size: 0.9rem;
    margin-left: var(--space-xs);
    background: var(--primary-light);
    color: var(--primary);
}

/* === CARTE DE PAIEMENT - CORRIGÉ === */
.payment-card {
    background: var(--bg-primary);
    padding: var(--space-lg);
    border-radius: var(--border-radius);
    border: 1px solid var(--border-color);
    margin: var(--space-lg) 0;
    box-shadow: var(--shadow-sm);
}

.payment-card h4 {
    color: var(--text-primary);
    margin-bottom: var(--space-md);
}

.payment-card p {
    color: var(--text-secondary);
    margin-bottom: var(--space-md);
}

.payment-methods {
    display: flex;
    gap: var(--space-md);
    margin: var(--space-lg) 0;
    flex-wrap: wrap;
}

.payment-method {
    flex: 1;
    min-width: 200px;
    background: var(--bg-secondary);
    padding: var(--space-md);
    border-radius: var(--border-radius);
    border: 1px solid var(--border-color);
}

.payment-method strong {
    color: var(--text-primary);
}

.payment-submitted {
    background: #d4edda;
    color: #155724;
    padding: var(--space-md);
    border-radius: var(--border-radius);
    margin: var(--space-md) 0;
}

.logo-preview {
    margin: var(--space-md) 0;
    text-align: center;
}

.logo-image {
    max-width: 200px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-md);
}

.products-preview {
    margin: var(--space-md) 0;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: var(--space-md);
    margin-top: var(--space-md);
}

.product-preview-card {
    background: var(--bg-primary);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius);
    overflow: hidden;
    transition: all var(--transition);
}

.product-preview-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.product-image {
    width: 100%;
    height: 150px;
    object-fit: cover;
}

.product-info {
    padding: var(--space-sm);
}

.product-price {
    color: var(--primary);
    font-weight: 600;
    margin: 4px 0;
}

.product-desc {
    font-size: 0.9rem;
    color: var(--text-secondary);
}

.no-result {
    text-align: center;
    padding: var(--space-xl) var(--space-md);
    color: var(--secondary);
}

/* === GALERIE === */
.gallery-section {
    padding: var(--space-xl) 0;
}

.gallery-filters {
    display: flex;
    justify-content: center;
    gap: var(--space-sm);
    margin-bottom: var(--space-lg);
    flex-wrap: wrap;
}

.filter-btn {
    padding: 8px 20px;
    background: var(--bg-primary);
    border: 2px solid var(--border-color);
    border-radius: 30px;
    cursor: pointer;
    font-weight: 600;
    transition: all var(--transition);
    color: var(--text-primary);
}

.filter-btn:hover {
    border-color: var(--primary);
    color: var(--primary);
}

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

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: var(--space-md);
}

.gallery-item {
    position: relative;
    border-radius: var(--border-radius);
    overflow: hidden;
    aspect-ratio: 4/3;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-slow);
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.8);
    color: white;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: var(--space-md);
    opacity: 0;
    transition: opacity var(--transition);
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-category {
    background: var(--primary);
    color: white;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    margin: var(--space-xs) 0;
}

/* === CLIENTS === */
.clients-section {
    padding: var(--space-xl) 0;
    background: var(--bg-secondary);
}

.clients-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: var(--space-md);
    margin-top: var(--space-lg);
}

.client-card {
    background: var(--bg-primary);
    padding: var(--space-lg);
    border-radius: var(--border-radius);
    text-align: center;
    box-shadow: var(--shadow-md);
    transition: all var(--transition);
    border: 1px solid var(--border-color);
}

.client-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.client-logo {
    font-size: 3rem;
    margin-bottom: var(--space-sm);
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.client-info h4 {
    margin-bottom: 8px;
    color: var(--text-primary);
}

.client-site {
    color: var(--primary);
    font-weight: 600;
    margin: 8px 0;
}

.client-category {
    display: inline-block;
    background: var(--primary-light);
    color: var(--primary);
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}

.client-actions {
    margin-top: var(--space-md);
}

.clients-testimonials {
    margin-top: var(--space-xl);
    padding: var(--space-xl);
    background: var(--bg-primary);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-md);
    border: 1px solid var(--border-color);
}

.testimonials-carousel {
    position: relative;
    margin-top: var(--space-lg);
}

.testimonial-slide {
    display: none;
    animation: fadeIn 1s ease;
}

.testimonial-slide.active {
    display: block;
}

.testimonial-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    padding: var(--space-lg);
    background: var(--bg-secondary);
    border-radius: var(--border-radius);
    position: relative;
    border: 1px solid var(--border-color);
}

.testimonial-content:before {
    content: '"';
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 4rem;
    color: var(--primary);
    opacity: 0.3;
    font-family: Georgia, serif;
}

.testimonial-author {
    margin-top: var(--space-md);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
}

/* === AVIS === */
.reviews-section {
    padding: var(--space-xl) 0;
}

.review-form-card {
    background: var(--bg-primary);
    padding: var(--space-lg);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-md);
    margin-bottom: var(--space-xl);
    border: 1px solid var(--border-color);
}

.reviews-list {
    background: var(--bg-primary);
    padding: var(--space-lg);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-md);
    border: 1px solid var(--border-color);
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: var(--space-md);
    margin-top: var(--space-lg);
}

.review-card {
    background: var(--bg-secondary);
    padding: var(--space-md);
    border-radius: var(--border-radius);
    transition: all var(--transition);
    border: 1px solid var(--border-color);
}

.review-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.review-header {
    display: flex;
    align-items: center;
    gap: var(--space-md);
    margin-bottom: var(--space-md);
}

.reviewer-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary), #0b8cff);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    font-weight: 600;
}

.reviewer-info {
    flex: 1;
}

.review-stars {
    color: #ffc107;
    font-size: 1rem;
    margin: 4px 0;
}

.review-date {
    font-size: 0.8rem;
    color: var(--text-secondary);
}

.review-content {
    font-style: italic;
    color: var(--text-primary);
}

.no-reviews {
    text-align: center;
    padding: var(--space-xl) var(--space-md);
    color: var(--secondary);
}

/* === CONFIRMATION === */
.confirmation-section {
    padding: var(--space-xl) 0;
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.confirmation-card {
    background: var(--bg-primary);
    padding: var(--space-xl);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-lg);
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
    animation: bounceIn 1s ease;
    border: 1px solid var(--border-color);
}

@keyframes bounceIn {
    0% { transform: scale(0.8); opacity: 0; }
    60% { transform: scale(1.05); }
    100% { transform: scale(1); opacity: 1; }
}

.confirmation-icon {
    font-size: 4rem;
    color: var(--success);
    margin-bottom: var(--space-md);
    animation: checkmark 1s ease;
}

@keyframes checkmark {
    0% { transform: scale(0); }
    50% { transform: scale(1.2); }
    100% { transform: scale(1); }
}

.confirmation-code {
    margin: var(--space-lg) 0;
    padding: var(--space-md);
    background: var(--bg-secondary);
    border-radius: var(--border-radius);
    border: 1px solid var(--border-color);
}

.code-display {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary);
    margin: var(--space-sm) 0;
    font-family: monospace;
    background: var(--bg-primary);
    padding: var(--space-sm);
    border-radius: var(--border-radius-sm);
    border: 2px dashed var(--primary);
}

.confirmation-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: var(--space-md);
    margin: var(--space-lg) 0;
}

.step {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-sm);
}

.step-number {
    width: 40px;
    height: 40px;
    background: var(--primary);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
}

.step-content h4 {
    margin: 0;
    font-size: 1rem;
    color: var(--text-primary);
}

.step-content p {
    margin: 0;
    font-size: 0.85rem;
    color: var(--text-secondary);
}

.confirmation-actions {
    display: flex;
    gap: var(--space-md);
    justify-content: center;
    margin-top: var(--space-lg);
}

/* === FOOTER - CORRIGÉ === */
.footer {
    background: var(--bg-dark);
    color: var(--text-light);
    padding: var(--space-xl) 0 0;
    margin-top: var(--space-xl);
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--space-xl);
    margin-bottom: var(--space-xl);
}

.footer-col h4 {
    color: var(--text-light);
    margin-bottom: var(--space-md);
    display: flex;
    align-items: center;
    gap: var(--space-xs);
}

.footer-col h4:after {
    display: none;
}

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

.footer-col ul li {
    margin-bottom: var(--space-sm);
}

.footer-col ul li a {
    color: rgba(255, 255, 255, 0.8);
    display: flex;
    align-items: center;
    gap: var(--space-xs);
}

.footer-col ul li a:hover {
    color: white;
    transform: translateX(5px);
}

.contact-info li {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: var(--space-sm);
}

.contact-info i {
    width: 20px;
}

.social-links {
    display: flex;
    gap: var(--space-sm);
    margin-top: var(--space-md);
}

.social-links a {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    transition: all var(--transition);
}

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

.newsletter-form {
    display: flex;
    gap: var(--space-xs);
    margin-top: var(--space-md);
}

.newsletter-form input {
    flex: 1;
    padding: 12px 16px;
    border: none;
    border-radius: var(--border-radius);
    background: rgba(255, 255, 255, 0.1);
    color: white;
}

.newsletter-form input::placeholder {
    color: rgba(255, 255, 255, 0.6);
}

.footer-bottom {
    padding: var(--space-md) 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
}

.footer-bottom a {
    color: rgba(255, 255, 255, 0.8);
}

.footer-bottom a:hover {
    color: white;
}

/* === WHATSAPP FLOAT === */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: #25D366;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    box-shadow: var(--shadow-lg);
    z-index: 999;
    transition: var(--transition);
    animation: floatUpDown 3s infinite ease-in-out;
}

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

.whatsapp-float:hover {
    transform: scale(1.1);
}

/* === MESSAGES & TOAST === */
.message-flash {
    position: fixed;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    padding: var(--space-md) var(--space-lg);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-lg);
    z-index: 9999;
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    max-width: 500px;
    width: 90%;
    animation: slideInTop 0.5s ease;
}

.message-success {
    background: #d4edda;
    color: #155724;
    border-left: 4px solid var(--success);
}

.message-error {
    background: #f8d7da;
    color: #721c24;
    border-left: 4px solid var(--danger);
}

.message-flash button {
    margin-left: auto;
    background: none;
    border: none;
    font-size: 1.2rem;
    cursor: pointer;
    color: inherit;
    opacity: 0.7;
}

.message-flash button:hover {
    opacity: 1;
}

/* === ANIMATIONS CSS === */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

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

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

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

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

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

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

/* Classes d'animation */
.fade-in {
    animation: fadeIn 0.8s ease forwards;
}

.slide-in-left {
    animation: slideInLeft 0.8s ease forwards;
}

.slide-in-right {
    animation: slideInRight 0.8s ease forwards;
}

.slide-in-top {
    animation: slideInTop 0.8s ease forwards;
}

.slide-in-bottom {
    animation: slideInBottom 0.8s ease forwards;
}

.float-animation {
    animation: float 3s infinite ease-in-out;
}

.pulse-animation {
    animation: pulse 2s infinite;
}

.scale-hover {
    transition: transform var(--transition);
}

.scale-hover:hover {
    transform: scale(1.05);
}

/* === UTILITY CLASSES === */
.hidden {
    display: none !important;
}

.visible {
    display: block !important;
}

.mt-0 { margin-top: 0 !important; }
.mt-1 { margin-top: var(--space-xs) !important; }
.mt-2 { margin-top: var(--space-sm) !important; }
.mt-3 { margin-top: var(--space-md) !important; }
.mt-4 { margin-top: var(--space-lg) !important; }
.mt-5 { margin-top: var(--space-xl) !important; }

.mb-0 { margin-bottom: 0 !important; }
.mb-1 { margin-bottom: var(--space-xs) !important; }
.mb-2 { margin-bottom: var(--space-sm) !important; }
.mb-3 { margin-bottom: var(--space-md) !important; }
.mb-4 { margin-bottom: var(--space-lg) !important; }
.mb-5 { margin-bottom: var(--space-xl) !important; }

.p-0 { padding: 0 !important; }
.p-1 { padding: var(--space-xs) !important; }
.p-2 { padding: var(--space-sm) !important; }
.p-3 { padding: var(--space-md) !important; }
.p-4 { padding: var(--space-lg) !important; }
.p-5 { padding: var(--space-xl) !important; }

.rounded { border-radius: var(--border-radius) !important; }
.rounded-sm { border-radius: var(--border-radius-sm) !important; }
.rounded-lg { border-radius: var(--border-radius-lg) !important; }
.rounded-xl { border-radius: var(--border-radius-xl) !important; }

.shadow-sm { box-shadow: var(--shadow-sm) !important; }
.shadow-md { box-shadow: var(--shadow-md) !important; }
.shadow-lg { box-shadow: var(--shadow-lg) !important; }
.shadow-xl { box-shadow: var(--shadow-xl) !important; }

.bg-primary { background: var(--primary) !important; color: white !important; }
.bg-secondary { background: var(--secondary) !important; color: white !important; }
.bg-success { background: var(--success) !important; color: white !important; }
.bg-danger { background: var(--danger) !important; color: white !important; }
.bg-warning { background: var(--warning) !important; color: var(--dark) !important; }
.bg-info { background: var(--info) !important; color: white !important; }
.bg-light { background: var(--light) !important; color: var(--dark) !important; }
.bg-dark { background: var(--dark) !important; color: white !important; }

.text-primary { color: var(--primary) !important; }
.text-secondary { color: var(--secondary) !important; }
.text-success { color: var(--success) !important; }
.text-danger { color: var(--danger) !important; }
.text-warning { color: var(--warning) !important; }
.text-info { color: var(--info) !important; }
.text-light { color: var(--text-light) !important; }
.text-dark { color: var(--text-primary) !important; }

.flex { display: flex !important; }
.flex-col { flex-direction: column !important; }
.flex-wrap { flex-wrap: wrap !important; }
.items-center { align-items: center !important; }
.justify-center { justify-content: center !important; }
.justify-between { justify-content: space-between !important; }
.justify-around { justify-content: space-around !important; }
.gap-1 { gap: var(--space-xs) !important; }
.gap-2 { gap: var(--space-sm) !important; }
.gap-3 { gap: var(--space-md) !important; }
.gap-4 { gap: var(--space-lg) !important; }
.gap-5 { gap: var(--space-xl) !important; }

.grid { display: grid !important; }
.grid-cols-2 { grid-template-columns: repeat(2, 1fr) !important; }
.grid-cols-3 { grid-template-columns: repeat(3, 1fr) !important; }
.grid-cols-4 { grid-template-columns: repeat(4, 1fr) !important; }
.grid-cols-auto { grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)) !important; }

.w-100 { width: 100% !important; }
.h-100 { height: 100% !important; }
.min-h-100 { min-height: 100vh !important; }

.text-xs { font-size: 0.75rem !important; }
.text-sm { font-size: 0.875rem !important; }
.text-base { font-size: 1rem !important; }
.text-lg { font-size: 1.125rem !important; }
.text-xl { font-size: 1.25rem !important; }
.text-2xl { font-size: 1.5rem !important; }
.text-3xl { font-size: 1.875rem !important; }
.text-4xl { font-size: 2.25rem !important; }

.font-light { font-weight: 300 !important; }
.font-normal { font-weight: 400 !important; }
.font-medium { font-weight: 500 !important; }
.font-semibold { font-weight: 600 !important; }
.font-bold { font-weight: 700 !important; }
.font-black { font-weight: 900 !important; }

.opacity-0 { opacity: 0 !important; }
.opacity-25 { opacity: 0.25 !important; }
.opacity-50 { opacity: 0.5 !important; }
.opacity-75 { opacity: 0.75 !important; }
.opacity-100 { opacity: 1 !important; }

/* === RESPONSIVE DESIGN === */
@media (max-width: 1024px) {
    .hero-section {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .hero-text h2 {
        font-size: 2.5rem;
    }
    
    .hero-buttons {
        justify-content: center;
    }
    
    .packs-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    }
}

@media (max-width: 768px) {
    html {
        font-size: 14px;
    }
    
    h1 {
        font-size: 2rem;
    }
    
    h2 {
        font-size: 1.75rem;
    }
    
    .header .container {
        flex-direction: column;
        text-align: center;
    }
    
    .main-nav {
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .hero-section {
        padding: var(--space-lg) 0;
        min-height: auto;
    }
    
    .hero-text h2 {
        font-size: 2rem;
    }
    
    .form-grid {
        grid-template-columns: 1fr;
    }
    
    .details-grid {
        grid-template-columns: 1fr;
    }
    
    .payment-methods {
        flex-direction: column;
    }
    
    .confirmation-steps {
        grid-template-columns: 1fr;
    }
    
    .confirmation-actions {
        flex-direction: column;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .social-links {
        justify-content: center;
    }
    
    .newsletter-form {
        flex-direction: column;
    }
}

@media (max-width: 480px) {
    .hero-buttons {
        flex-direction: column;
        width: 100%;
    }
    
    .hero-buttons .btn {
        width: 100%;
    }
    
    .form-actions {
        flex-direction: column;
    }
    
    .form-actions .btn {
        width: 100%;
    }
    
    .gallery-filters {
        flex-direction: column;
        align-items: center;
    }
    
    .filter-btn {
        width: 100%;
        max-width: 200px;
    }
    
    .message-flash {
        width: 95%;
        padding: var(--space-sm);
    }
}

/* === PRINT STYLES === */
@media print {
    .banner,
    .header,
    .footer,
    .whatsapp-float,
    .message-flash,
    .btn {
        display: none !important;
    }
    
    body {
        background: white !important;
        color: black !important;
    }
    
    .container {
        max-width: 100% !important;
        padding: 0 !important;
    }
    
    a {
        color: black !important;
        text-decoration: none !important;
    }
}