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

:root {
    --color-blue-50: #eff6ff;
    --color-blue-100: #dbeafe;
    --color-blue-500: #3b82f6;
    --color-blue-600: #2563eb;
    --color-blue-700: #1d4ed8;
    --color-green-500: #22c55e;
    --color-yellow-500: #eab308;
    --color-slate-300: #cbd5e1;
    --color-slate-400: #94a3b8;
    --color-slate-700: #334155;
    --color-slate-800: #1e293b;
    --color-slate-900: #0f172a;
    --color-slate-950: #020617;
    --color-white: #ffffff;
}

/* Keyframe Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

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

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

@keyframes fadeSlideFromLeft {
    0% {
        opacity: 0;
        transform: translateX(-100px);
    }
    100% {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes scaleIn {
    from {
        opacity: 0;
        transform: scale(0.9);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes pulse {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.5;
    }
}

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

@keyframes glow {
    0%, 100% {
        box-shadow: 0 0 20px rgba(59, 130, 246, 0.3);
    }
    50% {
        box-shadow: 0 0 40px rgba(59, 130, 246, 0.6);
    }
}

@keyframes slideDown {
    from {
        max-height: 0;
        opacity: 0;
    }
    to {
        max-height: 500px;
        opacity: 1;
    }
}

@keyframes slideInRight {
    from {
        transform: translateX(100%);
    }
    to {
        transform: translateX(0);
    }
}

@keyframes fadeInOverlay {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    background: linear-gradient(to bottom, var(--color-slate-950), var(--color-slate-900), var(--color-slate-950));
    color: var(--color-white);
    min-height: 100vh;
    overflow-x: hidden;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1rem;
}

/* Improve text readability */
h1, h2, h3, h4, h5, h6 {
    text-wrap: balance;
}

p {
    text-wrap: pretty;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(2, 6, 23, 0.8);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--color-slate-800);
    z-index: 1000;
    transition: all 0.3s ease;
}

.nav-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 64px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
    transition: transform 0.3s ease;
    text-decoration: none;
}

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

.logo-icon {
    color: var(--color-blue-500);
    transition: all 0.3s ease;
}

.logo:hover .logo-icon {
    transform: rotate(10deg);
    filter: drop-shadow(0 0 8px rgba(59, 130, 246, 0.8));
}

.logo-text {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--color-white);
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 2rem;
    flex-wrap: nowrap;
}

.cart-container {
    position: relative;
}

.cart-icon {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    color: var(--color-slate-300);
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
}

.cart-icon:hover {
    color: var(--color-blue-500);
    transform: scale(1.1);
}

.cart-badge {
    position: absolute;
    top: -5px;
    right: -5px;
    background: var(--color-blue-600);
    color: white;
    font-size: 0.7rem;
    font-weight: 600;
    padding: 0.15rem 0.4rem;
    border-radius: 10px;
    min-width: 18px;
    text-align: center;
}

.cart-dropdown {
    position: absolute;
    top: calc(100% + 1rem);
    right: 0;
    width: 350px;
    background: var(--color-slate-800);
    border: 1px solid var(--color-slate-700);
    border-radius: 0.75rem;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
    z-index: 2000;
    display: none;
    opacity: 0;
    transform: translateY(-10px);
    transition: all 0.3s ease;
}

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

.cart-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 1.25rem;
    border-bottom: 1px solid var(--color-slate-700);
}

.cart-header h3 {
    font-size: 1.1rem;
    font-weight: 600;
    color: white;
}

.cart-close {
    background: none;
    border: none;
    color: var(--color-slate-400);
    cursor: pointer;
    padding: 0.25rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: color 0.3s;
}

.cart-close:hover {
    color: white;
}

.cart-content {
    padding: 1.5rem 1.25rem;
}

.cart-empty {
    text-align: center;
    padding: 2rem 1rem;
}

.cart-empty svg {
    color: var(--color-slate-600);
    margin-bottom: 1rem;
}

.cart-empty p {
    color: var(--color-slate-400);
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
}

.cart-items {
    max-height: 300px;
    overflow-y: auto;
}

.cart-item {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding: 1rem;
    border-bottom: 1px solid var(--color-slate-700);
    gap: 1rem;
}

.cart-item:last-child {
    border-bottom: none;
}

.cart-item-info h4 {
    color: white;
    font-size: 0.95rem;
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.cart-item-info p {
    color: var(--color-slate-400);
    font-size: 0.85rem;
}

.cart-item-actions {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 0.5rem;
}

.quantity-controls {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--color-slate-700);
    border-radius: 0.375rem;
    padding: 0.25rem;
}

.quantity-btn {
    background: transparent;
    border: none;
    color: var(--color-slate-400);
    width: 24px;
    height: 24px;
    border-radius: 0.25rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s;
}

.quantity-btn:hover {
    background: var(--color-slate-600);
    color: white;
}

