:root {
    --primary-color: #695E93;
    --primary-hover: #8155BA;
    --primary-light: #BEAFC2;
    --primary-dark: #281C2D;
    --secondary-color: #281C2D;
    --third-color: #C9D9F0;
    --accent-color: #EAD59F;
    --success-color: #10B981;
    --error-color: #EF4444;
    --warning-color: #F59E0B;
    --info-color: #8155BA;
    --text-primary: #281C2D;
    --text-secondary: #6B7280;
    --bg-primary: #FFFFFF;
    --bg-secondary: #F9FAFB;
    --border-color: #E5E7EB;
    --gradient-primary: linear-gradient(135deg, var(--primary-color), var(--primary-hover));
    
    /* Ombres simples sans couleur */
    --shadow-primary: 0 10px 25px -5px rgba(0, 0, 0, 0.25);
    --shadow-secondary: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

/* Palette applied: #695E93, #281C2D, #8155BA, #BEAFC2 */

 */

/* Custom styles */
.text-primary {
    color: var(--primary-color) !important;
}

.text-secondary {
    color: var(--secondary-color) !important;
}

/* Machine à écrire animation */
.typewriter {
    display: inline-block;
    position: relative;
}

.typewriter::after {
    content: '|';
    color: var(--primary-light);
    animation: blink-caret 0.8s step-end infinite;
    margin-left: 2px;
}

@keyframes blink-caret {
    0%, 50% {
        opacity: 1;
    }
    51%, 100% {
        opacity: 0;
    }
}

/* Couleurs spéciales */
.text-accent {
    color: var(--accent-color) !important;
}

.text-primary-dark {
    color: var(--primary-dark) !important;
}

.bg-primary-dark {
    background-color: var(--primary-dark) !important;
}

.hover\:bg-primary-dark:hover {
    background-color: var(--primary-dark) !important;
}

/* Mockup Styles */
.device-mockup {
    position: relative;
    transform-style: preserve-3d;
}

/* Desktop Monitor Styles */
.desktop-monitor-mockup {
    max-width: 650px;
    position: relative;
}

.monitor-screen {
     /* background: var(--gradient-primary); */
    background: var(--primary-dark);
    border-radius: 15px;
    border: 8px solid #e2e8f0;
    box-shadow: 
        0 20px 60px rgba(40, 28, 45, 0.4),
        0 10px 30px rgba(40, 28, 45, 0.3),
        inset 0 0 20px rgba(0, 0, 0, 0.3);
    position: relative;
    overflow: hidden;
    aspect-ratio: 16 / 10;
}

.monitor-stand {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
}

.monitor-neck {
    width: 20px;
    height: 60px;
    background: linear-gradient(135deg, #e2e8f0, #e2e8f0);
    border-radius: 10px;
    margin-bottom: -5px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.monitor-base {
    width: 200px;
    height: 25px;
    background: linear-gradient(135deg, #e2e8f0, #e2e8f0);
    border-radius: 50px;
    box-shadow: 
        0 10px 25px rgba(0, 0, 0, 0.3),
        0 5px 15px rgba(0, 0, 0, 0.2);
    position: relative;
}

.monitor-base::before {
    content: '';
    position: absolute;
    top: -5px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 15px;
    background: linear-gradient(135deg, #e2e8f0, #e2e8f0);
    border-radius: 20px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.monitor-base::after {
    content: '';
    position: absolute;
    bottom: -3px;
    left: 50%;
    transform: translateX(-50%);
    width: 120px;
    height: 8px;
    background: rgba(0, 0, 0, 0.2);
    border-radius: 50%;
    filter: blur(3px);
}

.phone-mockup {
    /* background: linear-gradient(145deg, #ffffff, #f1f3f4); */
    background: var(--primary-dark);
         /* background: var(--gradient-primary); */

    border-radius: 30px;
 box-shadow: 
        0 30px 80px rgba(40, 28, 45, 0.5),
        0 20px 40px rgba(40, 28, 45, 0.3),
        0 8px 20px rgba(0, 0, 0, 0.15);
        
    position: absolute; 
    border: 6px solid #e2e8f0;
    width: 250px;
    height: 400px;
    top: 69%; /* Position par rapport au viewport */
    right: -100px; /* Position par rapport au bord droit de l'écran */
    transform: translateY(-50%);
    z-index: 1000; /* Z-index très élevé pour passer au-dessus de tout */
}

/* Ombrage supplémentaire lors du hover */
.phone-mockup:hover {
    box-shadow: 
        0 30px 80px rgba(40, 28, 45, 0.5),
        0 20px 40px rgba(40, 28, 45, 0.3),
        0 8px 20px rgba(0, 0, 0, 0.15);
    transform: translateY(-50%) translateY(-5px) scale(1.02);
    transition: all 0.3s ease;
}



.module-card {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 12px;
    padding: 1rem;
    margin: 0.5rem;
    box-shadow: 0 4px 15px rgba(105, 94, 147, 0.15);
    transition: all 0.3s ease;
    border-left: 4px solid var(--primary-color);
}

.module-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(105, 94, 147, 0.25);
}

.module-icon {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 12px;
    flex-shrink: 0;
}

.hero-overflow {
    position: relative;
    z-index: 10;
    margin-bottom: -50px;
}

.bg-primary {
    background-color: var(--primary-color) !important;
}

.border-primary {
    border-color: var(--primary-color) !important;
}

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}

/* Animations améliorées et fluides */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(60px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(100px) scale(0.95);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

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

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

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

@keyframes pulseGentle {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(220, 38, 38, 0.4);
    }
    50% {
        transform: scale(1.02);
        box-shadow: 0 0 0 10px rgba(220, 38, 38, 0);
    }
}

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

@keyframes bounce {
    0%, 20%, 53%, 80%, 100% {
        transform: translate3d(0, 0, 0);
    }
    40%, 43% {
        transform: translate3d(0, -8px, 0);
    }
    70% {
        transform: translate3d(0, -4px, 0);
    }
    90% {
        transform: translate3d(0, -2px, 0);
    }
}

@keyframes zoomIn {
    from {
        opacity: 0;
        transform: scale3d(0.3, 0.3, 0.3);
    }
    50% {
        opacity: 1;
    }
}

@keyframes rotateIn {
    from {
        transform-origin: center;
        transform: rotate3d(0, 0, 1, -200deg);
        opacity: 0;
    }
    to {
        transform-origin: center;
        transform: rotate3d(0, 0, 1, 0deg);
        opacity: 1;
    }
}

/* Classes d'animation */
.animate-fadeInUp {
    animation: fadeInUp 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.animate-slideInUp {
    animation: slideInUp 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.animate-slideInRight {
    animation: slideInRight 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.animate-slideInLeft {
    animation: slideInLeft 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.animate-pulse-gentle {
    animation: pulseGentle 2s infinite;
}

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

.animate-bounce-gentle {
    animation: bounce 2s infinite;
}

.animate-zoom-in {
    animation: zoomIn 0.6s ease-out;
}

.animate-rotate-in {
    animation: rotateIn 0.8s ease-out;
}

/* Effets hover modernes */
.hover-lift {
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.hover-lift:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: var(--shadow-primary);
}

.hover-glow {
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.hover-glow::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;
}

.hover-glow:hover::before {
    left: 100%;
}

.hover-glow:hover {
    box-shadow: 0 0 30px rgba(220, 38, 38, 0.3);
}

/* Styles pour les cartes */
.card-modern {
    background: white;
    border-radius: 20px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    border: 1px solid var(--third-color);
    overflow: hidden;
    position: relative;
}


/* Boutons modernes sans gradient */
.btn-modern {
    background: var(--primary-color);
    border: none;
    border-radius: 12px;
    color: white;
    font-weight: 600;
    padding: 12px 24px;
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-secondary);
}

.btn-modern:hover {
    background: var(--primary-hover);
    transform: translateY(-2px);
    box-shadow: var(--shadow-primary);
}

.btn-modern:active {
    transform: translateY(0);
}

/* Styles pour les tabs */
.tab-nav {
    display: flex;
    justify-content: center;
    margin-bottom: 50px;
    position: relative;
    /* background: var(--third-color); */
    border-radius: 20px;
    padding: 12px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
    overflow: hidden;
    backdrop-filter: blur(10px);
      gap: 16px;
}


.tab-item {
    flex: 1;
    padding: 24px 20px;
    border-radius: 16px;
    /* background: transparent; */
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    text-align: center;
    position: relative;
    border: 1px solid var(--secondary-color);
    min-width: 0;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
}

.tab-title {
    font-size: 16px;
    font-weight: 700;
    color: #1e293b;
    margin: 0;
    transition: all 0.3s ease;
    letter-spacing: 0.5px;
    line-height: 1.2;
}

.tab-item:hover {
    transform: translateY(-4px);
    background: rgba(255, 255, 255, 0.7);
    box-shadow: 
        0 8px 25px -5px rgba(0, 0, 0, 0.1),
        0 4px 6px -2px rgba(0, 0, 0, 0.05);
}

.tab-item:hover .tab-title {
    color: var(--primary-color);
    transform: scale(1.02);
}

.tab-item.active {
    background: #BEAFC2;
}


.tab-item.active .tab-title {
    color: var(--secondary-color);
    font-weight: 800;
    transform: scale(1.05);
}

.tab-content {
    display: none;
    animation: fadeInUp 0.6s ease;
}

.tab-content.active {
    display: block;
}

/* Inputs modernes */
.input-modern {
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    border: 2px solid #e2e8f0;
    background: white;
    position: relative;
}

.input-modern:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(220, 38, 38, 0.1);
    transform: translateY(-2px);
}

.form-group.focused .input-modern {
    border-color: var(--primary-color);
}

/* Notifications */
.notification-success {
    background: linear-gradient(135deg, #10B981, #059669);
}

.notification-error {
    background: linear-gradient(135deg, #EF4444, #DC2626);
}

.notification-warning {
    background: linear-gradient(135deg, #F59E0B, #D97706);
}

.notification-info {
    background: var(--gradient-primary);
}

/* Steps pour le formulaire d'inscription */
.step-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
}

.step-circle {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #e2e8f0;
    color: #64748b;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    transition: all 0.3s ease;
    margin-bottom: 8px;
}

.step-item.active .step-circle {
    background: var(--gradient-primary);
    color: white;
    transform: scale(1.1);
}

.step-item.completed .step-circle {
    background: #10B981;
    color: white;
}

.step-item.completed .step-circle::before {
    content: '✓';
}

.step-label {
    font-size: 0.875rem;
    color: #64748b;
    font-weight: 500;
}

.step-item.active .step-label {
    color: var(--primary-color);
    font-weight: 600;
}

.step-line {
    flex: 1;
    height: 2px;
    background: #e2e8f0;
    margin: 0 16px;
    position: relative;
    top: -12px;
}

.step-content {
    display: none;
}

.step-content.active {
    display: block;
    animation: fadeInUp 0.5s ease;
}
        /* transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
} */

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

.animate-fade-in-up {
    animation: fadeInUp 0.8s ease-out;
}

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

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

/* Card hover effects */
.card-hover {
    transition: all 0.3s ease;
}

.card-hover:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

/* Button styles */
.btn-primary {
    background-color: var(--primary-color);
    color: white;
    padding: 12px 24px;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.btn-primary:hover {
    background-color: var(--primary-hover);
    transform: translateY(-2px);
    box-shadow: 0 10px 15px -3px rgba(129, 85, 186, 0.25);
}

.btn-secondary {
    background-color: transparent;
    color: var(--primary-color);
    padding: 12px 24px;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s ease;
    border: 2px solid var(--primary-color);
    cursor: pointer;
}

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

/* Form styles */
.form-input {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    font-size: 16px;
    transition: all 0.3s ease;
}

.form-input:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(105, 94, 147, 0.08);
}

/* Loading spinner */
.spinner {
    border: 3px solid #f3f3f3;
    border-top: 3px solid var(--primary-color);
    border-radius: 50%;
    width: 20px;
    height: 20px;
    animation: spin 1s linear infinite;
    margin: 0 auto;
}

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

/* Alert styles */
.alert {
    padding: 12px 16px;
    border-radius: 8px;
    margin-bottom: 16px;
    border-left: 4px solid;
}

.alert-success {
    background-color: #ECFDF5;
    color: #065F46;
    border-left-color: var(--success-color);
}

.alert-error {
    background-color: #FEF2F2;
    color: #991B1B;
    border-left-color: var(--error-color);
}

.alert-warning {
    background-color: #FFFBEB;
    color: #92400E;
    border-left-color: var(--warning-color);
}

.alert-info {
    background-color: #EFF6FF;
    color: #1E40AF;
    border-left-color: var(--info-color);
}

/* Mobile menu */
.mobile-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background-color: white;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    padding: 20px;
}

.mobile-menu.active {
    display: block;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .phone-mockup {
        display: none; /* Masquer le téléphone sur mobile */
    }
    
    .hero-title {
        font-size: 2.5rem;
        line-height: 1.2;
    }
    
    .hero-subtitle {
        font-size: 1.125rem;
    }
    
    .section-title {
        font-size: 2.25rem;
    }
    
    .card-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .pricing-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}

/* Utility classes */
.text-gradient {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-hover));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.bg-gradient {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-hover));
}

.shadow-custom {
    box-shadow: 0 10px 25px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}

.border-gradient {
    background: linear-gradient(white, white) padding-box,
                linear-gradient(135deg, var(--primary-color), var(--primary-hover)) border-box;
    border: 2px solid transparent;
    border-radius: 8px;
}

/* Scrollbar customization */
::-webkit-scrollbar {
    width: 8px;
}

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

::-webkit-scrollbar-thumb {
    background: var(--primary-color);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--primary-hover);
}

/* Modal improvements */
.modal-content {
    max-height: 90vh;
    overflow-y: auto;
}

/* Mobile Menu Styles */
.mobile-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: white;
    box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.25);
    border-radius: 0 0 1rem 1rem;
    z-index: 50;
    opacity: 0;
    transform: translateY(-20px);
    transition: all 0.3s ease;
}

.mobile-menu.active {
    display: block;
    opacity: 1;
    transform: translateY(0);
}

.mobile-menu-item {
    padding: 1rem 1.5rem;
    border-bottom: 1px solid #E5E7EB;
    transition: all 0.3s ease;
}

.mobile-menu-item:hover {
    background: var(--primary-light);
    padding-left: 2rem;
}

.mobile-menu-item.active {
    background: var(--primary-light);
    border-left: 4px solid var(--primary-color);
    font-weight: 600;
    color: var(--primary-color);
}

.mobile-auth-buttons {
    padding: 1rem 1.5rem;
    display: flex;
    gap: 0.75rem;
}

/* Tab Navigation Responsive */
@media (max-width: 768px) {
    .tab-nav {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 8px;
        max-width: 100%;
        padding: 8px;
        margin-bottom: 40px;
        border-radius: 16px;
    }
    
    .tab-item {
        padding: 20px 16px;
        text-align: center;
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 12px;
        border-radius: 12px;
    }
    
    .tab-title {
        font-size: 14px;
        line-height: 1.2;
    }
    
    .tab-item.active {
        transform: translateY(-3px);
    }
    
    .tab-item.active::before {
        width: 70%;
        height: 3px;
        bottom: -4px;
    }
}

@media (max-width: 480px) {
    .tab-nav {
        grid-template-columns: 1fr;
        gap: 6px;
        padding: 6px;
        border-radius: 12px;
    }
    
    .tab-item {
        padding: 18px 24px;
        flex-direction: row;
        justify-content: flex-start;
        text-align: left;
        gap: 16px;
    }
    
    .tab-title {
        font-size: 15px;
        text-align: left;
        flex-grow: 1;
    }
    
    .tab-item.active::before {
        left: 4px;
        right: auto;
        width: 4px;
        height: 70%;
        top: 50%;
        bottom: auto;
        transform: translateY(-50%);
        border-radius: 0 2px 2px 0;
    }
    
    .tab-item.active {
        transform: translateY(-2px);
    }
}

@media (max-width: 640px) {
    .tab-nav {
        grid-template-columns: 1fr;
        gap: 0.75rem;
    }
    
    .tab-item {
        flex-direction: row;
        text-align: left;
        padding: 1rem;
        min-height: 60px;
    }
    
    .tab-item i {
        margin-right: 1rem;
        margin-bottom: 0;
        font-size: 1.5rem;
        width: 2rem;
        flex-shrink: 0;
    }
    
    .tab-item span {
        font-size: 0.875rem;
        font-weight: 500;
    }
}

/* Active menu item highlight */
.nav-active {
    color: var(--primary-color) !important;
    font-weight: 600;
    position: relative;
}

.nav-active::after {
    content: '';
    position: absolute;
    bottom: -1rem;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--primary-color);
    border-radius: 2px;
}

