/* ============================================
   FORMAPROCHR - Luxury Edition Stylesheet
   ============================================ */

/* ---------- CSS Variables ---------- */
:root {
    --primary: #2563eb;
    --primary-dark: #1d4ed8;
    --primary-light: #3b82f6;
    --secondary: #10b981;
    --secondary-dark: #059669;
    --accent: #f59e0b;
    --dark: #1e293b;
    --dark-light: #334155;
    --gray: #64748b;
    --gray-light: #94a3b8;
    --light: #f8fafc;
    --white: #ffffff;
    --gradient: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    --gradient-gold: linear-gradient(135deg, #f59e0b 0%, #fbbf24 50%, #f59e0b 100%);
    --gradient-dark: linear-gradient(135deg, #1e3a5f 0%, #0f172a 100%);
    --gradient-hero: linear-gradient(135deg, #0f172a 0%, #1e3a5f 50%, #0f172a 100%);

    /* Luxury Shadows */
    --shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 10px 40px -10px rgba(37, 99, 235, 0.3), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    --shadow-xl: 0 25px 50px -12px rgba(37, 99, 235, 0.25);
    --shadow-glow: 0 0 40px rgba(37, 99, 235, 0.4);
    --shadow-card: 0 10px 40px -10px rgba(0, 0, 0, 0.1), 0 0 0 1px rgba(0, 0, 0, 0.02);
    --shadow-card-hover: 0 20px 60px -15px rgba(37, 99, 235, 0.3), 0 0 0 1px rgba(37, 99, 235, 0.1);

    --radius: 16px;
    --radius-lg: 24px;
    --radius-xl: 32px;
    --transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-fast: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ---------- Keyframe Animations ---------- */
@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

@keyframes pulse-glow {
    0%, 100% { box-shadow: 0 0 20px rgba(37, 99, 235, 0.4); }
    50% { box-shadow: 0 0 40px rgba(37, 99, 235, 0.6); }
}

@keyframes shimmer {
    0% { background-position: -200% center; }
    100% { background-position: 200% center; }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes scaleIn {
    from {
        opacity: 0;
        transform: scale(0.9);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

/* ---------- Reset & Base ---------- */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    line-height: 1.7;
    color: var(--dark);
    background: var(--white);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

::selection {
    background: var(--primary);
    color: var(--white);
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ---------- Typography ---------- */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.2;
    color: var(--dark);
}

h1 { font-size: clamp(2rem, 5vw, 3.5rem); }
h2 { font-size: clamp(1.75rem, 4vw, 2.5rem); }
h3 { font-size: clamp(1.25rem, 3vw, 1.5rem); }

.gradient-text {
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ---------- Buttons ---------- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 16px 32px;
    font-size: 1rem;
    font-weight: 600;
    border-radius: var(--radius);
    border: none;
    cursor: pointer;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    letter-spacing: 0.3px;
}

.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: var(--transition-slow);
}

.btn:hover::before {
    left: 100%;
}

.btn i {
    font-size: 0.9em;
    transition: var(--transition-fast);
}

.btn:hover i {
    transform: translateX(3px);
}

.btn-primary {
    background: var(--primary);
    color: var(--white);
    box-shadow: 0 4px 15px rgba(37, 99, 235, 0.3);
}

.btn-primary:hover {
    background: var(--primary-dark);
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(37, 99, 235, 0.4);
}

.btn-secondary {
    background: var(--light);
    color: var(--dark);
    border: 1px solid rgba(0,0,0,0.05);
}

.btn-secondary:hover {
    background: var(--white);
    transform: translateY(-3px);
    box-shadow: var(--shadow-card);
}

.btn-outline {
    background: transparent;
    border: 2px solid var(--primary);
    color: var(--primary);
    backdrop-filter: blur(10px);
}

.btn-outline:hover {
    background: var(--primary);
    color: var(--white);
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(37, 99, 235, 0.3);
}

.btn-outline-light {
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.5);
    color: var(--white);
    backdrop-filter: blur(10px);
}

.btn-outline-light:hover {
    background: var(--white);
    color: var(--primary);
    border-color: var(--white);
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(255, 255, 255, 0.3);
}

.btn-light {
    background: var(--white);
    color: var(--primary);
    box-shadow: var(--shadow-card);
}

.btn-light:hover {
    background: var(--white);
    transform: translateY(-3px);
    box-shadow: var(--shadow-card-hover);
}

.btn-gradient {
    background: var(--gradient);
    color: var(--white);
    box-shadow: 0 4px 20px rgba(37, 99, 235, 0.3);
}

.btn-gradient:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 8px 40px rgba(37, 99, 235, 0.4);
}

.btn-lg {
    padding: 20px 40px;
    font-size: 1.1rem;
    border-radius: var(--radius-lg);
}

.btn-block {
    width: 100%;
}

/* ---------- Header ---------- */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: 0 1px 0 rgba(0,0,0,0.05);
    transition: var(--transition);
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.header.scrolled {
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.08);
}

.nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 85px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--dark);
    transition: var(--transition);
}

.logo:hover {
    transform: scale(1.02);
}

.logo i {
    color: var(--primary);
    font-size: 2rem;
    filter: drop-shadow(0 2px 4px rgba(37, 99, 235, 0.3));
}

.logo strong {
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 30px;
}

.nav-link {
    font-weight: 500;
    color: var(--gray);
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary);
    transition: var(--transition);
}

