* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html, body {
    margin: 0;
    padding: 0;
    width: 100%;
    overflow-x: hidden;
}

:root {
    --primary-color: #6366f1;
    --primary-dark: #4f46e5;
    --primary-light: #818cf8;
    --secondary-color: #ec4899;
    --secondary-dark: #db2777;
    --secondary-light: #f472b6;
    --accent-color: #FFFFFF;
    --text-dark: #1f2937;
    --text-light: #6b7280;
    --text-lighter: #9ca3af;
    --background-light: #f9fafb;
    --background-lighter: #ffffff;
    --white: #FFFFFF;
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-md: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    --shadow-lg: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    --shadow-xl: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    --radius: 0.75rem;
    --radius-lg: 1rem;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

html {
    background-color: #0f0f1e;
    height: 100%;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: #0f0f1e;
    font-size: 16px;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    min-height: 100%;
    margin: 0;
    padding: 0;
}

main {
    background-color: var(--background-light);
}

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

/* Modern Navigation */
.navbar {
    background-color: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: var(--shadow-sm);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    transition: var(--transition);
}

.navbar.scrolled {
    background-color: rgba(255, 255, 255, 0.95);
    box-shadow: var(--shadow-md);
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 24px;
}

.logo h1,
.logo-text {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-size: 1.875rem;
    font-weight: 800;
    letter-spacing: -0.025em;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2.5rem;
    align-items: center;
}

.nav-menu a {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 500;
    font-size: 0.875rem;
    transition: var(--transition);
    position: relative;
    padding: 0.5rem 0;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    transition: width 0.3s ease;
}

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

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

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    padding: 8px;
}

.hamburger span {
    width: 24px;
    height: 2px;
    background-color: var(--text-dark);
    margin: 3px 0;
    transition: var(--transition);
    border-radius: 2px;
}

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

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

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
}

/* Hero Section Modern */
.hero {
    background-color: var(--background-light);
    padding: 120px 0 80px;
    position: relative;
    overflow: hidden;
}

.hero-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    min-height: 600px;
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.1), rgba(236, 72, 153, 0.1));
    padding: 0.5rem 1rem;
    border-radius: 50px;
    margin-bottom: 1.5rem;
    font-size: 0.875rem;
    color: var(--primary-color);
    font-weight: 600;
    animation: fadeInUp 0.8s ease-out;
}

.hero-badge i {
    color: var(--secondary-color);
}

.hero-content h1 {
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
    letter-spacing: -0.025em;
    line-height: 1.2;
    animation: fadeInUp 0.8s ease-out 0.2s both;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--text-light);
    margin-bottom: 2rem;
    line-height: 1.8;
    animation: fadeInUp 0.8s ease-out 0.4s both;
}

.hero-features {
    display: flex;
    gap: 2rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
    animation: fadeInUp 0.8s ease-out 0.6s both;
}

.hero-feature {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    color: var(--text-dark);
}

.hero-feature i {
    color: var(--primary-color);
    font-size: 1.25rem;
}

.hero-cta {
    display: flex;
    gap: 1rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
    animation: fadeInUp 0.8s ease-out 0.8s both;
}

.btn-large {
    padding: 14px 32px;
    font-size: 1rem;
}

.hero-trust {
    display: flex;
    gap: 3rem;
    animation: fadeInUp 0.8s ease-out 1s both;
}

.trust-item {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.trust-item strong {
    font-size: 2rem;
    color: var(--primary-color);
    font-weight: 800;
}

.trust-item span {
    font-size: 0.875rem;
    color: var(--text-light);
}

.hero-image {
    position: relative;
    animation: fadeIn 1s ease-out 0.5s both;
}

.hero-image-wrapper {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
}

.hero-image img {
    width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-xl);
}

.hero-image-decoration {
    position: absolute;
    top: -30px;
    right: -30px;
    width: 120px;
    height: 120px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 50%;
    opacity: 0.3;
    filter: blur(40px);
}

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

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

.btn-primary {
    background: linear-gradient(135deg, var(--secondary-color), var(--secondary-dark));
    color: var(--white);
    padding: 14px 32px;
    border: none;
    border-radius: var(--radius);
    text-decoration: none;
    display: inline-block;
    font-weight: 600;
    font-size: 1rem;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    animation: fadeInUp 0.8s ease-out 0.6s both;
}

.btn-primary::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;
}

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

.btn-primary:hover::before {
    left: 100%;
}

.btn-secondary {
    background-color: var(--white);
    color: var(--primary-color);
    padding: 12px 28px;
    border: 2px solid var(--primary-color);
    border-radius: var(--radius);
    text-decoration: none;
    display: inline-block;
    font-weight: 600;
    font-size: 0.875rem;
    transition: var(--transition);
    margin-top: 2rem;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn-secondary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    transition: left 0.3s;
    z-index: -1;
}

.btn-secondary:hover {
    color: var(--white);
    border-color: var(--primary-color);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn-secondary:hover::before {
    left: 0;
}

/* About Section Modern */
.about {
    padding: 120px 0;
    background: linear-gradient(135deg, var(--background-lighter) 0%, #f8fafc 100%);
    position: relative;
    overflow: hidden;
}

.about::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 20%, rgba(99, 102, 241, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(236, 72, 153, 0.08) 0%, transparent 50%);
    pointer-events: none;
}

.about .container {
    position: relative;
    z-index: 1;
}

.about h2 {
    text-align: center;
    font-size: 3rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 4rem;
    letter-spacing: -0.025em;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.about-text {
    position: relative;
}

.about-text p {
    margin-bottom: 2rem;
    color: var(--text-dark);
    font-size: 1.125rem;
    line-height: 1.8;
    font-weight: 400;
}

.about-image {
    position: relative;
}

.about-image img {
    width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-xl);
    transition: none;
    transform: none;
}

.about-image:hover img {
    transform: none !important;
    transition: none !important;
}

.instagram-follow {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    padding: 2.5rem;
    border-radius: var(--radius-lg);
    text-align: center;
    margin-top: 3rem;
    color: var(--white);
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-xl);
}

.instagram-follow::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
}

.instagram-follow * {
    position: relative;
    z-index: 1;
}

.instagram-follow p {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: var(--white);
}

.instagram-follow .btn-secondary {
    background: var(--white);
    color: var(--primary-color);
    border: 2px solid var(--white);
    font-weight: 600;
    padding: 1rem 2rem;
    transition: var(--transition);
}

.instagram-follow .btn-secondary:hover {
    background: transparent;
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

/* Services Section Modern */
.services {
    padding: 100px 0;
    background: linear-gradient(135deg, #ffffff 0%, #f9fafb 100%);
    position: relative;
    overflow: hidden;
}

.services::before {
    content: '';
    position: absolute;
    top: -30%;
    left: -10%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(236, 72, 153, 0.05) 0%, transparent 70%);
    border-radius: 50%;
}

.services h2 {
    text-align: center;
    font-size: 3rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1rem;
    letter-spacing: -0.025em;
}

.services-intro {
    text-align: center;
    color: var(--text-light);
    font-size: 1.25rem;
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Tabs System - Mobile First */
.services-tabs {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.tab-button {
    background: var(--white);
    border: 2px solid rgba(99, 102, 241, 0.1);
    padding: 1.25rem 1rem;
    border-radius: var(--radius-lg);
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--text-light);
    box-shadow: var(--shadow);
    position: relative;
    overflow: hidden;
}

.tab-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.tab-button i {
    font-size: 1.75rem;
    transition: var(--transition);
}

.tab-button:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-light);
}

.tab-button.active {
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.05), rgba(236, 72, 153, 0.05));
    color: var(--primary-color);
    border-color: var(--primary-color);
}

.tab-button.active::before {
    transform: scaleX(1);
}

.tab-button.active i {
    transform: scale(1.1);
    color: var(--primary-color);
}

/* Tab Content */
.tab-content {
    animation: fadeIn 0.5s ease;
}

.tab-pane {
    display: none;
}

.tab-pane.active {
    display: block;
    animation: slideIn 0.5s ease;
}

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

/* Service Detail Card */
.service-detail-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    overflow: hidden;
    max-width: 900px;
    margin: 0 auto;
}

.service-header {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    padding: 2.5rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: var(--white);
    flex-wrap: wrap;
    gap: 1rem;
}

.service-header h3 {
    font-size: 1.875rem;
    margin: 0;
    font-weight: 700;
}

.service-duration {
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    padding: 0.75rem 1.25rem;
    border-radius: 2rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 500;
}

.service-content {
    padding: 3rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
}