/* Feature icons animation */
.feature-icon {
    transition: all 0.3s ease;
}

.feature-card:hover .feature-icon {
    transform: scale(1.1);
}

/* Pricing card special effects */
.pricing-card-featured {
    position: relative;
    transform: scale(1.05);
}

.pricing-card-featured::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-hover));
    border-radius: inherit;
    z-index: -1;
}

/* Loading states */
.btn-loading {
    position: relative;
    color: transparent;
}

.btn-loading::after {
    content: '';
    position: absolute;
    width: 16px;
    height: 16px;
    top: 50%;
    left: 50%;
    margin-left: -8px;
    margin-top: -8px;
    border: 2px solid transparent;
    border-top: 2px solid currentColor;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

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

.checkmark {
    animation: checkmark 0.5s ease-in-out;
}

/* Guide Page Styles */
.nav-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 0.75rem 1rem;
    text-decoration: none;
    transition: all 0.3s ease;
    border-radius: 0.75rem;
    border: 2px solid transparent;
}

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

.nav-step.active {
    background-color: var(--primary-color);
    color: white;
    border-color: var(--primary-dark);
}

.step-number {
    width: 2rem;
    height: 2rem;
    border-radius: 50%;
    background-color: #E5E7EB;
    color: #6B7280;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 0.875rem;
    margin-bottom: 0.5rem;
    transition: all 0.3s ease;
}