.nav-link:hover,
.nav-link.active {
    color: var(--primary);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.nav-cta {
    margin-left: 20px;
}

.nav-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--dark);
    cursor: pointer;
}

/* ---------- Hero Section ---------- */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 140px 0 120px;
    background: var(--gradient-hero);
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 80%;
    height: 150%;
    background: radial-gradient(circle, rgba(37, 99, 235, 0.15) 0%, transparent 60%);
    pointer-events: none;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -10%;
    width: 60%;
    height: 100%;
    background: radial-gradient(circle, rgba(16, 185, 129, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="50" cy="50" r="40" fill="none" stroke="rgba(255,255,255,0.03)" stroke-width="0.5"/></svg>'),
        url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 200 200"><circle cx="100" cy="100" r="80" fill="none" stroke="rgba(255,255,255,0.02)" stroke-width="0.5"/></svg>');
    background-size: 100px 100px, 200px 200px;
    opacity: 0.8;
}

.hero .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 2;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 20px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 50px;
    color: var(--white);
    font-size: 0.9rem;
    margin-bottom: 25px;
    animation: fadeInUp 0.8s ease forwards;
}

.hero-badge i {
    color: var(--accent);
    filter: drop-shadow(0 0 8px rgba(245, 158, 11, 0.5));
}

.hero h1 {
    color: var(--white);
    margin-bottom: 25px;
    animation: fadeInUp 0.8s ease 0.1s forwards;
    opacity: 0;
    text-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
}

.hero-subtitle {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 35px;
    max-width: 520px;
    line-height: 1.8;
    animation: fadeInUp 0.8s ease 0.2s forwards;
    opacity: 0;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    margin-bottom: 60px;
    animation: fadeInUp 0.8s ease 0.3s forwards;
    opacity: 0;
}

.hero-stats {
    display: flex;
    gap: 50px;
    animation: fadeInUp 0.8s ease 0.4s forwards;
    opacity: 0;
    position: relative;
    z-index: 5;
    padding-bottom: 40px;
}

.stat {
    text-align: center;
    position: relative;
}

.stat::after {
    content: '';
    position: absolute;
    right: -25px;
    top: 50%;
    transform: translateY(-50%);
    width: 1px;
    height: 40px;
    background: rgba(255, 255, 255, 0.2);
}

.stat:last-child::after {
    display: none;
}

.stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--white);
    text-shadow: 0 2px 20px rgba(255, 255, 255, 0.2);
    letter-spacing: -0.5px;
}

.stat-label {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 500;
}

.hero-image {
    display: flex;
    justify-content: center;
    animation: scaleIn 0.8s ease 0.3s forwards;
    opacity: 0;
}

