/* ULTRA WHOUAW Design - Dev Pro Level 🔥 */

/* Impossible CSS Magic - Matrix Style */
@keyframes matrix-rain {
    0% { 
        transform: translateY(-100vh) rotateX(0deg);
        opacity: 0;
    }
    10% { 
        opacity: 1;
    }
    90% { 
        opacity: 1;
    }
    100% { 
        transform: translateY(100vh) rotateX(360deg);
        opacity: 0;
    }
}

.matrix-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
    overflow: hidden;
}

.matrix-bg::before {
    content: '01001100 01100001 01010011 01101011 11100001 01101100 01101001';
    position: absolute;
    top: -10%;
    left: 0;
    width: 100%;
    height: 120%;
    color: rgba(45, 139, 62, 0.1);
    font-family: 'Courier New', monospace;
    font-size: 12px;
    line-height: 20px;
    animation: matrix-rain 20s linear infinite;
    white-space: pre-wrap;
    word-break: break-all;
}

/* Cyberpunk Neon Glow System */
@keyframes cyberpunk-pulse {
    0%, 100% { 
        box-shadow: 
            0 0 20px rgba(45, 139, 62, 0.5),
            0 0 40px rgba(45, 139, 62, 0.3),
            0 0 60px rgba(45, 139, 62, 0.1),
            inset 0 0 20px rgba(45, 139, 62, 0.1);
    }
    50% { 
        box-shadow: 
            0 0 40px rgba(45, 139, 62, 0.8),
            0 0 80px rgba(45, 139, 62, 0.6),
            0 0 120px rgba(45, 139, 62, 0.3),
            inset 0 0 30px rgba(45, 139, 62, 0.2);
    }
}

.cyberpunk-card {
    position: relative;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px) saturate(180%) brightness(110%);
    border: 1px solid rgba(45, 139, 62, 0.3);
    border-radius: 20px;
    animation: cyberpunk-pulse 3s ease-in-out infinite;
}

.cyberpunk-card::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(45deg, 
        transparent, 
        rgba(45, 139, 62, 0.8), 
        transparent, 
        rgba(76, 175, 80, 0.6),
        transparent);
    border-radius: 22px;
    z-index: -1;
    animation: neon-border 4s linear infinite;
}