.service-features h4,
.service-modes h4,
.follow-up-packages h4 {
    color: var(--text-dark);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.service-features ul {
    list-style: none;
    padding: 0;
}

.service-features li {
    padding: 0.75rem 0;
    color: var(--text-light);
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.service-features li i {
    color: var(--secondary-color);
    font-size: 0.875rem;
}

.mode-cards {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.25rem;
}

.mode-card {
    background: linear-gradient(135deg, #f9fafb, #f3f4f6);
    border: 2px solid transparent;
    padding: 2rem 1.5rem;
    border-radius: var(--radius-lg);
    text-align: center;
    transition: var(--transition);
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.mode-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(135deg, var(--primary-light), var(--secondary-light));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.mode-card:hover {
    border-color: var(--primary-color);
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.mode-card:hover::before {
    opacity: 0.1;
}

.mode-card i {
    font-size: 2.5rem;
    margin-bottom: 0.75rem;
    color: var(--primary-color);
    transition: var(--transition);
}

.mode-card:hover i {
    transform: scale(1.1);
}

.mode-card p {
    font-weight: 600;
    color: var(--text-dark);
    margin: 0;
}

.service-cta {
    padding: 2rem;
    background: var(--background-light);
    text-align: center;
}

/* Package Grid */
.package-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
}

.package-card {
    background: var(--white);
    border: 2px solid var(--primary-light);
    padding: 1.5rem;
    border-radius: var(--radius);
    text-align: center;
    transition: var(--transition);
}

.package-card:hover {
    border-color: var(--primary-color);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.package-card h5 {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.package-card {
    position: relative;
}

.package-card .recommended {
    position: absolute;
    top: -10px;
    right: -10px;
    background: var(--secondary-color);
    color: var(--white);
    padding: 0.25rem 0.75rem;
    border-radius: var(--radius-sm);
    font-size: 0.75rem;
    font-weight: 600;
    box-shadow: var(--shadow-sm);
}

/* Specialties Section */
.specialites {
    padding: 4rem 0 8rem 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.specialites h2 {
    text-align: center;
    color: var(--text-dark);
    margin-bottom: 1rem;
    font-size: 2.5rem;
}

.specialites-intro {
    text-align: center;
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto 3rem;
    font-size: 1.1rem;
}

/* Specialties Grid */
.specialties-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-bottom: 6rem;
}

.specialty-card {
    background: var(--white);
    padding: 2rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.specialty-card::after {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, var(--primary-light) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.specialty-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl);
}

.specialty-card:hover::after {
    opacity: 0.1;
}

.specialty-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-light), var(--secondary-light));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.specialty-icon i {
    font-size: 2rem;
    color: var(--white);
}

.specialty-card h3 {
    color: var(--text-dark);
    margin-bottom: 0.75rem;
    font-size: 1.5rem;
}

.specialty-card p {
    color: var(--text-light);
    margin-bottom: 1rem;
}

.specialty-card ul {
    list-style: none;
    padding: 0;
}

.specialty-card li {
    color: var(--text-light);
    padding: 0.25rem 0;
    font-size: 0.9rem;
}

.specialty-card li::before {
    content: '•';
    color: var(--secondary-color);
    margin-right: 0.5rem;
}

/* Specialties Header Title */
.specialties-header {
    text-align: center;
    margin: 2rem 0;
    padding-bottom: 2rem;
    border-bottom: 2px solid rgba(45, 90, 61, 0.1);
}

.specialties-header h3 {
    color: var(--text-dark);
    font-size: 3rem;
    font-weight: 800;
    margin: 0;
    letter-spacing: -0.025em;
    position: relative;
    display: inline-block;
}

.specialties-header h3::after {
    content: '';
    position: absolute;
    bottom: -0.5rem;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    border-radius: 2px;
}

/* Workshops */
.workshops-container {
    display: grid;
    gap: 2rem;
}

.workshop-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
    display: grid;
    grid-template-columns: 200px 1fr;
    overflow: hidden;
    transition: var(--transition);
}

.workshop-card:hover {
    transform: translateX(5px);
    box-shadow: var(--shadow-xl);
}

.workshop-image {
    background: linear-gradient(135deg, var(--primary-light), var(--secondary-light));
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
}

.workshop-image i {
    font-size: 4rem;
    color: var(--white);
}

.workshop-content {
    padding: 2rem;
}

.workshop-content h4 {
    color: var(--text-dark);
    margin-bottom: 0.75rem;
}

.workshop-content p {
    color: var(--text-light);
    margin-bottom: 1.5rem;
}

.workshop-details {
    display: flex;
    gap: 1.5rem;
}

.workshop-details span {
    color: var(--text-light);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
}

.workshop-card.coming-soon {
    opacity: 0.7;
}

.badge {
    background: var(--secondary-color);
    color: var(--white);
    padding: 0.25rem 0.75rem;
    border-radius: var(--radius);
    font-size: 0.875rem;
}

/* Specialisations Section */
.specialisations {
    padding: 100px 0;
    background-color: var(--background-light);
}

.specialisations h2 {
    text-align: center;
    font-size: 3rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1rem;
    letter-spacing: -0.025em;
}

.specialisations-intro {
    text-align: center;
    color: var(--text-light);
    font-size: 1.25rem;
    margin-bottom: 4rem;
}

.expertise-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.expertise-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 2rem;
    box-shadow: var(--shadow);
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.expertise-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    transform: translateX(-100%);
    transition: transform 0.3s ease;
}

.expertise-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl);
}

.expertise-card:hover::before {
    transform: translateX(0);
}

.expertise-icon {
    flex-shrink: 0;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-light), var(--secondary-light));
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.expertise-card:hover .expertise-icon {
    transform: rotate(5deg) scale(1.1);
}

.expertise-icon i {
    font-size: 1.75rem;
    color: var(--white);
}

.expertise-content h3 {
    color: var(--text-dark);
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
    font-weight: 700;
}

.expertise-content p {
    color: var(--text-light);
    line-height: 1.6;
}

/* Parcours Timeline Section */
.parcours {
    padding: 100px 0;
    background-color: var(--background-lighter);
    position: relative;
    overflow: hidden;
}

.parcours h2 {
    text-align: center;
    font-size: 3rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1rem;
    letter-spacing: -0.025em;
}

.parcours-intro {
    text-align: center;
    color: var(--text-light);
    font-size: 1.25rem;
    margin-bottom: 4rem;
}

.timeline-container {
    position: relative;
    max-width: 1000px;
    margin: 0 auto;
    padding: 2rem 0;
}

.timeline-container::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(to bottom, var(--primary-light), var(--secondary-light));
    transform: translateX(-50%);
    opacity: 0.3;
}

.timeline-item {
    position: relative;
    margin-bottom: 4rem;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.timeline-item.visible {
    opacity: 1;
    transform: translateY(0);
}

.timeline-item:nth-child(odd) {
    padding-right: 50%;
}

.timeline-item:nth-child(even) {
    padding-left: 50%;
}

.timeline-marker {
    position: absolute;
    left: 50%;
    top: 0;
    transform: translateX(-50%);
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 0 4px var(--background-lighter), 0 0 0 8px rgba(99, 102, 241, 0.2);
    z-index: 2;
    transition: all 0.3s ease;
}

.timeline-marker:hover {
    transform: translateX(-50%) scale(1.1);
    box-shadow: 0 0 0 4px var(--background-lighter), 0 0 0 12px rgba(99, 102, 241, 0.3);
}

.step-number {
    color: var(--white);
    font-size: 1.5rem;
    font-weight: 700;
}

.timeline-content {
    background: var(--white);
    padding: 2rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    position: relative;
    transition: all 0.3s ease;
}

.timeline-item:nth-child(odd) .timeline-content {
    margin-right: 80px;
}

.timeline-item:nth-child(even) .timeline-content {
    margin-left: 80px;
}

.timeline-content::before {
    content: '';
    position: absolute;
    width: 20px;
    height: 20px;
    background: var(--white);
    transform: rotate(45deg);
    top: 20px;
    box-shadow: var(--shadow-sm);
}

.timeline-item:nth-child(odd) .timeline-content::before {
    right: -10px;
}

.timeline-item:nth-child(even) .timeline-content::before {
    left: -10px;
}

.timeline-content:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl);
}

.timeline-content h3 {
    color: var(--primary-color);
    font-size: 1.5rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.timeline-image {
    width: 100%;
    max-width: 200px;
    margin: 0 auto 1.5rem;
    display: block;
}

.timeline-image svg {
    width: 100%;
    height: auto;
    animation: float-gentle 3s ease-in-out infinite;
}

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

.timeline-details {
    color: var(--text-light);
}

.timeline-details p {
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
    line-height: 1.6;
}

.timeline-details ul {
    list-style: none;
    padding: 0;
    margin-bottom: 1.5rem;
}

.timeline-details li {
    padding: 0.5rem 0;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    transition: all 0.3s ease;
}

.timeline-details li:hover {
    transform: translateX(5px);
    color: var(--text-dark);
}

.timeline-details li i {
    color: var(--secondary-color);
    font-size: 1rem;
    min-width: 20px;
}

.timeline-duration {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--background-light);
    padding: 0.5rem 1rem;
    border-radius: var(--radius);
    font-size: 0.875rem;
    color: var(--primary-color);
    font-weight: 600;
}

.parcours-cta {
    text-align: center;
    margin-top: 4rem;
    padding: 3rem;
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.05), rgba(236, 72, 153, 0.05));
    border-radius: var(--radius-lg);
}

.parcours-cta p {
    font-size: 1.5rem;
    color: var(--text-dark);
    margin-bottom: 2rem;
    font-weight: 600;
}

/* Testimonials Section */
.testimonials {
    padding: 100px 0;
    background-color: var(--background-light);
}

.testimonials h2 {
    text-align: center;
    font-size: 3rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1rem;
    letter-spacing: -0.025em;
}

.testimonials-intro {
    text-align: center;
    color: var(--text-light);
    font-size: 1.25rem;
    margin-bottom: 4rem;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
}

.testimonial-card {
    background: var(--white);
    padding: 2rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
    position: relative;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl);
}

.testimonial-card.featured {
    grid-column: span 2;
    background: linear-gradient(135deg, #f9fafb, #fef3c7);
    border: 2px solid rgba(251, 191, 36, 0.2);
}

.featured-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: var(--white);
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

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

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

.testimonial-stars i {
    color: #fbbf24;
    font-size: 1rem;
}

.testimonial-date {
    color: var(--text-lighter);
    font-size: 0.875rem;
}

.testimonial-content {
    margin-bottom: 1.5rem;
}

.testimonial-content p {
    color: var(--text-dark);
    line-height: 1.8;
    font-size: 1rem;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

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

.author-info strong {
    display: block;
    color: var(--text-dark);
    font-weight: 600;
}

.author-info span {
    color: var(--text-light);
    font-size: 0.875rem;
}

.testimonials-cta {
    text-align: center;
    padding: 3rem;
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.05), rgba(236, 72, 153, 0.05));
    border-radius: var(--radius-lg);
}

