/*
 * ARTUS Club v2 - Main Stylesheet
 * Theme: Dark (Black/Gray/Red/White)
 * Mobile-first design for iPhone 14 Pro Max
 */

/* ========================================
   CSS Variables & Reset
======================================== */
:root {
    /* Colors */
    --color-bg-primary: #0d0d0d;
    --color-bg-secondary: #1a1a1a;
    --color-bg-card: #252525;
    --color-accent: #E63946;
    --color-accent-hover: #ff4757;
    --color-accent-dark: #c0303c;
    --color-text-primary: #ffffff;
    --color-text-secondary: #b0b0b0;
    --color-text-muted: #707070;
    --color-border: #333333;

    /* Typography */
    --font-family: 'Outfit', -apple-system, BlinkMacSystemFont, sans-serif;
    --font-size-xs: 0.75rem;
    --font-size-sm: 0.875rem;
    --font-size-base: 1rem;
    --font-size-lg: 1.125rem;
    --font-size-xl: 1.5rem;
    --font-size-2xl: 2rem;
    --font-size-3xl: 2.5rem;

    /* Spacing */
    --spacing-xs: 0.25rem;
    --spacing-sm: 0.5rem;
    --spacing-md: 1rem;
    --spacing-lg: 1.5rem;
    --spacing-xl: 2rem;
    --spacing-2xl: 3rem;

    /* Border Radius */
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 16px;
    --radius-xl: 24px;
    --radius-full: 50%;

    /* Shadows */
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.3);
    --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.4);
    --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.5);
    --shadow-glow: 0 0 20px rgba(230, 57, 70, 0.3);

    /* Transitions */
    --transition-fast: 0.15s ease;
    --transition-base: 0.3s ease;
    --transition-slow: 0.5s ease;

    /* Header */
    --header-height: 70px;
}

/* Reset */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    font-size: 16px;
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
}

body {
    font-family: var(--font-family);
    background-color: var(--color-bg-primary);
    color: var(--color-text-primary);
    line-height: 1.6;
    min-height: 100vh;
    overflow-x: hidden;
}

a {
    color: inherit;
    text-decoration: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

button {
    font-family: inherit;
    cursor: pointer;
    border: none;
    background: none;
}

ul,
ol {
    list-style: none;
}

/* ========================================
   Typography
======================================== */
h1,
h2,
h3,
h4,
h5,
h6 {
    font-weight: 700;
    line-height: 1.2;
}

h1 {
    font-size: var(--font-size-3xl);
}

h2 {
    font-size: var(--font-size-2xl);
}

h3 {
    font-size: var(--font-size-xl);
}

.text-accent {
    color: var(--color-accent);
}

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

/* ========================================
   Layout Utilities
======================================== */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--spacing-lg);
}

.section {
    padding: var(--spacing-2xl) 0;
}

.section-title {
    text-align: center;
    margin-bottom: var(--spacing-xl);
}

.section-title h2 {
    margin-bottom: var(--spacing-sm);
}

.section-title p {
    color: var(--color-text-secondary);
}

/* ========================================
   Header (Fixed with Blur)
======================================== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: var(--header-height);
    background: rgba(13, 13, 13, 0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    z-index: 1000;
    border-bottom: 1px solid var(--color-border);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100%;
    padding: 0 var(--spacing-lg);
}

/* Logo */
.logo {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.logo img {
    height: 40px;
    width: auto;
}

.logo-text {
    font-size: var(--font-size-xs);
    color: var(--color-text-primary);
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-top: -8px;
    font-weight: 400;
}

/* Header Actions */
.header-actions {
    display: flex;
    align-items: center;
    gap: var(--spacing-md);
}

/* User Icon */
.user-btn {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius-full);
    background: var(--color-bg-card);
    color: var(--color-text-primary);
    transition: var(--transition-base);
}

.user-btn:hover {
    background: var(--color-accent);
}

.user-btn svg {
    width: 20px;
    height: 20px;
}