.nav-step.active .step-number {
    background-color: rgba(255, 255, 255, 0.2);
    color: white;
}

.nav-step:hover .step-number {
    background-color: var(--primary-color);
    color: white;
}

.nav-step.active:hover .step-number {
    background-color: rgba(255, 255, 255, 0.3);
}

.step-label {
    font-size: 0.75rem;
    font-weight: 600;
    text-align: center;
    color: #6B7280;
    transition: all 0.3s ease;
}

.nav-step.active .step-label {
    color: white;
}

.nav-step:hover .step-label {
    color: var(--primary-color);
}

.nav-step.active:hover .step-label {
    color: white;
}

/* Responsive adjustments for guide navigation */
@media (max-width: 768px) {
    .nav-step {
        flex-direction: row;
        padding: 0.5rem 0.75rem;
    }
    
    .step-number {
        margin-bottom: 0;
        margin-right: 0.5rem;
        width: 1.5rem;
        height: 1.5rem;
        font-size: 0.75rem;
    }
    
    .step-label {
        font-size: 0.7rem;
        text-align: left;
    }
}

@media (max-width: 640px) {
    .nav-step {
        padding: 0.4rem 0.6rem;
    }
    
    .step-number {
        width: 1.25rem;
        height: 1.25rem;
        font-size: 0.65rem;
    }
    
    .step-label {
        font-size: 0.65rem;
    }
}

/* Enhanced hover effects for guide cards */
.bg-white:hover {
    transform: translateY(-2px);
}

/* Pulse animation for WhatsApp button */
@keyframes pulse-whatsapp {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

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