.testimonials-cta p {
    font-size: 1.5rem;
    color: var(--text-dark);
    margin-bottom: 2rem;
    font-weight: 600;
}

/* FAQ Section */
.faq {
    padding: 100px 0;
    background-color: var(--background-lighter);
}

.faq h2 {
    text-align: center;
    font-size: 3rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1rem;
    letter-spacing: -0.025em;
}

.faq-intro {
    text-align: center;
    color: var(--text-light);
    font-size: 1.25rem;
    margin-bottom: 4rem;
}

.faq-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    max-width: 1000px;
    margin: 0 auto;
}

.faq-column {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.faq-item {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
}

.faq-item:hover {
    box-shadow: var(--shadow-md);
}

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

.faq-question:hover {
    color: var(--primary-color);
}

.faq-question.active {
    color: var(--primary-color);
    background: var(--background-light);
}

.faq-question i {
    transition: transform 0.3s ease;
    color: var(--primary-color);
}

.faq-question.active i {
    transform: rotate(180deg);
}

.faq-answer {
    display: none;
    padding: 0 1.5rem 1.5rem;
    animation: slideDown 0.3s ease;
}

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

.faq-answer p {
    color: var(--text-light);
    line-height: 1.8;
}

.faq-contact {
    text-align: center;
    margin-top: 3rem;
    padding: 2rem;
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.05), rgba(236, 72, 153, 0.05));
    border-radius: var(--radius-lg);
}

.faq-contact p {
    font-size: 1.25rem;
    color: var(--text-dark);
    margin-bottom: 1rem;
    font-weight: 600;
}

/* Gallery Section Modern */
.gallery {
    padding: 100px 0;
    background-color: var(--background-lighter);
}

.gallery h2 {
    text-align: center;
    font-size: 3rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1rem;
    letter-spacing: -0.025em;
}

.instagram-note, .reels-note {
    text-align: center;
    color: var(--text-light);
    margin-bottom: 4rem;
    font-size: 1.125rem;
}

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

.gallery-item {
    overflow: hidden;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    position: relative;
    background: var(--white);
    aspect-ratio: 1;
}

.gallery-item:hover {
    transform: scale(1.03);
    box-shadow: var(--shadow-xl);
}

.gallery-item::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, transparent 70%, rgba(0, 0, 0, 0.7));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.gallery-item:hover::after {
    opacity: 1;
}

/* Reels Section Modern */
.reels {
    padding: 100px 0;
    background-color: var(--background-light);
}

.reels h2 {
    text-align: center;
    font-size: 3rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1rem;
    letter-spacing: -0.025em;
}

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

.reel-item {
    overflow: hidden;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    position: relative;
    background: var(--white);
    min-height: 540px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.reel-item:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-xl);
}

/* Instagram embed styles */
.reel-item .instagram-media {
    margin: 0 !important;
    min-width: 100% !important;
    max-width: 100% !important;
}

.reel-item iframe {
    border-radius: var(--radius-lg);
}

/* Contact Section Modern Compact */
.contact {
    padding: 100px 0;
    background: linear-gradient(135deg, #ffffff 0%, #f9fafb 100%);
    position: relative;
    overflow: hidden;
}

.contact::before {
    content: '';
    position: absolute;
    top: -40%;
    left: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(99, 102, 241, 0.05) 0%, transparent 70%);
    border-radius: 50%;
}

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

.contact h2 {
    font-size: 3rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1rem;
    letter-spacing: -0.025em;
}

.contact-intro {
    font-size: 1.25rem;
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto;
}

/* Contact Grid */
.contact-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-bottom: 4rem;
}

.contact-card {
    background: var(--white);
    padding: 2.5rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    text-align: center;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.contact-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.contact-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-xl);
}

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

.contact-card-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    background: linear-gradient(135deg, var(--primary-light), var(--secondary-light));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.contact-card-icon i {
    font-size: 2.5rem;
    color: var(--white);
}

.contact-card h3 {
    font-size: 1.5rem;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
    font-weight: 700;
}

/* Contact Details */
.contact-details {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.contact-link {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    color: var(--text-light);
    text-decoration: none;
    transition: var(--transition);
    padding: 0.5rem;
    border-radius: var(--radius);
}

.contact-link:hover {
    color: var(--primary-color);
    background: rgba(99, 102, 241, 0.05);
}

.contact-link i {
    color: var(--primary-color);
    font-size: 1rem;
}

/* Social Links Compact */
.social-links-compact {
    display: flex;
    justify-content: center;
    gap: 0.75rem;
}

.social-links-compact .social-link {
    width: 40px;
    height: 40px;
    font-size: 1.1rem;
}

/* Location Compact */
.location-compact {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.location-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    text-align: left;
    padding: 1rem;
    background: var(--background-light);
    border-radius: var(--radius);
}

.location-item i {
    font-size: 1.5rem;
    color: var(--primary-color);
}

.location-item strong {
    display: block;
    color: var(--text-dark);
    margin-bottom: 0.25rem;
}

.location-item p {
    color: var(--text-light);
    font-size: 0.875rem;
    margin: 0;
}

/* Schedule Compact */
.schedule-compact {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.schedule-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.75rem;
    background: var(--background-light);
    border-radius: var(--radius);
}

.schedule-row.special {
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.05), rgba(236, 72, 153, 0.05));
    border: 1px solid rgba(99, 102, 241, 0.1);
}

.day {
    font-weight: 600;
    color: var(--text-dark);
}

.hours {
    color: var(--text-light);
    font-size: 0.875rem;
}

.badge-visio {
    background: var(--primary-color);
    color: var(--white);
    font-size: 0.75rem;
    padding: 0.125rem 0.5rem;
    border-radius: 1rem;
    margin-left: 0.5rem;
}

.schedule-note {
    margin-top: 1rem;
    color: var(--text-light);
    font-size: 0.875rem;
    font-style: italic;
}

/* Contact CTA Section */
.contact-cta-section {
    text-align: center;
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.05), rgba(236, 72, 153, 0.05));
    padding: 3rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
}

.contact-cta-section h3 {
    font-size: 2rem;
    color: var(--text-dark);
    margin-bottom: 2rem;
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
}

.social-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, var(--primary-light), var(--secondary-light));
    color: var(--white);
    text-decoration: none;
    border-radius: 50%;
    transition: var(--transition);
    font-size: 1.25rem;
}

.social-link:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

/* Contact Responsive */
@media (max-width: 1024px) {
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}

@media (max-width: 768px) {
    .contact {
        padding: 80px 0;
    }
    
    .contact h2 {
        font-size: 2.5rem;
    }
    
    .contact-intro {
        font-size: 1.1rem;
        padding: 0 1rem;
    }
    
    .contact-card {
        padding: 2rem;
    }
    
    .contact-card-icon {
        width: 70px;
        height: 70px;
    }
    
    .contact-card-icon i {
        font-size: 2rem;
    }
    
    .contact-card h3 {
        font-size: 1.25rem;
    }
    
    .contact-cta-section {
        padding: 2rem 1.5rem;
    }
    
    .contact-cta-section h3 {
        font-size: 1.5rem;
    }
}

/* Consultation subcategories */
.consultation-subcategories {
    margin-top: 2rem;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
}

.subcat-card {
    background: #f8f9fa;
    padding: 1.5rem;
    border-radius: 12px;
    text-align: center;
    transition: all 0.3s ease;
}

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

.subcat-card h5 {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
    font-weight: 600;
}

.subcat-card p {
    font-size: 0.9rem;
    color: #666;
    margin: 0;
}

/* Footer Modern */
.footer {
    background: linear-gradient(180deg, #1a1a2e 0%, #0f0f1e 100%);
    color: var(--white);
    position: relative;
    overflow: hidden;
    margin-bottom: 0;
    padding-bottom: 0;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--primary-color), var(--secondary-color), transparent);
}

/* Footer Top */
.footer-top {
    padding: 4rem 0 3rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

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

/* Footer Brand */
.footer-brand h3 {
    font-size: 2rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1rem;
}

.footer-brand p {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.footer-certifications {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.certification-badge {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    background: rgba(255, 255, 255, 0.05);
    padding: 0.75rem 1rem;
    border-radius: var(--radius);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: var(--transition);
}

.certification-badge:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateX(4px);
}

.certification-badge i {
    color: var(--primary-color);
    font-size: 1.25rem;
}

.certification-badge span {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.9);
}

/* Footer Links */
.footer-links h4,
.footer-services h4,
.footer-contact h4 {
    font-size: 1.125rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--white);
    position: relative;
    padding-bottom: 0.75rem;
}

.footer-links h4::after,
.footer-services h4::after,
.footer-contact h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    border-radius: 2px;
}

.footer-links ul,
.footer-services ul {
    list-style: none;
    padding: 0;
}

.footer-links li,
.footer-services li {
    margin-bottom: 0.75rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: var(--transition);
    display: inline-block;
}

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

.footer-services li {
    color: rgba(255, 255, 255, 0.7);
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.footer-services li i {
    color: var(--secondary-color);
    font-size: 0.875rem;
}

/* Footer Contact */
.footer-contact-info p {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 0.75rem;
}

.footer-contact-info i {
    color: var(--primary-color);
    width: 20px;
}

.footer-schedule {
    margin: 1.5rem 0;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: var(--radius);
}

.footer-schedule p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 0.25rem;
}

.footer-schedule p:last-child {
    margin-bottom: 0;
}

.footer-cta {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: var(--white);
    padding: 0.875rem 1.5rem;
    border-radius: var(--radius);
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
    box-shadow: 0 4px 15px -3px rgba(99, 102, 241, 0.3);
}