.quantity-value {
    color: white;
    font-weight: 600;
    font-size: 0.9rem;
    min-width: 24px;
    text-align: center;
}

.cart-item-price {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.cart-item-price span {
    color: var(--color-blue-500);
    font-weight: 600;
    font-size: 1rem;
}

.cart-item-remove {
    background: var(--color-slate-700);
    border: none;
    color: var(--color-slate-400);
    width: 28px;
    height: 28px;
    border-radius: 0.375rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
}

.cart-item-remove:hover {
    background: #ef4444;
    color: white;
}

.cart-footer {
    border-top: 1px solid var(--color-slate-700);
    padding: 1rem 1.25rem;
}

.cart-total {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.cart-total span:first-child {
    color: var(--color-slate-400);
    font-weight: 500;
}

.total-amount {
    color: white;
    font-weight: 700;
    font-size: 1.25rem;
}

.btn-small {
    padding: 0.5rem 1rem;
    font-size: 0.9rem;
}

@keyframes slideIn {
    from {
        transform: translateX(100%);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

@keyframes slideOut {
    from {
        transform: translateX(0);
        opacity: 1;
    }
    to {
        transform: translateX(100%);
        opacity: 0;
    }
}

.nav-link {
    color: var(--color-slate-300);
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
    padding: 0.5rem 0;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--color-blue-500);
    transition: width 0.3s ease;
}

.nav-link:hover {
    color: var(--color-white);
    transform: translateY(-2px);
}

.nav-link:hover::after {
    width: 100%;
}

.whatsapp-btn-header {
    position: fixed;
    right: 80px;
    top: 50%;
    transform: translateY(-50%);
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, #25D366, #128C7E);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.4);
    z-index: 999;
}

.whatsapp-btn-header:hover {
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.6);
}

.whatsapp-btn-header svg {
    color: white;
    transition: all 0.3s ease;
}

.whatsapp-btn-header:hover svg {
    transform: rotate(15deg);
}

/* Bouton WhatsApp flottant (visible uniquement sur mobile) */
.whatsapp-float-btn {
    position: fixed;
    right: 16px;
    bottom: 20px;
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, #25D366, #128C7E);
    border-radius: 50%;
    display: none;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.5);
    z-index: 998;
}

.whatsapp-float-btn:hover,
.whatsapp-float-btn:active {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.7);
}

.whatsapp-float-btn svg {
    color: white;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.whatsapp-float-btn:hover svg,
.whatsapp-float-btn:active svg {
    transform: rotate(15deg);
}

/* Nouveau bouton WhatsApp pour mobile */
.whatsapp-float-mobile {
    position: fixed !important;
    right: 16px !important;
    bottom: 20px !important;
    width: 60px !important;
    height: 60px !important;
    background: linear-gradient(135deg, #25D366, #128C7E) !important;
    border-radius: 50% !important;
    display: none !important;
    align-items: center !important;
    justify-content: center !important;
    text-decoration: none !important;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.6) !important;
    z-index: 999 !important;
    transition: all 0.3s ease !important;
}

.whatsapp-float-mobile:hover {
    transform: scale(1.1) !important;
    box-shadow: 0 6px 25px rgba(37, 211, 102, 0.8) !important;
}

@keyframes pulse-whatsapp {
    0%, 100% {
        box-shadow: 0 4px 12px rgba(37, 211, 102, 0.5);
    }
    50% {
        box-shadow: 0 4px 20px rgba(37, 211, 102, 0.8), 0 0 0 10px rgba(37, 211, 102, 0.1);
    }
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    color: var(--color-white);
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 0.5rem;
    position: relative;
    width: 40px;
    height: 40px;
    z-index: 1002;
}

.mobile-menu-btn:hover {
    background: rgba(59, 130, 246, 0.1);
    border-radius: 0.5rem;
}

.mobile-menu-btn:active {
    transform: scale(0.95);
}

.mobile-menu-btn svg {
    transition: all 0.3s ease;
}

.mobile-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 300px;
    height: 100vh;
    background: linear-gradient(to bottom, rgba(15, 23, 42, 0.98), rgba(2, 6, 23, 0.98));
    backdrop-filter: blur(12px);
    border-left: 1px solid var(--color-slate-800);
    padding: 5rem 2rem 2rem;
    z-index: 1003;
    box-shadow: -10px 0 30px rgba(0, 0, 0, 0.5);
    overflow-y: auto;
    transition: right 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.mobile-menu.active {
    right: 0;
    animation: slideInRight 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

/* Overlay for mobile menu */
.mobile-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(0, 0, 0, 0.7);
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    backdrop-filter: blur(2px);
}

.mobile-menu-overlay.active {
    opacity: 1;
    visibility: visible;
    animation: fadeInOverlay 0.3s ease;
}

.mobile-menu-link {
    color: var(--color-slate-300);
    text-decoration: none;
    padding: 1rem;
    border-radius: 0.5rem;
    transition: all 0.3s ease;
    font-size: 1.1rem;
    font-weight: 500;
    display: block;
    border-bottom: 1px solid rgba(148, 163, 184, 0.1);
}

.mobile-menu-link:hover {
    background: var(--color-slate-800);
    color: var(--color-white);
    transform: translateX(-5px);
    border-left: 3px solid var(--color-blue-500);
    padding-left: 1.5rem;
}

.mobile-menu .btn {
    width: 100%;
    justify-content: center;
    margin-top: 1rem;
}

/* Close button for mobile menu */
.mobile-menu-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: var(--color-slate-800);
    border: none;
    color: var(--color-white);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 1002;
}