/* Burger Menu */
.burger-btn {
    width: 40px;
    height: 40px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 5px;
    border-radius: var(--radius-sm);
    transition: var(--transition-base);
}

.burger-btn span {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--color-text-primary);
    border-radius: 2px;
    transition: var(--transition-base);
}

.burger-btn:hover span {
    background: var(--color-accent);
}

/* Burger Active State */
.burger-btn.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.burger-btn.active span:nth-child(2) {
    opacity: 0;
}

.burger-btn.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* ========================================
   Mobile Menu (Full Screen Overlay)
======================================== */
.mobile-menu {
    position: fixed;
    top: var(--header-height);
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(13, 13, 13, 0.98);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition-base);
}

.mobile-menu.active {
    opacity: 1;
    visibility: visible;
}

.mobile-menu-inner {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100%;
    padding: var(--spacing-xl);
}

.mobile-menu-nav {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--spacing-lg);
}

.mobile-menu-nav a {
    font-size: var(--font-size-xl);
    font-weight: 600;
    color: var(--color-text-primary);
    transition: var(--transition-base);
    position: relative;
}

.mobile-menu-nav a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--color-accent);
    transition: var(--transition-base);
}

.mobile-menu-nav a:hover {
    color: var(--color-accent);
}

.mobile-menu-nav a:hover::after {
    width: 100%;
}

/* ========================================
   Hero Section
======================================== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: var(--header-height) var(--spacing-lg) var(--spacing-xl);
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: -1;
}

.hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-bg::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom,
            rgba(13, 13, 13, 0.4) 0%,
            rgba(13, 13, 13, 0.6) 50%,
            rgba(13, 13, 13, 0.95) 100%);
}

.hero-content {
    max-width: 600px;
    animation: fadeInUp 1s ease;
}

.hero-title {
    font-size: clamp(2rem, 8vw, 3.5rem);
    font-weight: 800;
    margin-bottom: var(--spacing-md);
    line-height: 1.1;
}

.hero-title span {
    color: var(--color-accent);
}

.hero-subtitle {
    font-size: var(--font-size-lg);
    color: var(--color-text-secondary);
    margin-bottom: var(--spacing-xl);
}

/* ========================================
   Buttons
======================================== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: var(--spacing-sm);
    padding: var(--spacing-md) var(--spacing-xl);
    border-radius: var(--radius-lg);
    font-size: var(--font-size-base);
    font-weight: 600;
    transition: var(--transition-base);
    cursor: pointer;
}

.btn-primary {
    background: linear-gradient(135deg, var(--color-accent) 0%, var(--color-accent-dark) 100%);
    color: var(--color-text-primary);
    box-shadow: var(--shadow-glow);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 30px rgba(230, 57, 70, 0.5);
}

.btn-secondary {
    background: var(--color-bg-card);
    color: var(--color-text-primary);
    border: 1px solid var(--color-border);
}

.btn-secondary:hover {
    background: var(--color-bg-secondary);
    border-color: var(--color-accent);
}

.btn-instagram {
    background: linear-gradient(45deg, #405DE6, #5851DB, #833AB4, #C13584, #E1306C, #FD1D1D, #F56040, #F77737, #FCAF45, #FFDC80);
    color: white;
    border: none;
    font-weight: 700;
    box-shadow: 0 4px 15px rgba(193, 53, 132, 0.4);
}

.btn-instagram:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(193, 53, 132, 0.6);
}

/* ========================================
   Cards
======================================== */
.card {
    background: var(--color-bg-card);
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid var(--color-border);
    transition: var(--transition-base);
}

.card:hover {
    transform: translateY(-4px);
    border-color: var(--color-accent);
    box-shadow: var(--shadow-glow);
}

.card-image {
    width: 100%;
    height: 180px;
    object-fit: cover;
}

.card-content {
    padding: var(--spacing-lg);
}

.card-title {
    font-size: var(--font-size-lg);
    margin-bottom: var(--spacing-sm);
}