.footer-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px -3px rgba(99, 102, 241, 0.4);
}

/* Footer Newsletter */
.footer-newsletter {
    background: rgba(255, 255, 255, 0.05);
    border-radius: var(--radius-lg);
    padding: 2rem;
    text-align: center;
}

.newsletter-content h4 {
    font-size: 1.5rem;
    margin-bottom: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
}

.newsletter-content h4 i {
    color: var(--primary-color);
}

.newsletter-content p {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 1.5rem;
}

.instagram-follow-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    color: var(--white);
    padding: 0.875rem 2rem;
    border-radius: 2rem;
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
    box-shadow: 0 4px 15px -3px rgba(225, 48, 108, 0.3);
}

.instagram-follow-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px -3px rgba(225, 48, 108, 0.4);
}

/* Footer Collaborations */
.footer-collaborations {
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.05), rgba(236, 72, 153, 0.05));
    padding: 3rem;
    border-radius: var(--radius-lg);
    margin-top: 3rem;
}

.collaboration-header {
    text-align: center;
    margin-bottom: 2.5rem;
}

.collaboration-header h4 {
    font-size: 1.75rem;
    color: var(--white);
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
}

.collaboration-header h4 i {
    color: var(--primary-color);
    font-size: 1.5rem;
}

.collaboration-header p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 1.125rem;
    max-width: 500px;
    margin: 0 auto;
}

.collaboration-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-bottom: 2.5rem;
}

.collaboration-item {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 1.5rem;
    border-radius: var(--radius);
    text-align: center;
    transition: var(--transition);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.collaboration-item:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.2);
}

.collaboration-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 1rem;
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.2), rgba(236, 72, 153, 0.2));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.collaboration-icon i {
    font-size: 1.75rem;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.collaboration-item h5 {
    font-size: 1.125rem;
    color: var(--white);
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.collaboration-item p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
    line-height: 1.5;
    margin: 0;
}

.collaboration-cta {
    text-align: center;
    padding: 2rem 1rem;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: var(--radius);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.collaboration-cta p {
    color: var(--white);
    font-size: 1.125rem;
    margin-bottom: 1.5rem;
    font-weight: 500;
}

.collaboration-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: var(--white);
    text-decoration: none;
    padding: 1rem 2rem;
    border-radius: 2rem;
    font-weight: 600;
    transition: var(--transition);
    box-shadow: var(--shadow);
}

.collaboration-btn:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
    background: linear-gradient(135deg, var(--primary-dark), var(--secondary-dark));
}

.collaboration-btn i {
    font-size: 1.125rem;
}

/* Footer Collaboration Simple */
.footer-collaboration h4 {
    font-size: 1.125rem;
    margin-bottom: 1.5rem;
}

.footer-collaboration ul {
    list-style: none;
    padding: 0;
    margin: 0 0 1.5rem 0;
}

.footer-collaboration li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
    color: rgba(255, 255, 255, 0.8);
    transition: var(--transition);
}

.footer-collaboration li:hover {
    color: var(--white);
    transform: translateX(3px);
}

.footer-collaboration li i {
    color: var(--primary-color);
    font-size: 1rem;
    width: 16px;
    text-align: center;
}

.collaboration-follow-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(135deg, #10b981, #059669);
    color: var(--white);
    text-decoration: none;
    padding: 0.75rem 1.5rem;
    border-radius: 2rem;
    font-weight: 600;
    font-size: 0.875rem;
    transition: var(--transition);
    box-shadow: 0 4px 15px -3px rgba(16, 185, 129, 0.3);
}

.collaboration-follow-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px -3px rgba(16, 185, 129, 0.4);
    background: linear-gradient(135deg, #059669, #047857);
}

/* Footer Collaboration Section */
.footer-collaboration-section {
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.05), rgba(236, 72, 153, 0.05));
    padding: 3rem;
    border-radius: var(--radius-lg);
    margin-top: 3rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.collaboration-header {
    text-align: center;
    margin-bottom: 2.5rem;
}

.collaboration-header h3 {
    font-size: 1.75rem;
    color: var(--white);
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
}

.collaboration-header h3 i {
    color: var(--primary-color);
    font-size: 1.5rem;
}

.collaboration-header p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

.partnership-card {
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius);
    padding: 2rem;
    display: flex;
    gap: 2rem;
    align-items: flex-start;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.partnership-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
}

.partnership-card:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(255, 255, 255, 0.2);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.partnership-logo {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: var(--transition);
    overflow: hidden;
}

.partnership-logo i {
    font-size: 2rem;
    color: var(--secondary-color);
}

.partnership-logo img {
    width: 75px;
    object-fit: cover;
}

.partnership-card:hover .partnership-logo {
    transform: scale(1.1) rotate(10deg);
}

.partnership-info {
    flex: 1;
}

