/* Variables */
:root {
    --primary-color: #EFCC1A;
    --secondary-color: #D09E4E;
    --accent-color: #000000;
    --text-color: #000000;
    --text-color-dark: #000000;
    --background-dark: #f8fafc;
    --background-light: #ffffff;
    --glass-background: rgba(255, 255, 255, 0.3);
    --glass-border: rgba(0, 0, 0, 0.1);
    --glass-shadow: rgba(0, 0, 0, 0.15);
    --glass-blur: 15px;
    --card-radius: 16px;
    --transition: all 0.3s ease;
    --section-padding: 80px 0;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    color: var(--text-color);
    background-color: transparent; /* Fond transparent pour voir l'effet de transparence de la section hero */
    line-height: 1.6;
    overflow-x: hidden;
    position: relative;
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, rgba(255, 255, 255, 0.01) 0%, transparent 25%, rgba(255, 255, 255, 0.008) 50%, transparent 75%, rgba(255, 255, 255, 0.01) 100%);
    pointer-events: none;
    z-index: 1;
}

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

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
}

.container {
    width: 95%;
    max-width: 800px;
    margin: 0 auto;
    padding: 0 10px;
}

section {
    padding: var(--section-padding);
    position: relative;
    scroll-margin-top: 200px;
}

#programmes {
    scroll-margin-top: 200px;
    padding: 0 0 80px 0;
}

/* Background Gradient */
.background-gradient {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    background: linear-gradient(135deg, #ffffff 0%, #f8fafc 50%, #e2e8f0 100%);
    overflow: hidden;
    filter: blur(8px);
    -webkit-filter: blur(8px);
}

.background-gradient::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(239, 204, 26, 0.3) 0%, rgba(208, 158, 78, 0.2) 25%, rgba(0, 0, 0, 0.1) 50%, transparent 70%);
    animation: rotate 30s linear infinite;
}

.background-gradient::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(208, 158, 78, 0.2) 0%, rgba(239, 204, 26, 0.1) 30%, rgba(0, 0, 0, 0.05) 60%, transparent 80%);
    animation: rotate 45s linear infinite reverse;
}

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

/* Glassmorphism Effects */
.glass-card {
    background: var(--glass-background);
    backdrop-filter: blur(var(--glass-blur));
    -webkit-backdrop-filter: blur(var(--glass-blur));
    border-radius: var(--card-radius);
    border: 1px solid var(--glass-border);
    box-shadow: 0 8px 32px 0 var(--glass-shadow);
    padding: 30px;
    transition: var(--transition);
    overflow: hidden;
    position: relative;
}

/* FORCER LA DISPARITION COMPLÈTE DU FOND - RÈGLE ULTIME */
.hero,
.hero *,
.hero .container,
.hero .glass-card,
.hero .hero-content {
    background: none !important;
    background-color: transparent !important;
    background-image: none !important;
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
    border: none !important;
    box-shadow: none !important;
    padding: 30px !important;
}

/* Effet de dégradé d'opacité sur les bords de la photo */
.photo-container {
    position: relative;
    overflow: hidden;
}

.photo-container img {
    position: relative;
    z-index: 1;
    display: block;
    mask: 
        radial-gradient(ellipse at center, black 50%, transparent 100%),
        linear-gradient(to right, transparent 0%, black 20%, black 80%, transparent 100%),
        linear-gradient(to bottom, transparent 0%, black 20%, black 80%, transparent 100%);
    mask-composite: intersect;
    -webkit-mask: 
        radial-gradient(ellipse at center, black 50%, transparent 100%),
        linear-gradient(to right, transparent 0%, black 20%, black 80%, transparent 100%),
        linear-gradient(to bottom, transparent 0%, black 20%, black 80%, transparent 100%);
    -webkit-mask-composite: source-in;
}

.glass-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -50%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.08), transparent);
    transform: skewX(-25deg);
    transition: var(--transition);
    pointer-events: none;
}

.glass-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.05) 0%, transparent 50%, rgba(255, 255, 255, 0.02) 100%);
    border-radius: var(--card-radius);
    pointer-events: none;
}

.glass-card:hover::before {
    left: 150%;
    transition: 0.8s ease-in-out;
}