.hero-card {
    background: rgba(255, 255, 255, 0.98);
    padding: 40px 35px;
    border-radius: var(--radius-xl);
    box-shadow: 0 25px 80px -20px rgba(0, 0, 0, 0.4);
    text-align: center;
    max-width: 320px;
    position: relative;
    overflow: hidden;
    animation: float 6s ease-in-out infinite;
}

.hero-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient);
}

.hero-card-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 25px;
    background: var(--gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 30px rgba(37, 99, 235, 0.3);
}

.hero-card-icon i {
    font-size: 2rem;
    color: var(--white);
}

.hero-card h3 {
    font-size: 0.9rem;
    color: var(--gray);
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.hero-card-date {
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 5px;
}

.hero-card-info {
    color: var(--gray);
    margin-bottom: 20px;
}

.hero-card-places {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background: rgba(16, 185, 129, 0.1);
    border-radius: 50px;
    font-size: 0.85rem;
    color: var(--secondary);
    font-weight: 600;
    border: 1px solid rgba(16, 185, 129, 0.2);
}

.hero-wave {
    position: absolute;
    bottom: -5px;
    left: 0;
    right: 0;
    z-index: 1;
}

.hero-wave svg {
    display: block;
    width: 100%;
    filter: drop-shadow(0 -5px 10px rgba(0, 0, 0, 0.05));
}

/* ---------- Trust Section ---------- */
.trust-section {
    padding: 80px 0;
    background: linear-gradient(180deg, var(--white) 0%, var(--light) 100%);
    position: relative;
}

.trust-badges {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 50px;
    flex-wrap: wrap;
}

.trust-badge {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    transition: var(--transition);
    padding: 20px 30px;
    background: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-card);
    border: 1px solid rgba(0,0,0,0.03);
}

.trust-badge:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-card-hover);
}

.trust-badge img {
    height: 60px;
    width: auto;
    transition: var(--transition);
    filter: grayscale(0%);
    opacity: 0.9;
}

.trust-badge:hover img {
    filter: grayscale(0%);
    opacity: 1;
    transform: scale(1.05);
}

/* ---------- Section Headers ---------- */
.section-header {
    text-align: center;
    max-width: 750px;
    margin: 0 auto 70px;
}

.section-header h2 {
    margin-bottom: 20px;
}

.section-header.light {
    color: var(--white);
}

.section-header.light h2 {
    color: var(--white);
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.2);
}

.section-tag {
    display: inline-block;
    padding: 10px 24px;
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.1) 0%, rgba(16, 185, 129, 0.1) 100%);
    color: var(--primary);
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: 1px solid rgba(37, 99, 235, 0.15);
}

.section-header.light .section-tag {
    background: rgba(255, 255, 255, 0.1);
    color: var(--white);
    border-color: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
}

.section-header p {
    color: var(--gray);
    font-size: 1.15rem;
    line-height: 1.8;
}

/* ---------- Formations Section ---------- */
.formations-section {
    padding: 120px 0;
    background: linear-gradient(180deg, var(--light) 0%, var(--white) 50%, var(--light) 100%);
    position: relative;
}

.formations-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 35px;
}

.formation-card {
    background: var(--white);
    border-radius: var(--radius-xl);
    padding: 45px 35px;
    position: relative;
    transition: var(--transition);
    border: 1px solid rgba(0, 0, 0, 0.04);
    box-shadow: var(--shadow-card);
    overflow: hidden;
}

.formation-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--light);
    transition: var(--transition);
}

.formation-card:hover {
    transform: translateY(-12px);
    box-shadow: var(--shadow-card-hover);
}

.formation-card:hover::before {
    background: var(--gradient);
}

.formation-card.featured {
    border-color: rgba(37, 99, 235, 0.2);
}

.formation-card.featured::before {
    background: var(--primary);
}

.formation-card.pack {
    border-color: rgba(16, 185, 129, 0.2);
}

.formation-card.pack::before {
    background: var(--secondary);
}

.formation-badge {
    position: absolute;
    top: 25px;
    right: 25px;
    padding: 8px 18px;
    background: var(--gradient);
    color: var(--white);
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 15px rgba(37, 99, 235, 0.3);
}