.card-description {
    color: var(--color-text-secondary);
    font-size: var(--font-size-sm);
}

/* ========================================
   Workshops Carousel
======================================== */

/* Wrapper for carousel + navigation */
.workshops-carousel-wrapper {
    position: relative;
    width: 100%;
}

/* Horizontal scrollable track */
.workshops-carousel {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    gap: 20px;
    padding: 20px 40px;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
}

.workshops-carousel::-webkit-scrollbar {
    display: none;
}

/* Cards in carousel */
.workshops-carousel .card {
    flex: 0 0 500px;
    scroll-snap-align: center;
    min-width: 500px;
}

/* Navigation arrows */
.carousel-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 48px;
    height: 48px;
    background: var(--color-bg-card);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-full);
    color: var(--color-text-primary);
    font-size: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    transition: var(--transition-base);
    opacity: 0.9;
}

.carousel-nav:hover {
    background: var(--color-accent);
    border-color: var(--color-accent);
    opacity: 1;
    transform: translateY(-50%) scale(1.05);
}

.carousel-prev {
    left: -10px;
}

.carousel-next {
    right: -10px;
}

/* Hide arrows on mobile (swipe only) */
@media (max-width: 768px) {
    .carousel-nav {
        display: none;
    }

    /* Peek effect - show partial cards on sides */
    .workshops-carousel {
        padding: 20px 15%;
        gap: 16px;
    }

    .workshops-carousel .card {
        flex: 0 0 75%;
        min-width: 75%;
    }
}

/* Small mobile adjustments */
@media (max-width: 430px) {
    .workshops-carousel {
        padding: 16px 12%;
        gap: 12px;
    }

    .workshops-carousel .card {
        flex: 0 0 80%;
        min-width: 80%;
    }
}

/* Legacy support - keep for dynamic JS rendering */
.workshop-card {
    position: relative;
}

.workshop-icon {
    font-size: 2rem;
    margin-bottom: var(--spacing-sm);
}

/* ========================================
   Pricing Cards
======================================== */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: var(--spacing-lg);
}

.pricing-card {
    background: var(--color-bg-card);
    border-radius: var(--radius-lg);
    padding: var(--spacing-xl);
    text-align: center;
    border: 1px solid var(--color-border);
    transition: var(--transition-base);
}

.pricing-card:hover {
    border-color: var(--color-accent);
}

.pricing-card.featured {
    border-color: var(--color-accent);
    position: relative;
}

.pricing-card.featured::before {
    content: 'Populaire';
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--color-accent);
    color: white;
    padding: 4px 16px;
    border-radius: var(--radius-sm);
    font-size: var(--font-size-xs);
    font-weight: 600;
}

.pricing-name {
    font-size: var(--font-size-lg);
    margin-bottom: var(--spacing-sm);
}

.pricing-hours {
    color: var(--color-text-secondary);
    font-size: var(--font-size-sm);
    margin-bottom: var(--spacing-md);
}

.pricing-price {
    font-size: var(--font-size-2xl);
    font-weight: 800;
    color: var(--color-accent);
    margin-bottom: var(--spacing-lg);
}

.pricing-price span {
    font-size: var(--font-size-sm);
    color: var(--color-text-secondary);
    font-weight: 400;
}