.glass-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px 0 var(--glass-shadow);
}

.glass-effect {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(var(--glass-blur));
    -webkit-backdrop-filter: blur(var(--glass-blur));
    border-radius: var(--card-radius);
    border: 1px solid var(--glass-border);
    overflow: hidden;
}

.glass-nav {
    background: transparent;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    border-bottom: none;
    position: fixed;
    width: 100%;
    z-index: 1000;
    transition: all 0.3s ease;
    transform: translateY(0);
    opacity: 1;
}

.glass-nav.scrolled {
    background: transparent;
    box-shadow: none;
}

.glass-nav.hidden {
    transform: translateY(-100%);
    opacity: 0;
}

.glass-footer {
    background: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(var(--glass-blur));
    -webkit-backdrop-filter: blur(var(--glass-blur));
    border-top: 1px solid rgba(208, 158, 78, 0.3);
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 20px;
}

h1 {
    font-size: 3.5rem;
}

h2 {
    font-size: 2.5rem;
}

h3 {
    font-size: 1.75rem;
}

h4 {
    font-size: 1.25rem;
}

p {
    margin-bottom: 20px;
}

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

.separator {
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    margin: 0 auto 20px;
    border-radius: 2px;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 28px;
    border-radius: 50px;
    font-weight: 600;
    text-align: center;
    cursor: pointer;
    transition: var(--transition);
    border: 1px solid transparent;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: var(--accent-color);
    box-shadow: 0 4px 15px rgba(239, 204, 26, 0.4);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(239, 204, 26, 0.6);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(var(--glass-blur));
    -webkit-backdrop-filter: blur(var(--glass-blur));
    border: 1px solid var(--glass-border);
    color: var(--text-color);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-3px);
}

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

/* Header & Navigation */
header {
    padding: 15px 0;
    height: 80px;
    display: flex;
    align-items: center;
}

header .container {
    display: flex;
    justify-content: center;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    height: 100%;
}

.logo a {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.logo-img {
    height: 50px;
    width: auto;
    margin-right: 15px;
    filter: drop-shadow(0 0 5px rgba(255, 255, 255, 0.3));
    transition: transform 0.3s ease;
}

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

.logo h1 {
    font-size: 2.2rem;
    margin-bottom: 0;
    white-space: nowrap;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 2px;
    background: linear-gradient(135deg, var(--primary-color), #FFD700, var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    position: relative;
    transition: var(--transition);
}

.logo h1::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, var(--primary-color), #FFD700, var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    filter: blur(1px);
    z-index: -1;
}

.logo-text {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.logo-subtitle {
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #ffffff !important;
    margin-top: -8px;
    opacity: 1;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
    background: none !important;
    -webkit-background-clip: initial !important;
    -webkit-text-fill-color: #ffffff !important;
}

.logo:hover h1 {
    transform: scale(1.05);
    filter: drop-shadow(0 0 10px rgba(239, 204, 26, 0.5));
}

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

nav {
    flex: 1;
    display: flex;
    justify-content: flex-end;
}

nav ul {
    display: flex;
    gap: 30px;
    margin-right: 15px;
    align-items: center;
}

nav a {
    font-weight: 500;
    position: relative;
    padding: 8px 0;
    font-size: 1rem;
    white-space: nowrap;
}

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

nav a:hover::after,
nav a.active::after {
    width: 100%;
}

.btn-contact {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    padding: 8px 16px;
    border-radius: 50px;
    color: var(--accent-color);
    font-size: 0.95rem;
}

.btn-contact:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(239, 204, 26, 0.4);
}

.menu-toggle {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
}

/* Hero Section */
.hero {
    padding: 160px 0 100px;
    position: relative;
    overflow: hidden;
    margin-top: 80px;
    background: none !important; /* Fond complètement invisible */
    background-color: rgba(0,0,0,0) !important;
}

.hero-content {
    display: flex;
    align-items: center;
    gap: 50px;
}

.hero-text {
    flex: 1;
}

.hero-text h1 {
    margin-bottom: 20px;
    font-size: 3.5rem;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-text h1 .premium {
    background: none !important;
    -webkit-background-clip: unset !important;
    background-clip: unset !important;
    -webkit-text-fill-color: #EFCC1A !important;
    color: #EFCC1A !important;
}

.yellow-text {
    color: #EFCC1A !important;
    font-weight: 600 !important;
}

.hero-text p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    opacity: 0.9;
}

.hero-image {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.image-container {
    display: flex;
    justify-content: center;
    align-items: center;
}

.placeholder-image {
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    background: rgba(255, 255, 255, 0.05);
    color: var(--text-color);
    font-weight: 500;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
}

/* About Section */
.about-content {
    display: flex;
    align-items: center;
    gap: 50px;
}

.about-image {
    flex: 1;
}

.about-text {
    flex: 1;
}

.about-text h3 {
    margin-bottom: 20px;
}

.about-text ul {
    margin-bottom: 30px;
}

.about-text li {
    margin-bottom: 10px;
    display: flex;
    align-items: center;
}

.about-text li i {
    color: var(--accent-color);
    margin-right: 10px;
}

/* Transformations Section */
.transformations-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.transformation-card {
    height: 100%;
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
    transition: all 0.4s ease;
}

.transformation-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 20px 40px rgba(0,0,0,0.3);
}

.transformation-details {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 25px;
    background: linear-gradient(135deg, rgba(239,204,26,0.15) 0%, rgba(208,158,78,0.1) 50%, rgba(255,255,255,0.05) 100%);
    border-radius: 20px;
    margin: 15px;
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(15px);
    border: 2px solid rgba(239,204,26,0.3);
}

.transformation-details::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, transparent 30%, rgba(239,204,26,0.2) 50%, transparent 70%);
    transform: translateX(-100%);
    transition: transform 0.8s ease;
    z-index: 0;
}