.formation-badge.pack-badge {
    background: var(--secondary);
    box-shadow: 0 4px 15px rgba(16, 185, 129, 0.3);
}

.formation-icon {
    width: 90px;
    height: 90px;
    background: var(--light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 30px;
    transition: var(--transition);
    position: relative;
}

.formation-card:hover .formation-icon {
    transform: scale(1.05);
}

.formation-card.featured .formation-icon {
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.1) 0%, rgba(37, 99, 235, 0.05) 100%);
}

.formation-card.pack .formation-icon {
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.1) 0%, rgba(16, 185, 129, 0.05) 100%);
}

.formation-icon i {
    font-size: 2.2rem;
    color: var(--primary);
    transition: var(--transition);
}

.formation-card:hover .formation-icon i {
    transform: scale(1.1);
}

.formation-card.pack .formation-icon i {
    color: var(--secondary);
}

.formation-card h3 {
    margin-bottom: 15px;
}

.formation-desc {
    color: var(--gray);
    margin-bottom: 25px;
}

.formation-features {
    margin-bottom: 25px;
}

.formation-features li {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 0;
    color: var(--dark-light);
}

.formation-features i {
    color: var(--secondary);
}

.formation-price {
    margin-bottom: 25px;
    padding: 20px;
    background: var(--light);
    border-radius: var(--radius);
    text-align: center;
}

.price-old {
    font-size: 1.2rem;
    color: var(--gray);
    text-decoration: line-through;
    margin-right: 10px;
}

.price-current {
    font-size: 2rem;
    font-weight: 800;
    color: var(--dark);
}

.price-info {
    display: block;
    font-size: 0.85rem;
    color: var(--secondary);
    margin-top: 5px;
}

/* ---------- Why Section ---------- */
.why-section {
    padding: 120px 0;
    background: var(--white);
    position: relative;
    overflow: hidden;
}

.why-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 80%, rgba(37, 99, 235, 0.03) 0%, transparent 50%),
                radial-gradient(circle at 80% 20%, rgba(16, 185, 129, 0.03) 0%, transparent 50%);
    pointer-events: none;
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 35px;
    position: relative;
}

.why-card {
    padding: 50px 35px;
    text-align: center;
    border-radius: var(--radius-xl);
    transition: var(--transition);
    background: var(--white);
    border: 1px solid transparent;
}

.why-card:hover {
    background: var(--white);
    box-shadow: var(--shadow-card-hover);
    border-color: rgba(37, 99, 235, 0.1);
    transform: translateY(-8px);
}

.why-icon {
    width: 90px;
    height: 90px;
    margin: 0 auto 30px;
    background: var(--gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 30px rgba(37, 99, 235, 0.25);
    transition: var(--transition);
}

.why-card:hover .why-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 15px 40px rgba(37, 99, 235, 0.35);
}

.why-icon i {
    font-size: 2rem;
    color: var(--white);
}

.why-card h3 {
    margin-bottom: 15px;
    transition: var(--transition);
}

.why-card:hover h3 {
    color: var(--primary);
}

.why-card p {
    color: var(--gray);
    line-height: 1.8;
}

/* ---------- Process Section ---------- */
.process-section {
    padding: 120px 0;
    background: var(--gradient-hero);
    position: relative;
    overflow: hidden;
}

.process-section::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -20%;
    width: 60%;
    height: 150%;
    background: radial-gradient(circle, rgba(37, 99, 235, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-bottom: 50px;
}

.process-step {
    text-align: center;
    position: relative;
}

.process-step::after {
    content: '';
    position: absolute;
    top: 40px;
    right: -15px;
    width: 30px;
    height: 2px;
    background: rgba(255, 255, 255, 0.3);
}

.process-step:last-child::after {
    display: none;
}

.step-number {
    width: 90px;
    height: 90px;
    margin: 0 auto 30px;
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.25);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--white);
    backdrop-filter: blur(10px);
    transition: var(--transition);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
}

.process-step:hover .step-number {
    background: var(--primary);
    border-color: var(--primary);
    transform: scale(1.1);
    box-shadow: 0 15px 50px rgba(37, 99, 235, 0.4);
}