.mobile-menu-close:hover {
    background: var(--color-blue-600);
    transform: rotate(90deg);
}

/* Buttons */
.btn {
    padding: 0.5rem 1.5rem;
    border-radius: 0.5rem;
    border: none;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    text-decoration: none;
    position: relative;
    overflow: hidden;
}

.btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.btn:hover::before {
    width: 300px;
    height: 300px;
}

.btn:active {
    transform: scale(0.95);
}

.btn-primary {
    background: var(--color-blue-600);
    color: var(--color-white);
    box-shadow: 0 4px 14px 0 rgba(59, 130, 246, 0.4);
}

.btn-primary:hover {
    background: var(--color-blue-700);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px 0 rgba(59, 130, 246, 0.6);
}

.btn-secondary {
    background: var(--color-slate-800);
    color: var(--color-white);
}

.btn-secondary:hover {
    background: var(--color-slate-700);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px 0 rgba(30, 41, 59, 0.5);
}

.btn-outline {
    background: transparent;
    color: var(--color-white);
    border: 2px solid var(--color-blue-600);
}

.btn-outline:hover {
    background: var(--color-blue-600);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px 0 rgba(59, 130, 246, 0.4);
}

.btn-popular {
    background: var(--color-white);
    color: var(--color-blue-600);
}

.btn-popular:hover {
    background: var(--color-blue-50);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px 0 rgba(255, 255, 255, 0.3);
}

.btn-large {
    padding: 1rem 2rem;
    font-size: 1rem;
}

.btn-block {
    width: 100%;
}

.btn-icon {
    width: 20px;
    height: 20px;
}

/* Hero Section */
.hero {
    padding: 8rem 1rem 5rem;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    align-items: center;
}

.hero-content {
}

.hero-title {
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.1;
}

.text-blue {
    color: var(--color-blue-500);
    position: relative;
    display: inline-block;
}

.text-blue::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, var(--color-blue-500), var(--color-blue-700));
}

.hero-description {
    font-size: 1.25rem;
    color: var(--color-slate-300);
    margin-bottom: 2rem;
}

.hero-buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 2rem;
}

.hero-features {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.hero-feature {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--color-slate-300);
}

.check-icon {
    color: var(--color-green-500);
    flex-shrink: 0;
    animation: scaleIn 0.5s ease-out;
}

.hero-image {
    position: relative;
}

.hero-image-glow {
    position: absolute;
    inset: 0;
    background: var(--color-blue-500);
    opacity: 0.2;
    filter: blur(80px);
    border-radius: 50%;
    animation: glow 3s ease-in-out infinite;
}

.hero-img {
    position: relative;
    width: 100%;
    height: auto;
    border-radius: 1rem;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
    transition: transform 0.3s ease;
    animation: fadeSlideFromLeft 1.2s ease-out 0.5s both;
}

.hero-img:hover {
    transform: scale(1.02) translateY(-5px);
    box-shadow: 0 30px 60px -12px rgba(0, 0, 0, 0.7);
}

/* Features Section */
.features {
    padding: 5rem 1rem;
}

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

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.section-description {
    font-size: 1.25rem;
    color: var(--color-slate-400);
}

.features-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

.feature-card {
    background: rgba(30, 41, 59, 0.5);
    backdrop-filter: blur(8px);
    padding: 2rem;
    border-radius: 0.75rem;
    border: 1px solid var(--color-slate-700);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    cursor: pointer;
}

.feature-card:hover {
    border-color: var(--color-blue-500);
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 20px 40px rgba(59, 130, 246, 0.2);
    background: rgba(30, 41, 59, 0.8);
}

.feature-icon {
    background: rgba(59, 130, 246, 0.1);
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 0.5rem;
    margin-bottom: 1rem;
    color: var(--color-blue-500);
    transition: all 0.4s ease;
}

.feature-card:hover .feature-icon {
    background: rgba(59, 130, 246, 0.2);
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 0 20px rgba(59, 130, 246, 0.4);
}

.feature-title {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    transition: color 0.3s ease;
}

.feature-card:hover .feature-title {
    color: var(--color-blue-400);
}

.feature-description {
    color: var(--color-slate-400);
    transition: color 0.3s ease;
}