@keyframes neon-border {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

/* Impossible Floating Elements */
@keyframes impossible-float {
    0%, 100% { 
        transform: translateY(0px) rotateX(0deg) rotateY(0deg) rotateZ(0deg);
    }
    25% { 
        transform: translateY(-20px) rotateX(10deg) rotateY(5deg) rotateZ(2deg);
    }
    50% { 
        transform: translateY(-10px) rotateX(-5deg) rotateY(-10deg) rotateZ(-1deg);
    }
    75% { 
        transform: translateY(-15px) rotateX(8deg) rotateY(3deg) rotateZ(1deg);
    }
}

.impossible-element {
    animation: impossible-float 6s ease-in-out infinite;
    transform-style: preserve-3d;
    filter: drop-shadow(0 10px 20px rgba(45, 139, 62, 0.3));
}

/* Mind-Blowing Text Effects */
@keyframes glitch-text {
    0% { 
        transform: translateX(0);
        filter: hue-rotate(0deg);
    }
    10% { 
        transform: translateX(-2px) skewX(-5deg);
        filter: hue-rotate(90deg);
    }
    20% { 
        transform: translateX(2px) skewX(5deg);
        filter: hue-rotate(180deg);
    }
    30% { 
        transform: translateX(-1px) skewX(-2deg);
        filter: hue-rotate(270deg);
    }
    40% { 
        transform: translateX(1px) skewX(2deg);
        filter: hue-rotate(360deg);
    }
    50% { 
        transform: translateX(0);
    }
    100% { 
        transform: translateX(0);
        filter: hue-rotate(0deg);
    }
}

.glitch-title {
    position: relative;
    animation: glitch-text 4s ease-in-out infinite;
}

.glitch-title::before,
.glitch-title::after {
    content: attr(data-text);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.glitch-title::before {
    color: rgba(255, 0, 0, 0.7);
    animation: glitch-text 3s ease-in-out infinite reverse;
    clip: rect(0, 900px, 0, 0);
}

.glitch-title::after {
    color: rgba(0, 255, 0, 0.7);
    animation: glitch-text 2s ease-in-out infinite;
    clip: rect(0, 900px, 0, 0);
}

/* Ultra Advanced Particle System */
.quantum-particles {
    position: absolute;
    width: 100%;
    height: 100%;
    overflow: hidden;
    pointer-events: none;
}

.quantum-particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: radial-gradient(circle, rgba(45, 139, 62, 0.8) 0%, transparent 70%);
    border-radius: 50%;
    animation: quantum-movement 8s linear infinite;
}

@keyframes quantum-movement {
    0% {
        transform: translateX(0) translateY(100vh) scale(0);
        opacity: 0;
    }
    10% {
        opacity: 1;
        transform: translateX(0) translateY(90vh) scale(1);
    }
    90% {
        opacity: 1;
        transform: translateX(100px) translateY(-10vh) scale(1);
    }
    100% {
        transform: translateX(200px) translateY(-20vh) scale(0);
        opacity: 0;
    }
}

/* Advanced 3D Transformations */
.tesla-3d-card {
    perspective: 1000px;
    transform-style: preserve-3d;
}

.tesla-3d-card:hover {
    transform: rotateY(5deg) rotateX(5deg);
}

/* Neural Network Glow Effects */
.neural-glow-green {
    position: relative;
}

.neural-glow-green::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(45deg, 
        rgba(45, 139, 62, 0.3), 
        rgba(76, 175, 80, 0.2), 
        rgba(129, 199, 132, 0.1));
    border-radius: inherit;
    z-index: -1;
    filter: blur(10px);
    opacity: 0;
    transition: opacity 0.5s ease;
}

.neural-glow-green:hover::before {
    opacity: 1;
}

/* Holographic Text Effects */
.holographic-text {
    background: linear-gradient(45deg, 
        var(--primary), 
        var(--accent), 
        var(--primary));
    background-size: 200% 200%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: holographic-shift 3s ease-in-out infinite;
}

@keyframes holographic-shift {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

/* Particle System Enhancement */
.particle-field {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
    opacity: 0.6;
}

/* Tesla-style Loading Animations */
.tesla-loader {
    width: 80px;
    height: 80px;
    border: 3px solid rgba(45, 139, 62, 0.1);
    border-top: 3px solid var(--primary);
    border-radius: 50%;
    animation: tesla-spin 1s cubic-bezier(0.68, -0.55, 0.265, 1.55) infinite;
}

@keyframes tesla-spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Futuristic Button Styles */
.future-button {
    position: relative;
    background: transparent;
    border: 2px solid var(--primary);
    color: var(--primary);
    padding: 1rem 2rem;
    border-radius: 50px;
    overflow: hidden;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
}

.future-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--gradient-nature);
    transition: left 0.3s ease;
    z-index: -1;
}

.future-button:hover {
    color: white;
    border-color: var(--primary);
    box-shadow: 0 0 30px rgba(45, 139, 62, 0.5);
}

.future-button:hover::before {
    left: 0;
}

/* SpaceX-inspired Grid System */
.spacex-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    perspective: 1000px;
}

.spacex-grid-item {
    transform-style: preserve-3d;
    transition: transform 0.6s ease;
}

.spacex-grid-item:hover {
    transform: translateZ(20px) rotateX(5deg);
}

/* Quantum Effect Backgrounds */
.quantum-bg {
    background: 
        radial-gradient(circle at 25% 25%, rgba(45, 139, 62, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 75% 75%, rgba(76, 175, 80, 0.05) 0%, transparent 50%),
        linear-gradient(135deg, rgba(15, 79, 53, 0.02) 0%, transparent 100%);
}

/* Tesla Model Y Inspired Cards */
.model-y-card {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(20px) saturate(180%);
    border: 1px solid rgba(45, 139, 62, 0.1);
    border-radius: 25px;
    padding: 2rem;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
}

.model-y-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--gradient-nature);
    transform: scaleX(0);
    transition: transform 0.3s ease;
    transform-origin: left;
}