.step-content h3 {
    color: var(--white);
    margin-bottom: 10px;
}

.step-content p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
}

.process-cta {
    text-align: center;
}

/* ---------- Testimonials Section ---------- */
.testimonials-section {
    padding: 120px 0;
    background: linear-gradient(180deg, var(--light) 0%, var(--white) 100%);
    position: relative;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 35px;
}

.testimonial-card {
    background: var(--white);
    padding: 40px;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-card);
    border: 1px solid rgba(0, 0, 0, 0.03);
    transition: var(--transition);
    position: relative;
}

.testimonial-card::before {
    content: '"';
    position: absolute;
    top: 20px;
    right: 30px;
    font-size: 5rem;
    color: rgba(37, 99, 235, 0.08);
    font-family: Georgia, serif;
    line-height: 1;
}

.testimonial-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-card-hover);
}

.testimonial-stars {
    margin-bottom: 25px;
}

.testimonial-stars i {
    color: var(--accent);
    font-size: 1.1rem;
    filter: drop-shadow(0 2px 4px rgba(245, 158, 11, 0.3));
}

.testimonial-text {
    font-size: 1.1rem;
    color: var(--dark);
    margin-bottom: 30px;
    font-style: italic;
    line-height: 1.8;
    position: relative;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 18px;
    padding-top: 20px;
    border-top: 1px solid var(--light);
}

.author-avatar {
    width: 55px;
    height: 55px;
    background: var(--gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-weight: 700;
    font-size: 1.1rem;
    box-shadow: 0 5px 20px rgba(37, 99, 235, 0.25);
}

.author-info strong {
    display: block;
    color: var(--dark);
    font-size: 1.05rem;
}

.author-info span {
    font-size: 0.85rem;
    color: var(--gray);
}

/* ---------- CTA Section ---------- */
.cta-section {
    padding: 120px 0;
    background: var(--gradient);
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 60%;
    height: 150%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.cta-section::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -10%;
    width: 50%;
    height: 100%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.08) 0%, transparent 40%);
    pointer-events: none;
}

.cta-content {
    text-align: center;
    max-width: 750px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.cta-content h2 {
    color: var(--white);
    margin-bottom: 25px;
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.2);
}

.cta-content p {
    color: rgba(255, 255, 255, 0.95);
    font-size: 1.25rem;
    margin-bottom: 40px;
    line-height: 1.8;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

/* ---------- FAQ Section ---------- */
.faq-section {
    padding: 120px 0;
    background: var(--white);
}

.faq-grid {
    max-width: 850px;
    margin: 0 auto;
}

.faq-item {
    border: 1px solid rgba(0, 0, 0, 0.06);
    border-radius: var(--radius-lg);
    margin-bottom: 15px;
    background: var(--white);
    transition: var(--transition);
    overflow: hidden;
}

.faq-item:hover {
    box-shadow: var(--shadow-card);
}

.faq-item.active {
    box-shadow: var(--shadow-card-hover);
    border-color: rgba(37, 99, 235, 0.2);
}

.faq-question {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 25px 30px;
    background: none;
    border: none;
    cursor: pointer;
    text-align: left;
}

.faq-question span {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--dark);
    transition: var(--transition);
}

.faq-item.active .faq-question span {
    color: var(--primary);
}