.partnership-info h4 {
    color: var(--white);
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.partnership-info > p {
    color: rgba(255, 255, 255, 0.85);
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.partnership-benefits {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1rem;
    margin-bottom: 2rem;
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    background: rgba(255, 255, 255, 0.08);
    padding: 0.75rem 1rem;
    border-radius: var(--radius);
    transition: var(--transition);
}

.benefit-item:hover {
    background: rgba(255, 255, 255, 0.12);
    transform: translateX(5px);
}

.benefit-item i {
    color: var(--primary-color);
    font-size: 1rem;
    flex-shrink: 0;
}

.benefit-item span {
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.95rem;
    font-weight: 500;
}

.partnership-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.partnership-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.875rem 1.75rem;
    border-radius: 2rem;
    font-weight: 600;
    font-size: 0.95rem;
    text-decoration: none;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.partnership-btn.primary {
    background: rgba(255, 255, 255, 0.1);
    color: var(--white);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.partnership-btn.primary:hover {
    transform: translateY(-2px);
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.3);
}

.partnership-btn.secondary {
    background: rgba(255, 255, 255, 0.1);
    color: var(--white);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.partnership-btn.secondary:hover {
    transform: translateY(-2px);
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.3);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.partnership-btn i {
    font-size: 0.9rem;
}

.partnership-btn.promo {
    background: linear-gradient(135deg, var(--secondary-color), var(--secondary-dark));
    color: var(--white);
    border: none;
    cursor: pointer;
    position: relative;
}

.partnership-btn.promo:hover {
    transform: translateY(-2px);
    background: linear-gradient(135deg, var(--secondary-dark), #be185d);
    box-shadow: 0 8px 25px -3px rgba(236, 72, 153, 0.5);
}

.partnership-btn.promo.copied {
    background: linear-gradient(135deg, #10b981, #059669);
}

.partnership-btn.promo.copied i {
    animation: checkmark 0.6s ease;
}

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

/* Responsive Design for Collaboration Section */
@media (max-width: 768px) {
    .footer-collaboration-section {
        padding: 2rem 1.5rem;
        margin-top: 2rem;
    }
    
    .collaboration-header h3 {
        font-size: 1.5rem;
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .partnership-card {
        flex-direction: column;
        gap: 1.5rem;
        text-align: center;
    }
    
    .partnership-logo {
        width: 85px;
        height: 85px;
        margin: 0 auto;
    }
    
    .partnership-benefits {
        grid-template-columns: 1fr;
    }
    
    .partnership-actions {
        justify-content: center;
        flex-direction: column;
    }
    
    .partnership-btn {
        justify-content: center;
    }
}

/* Footer Middle */
.footer-middle {
    padding: 2rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.social-section {
    text-align: center;
}

.social-section h4 {
    font-size: 1.125rem;
    margin-bottom: 1.5rem;
}

.social-links-footer {
    display: flex;
    justify-content: center;
    gap: 1rem;
}

.social-link-footer {
    width: 48px;
    height: 48px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    text-decoration: none;
    transition: var(--transition);
}

.social-link-footer:hover {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-color: transparent;
    transform: translateY(-4px);
    box-shadow: 0 6px 20px -3px rgba(99, 102, 241, 0.4);
}

.social-link-footer i {
    font-size: 1.25rem;
}

/* Footer Bottom */
.footer-bottom {
    padding: 2rem 0;
}

.footer-bottom-content {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
    text-align: center;
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.6);
    margin: 0;
}

.footer-legal {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.footer-legal a {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    transition: var(--transition);
    font-size: 0.875rem;
}

.footer-legal a:hover {
    color: var(--primary-color);
}

.footer-legal span {
    color: rgba(255, 255, 255, 0.3);
}

/* Footer Responsive */
@media (max-width: 1024px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 2rem;
    }
}

@media (max-width: 768px) {
    .footer-top {
        padding: 3rem 0 2rem;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .footer-links h4::after,
    .footer-services h4::after,
    .footer-contact h4::after {
        left: 50%;
        transform: translateX(-50%);
    }
    
    .footer-services li {
        justify-content: center;
    }
    
    .footer-contact-info p {
        justify-content: center;
    }
    
    .certification-badge {
        justify-content: center;
    }
    
    .footer-newsletter {
        padding: 1.5rem;
        margin-top: 3rem;
    }
    
    .newsletter-content h4 {
        font-size: 1.25rem;
    }
    
    .footer-bottom-content {
        flex-direction: column;
        text-align: center;
    }
    
    .footer-legal {
        flex-wrap: wrap;
        justify-content: center;
    }
}

/* Placeholder Styles */
.placeholder-image, .placeholder-video {
    background: linear-gradient(135deg, #e5e7eb, #f3f4f6);
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-lighter);
    font-weight: 500;
    height: 100%;
    min-height: 300px;
    border: 2px dashed #d1d5db;
    font-size: 0.875rem;
}

/* Tablet Responsive */
@media (max-width: 1024px) {
    .services-tabs {
        max-width: 100%;
    }
    
    .service-content {
        gap: 2rem;
        padding: 2.5rem;
    }
    
    .service-detail-card {
        margin: 0 2rem;
    }
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: var(--white);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: var(--shadow-lg);
        padding: 2rem 0;
        gap: 1rem;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .hero-wrapper {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .hero-content h1 {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .hero-features {
        justify-content: center;
    }
    
    .hero-cta {
        justify-content: center;
    }
    
    .hero-trust {
        justify-content: center;
    }
    
    .hero-image {
        margin-top: 3rem;
        max-width: 400px;
        margin-left: auto;
        margin-right: auto;
    }
    
    .about-content,
    .contact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .services-grid,
    .gallery-grid,
    .reels-grid {
        grid-template-columns: 1fr;
    }
    
    h2 {
        font-size: 2rem !important;
    }
    
    /* Services responsive */
    .services {
        padding: 80px 0;
    }
    
    .services h2 {
        font-size: 2.5rem;
    }
    
    .services-intro {
        font-size: 1.1rem;
        padding: 0 1rem;
    }
    
    .services-tabs {
        grid-template-columns: 1fr;
        gap: 0.75rem;
        padding: 0 1rem;
    }
    
    .tab-button {
        padding: 1rem;
        flex-direction: row;
        justify-content: center;
        font-size: 0.875rem;
    }
    
    .tab-button i {
        font-size: 1.25rem;
    }
    
    .tab-button span {
        display: inline;
    }
    
    .service-detail-card {
        margin: 0 1rem;
    }
    
    .service-header {
        padding: 2rem 1.5rem;
        text-align: center;
        justify-content: center;
    }
    
    .service-header h3 {
        font-size: 1.5rem;
    }
    
    .service-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 2rem 1.5rem;
    }
    
    .mode-cards {
        grid-template-columns: 1fr;
        gap: 0.75rem;
    }
    
    .mode-card {
        padding: 1.5rem;
    }
    
    .mode-card i {
        font-size: 2rem;
    }
    
    .package-grid {
        grid-template-columns: 1fr;
        gap: 0.75rem;
    }
    
    .package-card {
        padding: 1rem;
    }
    
    .specialties-grid {
        grid-template-columns: 1fr;
    }
    
    .specialty-card {
        padding: 1.5rem;
    }
    
    .specialty-icon {
        width: 60px;
        height: 60px;
    }
    
    .specialty-icon i {
        font-size: 1.5rem;
    }
    
    .location-info {
        padding: 1.5rem;
    }
    
    .location-section {
        padding: 1.5rem;
    }
    
    /* Timeline responsive */
    .timeline-container::before {
        left: 30px;
    }
    
    .timeline-item {
        padding-left: 80px !important;
        padding-right: 20px !important;
    }
    
    .timeline-marker {
        left: 30px;
    }
    
    .timeline-item:nth-child(odd) .timeline-content,
    .timeline-item:nth-child(even) .timeline-content {
        margin-left: 0;
        margin-right: 0;
    }
    
    .timeline-content::before {
        left: -10px !important;
        right: auto !important;
    }
    
    .timeline-content {
        padding: 1.5rem;
    }
    
    .timeline-content h3 {
        font-size: 1.25rem;
    }
    
    .timeline-details p {
        font-size: 1rem;
    }
    
    .parcours-cta {
        padding: 2rem 1.5rem;
    }
    
    .parcours-cta p {
        font-size: 1.25rem;
    }
    
    /* Expertise responsive */
    .expertise-grid {
        grid-template-columns: 1fr;
    }
    
    .expertise-card {
        padding: 1.5rem;
    }
    
    .expertise-icon {
        width: 50px;
        height: 50px;
    }
    
    .expertise-icon i {
        font-size: 1.5rem;
    }
    
    .timeline-image {
        max-width: 150px;
    }
    
    /* Testimonials responsive */
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    .testimonial-card.featured {
        grid-column: 1;
    }
    
    /* FAQ responsive */
    .faq-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

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

/* Loading Animation */
@keyframes shimmer {
    0% {
        background-position: -1000px 0;
    }
    100% {
        background-position: 1000px 0;
    }
}

.loading {
    background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
    background-size: 1000px 100%;
    animation: shimmer 2s infinite;
}

/* Interactive Expertise Section */
.specialisations {
    padding: 100px 0;
    background: linear-gradient(135deg, #f9fafb 0%, #f3f4f6 100%);
    position: relative;
    overflow: hidden;
}

.specialisations::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(99, 102, 241, 0.05) 0%, transparent 70%);
    border-radius: 50%;
}

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

.section-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: var(--white);
    padding: 0.75rem 1.5rem;
    border-radius: 2rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    box-shadow: var(--shadow-md);
    animation: fadeInScale 0.6s ease-out;
}

.section-badge i {
    font-size: 1.25rem;
}

.specialisations h2 {
    font-size: 3rem;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 1rem;
    letter-spacing: -0.025em;
}

.specialisations-intro {
    font-size: 1.25rem;
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto;
}

/* Expertise Wrapper */
.expertise-wrapper {
    max-width: 1200px;
    margin: 0 auto;
}

/* Expertise Selector Buttons */
.expertise-selector {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    gap: 1rem;
    margin-bottom: 3rem;
    padding: 0 1rem;
}

.expertise-btn {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
    padding: 1.5rem 1rem;
    background: var(--white);
    border: 2px solid rgba(99, 102, 241, 0.1);
    border-radius: var(--radius-lg);
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: var(--shadow);
    position: relative;
    overflow: hidden;
    transform-style: preserve-3d;
}

.expertise-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.expertise-btn::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: radial-gradient(circle, var(--primary-light), var(--secondary-light));
    transform: translate(-50%, -50%);
    opacity: 0;
    transition: width 0.6s ease, height 0.6s ease, opacity 0.6s ease;
}

.expertise-btn:hover {
    transform: translateY(-4px) scale(1.02);
    box-shadow: var(--shadow-xl);
    border-color: var(--primary-color);
}

.expertise-btn:hover::after {
    width: 200%;
    height: 200%;
    opacity: 0.1;
}

.expertise-btn.active {
    border-color: var(--primary-color);
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.08), rgba(236, 72, 153, 0.08));
    transform: translateY(-2px) scale(1.05);
    box-shadow: 0 10px 30px -10px rgba(99, 102, 241, 0.3);
}

.expertise-btn.active::before {
    transform: scaleX(1);
}

.expertise-btn:active {
    transform: translateY(-1px) scale(0.98);
    transition: transform 0.1s ease;
}

.expertise-btn-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-light), var(--secondary-light));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    box-shadow: 0 4px 15px -5px rgba(99, 102, 241, 0.3);
}

.expertise-btn-icon::before {
    content: '';
    position: absolute;
    inset: -2px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: -1;
}

.expertise-btn:hover .expertise-btn-icon {
    transform: scale(1.15) rotate(5deg);
    box-shadow: 0 6px 20px -5px rgba(99, 102, 241, 0.4);
}

.expertise-btn.active .expertise-btn-icon {
    transform: scale(1.1);
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
}

.expertise-btn.active .expertise-btn-icon::before {
    opacity: 0.2;
}

.expertise-btn-icon i {
    color: var(--white);
    font-size: 1.75rem;
    transition: transform 0.3s ease;
}

.expertise-btn:hover .expertise-btn-icon i {
    transform: scale(1.1);
}

.expertise-btn span {
    font-weight: 600;
    color: var(--text-dark);
    font-size: 0.875rem;
    text-align: center;
}

/* Expertise Content Area */
.expertise-content-area {
    position: relative;
    min-height: 400px;
}

.expertise-detail {
    display: none;
    opacity: 0;
    transform: translateY(20px);
}

.expertise-detail.active {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 3rem;
    align-items: start;
    animation: expertiseSlideIn 0.6s ease-out forwards;
}

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

.expertise-detail-content {
    background: var(--white);
    padding: 3rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
}

.expertise-detail-header {
    margin-bottom: 2rem;
}

.expertise-detail h3 {
    font-size: 2rem;
    color: var(--text-dark);
    margin-bottom: 1rem;
    font-weight: 700;
}

.expertise-stats {
    display: flex;
    gap: 2rem;
    margin-top: 1rem;
}

.stat-item {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.stat-number {
    font-size: 1.75rem;
    font-weight: 700;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stat-label {
    font-size: 0.875rem;
    color: var(--text-light);
}

.expertise-tags {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
}

.expertise-tags .tag {
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.1), rgba(236, 72, 153, 0.1));
    color: var(--primary-color);
    padding: 0.5rem 1rem;
    border-radius: 2rem;
    font-size: 0.875rem;
    font-weight: 500;
}

.expertise-description {
    font-size: 1.125rem;
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 2rem;
}

.expertise-benefits {
    margin-top: 2rem;
}

.expertise-benefits h4 {
    font-size: 1.125rem;
    color: var(--text-dark);
    margin-bottom: 1rem;
    font-weight: 600;
}

.expertise-benefits ul {
    list-style: none;
    padding: 0;
}

.expertise-benefits li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
    color: var(--text-light);
}

.expertise-benefits i {
    color: var(--primary-color);
    margin-top: 0.25rem;
    flex-shrink: 0;
}

.expertise-cta {
    margin-top: 2rem;
}

/* Expertise Visual Elements */
.expertise-visual {
    display: flex;
    align-items: center;
    justify-content: center;
}

.progress-circles {
    position: relative;
}

.progress-circle {
    position: relative;
    width: 140px;
    height: 140px;
}

.progress-circle svg {
    width: 140px;
    height: 140px;
    transform: rotate(-90deg);
}

.progress-circle circle {
    fill: none;
    stroke-width: 8;
}