.feature-card:hover .feature-description {
    color: var(--color-slate-300);
}

/* Pricing Section */
.pricing {
    padding: 5rem 1rem;
}

.pricing-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

.pricing-card {
    background: rgba(30, 41, 59, 0.5);
    border: 1px solid var(--color-slate-700);
    border-radius: 1rem;
    padding: 2rem;
    position: relative;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.pricing-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
    border-color: var(--color-blue-500);
}

.pricing-card.popular {
    background: linear-gradient(to bottom, var(--color-blue-600), var(--color-blue-700));
    border: none;
    transform: scale(1.05);
    box-shadow: 0 25px 50px -12px rgba(59, 130, 246, 0.5);
    animation: glow 3s ease-in-out infinite;
}

.pricing-card.popular:hover {
    transform: scale(1.08) translateY(-10px);
    box-shadow: 0 30px 60px -12px rgba(59, 130, 246, 0.7);
}

.popular-badge {
    position: absolute;
    top: -1rem;
    left: 50%;
    transform: translateX(-50%);
    background: var(--color-yellow-500);
    color: var(--color-slate-900);
    padding: 0.25rem 1rem;
    border-radius: 1rem;
    display: flex;
    align-items: center;
    gap: 0.25rem;
    font-weight: 600;
    font-size: 0.875rem;
    animation: pulse 2s ease-in-out infinite;
}

.pricing-header {
    text-align: center;
    margin-bottom: 2rem;
}

.pricing-name {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.pricing-subtitle {
    color: var(--color-slate-400);
    margin-bottom: 1rem;
}

.pricing-card.popular .pricing-subtitle {
    color: rgba(255, 255, 255, 0.8);
}

.pricing-price {
    margin-top: 1rem;
}

.price-amount {
    font-size: 3rem;
    font-weight: 700;
}

.price-period {
    color: var(--color-slate-400);
}

.pricing-card.popular .price-period {
    color: rgba(255, 255, 255, 0.8);
}

.pricing-features {
    list-style: none;
    margin-bottom: 2rem;
}

.pricing-feature {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.pricing-card.popular .pricing-feature {
    color: var(--color-white);
}

.pricing-card:not(.popular) .pricing-feature {
    color: var(--color-slate-300);
}

.pricing-card.popular .check-icon {
    color: rgba(255, 255, 255, 0.8);
}

.pricing-card:not(.popular) .check-icon {
    color: var(--color-blue-500);
}

.pricing-note {
    text-align: center;
    margin-top: 3rem;
    color: var(--color-slate-400);
}

/* FAQ Section */
.faq {
    padding: 5rem 1rem;
}

.faq-container {
    max-width: 768px;
    margin: 0 auto;
}

.faq-item {
    background: rgba(30, 41, 59, 0.5);
    border: 1px solid var(--color-slate-700);
    border-radius: 0.75rem;
    margin-bottom: 1rem;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    border-color: var(--color-blue-500);
    box-shadow: 0 4px 12px rgba(59, 130, 246, 0.2);
}

.faq-question {
    width: 100%;
    padding: 1.5rem;
    background: none;
    border: none;
    color: var(--color-white);
    font-size: 1rem;
    font-weight: 600;
    text-align: left;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
}

.faq-question:hover {
    background: rgba(30, 41, 59, 0.8);
    padding-left: 2rem;
}

.faq-icon {
    color: var(--color-slate-400);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    flex-shrink: 0;
}

.faq-item.active .faq-icon {
    transform: rotate(180deg);
    color: var(--color-blue-500);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    opacity: 0;
}

.faq-item.active .faq-answer {
    max-height: 500px;
    opacity: 1;
    animation: fadeInUp 0.4s ease-out;
}

.faq-answer p {
    padding: 0 1.5rem 1.5rem;
    color: var(--color-slate-300);
}

/* Footer */
.footer {
    background: var(--color-slate-950);
    border-top: 1px solid var(--color-slate-800);
    padding: 3rem 1rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-column {
    min-width: 0;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
    flex-wrap: wrap;
}

.footer-description {
    color: var(--color-slate-400);
    line-height: 1.6;
}

.footer-social {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
    flex-wrap: wrap;
}

.social-link {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--color-slate-800);
    border-radius: 0.5rem;
    color: var(--color-slate-400);
    text-decoration: none;
    transition: all 0.3s;
}

.social-link:hover {
    background: var(--color-blue-600);
    color: white;
    transform: translateY(-2px);
}

.footer-title {
    font-weight: 600;
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 0.5rem;
}

.footer-links a {
    color: var(--color-slate-400);
    text-decoration: none;
    transition: color 0.3s;
    display: inline-block;
    padding: 0.25rem 0;
}

.footer-links a:hover {
    color: var(--color-white);
    transform: translateX(4px);
}

.footer-contact {
    list-style: none;
}

.footer-contact li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--color-slate-400);
    margin-bottom: 0.75rem;
}