.pricing-save-badge,
.pricing-info .savings {
    background: linear-gradient(135deg, #ff6b9d 0%, #ff8a80 50%, #ffa07a 100%);
    color: white;
    font-size: 13px;
    font-weight: 600;
    padding: 8px 20px;
    border-radius: 50px;
    display: inline-block;
    margin-bottom: var(--spacing-sm);
    margin-top: 4px;
    box-shadow: 0 4px 12px rgba(255, 107, 157, 0.3);
}

.pricing-save-badge::before {
    content: "✨ ";
    font-size: 14px;
}

.pricing-card.featured .pricing-save-badge {
    margin-top: 4px;
    background: linear-gradient(135deg, #e63946 0%, #ff6b9d 50%, #ffa07a 100%);
    box-shadow: 0 4px 16px rgba(230, 57, 70, 0.4);
}

/* ========================================
   Footer
======================================== */
.footer {
    background: var(--color-bg-secondary);
    border-top: 1px solid var(--color-border);
    padding: var(--spacing-2xl) 0 var(--spacing-lg);
}

.footer-content {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-xl);
}

.footer-brand .logo {
    margin-bottom: var(--spacing-md);
}

.footer-brand p {
    color: var(--color-text-secondary);
    font-size: var(--font-size-sm);
    max-width: 300px;
}

.footer-links h4 {
    color: var(--color-text-primary);
    margin-bottom: var(--spacing-md);
    font-size: var(--font-size-base);
}

.footer-links ul {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-sm);
}

.footer-links a {
    color: var(--color-text-secondary);
    font-size: var(--font-size-sm);
    transition: var(--transition-fast);
}

.footer-links a:hover {
    color: var(--color-accent);
}

.footer-contact p {
    color: var(--color-text-secondary);
    font-size: var(--font-size-sm);
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
    margin-bottom: var(--spacing-sm);
}

.footer-bottom {
    margin-top: var(--spacing-xl);
    padding-top: var(--spacing-lg);
    border-top: 1px solid var(--color-border);
    text-align: center;
    color: var(--color-text-muted);
    font-size: var(--font-size-xs);
}

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