.progress-circle circle:first-child {
    stroke: rgba(99, 102, 241, 0.1);
}

.progress-circle circle.progress {
    stroke: url(#progress-gradient);
    stroke-dasharray: 377;
    stroke-dashoffset: 377;
    animation: progressAnimation 1.5s ease-out forwards;
}

@keyframes progressAnimation {
    to {
        stroke-dashoffset: calc(377 - (377 * 0.85));
    }
}

.progress-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
}

.progress-number {
    display: block;
}

.progress-label {
    display: block;
    font-size: 0.75rem;
}

/* Plate Visual */
.plate-visual {
    width: 250px;
    height: 250px;
    position: relative;
    border-radius: 50%;
    overflow: hidden;
    box-shadow: var(--shadow-xl);
    background: var(--white);
    transform: perspective(500px) rotateX(10deg);
    transition: transform 0.3s ease;
}

.plate-visual:hover {
    transform: perspective(500px) rotateX(0deg) scale(1.05);
}

.plate-section {
    position: absolute;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    color: var(--white);
    font-size: 1.25rem;
}

.plate-section.vegetables {
    background: #10b981;
    width: 100%;
    height: 50%;
    top: 0;
}

.plate-section.proteins {
    background: #f59e0b;
    width: 50%;
    height: 50%;
    bottom: 0;
    left: 0;
}

.plate-section.carbs {
    background: #3b82f6;
    width: 50%;
    height: 50%;
    bottom: 0;
    right: 0;
}

/* Expertise Phases */
.expertise-phases {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.phase {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--background-light);
    padding: 0.5rem 1rem;
    border-radius: 2rem;
    font-size: 0.875rem;
    color: var(--text-dark);
    font-weight: 500;
}

.phase i {
    color: var(--primary-color);
}

/* Sport Icons */
.sport-icons {
    display: flex;
    gap: 1.5rem;
    margin-top: 1rem;
}

.sport-icons i {
    font-size: 2rem;
    color: var(--primary-color);
    opacity: 0.8;
}

/* Digestive Symptoms */
.digestive-symptoms {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
    margin-top: 1rem;
}

.digestive-symptoms span {
    background: rgba(239, 68, 68, 0.1);
    color: #dc2626;
    padding: 0.5rem 1rem;
    border-radius: 2rem;
    font-size: 0.875rem;
    font-weight: 500;
}

/* Senior Focus */
.senior-focus {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.senior-focus span {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.1), rgba(59, 130, 246, 0.1));
    padding: 0.5rem 1rem;
    border-radius: 2rem;
    font-size: 0.875rem;
    color: var(--text-dark);
    font-weight: 500;
}

.senior-focus i {
    color: #10b981;
}

/* Allergy Types */
.allergy-types {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.5rem;
    margin-top: 1rem;
}

.allergy-types span {
    background: rgba(251, 146, 60, 0.1);
    color: #ea580c;
    padding: 0.5rem 1rem;
    border-radius: 0.5rem;
    font-size: 0.875rem;
    font-weight: 500;
    text-align: center;
}

/* Responsive Expertise */
@media (max-width: 1024px) {
    .expertise-selector {
        grid-template-columns: repeat(4, 1fr);
    }
    
    .expertise-detail.active {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .plate-visual {
        width: 200px;
        height: 200px;
        margin: 0 auto;
    }
}

@media (max-width: 768px) {
    .specialisations {
        padding: 80px 0;
    }
    
    .specialisations h2 {
        font-size: 2rem;
    }
    
    .specialisations-intro {
        font-size: 1.1rem;
        padding: 0 1rem;
    }
    
    .expertise-selector {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.75rem;
        padding: 0 0.75rem;
    }
    
    .expertise-btn {
        padding: 1.25rem 0.5rem;
        gap: 0.5rem;
    }
    
    .expertise-btn-icon {
        width: 50px;
        height: 50px;
    }
    
    .expertise-btn-icon i {
        font-size: 1.5rem;
    }
    
    .expertise-btn span {
        font-size: 0.8rem;
        line-height: 1.2;
    }
    
    /* Swipe indicator for mobile */
    .expertise-selector::after {
        content: '← Glissez pour plus →';
        display: block;
        grid-column: 1 / -1;
        text-align: center;
        color: var(--text-lighter);
        font-size: 0.75rem;
        margin-top: 0.5rem;
        opacity: 0.7;
    }
    
    .expertise-detail-content {
        padding: 2rem;
    }
    
    .expertise-detail h3 {
        font-size: 1.5rem;
    }
    
    .expertise-stats {
        gap: 1.5rem;
    }
    
    .stat-number {
        font-size: 1.5rem;
    }
    
    .expertise-description {
        font-size: 1rem;
    }
    
    .progress-circle {
        width: 120px;
        height: 120px;
    }
    
    .progress-circle svg {
        width: 120px;
        height: 120px;
    }
    
    .plate-visual {
        width: 180px;
        height: 180px;
    }
    
    .plate-section {
        font-size: 1rem;
    }
    
    .sport-icons {
        gap: 1rem;
    }
    
    .sport-icons i {
        font-size: 1.5rem;
    }
    
    .allergy-types {
        grid-template-columns: 1fr;
    }
    
    /* Fix mobile display issues for expertise section */
    .expertise-detail.active {
        grid-template-columns: 1fr !important;
        gap: 1.5rem;
    }
    
    .expertise-content-area {
        min-height: auto;
    }
    
    /* Hide visual elements on mobile */
    .expertise-visual {
        display: none !important;
    }
}

/* Small mobile devices */
@media (max-width: 480px) {
    /* Reduce padding on detail content */
    .expertise-detail-content {
        padding: 1.5rem !important;
    }
    
    /* Stack stats vertically on very small screens */
    .expertise-stats {
        flex-direction: column;
        gap: 1rem;
    }
    
    /* Hide swipe indicator on small screens */
    .expertise-selector::after {
        display: none;
    }
}

/* Expertise Animations */
.expertise-ripple {
    position: absolute;
    border-radius: 50%;
    background: rgba(99, 102, 241, 0.3);
    transform: scale(0);
    animation: expertiseRipple 0.6s ease-out;
    pointer-events: none;
}

@keyframes expertiseRipple {
    to {
        transform: scale(4);
        opacity: 0;
    }
}

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

@keyframes expertiseBtnDeactivate {
    0% {
        transform: scale(1);
    }
    100% {
        transform: scale(0.95);
    }
}

@keyframes plateSlideIn {
    from {
        opacity: 0;
        transform: scale(0.8);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

/* Quiz Section */
.quiz-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #f3f4f6 0%, #e5e7eb 100%);
    position: relative;
    overflow: hidden;
}

.quiz-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(99, 102, 241, 0.05) 0%, transparent 70%);
    border-radius: 50%;
}

.quiz-header {
    text-align: center;
    margin-bottom: 3rem;
}

.quiz-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: var(--white);
    padding: 0.75rem 1.5rem;
    border-radius: 2rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    box-shadow: var(--shadow-md);
    animation: bounceIn 0.6s ease-out;
}

.quiz-badge i {
    font-size: 1.25rem;
}

.quiz-section h2 {
    font-size: 3rem;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 1rem;
    letter-spacing: -0.025em;
}

.quiz-intro {
    font-size: 1.25rem;
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto;
}

/* Quiz Container */
.quiz-container {
    max-width: 800px;
    margin: 0 auto;
}

/* Quiz Start */
.quiz-start {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 4rem;
    box-shadow: var(--shadow-xl);
    text-align: center;
    animation: fadeInUp 0.6s ease-out;
}

.quiz-icon-animated {
    width: 120px;
    height: 120px;
    margin: 0 auto 2rem;
    background: linear-gradient(135deg, var(--primary-light), var(--secondary-light));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: pulse 2s infinite;
}

.quiz-icon-animated i {
    font-size: 3rem;
    color: var(--white);
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(99, 102, 241, 0.4);
    }
    50% {
        transform: scale(1.05);
        box-shadow: 0 0 0 20px rgba(99, 102, 241, 0);
    }
}

.quiz-start h3 {
    font-size: 2rem;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.quiz-start p {
    color: var(--text-light);
    font-size: 1.125rem;
    margin-bottom: 2rem;
}

/* Quiz Game */
.quiz-game {
    animation: fadeIn 0.5s ease-out;
}

.quiz-progress {
    margin-bottom: 2rem;
}

.progress-bar {
    height: 8px;
    background: rgba(99, 102, 241, 0.1);
    border-radius: 4px;
    overflow: hidden;
    margin-bottom: 0.5rem;
}

.progress-fill {
    height: 100%;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    width: 0;
    transition: width 0.5s ease-out;
    border-radius: 4px;
}

.question-counter {
    text-align: center;
    color: var(--text-light);
    font-size: 0.875rem;
    font-weight: 500;
    display: block;
}

.quiz-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 3rem;
    box-shadow: var(--shadow-xl);
}

.question-container {
    text-align: center;
    margin-bottom: 3rem;
}

.question-text {
    font-size: 1.5rem;
    color: var(--text-dark);
    line-height: 1.6;
    margin-bottom: 2rem;
}

.question-icon {
    font-size: 4rem;
    margin: 0 auto;
    animation: bounceIn 0.5s ease-out;
}

@keyframes bounceIn {
    0% {
        transform: scale(0);
        opacity: 0;
    }
    50% {
        transform: scale(1.2);
    }
    100% {
        transform: scale(1);
        opacity: 1;
    }
}

/* Answer Buttons */
.answer-buttons {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.answer-btn {
    background: var(--white);
    border: 3px solid transparent;
    padding: 2rem;
    border-radius: var(--radius-lg);
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-md);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    position: relative;
    overflow: hidden;
}

.answer-btn i {
    font-size: 3rem;
}