.footer-contact svg {
    flex-shrink: 0;
}

.footer-bottom {
    border-top: 1px solid var(--color-slate-800);
    padding-top: 2rem;
    text-align: center;
    color: var(--color-slate-400);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

@media (min-width: 768px) {
    .footer-bottom {
        flex-direction: row;
        justify-content: space-between;
        text-align: left;
    }
}

/* Responsive Tables */
.table-responsive {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}

.table-responsive table {
    min-width: 600px;
}

@media (max-width: 767px) {
    .table-responsive table {
        font-size: 0.875rem;
    }
    
    .table-responsive th,
    .table-responsive td {
        padding: 0.5rem !important;
    }
}

/* Card Grids */
.card-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

@media (min-width: 640px) {
    .card-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .card-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* Form Responsiveness */
.form-group {
    margin-bottom: 1.5rem;
}

.form-input {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid var(--color-slate-700);
    border-radius: 0.5rem;
    background: rgba(30, 41, 59, 0.5);
    color: white;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-input:focus {
    outline: none;
    border-color: var(--color-blue-500);
    background: rgba(30, 41, 59, 0.8);
}

@media (max-width: 480px) {
    .form-input {
        font-size: 16px; /* Prevent zoom on iOS */
    }
}

/* Status Badges */
.status-badge {
    display: inline-flex;
    align-items: center;
    padding: 0.25rem 0.75rem;
    border-radius: 9999px;
    font-size: 0.875rem;
    font-weight: 600;
    white-space: nowrap;
}

.status-success {
    background: rgba(34, 197, 94, 0.1);
    color: #22c55e;
}

.status-warning {
    background: rgba(234, 179, 8, 0.1);
    color: #eab308;
}

.status-error {
    background: rgba(239, 68, 68, 0.1);
    color: #ef4444;
}

.status-info {
    background: rgba(59, 130, 246, 0.1);
    color: #3b82f6;
}

/* Responsive Design */

/* Mobile-specific improvements */
@media (max-width: 480px) {
    .navbar {
        height: 56px;
    }

    .nav-content {
        height: 56px;
        padding: 0 0.75rem;
    }

    .logo-text {
        font-size: 1rem;
    }

    .logo-icon {
        width: 24px;
        height: 24px;
    }

    .cart-dropdown {
        position: fixed;
        top: 56px;
        right: 0;
        left: 0;
        width: 100%;
        border-radius: 0;
        max-height: calc(100vh - 56px);
        overflow-y: auto;
    }

    #notificationModal {
        position: fixed;
        top: 56px;
        right: 0;
        left: 0;
        width: 100%;
        border-radius: 0;
        max-height: calc(100vh - 56px);
        overflow-y: auto;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 1rem;
    }

    .footer-payment {
        margin-top: 0;
    }
}

/* Mobile First - Extra Small Devices (Portrait Phones < 576px) */
@media (max-width: 575px) {
    .container {
        padding: 0 0.75rem;
    }

    .hero {
        padding: 5rem 0.75rem 2.5rem;
    }

    .hero-title {
        font-size: 1.8rem;
        line-height: 1.2;
        margin-bottom: 1rem;
    }

    .hero-description {
        font-size: 1rem;
        margin-bottom: 1.5rem;
    }

    .hero-buttons {
        flex-direction: column;
        gap: 0.75rem;
    }

    .btn-large {
        padding: 0.875rem 1.5rem;
        font-size: 0.95rem;
        width: 100%;
    }

    .hero-features {
        gap: 0.5rem;
    }

    .hero-feature {
        font-size: 0.9rem;
    }

    .section-title {
        font-size: 1.75rem;
        line-height: 1.2;
    }

    .section-description {
        font-size: 1rem;
    }

    .features,
    .pricing,
    .faq {
        padding: 3rem 0.75rem;
    }

    .section-header {
        margin-bottom: 2.5rem;
    }

    .feature-card {
        padding: 1.5rem;
    }

    .feature-icon {
        width: 48px;
        height: 48px;
    }

    .feature-title {
        font-size: 1.1rem;
    }

    .pricing-card {
        padding: 1.5rem;
    }

    .pricing-card.popular {
        transform: scale(1);
        margin: 1rem 0;
    }

    .price-amount {
        font-size: 2.5rem;
    }

    .cart-dropdown {
        width: calc(100vw - 2rem);
        right: 1rem;
        left: 1rem;
    }

    .mobile-menu {
        width: 85vw;
        max-width: 300px;
    }

    .footer {
        padding: 2.5rem 0.75rem;
    }

    .footer-grid {
        gap: 2.5rem;
    }
}

/* Small Devices (Landscape Phones, 576px and up) */
@media (min-width: 576px) and (max-width: 767px) {
    .hero-title {
        font-size: 2rem;
    }

    .hero-description {
        font-size: 1.1rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .btn-large {
        padding: 0.9rem 1.75rem;
    }
}

/* Medium Devices (Tablets, 768px and up) */
@media (min-width: 768px) {
    .container {
        padding: 0 1.5rem;
    }

    .hero {
        padding: 7rem 1rem 4rem;
    }

    .hero-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 3rem;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-description {
        font-size: 1.2rem;
    }

    .hero-buttons {
        flex-direction: row;
    }

    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .pricing-grid {
        grid-template-columns: repeat(2, 1fr);
        align-items: stretch;
    }

    .pricing-card.popular {
        transform: scale(1.05);
        grid-column: 1 / -1;
        max-width: 400px;
        margin: 0 auto;
    }

    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .section-title {
        font-size: 2.5rem;
    }

    .section-description {
        font-size: 1.25rem;
    }
}

/* Large Devices (Desktops, 1024px and up) */
@media (min-width: 1024px) {
    .container {
        padding: 0 2rem;
    }

    .hero {
        padding: 8rem 1rem 5rem;
    }

    .hero-title {
        font-size: 2.8rem;
    }

    .features-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .pricing-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .pricing-card.popular {
        grid-column: auto;
        max-width: none;
    }

    .footer-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

/* Extra Large Devices (Large Desktops, 1280px and up) */
@media (min-width: 1280px) {
    .hero-title {
        font-size: 3rem;
    }

    .section-title {
        font-size: 2.75rem;
    }
}

/* Mobile-specific Navigation */
@media (max-width: 767px) {
    .nav-menu {
        display: none;
    }

    .mobile-menu-btn {
        display: block;
    }
    
    /* Cacher le bouton WhatsApp de la navbar sur mobile */
    .whatsapp-nav-btn {
        display: none !important;
    }
    
    /* Afficher le bouton WhatsApp flottant sur mobile */
    .whatsapp-float-mobile {
        display: flex !important;
        animation: pulse-whatsapp 2s infinite;
    }
    
    .whatsapp-float-btn {
        display: none !important;
    }
    
    .whatsapp-btn-header {
        display: none !important;
    }
}

/* Tablet and Desktop Navigation */
@media (min-width: 768px) {
    .mobile-menu-btn {
        display: none;
    }

    .nav-menu {
        display: flex;
    }
    
    /* Cacher le bouton flottant sur desktop */
    .whatsapp-float-mobile {
        display: none !important;
    }
    
    .whatsapp-float-btn {
        display: none !important;
    }
}

/* Touch Device Optimizations */
@media (hover: none) and (pointer: coarse) {
    .btn {
        min-height: 44px;
        min-width: 44px;
    }

    .nav-link {
        padding: 0.75rem 0;
    }

    .cart-icon {
        width: 44px;
        height: 44px;
    }

    .faq-question {
        padding: 1.25rem;
    }
}

/* Print Styles */
@media print {
    .navbar,
    .cart-dropdown,
    .mobile-menu,
    .mobile-menu-btn,
    .footer-social,
    .hero-buttons,
    .btn {
        display: none;
    }

    body {
        background: white;
        color: black;
    }
}

/* Landscape Orientation for Mobile */
@media (max-width: 767px) and (orientation: landscape) {
    .hero {
        padding: 4rem 1rem 2rem;
    }

    .hero-title {
        font-size: 1.75rem;
    }

    .section-title {
        font-size: 1.5rem;
    }

    .mobile-menu {
        padding: 3rem 1.5rem 1.5rem;
    }
}

/* High Resolution Displays */
@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
    .hero-img {
        image-rendering: -webkit-optimize-contrast;
        image-rendering: crisp-edges;
    }
}

/* Extra Responsive Utilities */
@media (max-width: 360px) {
    /* Extra small devices (older phones) */
    .container {
        padding: 0 0.5rem;
    }
    
    .hero-title {
        font-size: 1.75rem;
    }
    
    .section-title {
        font-size: 1.5rem;
    }
    
    .btn {
        padding: 0.5rem 1rem;
        font-size: 0.9rem;
    }
    
    .feature-card,
    .pricing-card {
        padding: 1.25rem;
    }
    
    .nav-content {
        padding: 0 0.5rem;
    }
    
    .logo-text {
        font-size: 1rem;
    }
}

/* Tablet Landscape */
@media (min-width: 769px) and (max-width: 1024px) and (orientation: landscape) {
    .hero {
        padding: 6rem 1rem 3rem;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .features-grid,
    .pricing-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

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

/* Selection */
::selection {
    background: var(--color-blue-600);
    color: var(--color-white);
}

/* Touch Device Optimizations - Enhanced */
@media (hover: none) and (pointer: coarse) {
    .btn {
        min-height: 44px;
        min-width: 44px;
    }

    .nav-link {
        padding: 0.75rem 0;
    }

    .cart-icon {
        width: 44px;
        height: 44px;
    }

    .faq-question {
        padding: 1.25rem;
    }
    
    /* Prevent double-tap zoom on buttons */
    button, a, .btn, input[type="button"], input[type="submit"] {
        touch-action: manipulation;
    }
}

/* Improved Landscape Orientation for Mobile */
@media (max-width: 896px) and (orientation: landscape) {
    .hero {
        padding: 3rem 1rem 2rem;
    }

    .hero-title {
        font-size: 1.5rem;
    }
    
    .hero-description {
        font-size: 0.95rem;
    }

    .section-title {
        font-size: 1.375rem;
    }

    .mobile-menu {
        padding: 2rem 1.5rem 1rem;
    }
    
    .navbar {
        height: 56px;
    }
    
    .nav-content {
        height: 56px;
    }
}

/* Notification Icon Styles */
.notification-icon {
    position: relative;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    transition: all 0.3s ease;
}

.notification-icon:hover {
    transform: scale(1.1);
    background: rgba(59, 130, 246, 0.1);
    border-radius: 0.5rem;
}

/* Notification Badge */
#client-notification-badge,
#unread-messages-badge {
    position: absolute;
    top: 0;
    right: 0;
    background: #ef4444;
    color: white;
    border-radius: 50%;
    min-width: 18px;
    height: 18px;
    font-size: 10px;
    font-weight: 700;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 2px 5px;
    animation: pulse 2s ease-in-out infinite;
}

/* Notification Modal */
#notificationModal {
    display: none;
    position: fixed;
    top: 70px;
    right: 20px;
    z-index: 1001;
    background: rgba(15, 23, 42, 0.95);
    backdrop-filter: blur(12px);
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(59, 130, 246, 0.3);
    width: 350px;
    max-width: calc(100vw - 40px);
    animation: fadeInDown 0.3s ease;
}

/* Footer Payment Icons */
.footer-payment {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    margin-top: 1rem;
}

.payment-icons {
    display: flex;
    gap: 0.75rem;
}

.payment-icons svg {
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
    transition: transform 0.3s ease;
}

.payment-icons svg:hover {
    transform: translateY(-2px);
}

/* Responsive Utilities */
.show-mobile {
    display: none;
}

.hide-mobile {
    display: block;
}

/* Accessibility Improvements */
.skip-to-content {
    position: absolute;
    top: -40px;
    left: 0;
    background: var(--color-blue-600);
    color: white;
    padding: 8px 16px;
    text-decoration: none;
    border-radius: 0 0 4px 0;
    z-index: 100;
}

.skip-to-content:focus {
    top: 0;
}

/* Focus Visible Styles */
:focus-visible {
    outline: 2px solid var(--color-blue-500);
    outline-offset: 2px;
}

/* Reduced Motion */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
}

/* Avis Section */
.avis-section {
    padding: 80px 0;
    background: linear-gradient(to bottom, transparent, rgba(59, 130, 246, 0.02));
}

.alert {
    padding: 1rem 1.5rem;
    border-radius: 12px;
    margin-bottom: 2rem;
    font-size: 1rem;
}

.alert-success {
    background: rgba(16, 185, 129, 0.1);
    border: 1px solid rgba(16, 185, 129, 0.3);
    color: #10b981;
}

/* Avis en attente */
.pending-avis-container {
    background: rgba(234, 179, 8, 0.05);
    border: 1px solid rgba(234, 179, 8, 0.2);
    border-radius: 16px;
    padding: 2rem;
    margin-bottom: 3rem;
}

.pending-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 1.5rem;
}

.pending-avis-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 1.5rem;
}