.faq-question i {
    color: var(--primary);
    transition: var(--transition);
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(37, 99, 235, 0.1);
    border-radius: 50%;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
    background: var(--primary);
    color: var(--white);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-item.active .faq-answer {
    max-height: 300px;
}

.faq-answer p {
    padding: 0 30px 25px;
    color: var(--gray);
    line-height: 1.8;
}

/* ---------- Footer ---------- */
.footer {
    background: linear-gradient(180deg, var(--dark) 0%, #0f172a 100%);
    padding: 100px 0 40px;
    color: var(--white);
    position: relative;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(37, 99, 235, 0.5), transparent);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 60px;
    margin-bottom: 70px;
}

.footer-brand .logo {
    margin-bottom: 25px;
}

.footer-brand .logo span {
    color: var(--white);
}

.footer-brand p {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 30px;
    line-height: 1.8;
}

.footer-social {
    display: flex;
    gap: 12px;
}

.footer-social a {
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    transition: var(--transition);
}

.footer-social a:hover {
    background: var(--primary);
    border-color: var(--primary);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(37, 99, 235, 0.3);
}

.footer-links h4,
.footer-contact h4 {
    color: var(--white);
    margin-bottom: 25px;
}

.footer-links ul li,
.footer-contact ul li {
    margin-bottom: 12px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
}

.footer-links a:hover {
    color: var(--white);
}

.footer-contact ul li {
    display: flex;
    align-items: center;
    gap: 12px;
    color: rgba(255, 255, 255, 0.7);
}

.footer-contact i {
    color: var(--primary);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 30px;
    text-align: center;
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.9rem;
    margin-bottom: 5px;
}

/* ---------- Page Header ---------- */
.page-header {
    padding: 150px 0 80px;
    background: var(--gradient-dark);
    text-align: center;
    position: relative;
}

.page-header h1 {
    color: var(--white);
    margin-bottom: 15px;
}

.page-header p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.2rem;
}

.breadcrumb {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 20px;
}

.breadcrumb a {
    color: rgba(255, 255, 255, 0.7);
}

.breadcrumb span {
    color: rgba(255, 255, 255, 0.5);
}

/* ---------- Program Section ---------- */
.program-section {
    padding: 100px 0;
}

.program-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 60px;
}

.program-content h2 {
    margin-bottom: 30px;
}

.program-day {
    margin-bottom: 40px;
}

.program-day h3 {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 2px solid var(--light);
}

.program-day h3 i {
    color: var(--primary);
}

.module {
    padding: 20px;
    background: var(--light);
    border-radius: var(--radius);
    margin-bottom: 15px;
}

.module-header {
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px;
}

.module-title {
    font-weight: 600;
    color: var(--dark);
}

.module-duration {
    color: var(--primary);
    font-weight: 600;
}

.module-content {
    color: var(--gray);
    font-size: 0.95rem;
}

.program-sidebar {
    position: sticky;
    top: 100px;
}

.sidebar-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 35px;
    box-shadow: var(--shadow-lg);
    margin-bottom: 30px;
}

.sidebar-card h3 {
    margin-bottom: 25px;
}

.sidebar-price {
    text-align: center;
    margin-bottom: 25px;
}

.sidebar-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 0;
    border-bottom: 1px solid var(--light);
}

.sidebar-list li:last-child {
    border-bottom: none;
}

.sidebar-list i {
    color: var(--secondary);
}

/* ---------- Contact Form ---------- */
.contact-section {
    padding: 100px 0;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

.contact-info h2 {
    margin-bottom: 20px;
}

.contact-info > p {
    color: var(--gray);
    margin-bottom: 40px;
}

.contact-details {
    margin-bottom: 40px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 25px;
}

.contact-icon {
    width: 50px;
    height: 50px;
    background: var(--light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-size: 1.2rem;
}

.contact-text h4 {
    margin-bottom: 5px;
}

.contact-text p {
    color: var(--gray);
}

.contact-form-wrapper {
    background: var(--light);
    padding: 40px;
    border-radius: var(--radius-lg);
}

.form-group {
    margin-bottom: 25px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: var(--dark);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 15px 20px;
    border: 2px solid transparent;
    border-radius: var(--radius);
    background: var(--white);
    font-family: inherit;
    font-size: 1rem;
    transition: var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

/* ---------- Calendar Section ---------- */
.calendar-section {
    padding: 100px 0;
}

.calendar-filters {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 50px;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 12px 25px;
    background: var(--light);
    border: none;
    border-radius: 50px;
    font-weight: 500;
    cursor: pointer;
    transition: var(--transition);
}

.filter-btn.active,
.filter-btn:hover {
    background: var(--primary);
    color: var(--white);
}

.sessions-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.session-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 30px;
    box-shadow: var(--shadow);
    display: flex;
    gap: 25px;
    transition: var(--transition);
}

.session-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.session-date {
    text-align: center;
    padding: 20px;
    background: var(--primary);
    border-radius: var(--radius);
    color: var(--white);
    min-width: 100px;
}

.session-date .day {
    font-size: 2rem;
    font-weight: 800;
    display: block;
}

.session-date .month {
    font-size: 0.9rem;
    text-transform: uppercase;
}

.session-info h3 {
    margin-bottom: 10px;
}

.session-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 15px;
}

.session-meta span {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--gray);
    font-size: 0.9rem;
}