.answer-btn span {
    font-size: 1.5rem;
    font-weight: 700;
    letter-spacing: 0.05em;
}

.yes-btn {
    border-color: #10b981;
    color: #10b981;
}

.yes-btn:hover:not(:disabled) {
    transform: translateY(-4px);
    box-shadow: var(--shadow-xl);
    background: rgba(16, 185, 129, 0.05);
}

.no-btn {
    border-color: #ef4444;
    color: #ef4444;
}

.no-btn:hover:not(:disabled) {
    transform: translateY(-4px);
    box-shadow: var(--shadow-xl);
    background: rgba(239, 68, 68, 0.05);
}

.answer-btn:disabled {
    cursor: not-allowed;
    opacity: 0.7;
}

.answer-btn.correct {
    background: #10b981;
    color: var(--white);
    border-color: #10b981;
    animation: correctAnswer 0.5s ease-out;
}

.answer-btn.incorrect {
    background: #ef4444;
    color: var(--white);
    border-color: #ef4444;
    animation: incorrectAnswer 0.5s ease-out;
}

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

@keyframes incorrectAnswer {
    0%, 100% {
        transform: translateX(0);
    }
    25% {
        transform: translateX(-10px);
    }
    75% {
        transform: translateX(10px);
    }
}

/* Quiz Results */
.quiz-results {
    animation: fadeInUp 0.6s ease-out;
}

.results-content {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 3rem;
    box-shadow: var(--shadow-xl);
    text-align: center;
}

.score-circle {
    width: 200px;
    height: 200px;
    margin: 0 auto 2rem;
    position: relative;
}

.score-circle svg {
    width: 100%;
    height: 100%;
}

.score-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
}

.score-number {
    font-size: 3rem;
    font-weight: 800;
    color: var(--primary-color);
    display: block;
}

.score-label {
    font-size: 1rem;
    color: var(--text-light);
}

#result-title {
    font-size: 2rem;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

#result-message {
    font-size: 1.125rem;
    color: var(--text-light);
    line-height: 1.6;
    max-width: 600px;
    margin: 0 auto 3rem;
}

/* Quiz Summary */
.quiz-summary {
    margin: 3rem 0;
    text-align: left;
}

.summary-item {
    background: var(--background-light);
    border-radius: var(--radius);
    padding: 1.5rem;
    margin-bottom: 1rem;
    border-left: 4px solid transparent;
}

.summary-item.correct {
    border-left-color: #10b981;
}

.summary-item.incorrect {
    border-left-color: #ef4444;
}

.summary-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.75rem;
}

.summary-number {
    font-weight: 700;
    color: var(--primary-color);
}

.summary-header i {
    font-size: 1.25rem;
}

.summary-header .fa-check-circle {
    color: #10b981;
}

.summary-header .fa-times-circle {
    color: #ef4444;
}

.summary-question {
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.summary-explanation {
    color: var(--text-light);
    font-size: 0.875rem;
    line-height: 1.5;
}

.results-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Alivio App Showcase */
.alivio-showcase {
    padding: 100px 0;
    background: linear-gradient(135deg, #f8f9ff 0%, #f0f2ff 100%);
    position: relative;
    overflow: hidden;
}

.alivio-showcase::before {
    content: '';
    position: absolute;
    top: -20%;
    right: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(99, 102, 241, 0.08) 0%, transparent 70%);
    border-radius: 50%;
}

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

.alivio-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: var(--white);
    padding: 0.75rem 1.5rem;
    border-radius: 2rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    box-shadow: var(--shadow-md);
    animation: fadeInScale 0.6s ease-out;
}

.alivio-badge i {
    font-size: 1.25rem;
}

.alivio-showcase h2 {
    font-size: 3rem;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 1rem;
    letter-spacing: -0.025em;
}

.alivio-intro {
    font-size: 1.25rem;
    color: var(--text-light);
    max-width: 700px;
    margin: 0 auto;
}

/* Alivio Features Grid */
.alivio-features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin-bottom: 5rem;
}

.alivio-feature {
    text-align: center;
    padding: 2rem 1rem;
}

.feature-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.1), rgba(236, 72, 153, 0.1));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.alivio-feature:hover .feature-icon {
    transform: scale(1.1);
    background: linear-gradient(135deg, var(--primary-light), var(--secondary-light));
}

.feature-icon i {
    font-size: 2rem;
    color: var(--primary-color);
    transition: var(--transition);
}

.alivio-feature:hover .feature-icon i {
    color: var(--white);
}

.alivio-feature h3 {
    font-size: 1.25rem;
    color: var(--text-dark);
    margin-bottom: 0.75rem;
}

.alivio-feature p {
    color: var(--text-light);
    font-size: 0.9rem;
    line-height: 1.6;
}

/* App Screenshots */
.app-screenshots {
    margin-bottom: 4rem;
}

.screenshots-container {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.screenshot-wrapper {
    text-align: center;
    transition: var(--transition);
}

.screenshot-wrapper.featured {
    transform: scale(1.1);
}

.phone-mockup {
    position: relative;
    width: 250px;
    height: 500px;
    background: #1a1a1a;
    border-radius: 30px;
    padding: 10px;
    box-shadow: 0 20px 50px -10px rgba(0, 0, 0, 0.3);
    transition: var(--transition);
    overflow: hidden;
}

.screenshot-wrapper:hover .phone-mockup {
    transform: translateY(-10px);
    box-shadow: 0 30px 60px -10px rgba(0, 0, 0, 0.4);
}

.phone-mockup::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 150px;
    height: 25px;
    background: #1a1a1a;
    border-radius: 0 0 15px 15px;
    z-index: 10;
}

.phone-mockup img {
    width: 100%;
    height: 100%;
    border-radius: 20px;
    object-fit: cover;
}

.screenshot-caption {
    margin-top: 1.5rem;
    font-weight: 600;
    color: var(--text-dark);
}

/* Alivio CTA */
.alivio-cta {
    text-align: center;
    background: var(--white);
    padding: 3rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    max-width: 800px;
    margin: 0 auto;
}