/* Formulaire d'avis */
.avis-form-container {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 2rem;
    margin-bottom: 3rem;
}

.form-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 1.5rem;
}

.avis-form {
    max-width: 800px;
    margin: 0 auto;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-label {
    display: block;
    color: rgba(255, 255, 255, 0.9);
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
}

.rating-input {
    display: flex;
    gap: 0.5rem;
    flex-direction: row-reverse;
    justify-content: flex-end;
}

.rating-input input {
    display: none;
}

.rating-input label {
    font-size: 2.5rem;
    color: rgba(251, 191, 36, 0.2);
    cursor: pointer;
    transition: all 0.2s;
}

.rating-input label:hover,
.rating-input label:hover ~ label,
.rating-input input:checked ~ label {
    color: #fbbf24;
    transform: scale(1.1);
}

.form-textarea {
    width: 100%;
    min-height: 120px;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    color: white;
    font-size: 1rem;
    font-family: inherit;
    resize: vertical;
    transition: all 0.3s;
}

.form-textarea:focus {
    outline: none;
    border-color: var(--color-blue-500);
    background: rgba(255, 255, 255, 0.08);
}

.form-textarea::placeholder {
    color: rgba(255, 255, 255, 0.4);
}

.error-text {
    display: block;
    color: #ef4444;
    font-size: 0.875rem;
    margin-top: 0.5rem;
}

/* Login Prompt */
.login-prompt {
    text-align: center;
    padding: 3rem;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    margin-bottom: 3rem;
}

.login-prompt svg {
    color: rgba(255, 255, 255, 0.3);
    margin-bottom: 1rem;
}

.login-prompt p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 1.125rem;
}

