/* ========================================
   LASER STOP TABAC - STYLES
   ======================================== */

/* ========================================
   GLOBAL STYLES & ANIMATIONS
   ======================================== */
html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    background-color: #FFFDF9;
    overflow-x: hidden;
}

/* ========================================
   SCROLL-TRIGGERED ANIMATIONS
   ======================================== */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

.fade-in-left {
    opacity: 0;
    transform: translateX(-50px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.fade-in-left.visible {
    opacity: 1;
    transform: translateX(0);
}

.fade-in-right {
    opacity: 0;
    transform: translateX(50px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.fade-in-right.visible {
    opacity: 1;
    transform: translateX(0);
}

.scale-in {
    opacity: 0;
    transform: scale(0.9);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.scale-in.visible {
    opacity: 1;
    transform: scale(1);
}

/* Stagger delay classes */
.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.2s; }
.delay-3 { transition-delay: 0.3s; }
.delay-4 { transition-delay: 0.4s; }
.delay-5 { transition-delay: 0.5s; }

/* ========================================
   GRADIENT BACKGROUNDS
   ======================================== */
.bg-hero-gradient {
    background: linear-gradient(160deg, #052e1a 0%, #0d4a2b 40%, #0f7a3f 100%);
    position: relative;
}

.bg-hero-gradient::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 30% 20%, rgba(34, 197, 104, 0.15) 0%, transparent 50%),
                radial-gradient(ellipse at 70% 80%, rgba(245, 158, 11, 0.1) 0%, transparent 40%);
    pointer-events: none;
}

.bg-section-light {
    background: linear-gradient(180deg, #FFFDF9 0%, #f8f5f0 100%);
}

/* ========================================
   GLASSMORPHISM & CARDS
   ======================================== */
.glass {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.glass-dark {
    background: rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.card-hover {
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    will-change: transform, box-shadow;
}

.card-hover:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 25px 50px -12px rgba(13, 74, 43, 0.15);
}

/* ========================================
   CTA BUTTONS
   ======================================== */
.cta-button {
    background: linear-gradient(135deg, #ea580c 0%, #c2410c 100%);
    color: white !important;
    box-shadow: 0 4px 20px rgba(234, 88, 12, 0.4),
                inset 0 1px 0 rgba(255, 255, 255, 0.2);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    text-shadow: 0 1px 2px rgba(0,0,0,0.2);
    position: relative;
    overflow: hidden;
}

.cta-button::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.5s ease;
}

.cta-button:hover {
    background: linear-gradient(135deg, #f97316 0%, #ea580c 100%);
    box-shadow: 0 10px 40px rgba(234, 88, 12, 0.5),
                inset 0 1px 0 rgba(255, 255, 255, 0.3);
    transform: translateY(-4px) scale(1.02);
}

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

.cta-button:active {
    transform: translateY(-2px) scale(1);
}

.cta-secondary {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.25);
    transition: all 0.3s ease;
}

.cta-secondary:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-2px);
}

/* ========================================
   TYPOGRAPHY
   ======================================== */
.gradient-text {
    background: linear-gradient(135deg, #f59e0b 0%, #fcd34d 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stat-number {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1;
    background: linear-gradient(135deg, #0f7a3f 0%, #22c568 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.stat-icon {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1;
    background: linear-gradient(135deg, #0f7a3f 0%, #22c568 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: inline-block;
}


/* ========================================
   ORGANIC SHAPES & DECORATIONS
   ======================================== */
.blob-shape {
    border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
    animation: blob-morph 12s ease-in-out infinite;
}

@keyframes blob-morph {
    0%, 100% { border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%; }
    33% { border-radius: 30% 60% 70% 40% / 50% 60% 30% 60%; }
    66% { border-radius: 50% 50% 40% 60% / 40% 50% 50% 60%; }
}

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

@keyframes float {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-25px) rotate(2deg); }
}

.float-delayed {
    animation: float 8s ease-in-out infinite;
    animation-delay: -4s;
}

.organic-shape-1 {
    position: absolute;
    width: 700px;
    height: 700px;
    background: radial-gradient(circle, rgba(34, 197, 104, 0.08) 0%, transparent 70%);
    border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
    filter: blur(60px);
    animation: float 20s ease-in-out infinite;
}

.organic-shape-2 {
    position: absolute;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(245, 158, 11, 0.06) 0%, transparent 70%);
    border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
    filter: blur(40px);
    animation: float 15s ease-in-out infinite reverse;
}

.line-decoration {
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, #f59e0b 0%, #fbbf24 100%);
    border-radius: 2px;
    position: relative;
    overflow: hidden;
}

.line-decoration::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.5), transparent);
    animation: shimmer 2s infinite;
}