.transformation-card:hover .transformation-details::before {
    transform: translateX(100%);
}

.client-info {
    text-align: center;
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
}

.client-info h3 {
    font-size: 2rem;
    font-weight: 900;
    background: linear-gradient(135deg, #EFCC1A 0%, #FFD700 50%, #D09E4E 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 4px 8px rgba(0,0,0,0.3);
    margin-bottom: 8px;
    letter-spacing: 1px;
}

.program-type {
    font-size: 1rem;
    font-weight: 600;
    color: rgba(255,255,255,0.9);
    background: rgba(37,22,5,0.6);
    padding: 8px 16px;
    border-radius: 20px;
    display: inline-block;
    border: 1px solid rgba(239,204,26,0.4);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.transformation-images {
    margin-bottom: 20px;
}

.before-after {
    display: flex;
    gap: 15px;
}

.before, .after {
    flex: 1;
    position: relative;
    height: 200px;
    border-radius: 10px;
    overflow: hidden;
}

.before span, .after span {
    position: absolute;
    bottom: 10px;
    left: 10px;
    background: rgba(0, 0, 0, 0.6);
    padding: 5px 10px;
    border-radius: 5px;
    font-size: 0.8rem;
}

.transformation-details h3 {
    margin: 0 0 5px 0;
    font-size: 1.5rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--accent-color), #ff6b6b);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.transformation-details p {
    margin: 0 0 15px 0;
    opacity: 0.8;
}

.stats {
    display: flex;
    justify-content: center;
    align-items: stretch;
    gap: 15px;
    margin: 20px 0;
    flex-wrap: wrap;
    position: relative;
    z-index: 1;
}

.stat {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 18px 20px;
    background: linear-gradient(135deg, rgba(239,204,26,0.2) 0%, rgba(208,158,78,0.15) 100%);
    border-radius: 16px;
    backdrop-filter: blur(15px);
    border: 2px solid rgba(239,204,26,0.4);
    transition: all 0.4s ease;
    box-shadow: 0 8px 25px rgba(0,0,0,0.2);
    position: relative;
    overflow: hidden;
    min-width: 140px;
}

.stat::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(239,204,26,0.3), transparent);
    transition: left 0.6s ease;
}

.stat:hover {
    transform: translateY(-8px) scale(1.05);
    box-shadow: 0 15px 35px rgba(239,204,26,0.4);
    border-color: rgba(239,204,26,0.6);
}

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

.stat-icon {
    font-size: 2.2rem;
    filter: drop-shadow(0 2px 4px rgba(0,0,0,0.3));
    animation: pulse 2s infinite;
}

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