/* ========================================
   Animations
======================================== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

.fade-in {
    animation: fadeIn 0.5s ease;
}

/* ========================================
   Responsive
======================================== */
@media (min-width: 768px) {
    :root {
        --header-height: 80px;
    }

    .logo img {
        height: 50px;
    }

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

/* iPhone 14 Pro Max specific */
@media (max-width: 430px) {
    .hero-title {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: var(--font-size-base);
    }

    .btn {
        padding: var(--spacing-md) var(--spacing-lg);
        font-size: var(--font-size-sm);
    }
}

/* ========================================
   Stage Package Styling
======================================== */
.pricing-card.stage,
.pricing-item.stage {
    border: 2px solid #f59e0b !important;
    /* Golden border */
    background: linear-gradient(to bottom, #252525, #2a2520) !important;
    /* Subtle tint */
    position: relative;
    box-shadow: 0 4px 20px rgba(245, 158, 11, 0.15);
}

.pricing-card.stage:hover,
.pricing-item.stage:hover {
    border-color: #fbbf24 !important;
    box-shadow: 0 8px 30px rgba(245, 158, 11, 0.25);
    background: linear-gradient(to bottom, #2a2a2a, #322a20) !important;
}

/* Optional: Golden badge for stage name */
.pricing-card.stage .pricing-name,
.pricing-item.stage h3 {
    color: #fbbf24;
}

/* ========================================
   High Contrast Pricing Buttons
======================================== */
.pricing-card .btn-secondary {
    background: #ffffff !important;
    color: #0d0d0d !important;
    border: none !important;
    font-weight: 700 !important;
}

.pricing-card .btn-secondary:hover {
    background: #e6e6e6 !important;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255, 255, 255, 0.2);
}

/* ========================================
   HOME PAGE REDESIGN (New Sections)
======================================== */

/* Hero Scroll Indicator */
.hero-scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    opacity: 0.7;
    animation: fadeScroll 2s infinite;
}

.mouse {
    width: 26px;
    height: 40px;
    border: 2px solid var(--color-text-primary);
    border-radius: 20px;
    position: relative;
}

.wheel {
    position: absolute;
    top: 6px;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 4px;
    background: var(--color-text-primary);
    border-radius: 50%;
    animation: scrollWheel 1.5s infinite;
}

.arrow {
    width: 10px;
    height: 10px;
    border-right: 2px solid var(--color-text-primary);
    border-bottom: 2px solid var(--color-text-primary);
    transform: rotate(45deg);
}

@keyframes scrollWheel {
    0% {
        top: 6px;
        opacity: 1;
    }

    100% {
        top: 20px;
        opacity: 0;
    }
}

@keyframes fadeScroll {

    0%,
    100% {
        opacity: 0.5;
    }

    50% {
        opacity: 1;
    }
}

/* Values Section (Redesign V2) */
.values-section {
    padding: var(--spacing-2xl) 0;
    /* Removed overflow:hidden to prevent vertical clipping of shadows */
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--spacing-lg);

    /* Mobile Layout Default (Desktop override below) */
}

.value-item {
    padding: var(--spacing-lg);
    background: var(--color-bg-card);
    border-radius: var(--radius-xl);
    border: 2px solid transparent;
    /* Prepared for color */
    transition: var(--transition-base);
    text-align: center;
    position: relative;

    /* Removed overflow:hidden to allow icon/shadows to pop if needed, though border-radius clips content usually.
       If inner content was cut, this helps. */
}

.value-item:hover {
    transform: translateY(-5px);
}

.value-icon {
    font-size: 2.5rem;
    margin-bottom: var(--spacing-md);
    background: rgba(255, 255, 255, 0.05);
    width: 60px;
    height: 60px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.value-item h3 {
    margin-bottom: var(--spacing-sm);
    color: var(--color-text-primary);
    font-size: 1.1rem;
}

.value-item p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    line-height: 1.4;
}

/* Color Variants */
.value-purple {
    background: linear-gradient(145deg, #2e1065, #1e1e1e);
    border-color: #8b5cf6;
    box-shadow: 0 4px 20px rgba(139, 92, 246, 0.15);
}

.value-purple:hover {
    box-shadow: 0 8px 30px rgba(139, 92, 246, 0.3);
}

.value-red {
    background: linear-gradient(145deg, #7f1d1d, #1e1e1e);
    border-color: #ef4444;
    box-shadow: 0 4px 20px rgba(239, 68, 68, 0.15);
}

.value-red:hover {
    box-shadow: 0 8px 30px rgba(239, 68, 68, 0.3);
}

.value-yellow {
    background: linear-gradient(145deg, #713f12, #1e1e1e);
    border-color: #eab308;
    box-shadow: 0 4px 20px rgba(234, 179, 8, 0.15);
}

.value-yellow:hover {
    box-shadow: 0 8px 30px rgba(234, 179, 8, 0.3);
}


/* Mobile Swipe Carousel Logic */
@media (max-width: 768px) {
    .values-grid {
        display: flex;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        gap: 15px;

        /* Increased bottom padding to avoid clipping shadows */
        padding-bottom: 30px;

        margin: 0 -20px;
        /* Bleed to edges */
        padding-left: 20px;
        /* Inner padding */
        padding-right: 20px;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
        /* Hide scrollbar Firefox */
    }

    .values-grid::-webkit-scrollbar {
        display: none;
        /* Hide scrollbar Chrome/Safari */
    }

    .value-item {
        scroll-snap-align: center;
        min-width: 260px;
        /* Fixed width for carousel cards */
        flex-shrink: 0;
    }
}

/* Immersive Birthday Section */
.birthday-immersive {
    position: relative;
    padding: 80px 0;
    margin: var(--spacing-2xl) 0;
    overflow: hidden;
    color: white;
    text-align: center;
}

.birthday-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.birthday-gradient {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #4c1d95 0%, #7c3aed 50%, #db2777 100%);
    opacity: 0.9;
}

.birthday-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
    margin: 0 auto;
}

.badge-accent {
    background: #fbbf24;
    color: #000;
    font-weight: 700;
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 0.9rem;
    text-transform: uppercase;
    margin-bottom: 20px;
    display: inline-block;
    box-shadow: 0 4px 12px rgba(251, 191, 36, 0.4);
}

.birthday-content h2 {
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 800;
    margin-bottom: 20px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.birthday-content p {
    font-size: 1.2rem;
    opacity: 0.9;
    margin-bottom: 40px;
    line-height: 1.6;
}

.birthday-features {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

.b-feature {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    padding: 10px 20px;
    border-radius: 12px;
    font-weight: 600;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

/* Testimonials Section */
.testimonials-section {
    padding: var(--spacing-2xl) 0;
    background: var(--color-bg-primary);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--spacing-xl);
}

.testimonial-card {
    background: var(--color-bg-card);
    /* Fallback */
    background: linear-gradient(145deg, #1e1e1e, #252525);
    padding: 30px;
    border-radius: var(--radius-lg);
    position: relative;
    border: 1px solid var(--color-border);
}

.testimonial-card::before {
    content: '"';
    position: absolute;
    top: 10px;
    left: 20px;
    font-size: 4rem;
    color: var(--color-accent);
    opacity: 0.2;
    font-family: serif;
}

.stars {
    margin-bottom: 15px;
    font-size: 1.2rem;
}

.quote {
    font-style: italic;
    color: var(--color-text-primary);
    margin-bottom: 20px;
    line-height: 1.6;
}

.author {
    font-weight: 700;
    color: var(--color-text-secondary);
    text-align: right;
}

/* Fade In Animation Utility */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

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

    /* Workshops Section (Redesign) */
    .workshops-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: var(--spacing-xl);
    }

    /* Card App Style */
    .w-card {
        background: var(--color-bg-card);
        border-radius: 20px;
        /* More rounded */
        overflow: hidden;
        position: relative;
        border: 1px solid var(--color-border);
        transition: var(--transition-base);
        box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    }

    .w-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
        border-color: var(--color-accent);
    }

    .w-image {
        width: 100%;
        height: 200px;
        position: relative;
        overflow: hidden;
    }

    .w-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform 0.6s ease;
    }

    .w-card:hover .w-image img {
        transform: scale(1.05);
        /* Slight zoom on hover */
    }

    .w-badge {
        position: absolute;
        top: 15px;
        right: 15px;
        background: white;
        color: black;
        padding: 6px 12px;
        border-radius: 50px;
        font-size: 0.8rem;
        font-weight: 700;
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
    }

    /* Badge Colors */
    .badge-yellow {
        background: #fbbf24;
        color: #000;
    }

    .badge-blue {
        background: #3b82f6;
        color: #fff;
    }

    .badge-green {
        background: #22c55e;
        color: #fff;
    }

    .badge-red {
        background: #ef4444;
        color: #fff;
    }

    .w-content {
        padding: 20px;
        text-align: left;
    }

    .w-content h3 {
        margin-bottom: 8px;
        font-size: 1.25rem;
        font-weight: 700;
    }

    .w-desc {
        font-size: 0.95rem;
        color: var(--color-text-secondary);
        margin-bottom: 20px;
        line-height: 1.5;
    }

    .w-footer {
        display: flex;
        justify-content: space-between;
        align-items: center;
        margin-top: auto;
    }

    .w-duration {
        font-weight: 600;
        font-size: 0.9rem;
        opacity: 0.8;
    }

    .btn-icon {
        width: 40px;
        height: 40px;
        background: var(--color-text-primary);
        color: var(--color-bg-primary);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        font-weight: bold;
        text-decoration: none;
        transition: background 0.3s ease;
    }

    .btn-icon:hover {
        background: var(--color-accent);
    }

    /* Mobile Carousel (Reuse Values Grid logic but adapted) */
    @media (max-width: 768px) {
        .workshops-grid {
            display: flex;
            overflow-x: auto;
            scroll-snap-type: x mandatory;
            gap: 20px;
            padding-bottom: 30px;
            margin: 0 -20px;
            padding-left: 20px;
            padding-right: 20px;
            -webkit-overflow-scrolling: touch;
            scrollbar-width: none;
        }

        .workshops-grid::-webkit-scrollbar {
            display: none;
        }

        .w-card {
            scroll-snap-align: center;
            min-width: 280px;
            flex-shrink: 0;
        }
    }
}