.login-link {
    color: var(--color-blue-500);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s;
}

.login-link:hover {
    color: var(--color-blue-400);
    text-decoration: underline;
}

/* Liste des avis */
.avis-list-container {
    margin-top: 3rem;
}

.avis-list-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 2rem;
    text-align: center;
}

.avis-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 1.5rem;
}

.avis-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 1.5rem;
    transition: all 0.3s;
}

.avis-card:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(59, 130, 246, 0.3);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.avis-card.pending {
    border-color: rgba(234, 179, 8, 0.3);
    background: rgba(234, 179, 8, 0.03);
}

.avis-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1rem;
}

.avis-user {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.user-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--color-blue-500), var(--color-blue-700));
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    color: white;
    font-size: 1.25rem;
    flex-shrink: 0;
}

.user-info {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.user-name {
    font-weight: 600;
    color: #fff;
    font-size: 1rem;
}

.stars {
    display: flex;
    gap: 0.25rem;
}

.star {
    color: rgba(251, 191, 36, 0.2);
    font-size: 1rem;
}

.star.filled {
    color: #fbbf24;
}

.pending-badge {
    display: inline-block;
    padding: 0.35rem 0.75rem;
    background: rgba(234, 179, 8, 0.1);
    border: 1px solid rgba(234, 179, 8, 0.3);
    color: #eab308;
    border-radius: 8px;
    font-size: 0.75rem;
    font-weight: 600;
}

.avis-content {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    margin-bottom: 1rem;
}

.avis-date {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.5);
}