.duration-stat .stat-icon {
    animation-delay: 0s;
}

.weight-stat .stat-icon {
    animation-delay: 0.5s;
}

.stat-content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.stat .value {
    font-size: 1.4rem;
    font-weight: 900;
    color: #EFCC1A !important;
    display: block;
    margin-bottom: 2px;
    text-shadow: 0 2px 6px rgba(0,0,0,0.4);
    line-height: 1;
    letter-spacing: 0.5px;
}

.stat .label {
    font-size: 0.85rem;
    opacity: 0.95;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    color: rgba(255,255,255,0.9);
    line-height: 1;
}

.transformation-badge {
    text-align: center;
    margin-top: 20px;
    position: relative;
    z-index: 1;
}

.transformation-badge span {
    background: linear-gradient(135deg, #EFCC1A 0%, #FFD700 100%);
    color: #000000;
    padding: 10px 20px;
    border-radius: 25px;
    font-weight: 700;
    font-size: 0.9rem;
    display: inline-block;
    box-shadow: 0 4px 15px rgba(239,204,26,0.4);
    border: 2px solid rgba(255,255,255,0.2);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    animation: glow 3s ease-in-out infinite alternate;
}

@keyframes glow {
    from {
        box-shadow: 0 4px 15px rgba(239,204,26,0.4);
    }
    to {
        box-shadow: 0 6px 25px rgba(239,204,26,0.6), 0 0 30px rgba(239,204,26,0.3);
    }
}

.badge {
    background: linear-gradient(135deg, white, #f8f9fa);
    color: var(--accent-color);
    padding: 8px 20px;
    border-radius: 25px;
    font-weight: 700;
    font-size: 1rem;
    border: 2px solid var(--accent-color);
    text-decoration: none;
    display: inline-block;
    transition: all 0.4s ease;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    position: relative;
    overflow: hidden;
}

.badge::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--accent-color), #ff6b6b);
    transition: left 0.4s ease;
    z-index: -1;
}

.badge:hover {
    color: white;
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 8px 25px rgba(0,0,0,0.2);
}

.badge:hover::before {
    left: 0;
}

.cta-center {
    text-align: center;
    margin-top: 40px;
}

/* Programmes Section */
.programmes-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
}

.programme-card {
    height: 100%;
    display: flex;
    flex-direction: column;
    position: relative;
}

.programme-badge {
    position: absolute;
    top: -10px;
    right: 20px;
    background: linear-gradient(135deg, var(--accent-color), var(--secondary-color));
    color: var(--text-color);
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    box-shadow: 0 5px 15px rgba(236, 72, 153, 0.3);
}

.programme-header {
    text-align: center;
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--glass-border);
}

.programme-header h3 {
    margin-bottom: 10px;
}

.programme-subtitle {
    text-align: center;
    font-style: italic;
    margin-bottom: 20px;
    opacity: 0.8;
    font-size: 0.9rem;
}

.price {
    display: flex;
    justify-content: center;
    align-items: baseline;
}

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

.price .period {
    font-size: 1rem;
    opacity: 0.7;
    margin-left: 5px;
}

.programme-features {
    flex-grow: 1;
    margin-bottom: 30px;
}

.programme-features li {
    margin-bottom: 15px;
    display: flex;
    align-items: center;
}

.programme-features li i {
    margin-right: 10px;
}

.programme-features li.not-included {
    opacity: 0.5;
}

.programme-features .fa-check {
    color: var(--primary-color);
}

.programme-features .fa-times {
    color: var(--accent-color);
}

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

.featured {
    transform: scale(1.05);
    z-index: 2;
    border: 1px solid rgba(139, 92, 246, 0.5);
    box-shadow: 0 15px 35px rgba(139, 92, 246, 0.2);
}

/* Contact Section */
.contact-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

/* Calendly Widget Styling */
.calendly-inline-widget {
    background: #000000 !important;
    border-radius: var(--card-radius) !important;
    border: 1px solid var(--glass-border) !important;
    box-shadow: 0 8px 32px 0 var(--glass-shadow), 0 0 20px rgba(255, 255, 255, 0.3), 0 0 40px rgba(255, 255, 255, 0.2) !important;
    overflow: hidden !important;
    position: relative !important;
}