@keyframes shimmer {
    0% { left: -100%; }
    100% { left: 100%; }
}

/* ========================================
   FAQ & INTERACTIVE ELEMENTS
   ======================================== */
.faq-item {
    background: white;
    border-left: 4px solid transparent;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.faq-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(245, 158, 11, 0.05) 0%, transparent 50%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.faq-item:hover {
    border-left-color: #f59e0b;
    transform: translateX(8px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.faq-item:hover::before {
    opacity: 1;
}

/* ========================================
   ANIMATIONS
   ======================================== */
.breathing {
    animation: breathing 5s ease-in-out infinite;
}

@keyframes breathing {
    0%, 100% { transform: scale(1); opacity: 0.85; }
    50% { transform: scale(1.03); opacity: 1; }
}

.pulse-ring {
    animation: pulse-ring 2.5s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}

@keyframes pulse-ring {
    0%, 100% { transform: scale(0.95); opacity: 1; }
    50% { transform: scale(1.05); opacity: 0.7; }
}

.pulse-glow {
    animation: pulse-glow 2s ease-in-out infinite;
}

@keyframes pulse-glow {
    0%, 100% { box-shadow: 0 0 20px rgba(234, 88, 12, 0.4); }
    50% { box-shadow: 0 0 40px rgba(234, 88, 12, 0.6); }
}

/* ========================================
   FORM ELEMENTS
   ======================================== */
.slider-thumb::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
    cursor: grab;
    box-shadow: 0 4px 15px rgba(245, 158, 11, 0.5);
    border: 4px solid white;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.slider-thumb::-webkit-slider-thumb:hover {
    transform: scale(1.15);
    box-shadow: 0 6px 20px rgba(245, 158, 11, 0.6);
}

.slider-thumb::-webkit-slider-thumb:active {
    cursor: grabbing;
    transform: scale(1.1);
}

.slider-thumb::-moz-range-thumb {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
    cursor: grab;
    box-shadow: 0 4px 15px rgba(245, 158, 11, 0.5);
    border: 4px solid white;
}

input:focus, select:focus, textarea:focus {
    outline: none;
    border-color: #ea580c !important;
    box-shadow: 0 0 0 4px rgba(234, 88, 12, 0.15);
}

/* ========================================
   POPUPS & OVERLAYS
   ======================================== */
.exit-popup-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.75);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.exit-popup-overlay.active {
    opacity: 1;
    visibility: visible;
}

.exit-popup {
    background: white;
    border-radius: 28px;
    max-width: 480px;
    width: 100%;
    padding: 2.5rem;
    position: relative;
    transform: scale(0.85) translateY(40px);
    transition: transform 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
    box-shadow: 0 30px 60px -15px rgba(0, 0, 0, 0.3);
}

.exit-popup-overlay.active .exit-popup {
    transform: scale(1) translateY(0);
}

.exit-popup-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: #f3f4f6;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.exit-popup-close:hover {
    background: #e5e7eb;
    transform: rotate(90deg);
}

/* ========================================
   FORMULA CARDS (Booking Step 0)
   ======================================== */
.formula-card input:checked + .formula-card-inner {
    border-color: #f97316;
    background: linear-gradient(135deg, #fff7ed 0%, #ffedd5 100%);
    box-shadow: 0 4px 20px rgba(249, 115, 22, 0.15);
}

.formula-card input:checked + .formula-card-inner .formula-check {
    background: #f97316;
    border-color: #f97316;
}

.formula-card input:checked + .formula-card-inner .formula-check .check-icon {
    display: block;
}

.formula-card:hover .formula-card-inner {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
}

.formula-card .formula-card-inner {
    transition: all 0.2s ease;
}

/* ========================================
   SOCIAL PROOF TOAST
   ======================================== */
.social-proof-toast {
    position: fixed;
    bottom: 100px;
    left: 1rem;
    background: white;
    border-radius: 20px;
    padding: 1rem 1.5rem;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.12);
    z-index: 100;
    max-width: 340px;
    transform: translateX(-120%) scale(0.9);
    opacity: 0;
    transition: all 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
    border-left: 4px solid #22c568;
}

.social-proof-toast.show {
    transform: translateX(0) scale(1);
    opacity: 1;
}

@media (min-width: 640px) {
    .social-proof-toast {
        bottom: 2rem;
        left: 2rem;
    }
}

/* ========================================
   RESPONSIVE & UTILITY
   ======================================== */
@media (max-width: 768px) {
    .stat-number {
        font-size: 2.5rem;
    }

    .hide-mobile {
        display: none !important;
    }
}

/* Smooth image loading */
img {
    transition: opacity 0.3s ease;
}

/* Selection color */
::selection {
    background: rgba(234, 88, 12, 0.2);
    color: inherit;
}

/* Custom scrollbar */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(180deg, #0f7a3f 0%, #0d4a2b 100%);
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(180deg, #22c568 0%, #0f7a3f 100%);
}

/* ========================================
   SNOW EFFECT - Subtle on card
   ======================================== */
.snow-local {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    overflow: hidden;
    z-index: 0;
}

.snow-local::before,
.snow-local::after {
    content: '❄';
    position: absolute;
    font-size: 10px;
    color: rgba(255, 255, 255, 0.4);
    animation: snow-fall 4s linear infinite;
}

.snow-local::before {
    left: 20%;
    animation-delay: 0s;
}

.snow-local::after {
    left: 70%;
    animation-delay: 2s;
    font-size: 8px;
}

.noel-card::before {
    content: '❄';
    position: absolute;
    left: 45%;
    top: -10px;
    font-size: 6px;
    color: rgba(255, 255, 255, 0.3);
    animation: snow-fall 5s linear infinite;
    animation-delay: 1s;
    z-index: 0;
}

@keyframes snow-fall {
    0% {
        top: -10px;
        opacity: 0;
    }
    10% {
        opacity: 0.5;
    }
    90% {
        opacity: 0.3;
    }
    100% {
        top: 100%;
        opacity: 0;
    }
   /* ================================
   CONFIRMATION PAGE – NEUROLASER
================================ */

/* Hero gradient (même DA que home) */
.bg-hero-gradient {
  background:
    radial-gradient(1200px 600px at 70% -20%, rgba(34,197,94,.25), transparent 60%),
    linear-gradient(180deg, #0b3d2e 0%, #06281f 100%);
  min-height: 100vh;
}

/* Glass effect */
.glass-dark {
  background: rgba(255,255,255,0.06);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255,255,255,0.12);
  box-shadow: 0 30px 80px rgba(0,0,0,.45);
}

/* Buttons */
.cta-button {
  background: linear-gradient(135deg, #22c55e, #16a34a);
  color: #06281f;
  font-weight: 700;
  transition: transform .2s ease, box-shadow .2s ease;
  box-shadow: 0 10px 30px rgba(34,197,94,.35);
}

.cta-button:hover {
  transform: translateY(-1px);
  box-shadow: 0 14px 40px rgba(34,197,94,.45);
}

.cta-secondary {
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.18);
  backdrop-filter: blur(8px);
}

/* Cards */
.card-hover {
  transition: transform .2s ease, box-shadow .2s ease;
}

.card-hover:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 50px rgba(0,0,0,.45);
}

/* Pulse check */
.pulse-ring {
  position: relative;
}

.pulse-ring::after {
  content: "";
  position: absolute;
  inset: -12px;
  border-radius: 50%;
  border: 2px solid rgba(34,197,94,.35);
  animation: pulse 1.6s infinite ease-out;
}

@keyframes pulse {
  from { opacity: .8; transform: scale(.9); }
  to   { opacity: 0; transform: scale(1.4); }
}

/* Stats */
.stat-number {
  font-size: 2.4rem;
  font-weight: 800;
  color: #22c55e;
}

.stat-icon {
  font-size: 1.8rem;
}

}