.session-meta i {
    color: var(--primary);
}

.session-status {
    display: inline-block;
    padding: 6px 15px;
    background: rgba(16, 185, 129, 0.1);
    color: var(--secondary);
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
}

.session-status.limited {
    background: rgba(245, 158, 11, 0.1);
    color: var(--accent);
}

.session-status.full {
    background: rgba(239, 68, 68, 0.1);
    color: #ef4444;
}

/* ---------- Financement Page ---------- */
.financement-options {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 60px;
}

.financement-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 40px;
    text-align: center;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.financement-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-xl);
}

.financement-card.featured {
    border: 2px solid var(--primary);
}

.financement-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 25px;
    background: var(--gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.financement-icon i {
    font-size: 2rem;
    color: var(--white);
}

.financement-card h3 {
    margin-bottom: 15px;
}

.financement-card p {
    color: var(--gray);
    margin-bottom: 25px;
}

.steps-section {
    padding: 60px;
    background: var(--light);
    border-radius: var(--radius-lg);
}

.steps-section h2 {
    text-align: center;
    margin-bottom: 50px;
}

.steps-timeline {
    max-width: 800px;
    margin: 0 auto;
}

.step-item {
    display: flex;
    gap: 30px;
    margin-bottom: 40px;
    position: relative;
}

.step-item::before {
    content: '';
    position: absolute;
    left: 25px;
    top: 60px;
    bottom: -40px;
    width: 2px;
    background: var(--gray-light);
}

.step-item:last-child::before {
    display: none;
}

.step-icon {
    width: 50px;
    height: 50px;
    background: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-weight: 700;
    font-size: 1.2rem;
    flex-shrink: 0;
    position: relative;
    z-index: 1;
}

.step-text h3 {
    margin-bottom: 10px;
}

.step-text p {
    color: var(--gray);
}

/* ---------- Responsive ---------- */
@media (max-width: 1024px) {
    .formations-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .why-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .process-steps {
        grid-template-columns: repeat(2, 1fr);
    }

    .process-step::after {
        display: none;
    }

    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .program-grid {
        grid-template-columns: 1fr;
    }

    .financement-options {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        top: 80px;
        left: 0;
        right: 0;
        background: var(--white);
        flex-direction: column;
        padding: 30px;
        box-shadow: var(--shadow-lg);
        transform: translateY(-150%);
        opacity: 0;
        transition: var(--transition);
    }

    .nav-menu.active {
        transform: translateY(0);
        opacity: 1;
    }

    .nav-toggle {
        display: block;
    }

    .nav-cta {
        display: none;
    }

    .hero .container {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-subtitle {
        margin: 0 auto 30px;
    }

    .hero-buttons {
        justify-content: center;
    }

    .hero-stats {
        justify-content: center;
    }

    .hero-image {
        display: none;
    }

    .formations-grid {
        grid-template-columns: 1fr;
    }

    .why-grid {
        grid-template-columns: 1fr;
    }

    .process-steps {
        grid-template-columns: 1fr;
    }

    .testimonials-grid {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .contact-grid {
        grid-template-columns: 1fr;
    }

    .sessions-grid {
        grid-template-columns: 1fr;
    }

    .session-card {
        flex-direction: column;
    }

    .financement-options {
        grid-template-columns: 1fr;
    }

    .form-row {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .btn {
        padding: 12px 20px;
    }

    .btn-lg {
        padding: 14px 25px;
    }

    .hero-stats {
        flex-direction: column;
        gap: 20px;
    }

    .trust-badges {
        gap: 30px;
    }

    .cta-buttons {
        flex-direction: column;
    }

    .calendar-filters {
        flex-direction: column;
        align-items: center;
    }
}