.calendly-inline-widget iframe {
    width: 100% !important;
    height: 100% !important;
    border: none !important;
    background: #000000 !important;
}

.form-group {
    margin-bottom: 20px;
}

label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
}

input, select, textarea {
    width: 100%;
    padding: 12px 15px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--glass-border);
    border-radius: 8px;
    color: var(--text-color);
    font-family: inherit;
    font-size: 1rem;
    transition: var(--transition);
}

input:focus, select:focus, textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 2px rgba(99, 102, 241, 0.2);
}

button[type="submit"] {
    cursor: pointer;
    border: none;
    font-family: inherit;
    font-size: 1rem;
}

.contact-info h3 {
    margin-bottom: 20px;
}

.contact-info ul {
    margin-bottom: 30px;
}

.contact-info li {
    margin-bottom: 15px;
    display: flex;
    align-items: center;
}

.contact-info li i {
    color: var(--primary-color);
    margin-right: 10px;
}

.contact-methods {
    margin-bottom: 30px;
}

.contact-method {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

.contact-method i {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-right: 15px;
    color: var(--primary-color);
}

.social-links {
    display: flex;
    gap: 15px;
}

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

.social-link:hover {
    background: var(--primary-color);
    transform: translateY(-3px);
    color: var(--accent-color);
}

/* Testimonials Section */
.testimonials-slider {
    display: flex;
    gap: 30px;
    margin-bottom: 30px;
    overflow-x: auto;
    scrollbar-width: none;
    -ms-overflow-style: none;
    padding: 20px 0;
}

.testimonials-slider::-webkit-scrollbar {
    display: none;
}

.testimonial-card {
    min-width: 350px;
    max-width: 350px;
}

.testimonial-content {
    margin-bottom: 20px;
    position: relative;
}

.quote {
    font-size: 2rem;
    color: var(--primary-color);
    opacity: 0.5;
    margin-bottom: 10px;
}

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

.author-image {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    overflow: hidden;
    margin-right: 15px;
}

.author-info h4 {
    margin-bottom: 5px;
}

.author-info span {
    font-size: 0.9rem;
    opacity: 0.7;
}

.slider-controls {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
}

.prev-btn, .next-btn {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid var(--glass-border);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    transition: var(--transition);
}

.prev-btn:hover, .next-btn:hover {
    background: rgba(255, 255, 255, 0.2);
}

.slider-dots {
    display: flex;
    gap: 10px;
}

.dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    cursor: pointer;
    transition: var(--transition);
}

.dot.active {
    background: var(--primary-color);
    transform: scale(1.2);
}

/* FAQ Section */
.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    margin-bottom: 20px;
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    padding: 20px;
}

.faq-question h3 {
    margin-bottom: 0;
    font-size: 1.2rem;
}

.faq-toggle {
    width: 30px;
    height: 30px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: var(--transition);
}

.faq-answer {
    padding: 0 20px 20px;
    display: none;
}

.faq-item.active .faq-toggle {
    transform: rotate(45deg);
    background: var(--primary-color);
}

.faq-item.active .faq-answer {
    display: block;
}

/* Footer */
footer {
    padding: 80px 0 30px;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    margin-bottom: 50px;
}

.footer-logo {
    max-width: 300px;
    display: flex;
    align-items: center;
    gap: 15px;
}

.footer-logo-img {
    height: 60px;
    width: auto;
    filter: drop-shadow(0 0 5px rgba(255, 255, 255, 0.3));
}

.footer-logo h2 {
    font-size: 2.2rem;
    margin-bottom: 0;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 2px;
    background: linear-gradient(135deg, var(--primary-color), #FFD700, var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    position: relative;
}

.footer-logo h2::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, var(--primary-color), #FFD700, var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    filter: blur(1px);
    z-index: -1;
}

.footer-title {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 0.5rem;
}

.footer-subtitle {
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #ffffff !important;
    margin-top: -8px;
    opacity: 1;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
    background: none !important;
    -webkit-background-clip: initial !important;
    -webkit-text-fill-color: #ffffff !important;
}

.footer-logo span {
    color: var(--accent-color);
}

.footer-links {
    display: flex;
    gap: 60px;
    justify-content: flex-start;
}