.no-avis {
    text-align: center;
    padding: 4rem 2rem;
    color: rgba(255, 255, 255, 0.5);
}

.no-avis svg {
    margin: 0 auto 1.5rem;
    opacity: 0.3;
}

.no-avis p {
    font-size: 1.125rem;
}

/* Responsive Avis Section */
@media (max-width: 768px) {
    .avis-section {
        padding: 60px 0;
    }

    .pending-avis-container,
    .avis-form-container {
        padding: 1.5rem;
    }

    .pending-title,
    .form-title,
    .avis-list-title {
        font-size: 1.25rem;
    }

    .avis-grid,
    .pending-avis-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .avis-header {
        flex-direction: column;
        gap: 0.75rem;
    }

    .rating-input label {
        font-size: 2rem;
    }

    .pending-badge {
        align-self: flex-start;
    }
}

/* Carrousel d'avis */
.avis-carousel-wrapper {
    position: relative;
    padding: 0 60px;
    margin-bottom: 2rem;
}

.avis-carousel {
    overflow: hidden;
    border-radius: 16px;
}

.avis-carousel-track {
    display: flex;
    transition: transform 0.5s ease-in-out;
    gap: 1.5rem;
}

.avis-carousel-track .carousel-item {
    min-width: calc(33.333% - 1rem);
    flex: 0 0 calc(33.333% - 1rem);
}

.carousel-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: white;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s;
    z-index: 10;
}

.carousel-nav:hover {
    background: rgba(59, 130, 246, 0.8);
    border-color: var(--color-blue-500);
    transform: translateY(-50%) scale(1.1);
}

.carousel-prev {
    left: 0;
}

.carousel-next {
    right: 0;
}

.carousel-indicators {
    display: flex;
    justify-content: center;
    gap: 0.75rem;
    margin-top: 2rem;
}

.indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    border: none;
    cursor: pointer;
    transition: all 0.3s;
}

.indicator:hover {
    background: rgba(255, 255, 255, 0.5);
    transform: scale(1.2);
}

.indicator.active {
    background: var(--color-blue-500);
    width: 32px;
    border-radius: 6px;
}

/* Responsive Carrousel */
@media (max-width: 1024px) {
    .avis-carousel-track .carousel-item {
        min-width: calc(50% - 0.75rem);
        flex: 0 0 calc(50% - 0.75rem);
    }
}

@media (max-width: 768px) {
    .avis-carousel-wrapper {
        padding: 0 50px;
    }

    .avis-carousel-track {
        gap: 1rem;
    }

    .avis-carousel-track .carousel-item {
        min-width: 100%;
        flex: 0 0 100%;
    }

    .carousel-nav {
        width: 40px;
        height: 40px;
    }

    .carousel-nav svg {
        width: 20px;
        height: 20px;
    }
}

@media (max-width: 480px) {
    .avis-carousel-wrapper {
        padding: 0 40px;
    }

    .carousel-nav {
        width: 36px;
        height: 36px;
    }
}