.model-y-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 
        0 25px 50px rgba(45, 139, 62, 0.15),
        0 0 0 1px rgba(45, 139, 62, 0.1);
    backdrop-filter: blur(30px) saturate(200%);
}

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

/* Neuralink-inspired Text Effects */
.neuro-text {
    font-family: 'Inter', sans-serif;
    font-weight: 300;
    letter-spacing: 0.5px;
    position: relative;
}

.neuro-text::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--gradient-nature);
    transition: width 0.6s ease;
}

.neuro-text:hover::after {
    width: 100%;
}

/* Starship Launch Animation */
@keyframes starship-launch {
    0% {
        transform: translateY(100px) scale(0.8);
        opacity: 0;
    }
    50% {
        transform: translateY(-10px) scale(1.05);
        opacity: 0.8;
    }
    100% {
        transform: translateY(0) scale(1);
        opacity: 1;
    }
}

.starship-element {
    animation: starship-launch 1.2s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

/* Mars Colony Color Palette Enhancements */
.mars-red { color: #cd5c5c; }
.earth-blue { color: #4682b4; }
.space-black { color: #0a0a0a; }
.moon-silver { color: #c0c0c0; }

/* Ultra Performance Optimizations */
.gpu-accelerated {
    transform: translateZ(0);
    will-change: transform, opacity;
    backface-visibility: hidden;
    perspective: 1000px;
}

/* Gallery Section */
.gallery-section {
    padding: 8rem 0;
    background: linear-gradient(135deg, #F8FAF9 0%, #FFFEF7 100%);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.gallery-item {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(45, 139, 62, 0.1);
    transition: all 0.4s ease;
    cursor: pointer;
}

.gallery-item.main-image {
    grid-column: span 2;
}

.gallery-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(45, 139, 62, 0.2);
}

.gallery-img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.gallery-item.main-image .gallery-img {
    height: 350px;
}

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

.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(15, 79, 53, 0.9));
    color: white;
    padding: 2rem;
    transform: translateY(20px);
    opacity: 0;
    transition: all 0.4s ease;
}

.gallery-item:hover .gallery-overlay {
    transform: translateY(0);
    opacity: 1;
}

.gallery-overlay h3 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    color: #81C784;
}

.gallery-overlay p {
    font-size: 0.9rem;
    opacity: 0.9;
}

.gallery-cta {
    text-align: center;
    margin-top: 4rem;
    padding: 3rem;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 20px;
    border: 2px solid rgba(45, 139, 62, 0.1);
}

.gallery-cta h3 {
    font-size: 1.8rem;
    color: #0F4F35;
    margin-bottom: 1rem;
}

.gallery-cta p {
    font-size: 1.1rem;
    color: #555;
    margin-bottom: 2rem;
}

.gallery-visit-btn {
    background: linear-gradient(135deg, #2D8B3E, #4CAF50);
    color: white;
    padding: 1.2rem 2.5rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    display: inline-block;
}

.gallery-visit-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(45, 139, 62, 0.4);
}

/* Enhanced Reductions Styling */
.tarifs-reductions-discrete {
    margin-top: 3rem;
    text-align: center;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 15px;
    border: 2px solid #2D8B3E;
    box-shadow: 0 10px 30px rgba(45, 139, 62, 0.1);
}

.reductions-intro {
    font-size: 1.2rem;
    color: #0F4F35;
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.reductions-inline {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.reduction-tag {
    background: linear-gradient(135deg, #2D8B3E, #4CAF50);
    color: white;
    padding: 0.8rem 1.5rem;
    border-radius: 25px;
    font-size: 1rem;
    font-weight: 700;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(45, 139, 62, 0.2);
}

.reduction-tag:hover {
    background: linear-gradient(135deg, #1E5F2B, #2D8B3E);
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(45, 139, 62, 0.3);
}

/* Quantum System Enhancement */
.quantum-system-particles {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

/* Advanced GPU Accelerated Animations */
.ultra-accelerated {
    transform: translateZ(0);
    will-change: transform, opacity, filter;
    backface-visibility: hidden;
    perspective: 1000px;
    animation: quantum-movement 12s linear infinite;
}

/* Dev Pro Level Effects */
@keyframes dev-pro-magic {
    0% {
        filter: hue-rotate(0deg) saturate(100%) brightness(100%);
        transform: scale(1) rotate(0deg);
    }
    25% {
        filter: hue-rotate(90deg) saturate(120%) brightness(110%);
        transform: scale(1.02) rotate(1deg);
    }
    50% {
        filter: hue-rotate(180deg) saturate(140%) brightness(120%);
        transform: scale(1.05) rotate(0deg);
    }
    75% {
        filter: hue-rotate(270deg) saturate(120%) brightness(110%);
        transform: scale(1.02) rotate(-1deg);
    }
    100% {
        filter: hue-rotate(360deg) saturate(100%) brightness(100%);
        transform: scale(1) rotate(0deg);
    }
}

.dev-pro-element {
    animation: dev-pro-magic 6s ease-in-out infinite;
    position: relative;
}

.dev-pro-element::before {
    content: '';
    position: absolute;
    top: -5px;
    left: -5px;
    right: -5px;
    bottom: -5px;
    background: linear-gradient(45deg, 
        transparent,
        rgba(45, 139, 62, 0.1),
        transparent,
        rgba(76, 175, 80, 0.1),
        transparent);
    border-radius: inherit;
    z-index: -1;
    animation: neon-border 3s linear infinite;
    filter: blur(3px);
}

/* Impossible CSS that will amaze developers */
@keyframes impossible-physics {
    0% {
        transform: perspective(1000px) rotateY(0deg) rotateX(0deg) translateZ(0px);
        box-shadow: 0 0 0 rgba(45, 139, 62, 0);
    }
    33% {
        transform: perspective(1000px) rotateY(120deg) rotateX(10deg) translateZ(50px);
        box-shadow: 0 20px 40px rgba(45, 139, 62, 0.3);
    }
    66% {
        transform: perspective(1000px) rotateY(240deg) rotateX(-5deg) translateZ(25px);
        box-shadow: 0 30px 60px rgba(45, 139, 62, 0.5);
    }
    100% {
        transform: perspective(1000px) rotateY(360deg) rotateX(0deg) translateZ(0px);
        box-shadow: 0 0 0 rgba(45, 139, 62, 0);
    }
}

.impossible-physics-element {
    animation: impossible-physics 10s linear infinite;
    transform-style: preserve-3d;
}

/* Responsive Enhancements for Mobile */
@media (max-width: 768px) {
    .tesla-3d-card:hover {
        transform: none; /* Disable 3D on mobile for performance */
    }
    
    .spacex-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .model-y-card {
        padding: 1.5rem;
    }
    
    .glitch-title {
        animation: none; /* Disable glitch on mobile for performance */
    }
}

/* Courses Section - Professional & Detailed */
.courses-grid-pro {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.course-card-pro {
    background: white;
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(45, 139, 62, 0.08);
    border: 2px solid transparent;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.course-card-pro::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #2D8B3E, #4CAF50);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

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

.course-card-pro:hover {
    border-color: #2D8B3E;
    transform: translateY(-8px);
    box-shadow: 0 25px 50px rgba(45, 139, 62, 0.15);
}

.course-header {
    display: flex;
    align-items: center;
    margin-bottom: 1.5rem;
    gap: 1rem;
}

.course-icon {
    font-size: 2.5rem;
    background: linear-gradient(135deg, #F1F5F3, #E8F5E8);
    width: 70px;
    height: 70px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.course-header h3 {
    font-size: 1.6rem;
    color: #0F4F35;
    font-weight: 700;
    margin: 0;
    line-height: 1.2;
}

.course-level {
    display: block;
    font-size: 0.9rem;
    color: #2D8B3E;
    font-weight: 600;
    margin-top: 0.3rem;
}

.course-description {
    color: #444;
    line-height: 1.7;
    margin-bottom: 1.8rem;
    font-size: 1rem;
    text-align: left;
}

.course-benefits {
    display: flex;
    flex-wrap: wrap;
    gap: 0.8rem;
    margin-bottom: 2rem;
}

.benefit {
    background: linear-gradient(135deg, #F1F5F3, #E8F5E8);
    color: #0F4F35;
    padding: 0.6rem 1.2rem;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 600;
    border: 1px solid rgba(45, 139, 62, 0.1);
    transition: all 0.3s ease;
}

.benefit:hover {
    background: #2D8B3E;
    color: white;
    transform: translateY(-2px);
}

.course-cta {
    background: linear-gradient(135deg, #2D8B3E, #1E5F2B);
    color: white;
    padding: 1.2rem 2.5rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1rem;
    transition: all 0.4s ease;
    display: inline-block;
    position: relative;
    overflow: hidden;
    border: none;
    cursor: pointer;
}

.course-cta::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.6s ease;
}

.course-cta:hover::before {
    left: 100%;
}

.course-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(45, 139, 62, 0.4);
}

/* Pilates Special Card */
.pilates-special {
    border: 2px solid #E8F5E8;
    background: linear-gradient(135deg, #FFFEF7 0%, #F8FAF9 100%);
}

.pilates-special::before {
    background: linear-gradient(90deg, #9C27B0, #673AB7);
}

.pilates-special .course-icon {
    background: linear-gradient(135deg, #F3E5F5, #E1BEE7);
}

.pilates-special:hover {
    border-color: #9C27B0;
    box-shadow: 0 25px 50px rgba(156, 39, 176, 0.15);
}

.pilates-cta {
    background: linear-gradient(135deg, #9C27B0, #673AB7);
}

.pilates-cta:hover {
    box-shadow: 0 15px 30px rgba(156, 39, 176, 0.4);
}

.pilates-special .benefit:hover {
    background: #9C27B0;
}

/* Enhanced Tarifs Headers */
.tarifs-header-enhanced {
    background: rgba(255, 255, 255, 0.95);
    padding: 3rem 2rem;
    border-radius: 20px;
    margin-bottom: 3rem;
    border: 2px solid rgba(45, 139, 62, 0.1);
    box-shadow: 0 10px 40px rgba(45, 139, 62, 0.08);
}

.tarifs-badge-enhanced {
    background: linear-gradient(135deg, #2D8B3E, #4CAF50);
    color: white;
    padding: 0.8rem 2rem;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 700;
    display: inline-block;
    margin-bottom: 1.5rem;
    box-shadow: 0 5px 15px rgba(45, 139, 62, 0.3);
}

.tarifs-title-enhanced {
    font-size: 3rem;
    font-weight: 800;
    color: #0F4F35;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
    background: linear-gradient(135deg, #0F4F35, #2D8B3E);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.tarifs-subtitle-enhanced {
    font-size: 1.3rem;
    color: #444;
    font-weight: 500;
    line-height: 1.6;
    max-width: 600px;
    margin: 0 auto;
}

/* Enhanced App Headers */
.app-header-enhanced {
    background: rgba(255, 255, 255, 0.95);
    padding: 3rem 2rem;
    border-radius: 20px;
    margin-bottom: 3rem;
    border: 2px solid rgba(76, 175, 80, 0.2);
    box-shadow: 0 10px 40px rgba(76, 175, 80, 0.1);
}

.app-badge-enhanced {
    background: linear-gradient(135deg, #4CAF50, #81C784);
    color: white;
    padding: 0.8rem 2rem;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 700;
    display: inline-block;
    margin-bottom: 1.5rem;
    box-shadow: 0 5px 15px rgba(76, 175, 80, 0.3);
}

.app-title-enhanced {
    font-size: 3rem;
    font-weight: 800;
    color: #0F4F35;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
    background: linear-gradient(135deg, #4CAF50, #2D8B3E);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.app-subtitle-enhanced {
    font-size: 1.3rem;
    color: #444;
    font-weight: 500;
    line-height: 1.6;
    max-width: 700px;
    margin: 0 auto;
}

/* Enhanced Testimonials Headers */
.testimonials-header-enhanced {
    background: rgba(255, 255, 255, 0.95);
    padding: 3rem 2rem;
    border-radius: 20px;
    margin-bottom: 3rem;
    border: 2px solid rgba(255, 193, 7, 0.3);
    box-shadow: 0 10px 40px rgba(255, 193, 7, 0.1);
}

.testimonials-badge-enhanced {
    background: linear-gradient(135deg, #FFC107, #FF9800);
    color: white;
    padding: 0.8rem 2rem;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 700;
    display: inline-block;
    margin-bottom: 1.5rem;
    box-shadow: 0 5px 15px rgba(255, 193, 7, 0.3);
}

.testimonials-title-enhanced {
    font-size: 3rem;
    font-weight: 800;
    color: #0F4F35;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
    background: linear-gradient(135deg, #FF9800, #FFC107);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.testimonials-subtitle-enhanced {
    font-size: 1.3rem;
    color: #444;
    font-weight: 500;
    line-height: 1.6;
    max-width: 700px;
    margin: 0 auto;
}

/* Human-friendly Hero Title */
.hero-main-title {
    font-size: 4rem;
    font-weight: 700;
    color: #0F4F35;
    margin: 1rem 0;
    text-align: center;
    line-height: 1.1;
    letter-spacing: -0.02em;
}

/* Planning Section - Simple & Clean */
.planning-grid-simple {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.planning-card-simple {
    background: white;
    border-radius: 15px;
    padding: 1.5rem;
    box-shadow: 0 10px 30px rgba(45, 139, 62, 0.1);
    transition: all 0.3s ease;
    cursor: pointer;
    text-align: center;
}

.planning-card-simple:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(45, 139, 62, 0.15);
}

.planning-card-simple h3 {
    color: #0F4F35;
    font-size: 1.3rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.planning-image-container-simple {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
}

.planning-image-simple {
    width: 100%;
    height: auto;
    transition: transform 0.3s ease;
}

.planning-card-simple:hover .planning-image-simple {
    transform: scale(1.05);
}

.zoom-indicator {
    position: absolute;
    bottom: 10px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(45, 139, 62, 0.9);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.planning-card-simple:hover .zoom-indicator {
    opacity: 1;
}

/* Planning Modal */
.planning-modal {
    display: none;
    position: fixed;
    z-index: 10000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    justify-content: center;
    align-items: center;
}

.planning-modal-content {
    position: relative;
    max-width: 90vw;
    max-height: 90vh;
    text-align: center;
}

.planning-modal-close {
    position: absolute;
    top: -40px;
    right: 0;
    color: white;
    font-size: 2rem;
    font-weight: bold;
    cursor: pointer;
    z-index: 10001;
}

.planning-modal-close:hover {
    color: #2D8B3E;
}

#planning-modal-title {
    color: white;
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.planning-modal-img {
    max-width: 100%;
    max-height: 80vh;
    border-radius: 10px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

/* App Section */
.app-section {
    padding: 8rem 0;
    background: linear-gradient(135deg, #0F4F35 0%, #2D8B3E 100%);
    color: white;
}

.app-features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.app-feature-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.app-feature-card:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-5px);
}

.feature-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.app-feature-card h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: #81C784;
}

.app-feature-card p {
    line-height: 1.6;
    opacity: 0.9;
}

.app-cta-section {
    text-align: center;
    margin-top: 4rem;
    padding: 3rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    backdrop-filter: blur(15px);
}

.app-cta-section h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #81C784;
}

.app-cta {
    background: white;
    color: #2D8B3E;
    padding: 1rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    transition: all 0.3s ease;
    display: inline-block;
    margin-top: 1rem;
}

.app-cta:hover {
    background: #81C784;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(255, 255, 255, 0.2);
}

/* Testimonials - Clean & Readable */
.testimonials-clean {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.testimonial-clean {
    background: rgba(255, 255, 255, 0.95);
    color: #333;
    padding: 2rem;
    border-radius: 15px;
    border-left: 4px solid #2D8B3E;
    box-shadow: 0 10px 30px rgba(255, 255, 255, 0.1);
}

.testimonial-rating-top {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.rating-text {
    color: #2D8B3E;
    font-weight: 700;
}

.testimonial-text-clean {
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
    font-style: italic;
    color: #444;
}

.testimonial-author-clean {
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
}

.testimonial-author-clean strong {
    color: #0F4F35;
    font-size: 1.1rem;
}

.testimonial-author-clean span {
    color: #666;
    font-size: 0.9rem;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .courses-grid-pro {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .course-card-pro {
        padding: 2rem;
        margin: 0 1rem;
    }
    
    .course-header {
        flex-direction: column;
        text-align: center;
        gap: 0.8rem;
    }
    
    .course-header h3 {
        font-size: 1.4rem;
    }
    
    .course-icon {
        width: 60px;
        height: 60px;
        font-size: 2rem;
    }
    
    .course-benefits {
        justify-content: center;
        gap: 0.6rem;
    }
    
    .benefit {
        padding: 0.5rem 1rem;
        font-size: 0.85rem;
    }
    
    .course-cta {
        padding: 1rem 2rem;
        font-size: 0.95rem;
        width: 100%;
        text-align: center;
    }
    
    .planning-grid-simple {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
    
    .app-features-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .testimonials-clean {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .planning-modal-content {
        max-width: 95vw;
    }
}

@media (max-width: 480px) {
    .courses-grid-pro {
        grid-template-columns: 1fr;
        gap: 1rem;
        margin-top: 2rem;
    }
    
    .course-card-pro {
        padding: 1.5rem;
        margin: 0 0.5rem;
    }
    
    .course-header h3 {
        font-size: 1.3rem;
    }
    
    .course-level {
        font-size: 0.8rem;
    }
    
    .course-description {
        font-size: 0.95rem;
    }
    
    .benefit {
        padding: 0.4rem 0.8rem;
        font-size: 0.8rem;
    }
    
    .tarifs-header-enhanced {
        padding: 2rem 1rem;
        margin-bottom: 2rem;
    }
    
    .tarifs-title-enhanced {
        font-size: 2rem;
    }
    
    .tarifs-subtitle-enhanced {
        font-size: 1.1rem;
    }
    
    .tarifs-badge-enhanced {
        font-size: 1rem;
        padding: 0.6rem 1.5rem;
    }
    
    .app-header-enhanced {
        padding: 2rem 1rem;
        margin-bottom: 2rem;
    }
    
    .app-title-enhanced {
        font-size: 2rem;
    }
    
    .app-subtitle-enhanced {
        font-size: 1.1rem;
    }
    
    .app-badge-enhanced {
        font-size: 1rem;
        padding: 0.6rem 1.5rem;
    }
    
    .testimonials-header-enhanced {
        padding: 2rem 1rem;
        margin-bottom: 2rem;
    }
    
    .testimonials-title-enhanced {
        font-size: 2rem;
    }
    
    .testimonials-subtitle-enhanced {
        font-size: 1.1rem;
    }
    
    .testimonials-badge-enhanced {
        font-size: 1rem;
        padding: 0.6rem 1.5rem;
    }
    
    .hero-main-title {
        font-size: 2.5rem;
    }
    
    .gallery-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .gallery-item.main-image {
        grid-column: span 1;
    }
    
    .gallery-img, .gallery-item.main-image .gallery-img {
        height: 200px;
    }
    
    .gallery-cta {
        padding: 2rem 1rem;
        margin-top: 2rem;
    }
    
    .gallery-cta h3 {
        font-size: 1.5rem;
    }
    
    .reductions-inline {
        flex-direction: column;
        gap: 1rem;
        align-items: center;
    }
    
    .reduction-tag {
        display: inline-block;
    }
}