.alivio-cta h3 {
    font-size: 2rem;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.alivio-cta p {
    color: var(--text-light);
    font-size: 1.125rem;
    margin-bottom: 2rem;
}

/* Alivio Responsive */
@media (max-width: 1024px) {
    .alivio-features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .screenshot-wrapper.featured {
        transform: scale(1);
    }
    
    .phone-mockup {
        width: 200px;
        height: 400px;
    }
}

@media (max-width: 768px) {
    .alivio-showcase {
        padding: 80px 0;
    }
    
    .alivio-showcase h2 {
        font-size: 2rem;
    }
    
    .specialties-header h3 {
        font-size: 2rem;
    }
    
    .alivio-intro {
        font-size: 1.1rem;
        padding: 0 1rem;
    }
    
    .alivio-features-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .screenshots-container {
        gap: 1.5rem;
    }
    
    .phone-mockup {
        width: 180px;
        height: 360px;
    }
    
    .alivio-cta {
        padding: 2rem 1.5rem;
    }
    
    .alivio-cta h3 {
        font-size: 1.5rem;
    }
}

/* Mobile slider for Alivio screenshots */
@media (max-width: 768px) {
    .app-screenshots {
        position: relative;
        overflow: hidden;
        margin: 0 -24px 3rem;
        padding: 0;
    }
    
    .screenshots-container {
        display: flex;
        flex-wrap: nowrap;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
        gap: 1rem;
        padding: 1rem 24px;
        scrollbar-width: none; /* Firefox */
        -ms-overflow-style: none; /* IE and Edge */
    }
    
    /* Hide scrollbar for Chrome, Safari and Opera */
    .screenshots-container::-webkit-scrollbar {
        display: none;
    }
    
    .screenshot-wrapper {
        flex: 0 0 auto;
        scroll-snap-align: center;
    }
    
    .screenshot-wrapper.featured {
        transform: none;
    }
    
    /* Slider dots indicator */
    .slider-dots {
        display: flex;
        justify-content: center;
        gap: 0.5rem;
        margin-top: 1.5rem;
    }
    
    .slider-dot {
        width: 8px;
        height: 8px;
        border-radius: 50%;
        background: var(--text-lighter);
        transition: var(--transition);
        cursor: pointer;
    }
    
    .slider-dot.active {
        background: var(--primary-color);
        width: 24px;
        border-radius: 4px;
    }
    
    /* Add swipe hint */
    .swipe-hint {
        display: block;
        text-align: center;
        color: var(--text-light);
        font-size: 0.875rem;
        margin-top: 1rem;
        animation: swipeHint 2s ease-in-out infinite;
    }
    
    @keyframes swipeHint {
        0%, 100% { transform: translateX(0); opacity: 0.6; }
        50% { transform: translateX(-10px); opacity: 1; }
    }
}

/* Hide slider elements on desktop */
@media (min-width: 769px) {
    .slider-dots,
    .swipe-hint {
        display: none;
    }
}

/* Very small mobile devices - Alivio section */
@media (max-width: 480px) {
    .phone-mockup {
        width: 150px;
        height: 300px;
        padding: 8px;
    }
    
    .phone-mockup::before {
        width: 100px;
        height: 20px;
    }
    
    .screenshot-caption {
        font-size: 0.875rem;
        margin-top: 1rem;
    }
    
    .alivio-showcase {
        padding: 60px 0;
    }
    
    .alivio-badge {
        font-size: 0.875rem;
        padding: 0.5rem 1rem;
    }
    
    .alivio-cta {
        padding: 1.5rem 1rem;
    }
}

/* Extra small devices */
@media (max-width: 360px) {
    .phone-mockup {
        width: 120px;
        height: 240px;
        padding: 6px;
        border-radius: 20px;
    }
    
    .phone-mockup img {
        border-radius: 14px;
    }
}

/* Mobile section separators for better visual experience */
@media (max-width: 768px) {
    /* Add visual separators between sections */
    section {
        position: relative;
        padding-top: 80px !important;
        padding-bottom: 80px !important;
    }
    
    /* Hero section special padding */
    .hero {
        padding-top: 100px !important;
    }
    
    /* Add decorative separator after each section */
    section:not(:last-child)::after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 50%;
        transform: translateX(-50%);
        width: 80%;
        height: 1px;
        background: linear-gradient(90deg, transparent, var(--text-lighter), transparent);
    }
    
    /* Add wave separator for some sections */
    .hero::after,
    .services::after,
    .specialisations::after {
        content: '';
        position: absolute;
        bottom: -1px;
        left: 0;
        right: 0;
        height: 60px;
        background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 60" preserveAspectRatio="none"><path d="M0,30 Q300,0 600,30 T1200,30 L1200,60 L0,60 Z" fill="%23f9fafb"/></svg>') no-repeat center;
        background-size: cover;
        width: 100%;
    }
    
    /* Alternate wave colors */
    .about::after {
        background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 60" preserveAspectRatio="none"><path d="M0,30 Q300,60 600,30 T1200,30 L1200,60 L0,60 Z" fill="%23ffffff"/></svg>') no-repeat center;
        background-size: cover;
    }
    
    /* Add section badges animation on mobile */
    .section-badge {
        animation: pulse 2s ease-in-out infinite;
    }
    
    @keyframes pulse {
        0%, 100% { transform: scale(1); }
        50% { transform: scale(1.05); }
    }
    
    /* Add subtle background patterns for sections */
    .hero {
        background: linear-gradient(135deg, rgba(99, 102, 241, 0.02) 0%, rgba(236, 72, 153, 0.02) 100%);
    }
    
    .about {
        background: linear-gradient(180deg, #f9fafb 0%, #ffffff 100%);
    }
    
    .services {
        background: linear-gradient(135deg, #ffffff 0%, rgba(99, 102, 241, 0.02) 100%);
    }
    
    .specialisations {
        background: linear-gradient(180deg, #f9fafb 0%, #f3f4f6 100%);
    }
    
    .alivio-showcase {
        background: linear-gradient(135deg, rgba(236, 72, 153, 0.02) 0%, rgba(99, 102, 241, 0.02) 100%);
    }
    
    /* Add title underlines for better separation */
    section h2 {
        position: relative;
        padding-bottom: 1.5rem;
        margin-bottom: 2rem;
    }
    
    section h2::after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 50%;
        transform: translateX(-50%);
        width: 60px;
        height: 4px;
        background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
        border-radius: 2px;
    }
    
    /* Cards and content spacing */
    .service-card,
    .expertise-detail,
    .timeline-item,
    .quiz-container {
        margin-bottom: 2rem;
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    }
    
    /* Improve readability with better spacing */
    p {
        line-height: 1.8;
        margin-bottom: 1.5rem;
    }
    
    /* Visual hierarchy with font sizes */
    h2 {
        font-size: 2rem !important;
    }
    
    h3 {
        font-size: 1.5rem !important;
        margin-bottom: 1rem;
    }
}

/* Pricing Section */
.pricing-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #f9fafb 0%, #f3f4f6 100%);
    position: relative;
}

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

.pricing-section h2 {
    font-size: 3rem;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.pricing-intro {
    font-size: 1.25rem;
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto;
}

/* Pricing Tabs */
.pricing-tabs {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin: 3rem auto 4rem;
    max-width: 400px;
}

.pricing-tab-button {
    flex: 1;
    padding: 1rem 1.5rem;
    background: var(--white);
    border: 2px solid var(--border-color);
    border-radius: var(--radius-lg);
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    font-weight: 500;
    color: var(--text-light);
}

.pricing-tab-button:hover {
    border-color: var(--primary-color);
    transform: translateY(-2px);
    box-shadow: var(--shadow);
}

.pricing-tab-button.active {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-color: var(--primary-color);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.pricing-tab-button i {
    font-size: 1.25rem;
}

.pricing-tab-button span {
    font-size: 0.875rem;
    white-space: nowrap;
}

/* Pricing Tab Content */
.pricing-tab-content {
    position: relative;
}

.pricing-tab-pane {
    display: none;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.3s ease;
}

.pricing-tab-pane.active {
    display: block;
    opacity: 1;
    transform: translateY(0);
}

/* Special grid for Présentiel with only 2 cards */
.pricing-grid.presentiel {
    grid-template-columns: repeat(auto-fit, minmax(280px, 400px));
    justify-content: center;
    max-width: 900px;
}

/* Pricing Grid */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto 3rem;
}

/* Pricing Card */
.pricing-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 2.5rem;
    position: relative;
    box-shadow: var(--shadow);
    transition: var(--transition);
    text-align: center;
}

.pricing-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-xl);
}

.pricing-card.featured {
    border: 2px solid var(--primary-color);
    transform: scale(1.05);
}

.pricing-card.featured:hover {
    transform: scale(1.05) translateY(-10px);
}

/* Pricing Badge */
.pricing-badge {
    position: absolute;
    top: -12px;
    right: 20px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: var(--white);
    padding: 0.5rem 1.5rem;
    border-radius: 2rem;
    font-size: 0.875rem;
    font-weight: 600;
}

/* Pricing Icon */
.pricing-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.1), rgba(236, 72, 153, 0.1));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.pricing-icon i {
    font-size: 2.5rem;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.pricing-card h3 {
    font-size: 1.75rem;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
}

/* Pricing Price */
.pricing-price {
    margin-bottom: 2rem;
}

.price-amount {
    display: block;
    font-size: 3rem;
    font-weight: 800;
    color: var(--primary-color);
    line-height: 1;
}

.price-duration {
    display: block;
    margin-top: 0.5rem;
    color: var(--text-light);
    font-size: 1rem;
}

/* Pricing Features */
.pricing-features {
    margin-bottom: 2rem;
    text-align: left;
}

.pricing-features h4 {
    font-size: 1rem;
    color: var(--text-dark);
    margin-bottom: 1rem;
    font-weight: 600;
    text-align: center;
}

.pricing-features ul {
    list-style: none;
}

.pricing-features li {
    padding: 0.75rem 0;
    color: var(--text-light);
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.pricing-features i {
    color: var(--primary-color);
    font-size: 1rem;
    flex-shrink: 0;
}

/* Button Block */
.btn-block {
    width: 100%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

/* Pricing Info */
.pricing-info {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    max-width: 800px;
    margin: 0 auto;
    padding: 2rem;
    background: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
}

.payment-methods {
    text-align: center;
}

.payment-methods h4 {
    color: var(--text-dark);
    margin-bottom: 1rem;
    font-size: 1.125rem;
}

.payment-icons {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
}

.payment-icons i {
    font-size: 2rem;
    color: var(--text-light);
    transition: var(--transition);
}

.payment-icons i:hover {
    color: var(--primary-color);
    transform: translateY(-3px);
}

.pricing-note {
    display: flex;
    align-items: center;
}

.pricing-note p {
    color: var(--text-light);
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 0;
}

.pricing-note i {
    color: var(--primary-color);
    margin-right: 0.5rem;
}

/* Pricing Responsive */
@media (max-width: 768px) {
    .pricing-section {
        padding: 80px 0;
    }
    
    .pricing-section h2 {
        font-size: 2rem;
    }
    
    .pricing-intro {
        font-size: 1.1rem;
        padding: 0 1rem;
    }
    
    .pricing-tabs {
        margin: 2rem auto 3rem;
        padding: 0 1rem;
        max-width: 100%;
    }
    
    .pricing-tab-button {
        padding: 0.75rem 1rem;
        gap: 0.25rem;
    }
    
    .pricing-tab-button span {
        font-size: 0.8rem;
    }
    
    .pricing-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        padding: 0 1rem;
    }
    
    .pricing-card {
        padding: 2rem;
    }
    
    .pricing-card.featured {
        transform: none;
    }
    
    .price-amount {
        font-size: 2.5rem;
    }
    
    .pricing-info {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        padding: 1.5rem;
    }
    
    .payment-icons {
        gap: 1rem;
    }
    
    .payment-icons i {
        font-size: 1.5rem;
    }
}

/* Quiz Responsive */
@media (max-width: 768px) {
    .quiz-section {
        padding: 80px 0;
    }
    
    .quiz-section h2 {
        font-size: 2rem;
    }
    
    .quiz-intro {
        font-size: 1.1rem;
        padding: 0 1rem;
    }
    
    .quiz-start {
        padding: 2.5rem 1.5rem;
    }
    
    .quiz-icon-animated {
        width: 100px;
        height: 100px;
    }
    
    .quiz-icon-animated i {
        font-size: 2.5rem;
    }
    
    .quiz-start h3 {
        font-size: 1.5rem;
    }
    
    .quiz-card {
        padding: 2rem 1.5rem;
    }
    
    .question-text {
        font-size: 1.25rem;
    }
    
    .question-icon {
        font-size: 3rem;
    }
    
    .answer-buttons {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .answer-btn {
        padding: 1.5rem;
        flex-direction: row;
        justify-content: center;
    }
    
    .answer-btn i {
        font-size: 2rem;
    }
    
    .answer-btn span {
        font-size: 1.25rem;
    }
    
    .score-circle {
        width: 150px;
        height: 150px;
    }
    
    .score-number {
        font-size: 2.5rem;
    }
    
    #result-title {
        font-size: 1.75rem;
    }
    
    #result-message {
        font-size: 1rem;
    }
    
    .results-content {
        padding: 2rem 1.5rem;
    }
    
    .summary-item {
        padding: 1rem;
    }
}