.footer-links-column h3 {
    font-size: 1.2rem;
    margin-bottom: 20px;
    position: relative;
}

.footer-links-column h3::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 30px;
    height: 2px;
    background: var(--primary-color);
}

.footer-links-column ul li {
    margin-bottom: 10px;
}

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

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

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid var(--glass-border);
    font-size: 0.9rem;
    opacity: 0.7;
}

/* Footer spacing aligned with homepage */
.glass-footer .container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}
.glass-footer .footer-content {
    gap: 60px;
}
.glass-footer .footer-links {
    gap: 80px;
}

/* Responsive Styles */
@media (max-width: 1024px) {
    h1 {
        font-size: 3rem;
    }
    
    h2 {
        font-size: 2.2rem;
    }
    
    .hero-content,
    .about-content {
        flex-direction: column;
    }
    
    .hero-text,
    .hero-image,
    .about-text,
    .about-image {
        flex: none;
        width: 100%;
    }
    
    .image-container {
        height: 350px;
    }
    
    .contact-container {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        flex-direction: column;
        gap: 40px;
    }
    
    .footer-logo {
        max-width: 100%;
    }
    
    .footer-links {
        flex-wrap: wrap;
        gap: 30px;
    }
}

@media (max-width: 768px) {
    h1 {
        font-size: 2.5rem;
    }
    
    h2 {
        font-size: 2rem;
    }
    
    header {
        height: 70px;
        padding: 10px 0;
    }
    
    .logo h1 {
        font-size: 1.8rem;
    }
    
    .logo-img {
        height: 40px;
        margin-right: 10px;
    }
    
    .hero {
        margin-top: 70px;
        padding: 120px 0 80px;
    }
    
    .menu-toggle {
        display: block;
    }
    
    nav {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 70px);
        background: rgba(0, 0, 0, 0.95);
        backdrop-filter: blur(var(--glass-blur));
        -webkit-backdrop-filter: blur(var(--glass-blur));
        transition: var(--transition);
    }
    
    nav.active {
        left: 0;
    }
    
    nav ul {
        flex-direction: column;
        align-items: center;
        justify-content: center;
        height: 100%;
        gap: 40px;
    }
    
    .programmes-grid,
    .transformations-grid {
        grid-template-columns: 1fr;
    }
    
    .featured {
        transform: none;
    }
    
    .testimonial-card {
        min-width: 280px;
    }
}

@media (max-width: 480px) {
    h1 {
        font-size: 2rem;
    }
    
    h2 {
        font-size: 1.8rem;
    }
    
    header {
        height: 60px;
        padding: 8px 0;
    }
    
    .logo h1 {
        font-size: 1.5rem;
    }
    
    .logo-img {
        height: 35px;
        margin-right: 8px;
    }
    
    .hero {
        margin-top: 60px;
        padding: 100px 0 60px;
    }
    
    nav {
        top: 60px;
        height: calc(100vh - 60px);
    }
    
    .cta-buttons {
        flex-direction: column;
    }
    
    .before-after {
        flex-direction: column;
    }
    
    .before, .after {
        height: 180px;
    }
    
    .footer-links {
        flex-direction: column;
        gap: 30px;
    }
}

/* Premium text with yellow aura */
.premium {
    color: #EFCC1A !important;
    text-shadow: 
        0 0 5px #EFCC1A,
        0 0 10px #EFCC1A,
        0 0 15px #EFCC1A,
        0 0 20px #EFCC1A;
    font-weight: 700;
    position: relative;
    display: inline-block;
    padding: 2px 8px;
    border-radius: 4px;
    box-shadow: 0 0 15px rgba(239, 204, 26, 0.4);
    transition: var(--transition);
}

/* Listes avec tirets pour CGV */
.dash-list {
    list-style: none;
    padding-left: 0;
    margin-left: 0;
}

.dash-list li {
    margin-bottom: 8px;
}

/* CGV section: darker background for stronger contrast */
#cgv.section {
    background-color: #0e1217;
}

#cgv.section .section-header h2,
#cgv.section .section-header p {
    color: #f0f3f7;
}


/* Force reload: Fri Oct 10 14:47:36 CEST 2025 */
