@import url('https://fonts.googleapis.com/css2?family=Orienta&family=Playfair+Display:ital,wght@0,400..900;1,400..900&display=swap');

/* ===== VARIABLES CSS ===== */
:root {
    --primary-violet: #9e2991;
    --primary-white: #FFF;
    --primary-black: #000;
    --primary-turquoise: #58c4c1;
    --gray-light: #f8f9fa;
    --gray-medium: #6c757d;
    --gray-dark: #343a40;
    --font-family: 'Playfair Display', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    --shadow-soft: 0 4px 20px rgba(0,0,0,0.1);
    --shadow-strong: 0 8px 30px rgba(0,0,0,0.15);
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --border-radius: 12px;
}

/* ===== RESET & BASE ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-family);
    line-height: 1.6;
    color: var(--gray-dark);
    overflow-x: hidden;
}

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

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

/* ===== UTILITIES ===== */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.cta-button {
    display: inline-block;
    background: linear-gradient(135deg, var(--primary-violet), #b83aa4);
    color: var(--primary-white);
    padding: 1rem 2rem;
    border-radius: var(--border-radius);
    font-weight: 600;
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: var(--transition);
    border: none;
    cursor: pointer;
    box-shadow: var(--shadow-soft);
    position: relative;
    overflow: hidden;
}

.cta-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: var(--transition);
}

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

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-strong);
}

.cta-button.secondary {
    background: transparent;
    border: 2px solid var(--primary-violet);
    color: var(--primary-violet);
}

.cta-button.secondary:hover {
    background: var(--primary-violet);
    color: var(--primary-white);
}

/* ===== NAVIGATION ===== */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    transition: var(--transition);
    border-bottom: 1px solid rgba(158, 41, 145, 0.1);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px;
}

.nav-logo h2 {
    color: var(--primary-violet);
    font-size: 1.5rem;
    font-weight: 700;
}

.nav-logo span {
    color: var(--gray-medium);
    font-size: 0.9rem;
    font-weight: 400;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-link {
    color: var(--gray-dark);
    font-weight: 500;
    font-size: 1rem;
    position: relative;
    transition: var(--transition);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-violet);
    transition: var(--transition);
}

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

.nav-link:hover,
.nav-link.active {
    color: var(--primary-violet);
}

.nav-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 4px;
}

.nav-toggle span {
    width: 25px;
    height: 3px;
    background: var(--primary-violet);
    transition: var(--transition);
}

/* ===== HERO SECTION ===== */
.hero {
    position: relative;
    height: 100vh;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

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

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

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        45deg,
        rgba(0, 0, 0, 0.4) 0%,
        rgba(158, 41, 145, 0.3) 50%,
        rgba(0, 0, 0, 0.5) 100%
    );
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 3;
    text-align: center;
    color: var(--primary-white);
    max-width: 800px;
    padding: 2rem;
}

.hero-title {
    font-size: 4rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
    animation: fadeInUp 1s ease-out;
}

.hero-subtitle {
    display: block;
    font-size: 2rem;
    font-weight: 300;
    color: var(--primary-turquoise);
    margin-top: 0.5rem;
}

/* ===== HERO PAGE SECTION ===== */
.hero-page {
    position: relative;
    height: 60vh;
    min-height: 500px;
    background: url('./assets/prestations.png') center center/cover;
    display: flex;
    align-items: center;
    overflow: hidden;
    margin-top: 80px;
}

.hero-page-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.6), rgba(158, 41, 145, 0.4));
    z-index: 1;
}

.hero-page-overlay::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="white" fill-opacity="0.05"/><circle cx="75" cy="75" r="1" fill="white" fill-opacity="0.03"/><circle cx="50" cy="10" r="0.5" fill="white" fill-opacity="0.04"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    opacity: 0.3;
}

.hero-page-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: var(--primary-white);
    max-width: 800px;
    margin: 0 auto;
}

.breadcrumb {
    margin-bottom: 2rem;
    font-size: 0.95rem;
    opacity: 0.9;
}

.breadcrumb a {
    color: var(--primary-white);
    text-decoration: none;
    transition: var(--transition);
}

.breadcrumb a:hover {
    opacity: 0.8;
}

.separator {
    margin: 0 0.8rem;
    opacity: 0.6;
}

.current {
    opacity: 0.7;
}

.hero-page-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.1;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.hero-page-description {
    font-size: 1.2rem;
    margin-bottom: 3rem;
    opacity: 0.95;
    line-height: 1.6;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.hero-page-stats {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin-top: 2rem;
}

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

.hero-page-stats .stat-item:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.15);
}

.hero-page-stats .stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--primary-white);
}

.hero-page-stats .stat-label {
    font-size: 0.9rem;
    opacity: 0.9;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* ===== SERVICES DYNAMIC SECTION ===== */
.services-dynamic {
    padding: 5rem 0;
    background: var(--primary-white);
}

.services-intro {
    text-align: center;
    margin-bottom: 4rem;
}

.services-intro h2 {
    font-size: 2.5rem;
    color: var(--primary-violet);
    margin-bottom: 1rem;
    font-weight: 700;
}

.services-intro p {
    font-size: 1.1rem;
    color: var(--gray-medium);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

/* ===== SERVICE SELECTOR ===== */
.service-selector {
    margin-bottom: 3rem;
}

.selector-tabs {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.tab-button {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    padding: 1rem 2rem;
    background: rgba(158, 41, 145, 0.05);
    border: 2px solid rgba(158, 41, 145, 0.1);
    border-radius: 12px;
    color: var(--gray-dark);
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.tab-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(158, 41, 145, 0.1), transparent);
    transition: left 0.5s ease;
}

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

.tab-button:hover {
    background: rgba(158, 41, 145, 0.1);
    border-color: rgba(158, 41, 145, 0.2);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(158, 41, 145, 0.15);
}

.tab-button.active {
    background: linear-gradient(135deg, var(--primary-violet), var(--primary-turquoise));
    border-color: var(--primary-violet);
    color: var(--primary-white);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(158, 41, 145, 0.3);
}

.tab-button.active::before {
    display: none;
}

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

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

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

/* ===== SERVICE CONTENT DYNAMIC ===== */
.service-content-dynamic {
    position: relative;
    min-height: 600px;
}

.service-panel {
    display: none;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.service-panel.active {
    display: block;
    opacity: 1;
    transform: translateY(0);
    animation: slideInUp 0.6s ease-out;
}

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

.service-detail {
    margin-bottom: 5rem;
    padding: 3rem;
    background: var(--primary-white);
    border-radius: 20px;
    box-shadow: var(--shadow-soft);
    border: 1px solid rgba(158, 41, 145, 0.1);
    transition: var(--transition);
}

.service-detail:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-strong);
}

.service-detail-header {
    display: flex;
    align-items: center;
    gap: 2rem;
    margin-bottom: 2.5rem;
    padding-bottom: 2rem;
    border-bottom: 2px solid rgba(158, 41, 145, 0.1);
}

.service-detail .service-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-violet), var(--primary-turquoise));
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-white);
    font-size: 2rem;
    flex-shrink: 0;
}

.service-title h3 {
    font-size: 2rem;
    color: var(--primary-violet);
    margin-bottom: 0.5rem;
    font-weight: 700;
}

.service-subtitle {
    color: var(--gray-medium);
    font-size: 1.1rem;
    margin: 0;
}

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

.service-description h4 {
    color: var(--primary-violet);
    font-size: 1.3rem;
    margin-bottom: 1rem;
    margin-top: 2rem;
    font-weight: 600;
}

.service-description h4:first-child {
    margin-top: 0;
}

.service-description p {
    color: var(--gray-dark);
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.service-features {
    list-style: none;
    padding: 0;
    margin: 1.5rem 0;
}

.service-features li {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0.5rem 0;
    color: var(--gray-dark);
}

.service-features i {
    color: var(--primary-turquoise);
    font-size: 1rem;
    width: 16px;
}

.work-process {
    margin-top: 2rem;
}

.process-step {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
    padding: 1.5rem;
    background: rgba(88, 196, 193, 0.05);
    border-radius: 12px;
    border-left: 4px solid var(--primary-turquoise);
}

.step-number {
    width: 40px;
    height: 40px;
    background: var(--primary-turquoise);
    color: var(--primary-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    flex-shrink: 0;
    font-size: 1.1rem;
}

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

.step-content p {
    color: var(--gray-medium);
    margin: 0;
    line-height: 1.5;
}

.service-sidebar {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.service-card-info {
    background: rgba(158, 41, 145, 0.05);
    padding: 2rem;
    border-radius: 16px;
    border: 1px solid rgba(158, 41, 145, 0.1);
}

.service-card-info h4 {
    color: var(--primary-violet);
    margin-bottom: 1.5rem;
    font-size: 1.2rem;
    font-weight: 600;
}

.info-item {
    padding: 0.8rem 0;
    border-bottom: 1px solid rgba(158, 41, 145, 0.1);
    color: var(--gray-dark);
}

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

.info-item strong {
    color: var(--primary-violet);
    font-weight: 600;
}

.service-certifications {
    background: linear-gradient(135deg, rgba(158, 41, 145, 0.05), rgba(88, 196, 193, 0.05));
    padding: 2rem;
    border-radius: 16px;
    border: 1px solid rgba(158, 41, 145, 0.1);
}

.service-certifications h4 {
    color: var(--primary-violet);
    margin-bottom: 1.5rem;
    font-size: 1.2rem;
    font-weight: 600;
}

.service-certifications .cert-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0.8rem 0;
    margin: 0.5rem 0;
    color: var(--gray-dark);
}

.service-certifications .cert-item i {
    color: var(--primary-turquoise);
    font-size: 1.2rem;
    width: 20px;
    margin-left: 0.5rem;
    flex-shrink: 0;
}

/* ===== VIDEO SHOWCASE SECTION ===== */
.video-showcase {
    padding: 6rem 0;
    background: linear-gradient(135deg, rgba(158, 41, 145, 0.03), rgba(88, 196, 193, 0.03));
    position: relative;
    overflow: hidden;
}

.video-showcase::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="dots" width="20" height="20" patternUnits="userSpaceOnUse"><circle cx="10" cy="10" r="1" fill="rgba(158,41,145,0.05)"/></pattern></defs><rect width="100" height="100" fill="url(%23dots)"/></svg>');
    opacity: 0.5;
    z-index: 1;
}

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

.video-intro {
    text-align: center;
    margin-bottom: 4rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.video-intro .section-badge {
    background: linear-gradient(135deg, var(--primary-violet), var(--primary-turquoise));
    color: var(--primary-white);
    padding: 0.8rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    display: inline-block;
    margin-bottom: 2rem;
    box-shadow: 0 8px 25px rgba(158, 41, 145, 0.2);
}

.video-intro h2 {
    font-size: 3rem;
    color: var(--primary-violet);
    margin-bottom: 1.5rem;
    font-weight: 700;
    line-height: 1.2;
}

.video-intro p {
    font-size: 1.2rem;
    color: var(--gray-medium);
    line-height: 1.7;
    max-width: 700px;
    margin: 0 auto;
}

.video-player-container {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
    align-items: center;
}

.video-player {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    background: var(--primary-black);
    aspect-ratio: 16/9;
}

.video-player video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    border-radius: 20px;
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.4), rgba(158, 41, 145, 0.3));
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    opacity: 1;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border-radius: 20px;
}

.video-player:hover .video-overlay {
    opacity: 0.8;
}

.video-player video:not([data-playing]) ~ .video-overlay {
    opacity: 1;
}

.video-player video[data-playing] ~ .video-overlay {
    opacity: 0;
    pointer-events: none;
}

.play-button {
    width: 100px;
    height: 100px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    color: var(--primary-violet);
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    margin-bottom: 2rem;
    backdrop-filter: blur(10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.play-button:hover {
    transform: scale(1.1);
    background: var(--primary-white);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

.play-button i {
    margin-left: 4px; /* Centrage visuel du triangle */
}

.video-info {
    text-align: center;
    color: var(--primary-white);
}

.video-info h3 {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.video-info p {
    font-size: 1.1rem;
    opacity: 0.95;
    text-shadow: 0 1px 5px rgba(0, 0, 0, 0.3);
}

.video-features {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    padding: 2rem;
    background: var(--primary-white);
    border-radius: 16px;
    box-shadow: var(--shadow-soft);
    border: 1px solid rgba(158, 41, 145, 0.1);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.feature-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(158, 41, 145, 0.05), transparent);
    transition: left 0.6s ease;
}

.feature-item:hover::before {
    left: 100%;
}

.feature-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-strong);
    border-color: rgba(158, 41, 145, 0.2);
}

.feature-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-violet), var(--primary-turquoise));
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-white);
    font-size: 1.5rem;
    flex-shrink: 0;
    box-shadow: 0 8px 25px rgba(158, 41, 145, 0.2);
}

.feature-content h4 {
    color: var(--primary-violet);
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.feature-content p {
    color: var(--gray-medium);
    line-height: 1.6;
    margin: 0;
}

/* ===== GALLERY SECTION ===== */
.gallery-section {
    padding: 6rem 0;
    background: linear-gradient(135deg, rgba(158, 41, 145, 0.02), rgba(88, 196, 193, 0.02));
}

.gallery-header {
    text-align: center;
    margin-bottom: 4rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.gallery-header .section-badge {
    background: linear-gradient(135deg, var(--primary-violet), var(--primary-turquoise));
    color: var(--primary-white);
    padding: 0.8rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    display: inline-block;
    margin-bottom: 2rem;
    box-shadow: 0 8px 25px rgba(158, 41, 145, 0.2);
}

.gallery-header h2 {
    font-size: 3rem;
    color: var(--primary-violet);
    margin-bottom: 1.5rem;
    font-weight: 700;
    line-height: 1.2;
}

.gallery-header p {
    font-size: 1.2rem;
    color: var(--gray-medium);
    line-height: 1.7;
    max-width: 700px;
    margin: 0 auto;
}



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

.gallery-item {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    background: var(--primary-white);
    box-shadow: var(--shadow-soft);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
}

.gallery-item:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-strong);
}

.gallery-image {
    position: relative;
    aspect-ratio: 4/3;
    overflow: hidden;
}

.gallery-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.gallery-item:hover .gallery-image img {
    transform: scale(1.05);
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

.view-btn {
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.9);
    border: none;
    border-radius: 50%;
    color: var(--primary-violet);
    font-size: 1.2rem;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    backdrop-filter: blur(10px);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
}

.view-btn:hover {
    transform: scale(1.1);
    background: var(--primary-white);
    color: var(--primary-violet);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
}

.gallery-cta {
    background: linear-gradient(135deg, var(--primary-violet), var(--primary-turquoise));
    border-radius: 25px;
    padding: 4rem 2rem;
    text-align: center;
    color: var(--primary-white);
    position: relative;
    overflow: hidden;
}

.gallery-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="gallery-dots" width="20" height="20" patternUnits="userSpaceOnUse"><circle cx="10" cy="10" r="1" fill="rgba(255,255,255,0.1)"/></pattern></defs><rect width="100" height="100" fill="url(%23gallery-dots)"/></svg>');
    opacity: 0.3;
}

.gallery-cta-content {
    position: relative;
    z-index: 2;
    max-width: 600px;
    margin: 0 auto;
}

.gallery-cta-content h3 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.gallery-cta-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.95;
    line-height: 1.6;
}

.gallery-cta-actions {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.gallery-cta-actions .cta-button {
    background: rgba(255, 255, 255, 0.15);
    border: 2px solid rgba(255, 255, 255, 0.3);
    color: var(--primary-white);
    backdrop-filter: blur(10px);
}

.gallery-cta-actions .cta-button:hover {
    background: var(--primary-white);
    color: var(--primary-violet);
    border-color: var(--primary-white);
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}

.gallery-cta-actions .cta-button.secondary {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.2);
}

.gallery-cta-actions .cta-button.secondary:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.4);
    color: var(--primary-white);
    transform: translateY(-3px);
}

/* ===== LIGHTBOX ===== */
.lightbox {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    z-index: 9999;
    backdrop-filter: blur(10px);
}

.lightbox.active {
    display: flex;
    justify-content: center;
    align-items: center;
    animation: fadeIn 0.3s ease;
}

.lightbox-content {
    position: relative;
    max-width: 90vw;
    max-height: 90vh;
    display: flex;
    justify-content: center;
    align-items: center;
}

.lightbox-close {
    position: absolute;
    top: -50px;
    right: 0;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border: none;
    border-radius: 50%;
    color: var(--primary-white);
    font-size: 1.2rem;
    cursor: pointer;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    z-index: 10001;
}

.lightbox-close:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: scale(1.1);
}

.lightbox-prev,
.lightbox-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.1);
    border: none;
    border-radius: 50%;
    color: var(--primary-white);
    font-size: 1.2rem;
    cursor: pointer;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    z-index: 10001;
}

.lightbox-prev {
    left: -70px;
}

.lightbox-next {
    right: -70px;
}

.lightbox-prev:hover,
.lightbox-next:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-50%) scale(1.1);
}

#lightbox-image {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    border-radius: 10px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.lightbox-counter {
    position: absolute;
    bottom: -50px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(255, 255, 255, 0.1);
    color: var(--primary-white);
    padding: 0.5rem 1rem;
    border-radius: 25px;
    font-size: 0.9rem;
    backdrop-filter: blur(10px);
}

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

/* ===== CONTACT SECTION ===== */
.contact-section {
    padding: 6rem 0;
    background: linear-gradient(135deg, rgba(158, 41, 145, 0.02), rgba(88, 196, 193, 0.02));
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.contact-header {
    margin-bottom: 3rem;
}

.contact-header .section-badge {
    background: linear-gradient(135deg, var(--primary-violet), var(--primary-turquoise));
    color: var(--primary-white);
    padding: 0.8rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    display: inline-block;
    margin-bottom: 2rem;
    box-shadow: 0 8px 25px rgba(158, 41, 145, 0.2);
}

.contact-header h2 {
    font-size: 3rem;
    color: var(--primary-violet);
    margin-bottom: 1.5rem;
    font-weight: 700;
    line-height: 1.2;
}

.contact-header p {
    font-size: 1.2rem;
    color: var(--gray-medium);
    line-height: 1.7;
}

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

.contact-card {
    background: var(--primary-white);
    padding: 2rem;
    border-radius: 20px;
    box-shadow: var(--shadow-soft);
    border: 1px solid rgba(158, 41, 145, 0.1);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.contact-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(158, 41, 145, 0.05), transparent);
    transition: left 0.6s ease;
}

.contact-card:hover::before {
    left: 100%;
}

.contact-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-strong);
    border-color: rgba(158, 41, 145, 0.2);
}

.contact-card-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-violet), var(--primary-turquoise));
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-white);
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    box-shadow: 0 8px 25px rgba(158, 41, 145, 0.2);
}

.contact-card-content h3 {
    color: var(--primary-violet);
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.contact-card-content p {
    color: var(--gray-medium);
    margin-bottom: 1rem;
    line-height: 1.6;
}

.contact-link {
    color: var(--primary-violet);
    font-weight: 600;
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-link:hover {
    color: var(--primary-turquoise);
}

/* Contact Form */
.contact-form-container {
    background: var(--primary-white);
    padding: 3rem;
    border-radius: 25px;
    box-shadow: var(--shadow-strong);
    border: 1px solid rgba(158, 41, 145, 0.1);
}

.contact-form-container h3 {
    color: var(--primary-violet);
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.contact-form-container > p {
    color: var(--gray-medium);
    margin-bottom: 2rem;
    line-height: 1.6;
}

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

.form-group {
    display: flex;
    flex-direction: column;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.form-field {
    display: flex;
    flex-direction: column;
}

.form-field label {
    font-weight: 600;
    color: var(--gray-dark);
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
}

.form-field input,
.form-field select,
.form-field textarea {
    padding: 1rem;
    border: 2px solid rgba(158, 41, 145, 0.1);
    border-radius: 10px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: var(--primary-white);
    color: var(--gray-dark);
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
    outline: none;
    border-color: var(--primary-violet);
    box-shadow: 0 0 0 3px rgba(158, 41, 145, 0.1);
}

.form-field textarea {
    resize: vertical;
    min-height: 120px;
}

.form-checkbox {
    display: flex;
    align-items: flex-start;
    gap: 0.8rem;
}

.form-checkbox input[type="checkbox"] {
    width: 18px;
    height: 18px;
    margin: 0;
    accent-color: var(--primary-violet);
}

.form-checkbox label {
    font-size: 0.9rem;
    color: var(--gray-medium);
    line-height: 1.5;
}

.form-actions {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    margin-top: 1rem;
}

.form-actions .cta-button {
    min-width: 250px;
}

.form-note {
    color: var(--gray-medium);
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin: 0;
}

.form-note i {
    color: var(--primary-turquoise);
}

/* Social Contact Section */
.social-contact-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, rgba(158, 41, 145, 0.05), rgba(88, 196, 193, 0.05));
}

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

.social-contact-header h2 {
    font-size: 2.5rem;
    color: var(--primary-violet);
    margin-bottom: 1rem;
    font-weight: 700;
}

.social-contact-header p {
    font-size: 1.2rem;
    color: var(--gray-medium);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.7;
}

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

.social-contact-card {
    background: var(--primary-white);
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: var(--shadow-soft);
    border: 1px solid rgba(158, 41, 145, 0.1);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 1.5rem;
    position: relative;
    overflow: hidden;
}

.social-contact-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(158, 41, 145, 0.05), transparent);
    transition: left 0.6s ease;
}

.social-contact-card:hover::before {
    left: 100%;
}

.social-contact-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-strong);
    border-color: rgba(158, 41, 145, 0.2);
}

.social-contact-icon {
    width: 60px;
    height: 60px;
    flex-shrink: 0;
    border-radius: 15px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(158, 41, 145, 0.1), rgba(88, 196, 193, 0.1));
}

.social-contact-icon img {
    width: 40px;
    height: 40px;
    object-fit: contain;
}

.social-contact-content {
    flex: 1;
}

.social-contact-content h3 {
    color: var(--primary-violet);
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.social-contact-content p {
    color: var(--gray-medium);
    line-height: 1.6;
    margin: 0;
}

.social-contact-arrow {
    color: var(--primary-turquoise);
    font-size: 1.2rem;
    opacity: 0.7;
    transition: all 0.3s ease;
}

.social-contact-card:hover .social-contact-arrow {
    opacity: 1;
    transform: translateX(5px);
}

/* ===== LEGAL SECTION ===== */
.legal-section {
    padding: 6rem 0;
    background: linear-gradient(135deg, rgba(158, 41, 145, 0.02), rgba(88, 196, 193, 0.02));
}

.legal-content {
    max-width: 900px;
    margin: 0 auto;
}

.legal-block {
    background: var(--primary-white);
    border-radius: 20px;
    padding: 3rem;
    margin-bottom: 2rem;
    box-shadow: var(--shadow-soft);
    border: 1px solid rgba(158, 41, 145, 0.1);
    position: relative;
    overflow: hidden;
}

.legal-block::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(135deg, var(--primary-violet), var(--primary-turquoise));
}

.legal-block h2 {
    color: var(--primary-violet);
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid rgba(158, 41, 145, 0.1);
}

.legal-info h3 {
    color: var(--primary-violet);
    font-size: 1.2rem;
    font-weight: 600;
    margin-top: 1.5rem;
    margin-bottom: 0.8rem;
}

.legal-info h3:first-child {
    margin-top: 0;
}

.legal-info p {
    color: var(--gray-dark);
    line-height: 1.7;
    margin-bottom: 1.2rem;
}

.legal-info p:last-child {
    margin-bottom: 0;
}

.legal-info ul {
    color: var(--gray-dark);
    line-height: 1.7;
    margin: 1rem 0;
    padding-left: 1.5rem;
}

.legal-info li {
    margin-bottom: 0.5rem;
}

.legal-info a {
    color: var(--primary-violet);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.legal-info a:hover {
    color: var(--primary-turquoise);
    text-decoration: underline;
}

.legal-footer {
    text-align: center;
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(158, 41, 145, 0.1);
}

.legal-footer small {
    color: var(--gray-medium);
    font-style: italic;
}

/* ===== GUARANTEES SECTION ===== */
.guarantees-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, rgba(158, 41, 145, 0.05), rgba(88, 196, 193, 0.05));
}

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

.guarantees-header h2 {
    font-size: 2.5rem;
    color: var(--primary-violet);
    margin-bottom: 1rem;
    font-weight: 700;
}

.guarantees-header p {
    font-size: 1.1rem;
    color: var(--gray-medium);
    max-width: 600px;
    margin: 0 auto;
}

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

.guarantee-card {
    background: var(--primary-white);
    padding: 2.5rem;
    border-radius: 16px;
    text-align: center;
    box-shadow: var(--shadow-soft);
    border: 1px solid rgba(158, 41, 145, 0.1);
    transition: var(--transition);
}

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

.guarantee-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-violet), var(--primary-turquoise));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: var(--primary-white);
    font-size: 2rem;
}

.guarantee-card h3 {
    color: var(--primary-violet);
    font-size: 1.3rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.guarantee-card p {
    color: var(--gray-medium);
    line-height: 1.6;
}

/* ===== CONTACT CTA SECTION ===== */
.contact-cta {
    padding: 5rem 0;
    background: linear-gradient(135deg, var(--primary-violet), var(--primary-turquoise));
    color: var(--primary-white);
    text-align: center;
}

.contact-cta-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.contact-cta-content p {
    font-size: 1.2rem;
    margin-bottom: 2.5rem;
    opacity: 0.95;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

.contact-actions {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.contact-actions .cta-button {
    background: var(--primary-white);
    color: var(--primary-violet);
    font-weight: 600;
    min-width: 200px;
}

.contact-actions .cta-button:hover {
    background: rgba(255, 255, 255, 0.9);
    transform: translateY(-2px);
}

.contact-actions .cta-button.secondary {
    background: rgba(255, 255, 255, 0.15);
    color: var(--primary-white);
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.contact-actions .cta-button.secondary:hover {
    background: rgba(255, 255, 255, 0.25);
    border-color: rgba(255, 255, 255, 0.5);
}

.contact-actions .cta-button i {
    margin-right: 0.5rem;
}

.hero-description {
    font-size: 1.5rem;
    margin-bottom: 2rem;
    font-weight: 300;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.5);
    animation: fadeInUp 1s ease-out 0.2s both;
}

.hero-content .cta-button {
    margin-top: 1rem;
    animation: fadeInUp 1s ease-out 0.4s both;
}

.video-controls {
    bottom: 2rem;
    right: 2rem;
    z-index: 4;
    display: flex;
    gap: 1rem;
    display: flex;
    justify-content: center;
    margin-top: 10px;
}

.video-toggle,
.sound-toggle {
    background: rgba(255, 255, 255, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: var(--primary-white);
    padding: 0.8rem;
    border-radius: 50%;
    cursor: pointer;
    backdrop-filter: blur(10px);
    transition: var(--transition);
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.video-toggle:hover,
.sound-toggle:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: scale(1.1);
}

.video-toggle .pause-icon,
.sound-toggle .sound-on {
    display: none;
}

.video-toggle.playing .play-icon {
    display: none;
}

.video-toggle.playing .pause-icon {
    display: block;
}

.sound-toggle.unmuted .sound-off {
    display: none;
}

.sound-toggle.unmuted .sound-on {
    display: block;
}

.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 4;
    color: var(--primary-white);
    text-align: center;
    animation: bounce 2s infinite;
}

.scroll-arrow {
    width: 2px;
    height: 30px;
    background: var(--primary-white);
    margin: 0 auto 0.5rem;
    position: relative;
}

.scroll-arrow::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: -4px;
    width: 10px;
    height: 10px;
    border-right: 2px solid var(--primary-white);
    border-bottom: 2px solid var(--primary-white);
    transform: rotate(45deg);
}

/* ===== SECTIONS ===== */
section {
    padding: 6rem 0;
}

/* ===== PRESENTATION SECTION ===== */
.presentation {
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    position: relative;
    overflow: hidden;
}

.presentation::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 300px;
    height: 300px;
    background: linear-gradient(135deg, rgba(158, 41, 145, 0.05), rgba(88, 196, 193, 0.05));
    border-radius: 50%;
    transform: translate(50%, -50%);
}

.presentation-header {
    text-align: center;
    margin-bottom: 4rem;
    position: relative;
}

.section-badge {
    display: inline-block;
    background: linear-gradient(135deg, var(--primary-violet), var(--primary-turquoise));
    color: var(--primary-white);
    padding: 0.5rem 1.5rem;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1.5rem;
    box-shadow: var(--shadow-soft);
}

.presentation h2 {
    font-size: 3rem;
    color: var(--primary-violet);
    margin-bottom: 1.5rem;
    font-weight: 700;
    line-height: 1.2;
}

.section-lead {
    font-size: 1.4rem;
    color: var(--gray-medium);
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.6;
    font-weight: 400;
}

.presentation-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
    align-items: start;
    margin-bottom: 4rem;
}

.content-main {
    position: relative;
}

.story-text {
    margin-bottom: 3rem;
}

.story-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--gray-dark);
    margin-bottom: 1.5rem;
}

.story-text strong {
    color: var(--primary-violet);
    font-weight: 600;
}

.certifications {
    display: grid;
    gap: 1.5rem;
}

.cert-item {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding: 2rem;
    background: var(--primary-white);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-soft);
    border-left: 4px solid var(--primary-violet);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.cert-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(158, 41, 145, 0.02), rgba(88, 196, 193, 0.02));
    opacity: 0;
    transition: var(--transition);
}

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

.cert-item:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-strong);
}

.cert-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-violet), var(--primary-turquoise));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-white);
    font-size: 1.5rem;
    flex-shrink: 0;
    box-shadow: var(--shadow-soft);
}

.cert-content h4 {
    color: var(--primary-violet);
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.cert-content p {
    color: var(--gray-medium);
    font-size: 1rem;
    line-height: 1.5;
}

.stats-sidebar {
    position: sticky;
    top: 100px;
}

.stats-grid {
    display: grid;
    gap: 1.5rem;
}

.stat-item {
    background: var(--primary-white);
    padding: 2rem 1.5rem;
    border-radius: var(--border-radius);
    text-align: center;
    box-shadow: var(--shadow-soft);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.stat-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(135deg, var(--primary-violet), var(--primary-turquoise));
}

.stat-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-strong);
}

.stats-sidebar .stat-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, rgba(158, 41, 145, 0.1), rgba(88, 196, 193, 0.1));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    color: var(--primary-violet);
    font-size: 1.2rem;
}

.stats-sidebar .stat-number {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-violet);
    margin-bottom: 0.5rem;
    line-height: 1;
}

.stats-sidebar .stat-label {
    color: var(--gray-medium);
    font-weight: 500;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.expertise-areas {
    margin-top: 3rem;
    padding-top: 3rem;
    border-top: 1px solid rgba(158, 41, 145, 0.1);
}

.expertise-areas h3 {
    text-align: center;
    font-size: 2rem;
    color: var(--primary-violet);
    margin-bottom: 3rem;
    font-weight: 600;
    position: relative;
}

.expertise-areas h3::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: linear-gradient(135deg, var(--primary-violet), var(--primary-turquoise));
    border-radius: 2px;
}

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

.expertise-card {
    background: var(--primary-white);
    padding: 2.5rem 2rem;
    border-radius: var(--border-radius);
    text-align: center;
    box-shadow: var(--shadow-soft);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(158, 41, 145, 0.1);
}

.expertise-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(158, 41, 145, 0.02), rgba(88, 196, 193, 0.02));
    opacity: 0;
    transition: var(--transition);
}

.expertise-card:hover::before {
    opacity: 1;
}

.expertise-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-strong);
    border-color: var(--primary-violet);
}

.expertise-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-violet), var(--primary-turquoise));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: var(--primary-white);
    font-size: 2rem;
    box-shadow: var(--shadow-soft);
    position: relative;
    z-index: 1;
}

.expertise-card h4 {
    color: var(--primary-violet);
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 1rem;
    position: relative;
    z-index: 1;
}

.expertise-card p {
    color: var(--gray-medium);
    line-height: 1.6;
    font-size: 1rem;
    position: relative;
    z-index: 1;
}

/* ===== SERVICES SECTION ===== */
.services-section {
    background: var(--primary-white);
    position: relative;
    overflow: hidden;
}

.services-section::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 250px;
    height: 250px;
    background: linear-gradient(135deg, rgba(158, 41, 145, 0.03), rgba(88, 196, 193, 0.03));
    border-radius: 50%;
    transform: translate(-50%, 50%);
}

.services-header {
    text-align: center;
    margin-bottom: 4rem;
    position: relative;
}

.services-header .section-badge {
    display: inline-block;
    background: linear-gradient(135deg, var(--primary-violet), var(--primary-turquoise));
    color: var(--primary-white);
    padding: 0.5rem 1.5rem;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1.5rem;
    box-shadow: var(--shadow-soft);
}

.services-section h2 {
    font-size: 3rem;
    color: var(--primary-violet);
    margin-bottom: 1.5rem;
    font-weight: 700;
    line-height: 1.2;
}

.services-header .section-lead {
    font-size: 1.4rem;
    color: var(--gray-medium);
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.6;
    font-weight: 400;
}

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

.service-card {
    background: var(--primary-white);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-soft);
    overflow: hidden;
    transition: var(--transition);
    border: 1px solid rgba(158, 41, 145, 0.1);
    position: relative;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-strong);
    border-color: var(--primary-violet);
}

.service-image {
    position: relative;
    height: 220px;
    overflow: hidden;
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.service-card:hover .service-image img {
    transform: scale(1.05);
}

.service-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(158, 41, 145, 0.8), rgba(88, 196, 193, 0.6));
    opacity: 0;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
}

.service-card:hover .service-overlay {
    opacity: 1;
}

.service-icon {
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-white);
    font-size: 1.8rem;
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.service-content {
    padding: 2rem;
}

.service-content h3 {
    color: var(--primary-violet);
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    line-height: 1.3;
}

.service-content p {
    color: var(--gray-dark);
    line-height: 1.6;
    margin-bottom: 1.5rem;
    font-size: 1rem;
}

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

.service-features li {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    margin-bottom: 0.8rem;
    font-size: 0.95rem;
    color: var(--gray-medium);
}

.service-features i {
    color: var(--primary-turquoise);
    font-size: 0.8rem;
    width: 16px;
}

.services-benefits {
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    padding: 3rem 0;
    margin: 4rem 0;
    border-radius: var(--border-radius);
    position: relative;
}

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

.benefit-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem;
    background: var(--primary-white);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-soft);
    transition: var(--transition);
    border: 1px solid rgba(158, 41, 145, 0.05);
}

.benefit-item:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-strong);
    border-color: var(--primary-violet);
}

.benefit-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary-violet), var(--primary-turquoise));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-white);
    font-size: 1.2rem;
    flex-shrink: 0;
    box-shadow: var(--shadow-soft);
}

.benefit-item h4 {
    color: var(--primary-violet);
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.3rem;
}

.benefit-item p {
    color: var(--gray-medium);
    font-size: 0.95rem;
    line-height: 1.4;
    margin: 0;
}

.services-cta {
    background: linear-gradient(135deg, var(--primary-violet), var(--primary-turquoise));
    padding: 3rem;
    border-radius: var(--border-radius);
    color: var(--primary-white);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.services-cta::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
    animation: pulse 4s ease-in-out infinite;
}

.cta-content h3 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1rem;
    position: relative;
    z-index: 1;
}

.cta-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
    position: relative;
    z-index: 1;
}

.cta-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    position: relative;
    z-index: 1;
}

.cta-actions .cta-button {
    background: var(--primary-white);
    color: var(--primary-violet);
    border: 2px solid var(--primary-white);
}

.cta-actions .cta-button:hover {
    background: transparent;
    color: var(--primary-white);
    border-color: var(--primary-white);
}

.cta-actions .cta-button.secondary {
    background: transparent;
    color: var(--primary-white);
    border: 2px solid rgba(255, 255, 255, 0.5);
}

.cta-actions .cta-button.secondary:hover {
    background: var(--primary-white);
    color: var(--primary-violet);
    border-color: var(--primary-white);
}

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

/* ===== SOCIAL SECTION ===== */
.social-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    position: relative;
    overflow: hidden;
}

.social-section::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 400px;
    height: 400px;
    background: linear-gradient(135deg, rgba(158, 41, 145, 0.05), rgba(88, 196, 193, 0.05));
    border-radius: 50%;
    transform: translate(50%, -50%);
}

.social-header {
    text-align: center;
    margin-bottom: 4rem;
    position: relative;
}

.social-header .section-badge {
    display: inline-block;
    background: linear-gradient(135deg, var(--primary-violet), var(--primary-turquoise));
    color: var(--primary-white);
    padding: 0.5rem 1.5rem;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1.5rem;
    box-shadow: var(--shadow-soft);
}

.social-section h2 {
    font-size: 3rem;
    color: var(--primary-violet);
    margin-bottom: 1.5rem;
    font-weight: 700;
    line-height: 1.2;
}

.social-header .section-lead {
    font-size: 1.4rem;
    color: var(--gray-medium);
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.6;
    font-weight: 400;
}

.social-showcase {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2.5rem;
    margin-bottom: 4rem;
}

.social-card {
    background: var(--primary-white);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-soft);
    overflow: hidden;
    transition: var(--transition);
    border: 1px solid rgba(158, 41, 145, 0.1);
    position: relative;
}

.social-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-strong);
    border-color: var(--primary-violet);
}

.social-card-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 2rem 2rem 1rem;
    position: relative;
}

.social-logo {
    width: 60px;
    height: 60px;
    border-radius: 12px;
    overflow: hidden;
    flex-shrink: 0;
    box-shadow: var(--shadow-soft);
}

.social-logo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.social-info h3 {
    color: var(--primary-violet);
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 0.3rem;
}

.social-info p {
    color: var(--gray-medium);
    font-size: 0.95rem;
    margin: 0;
}

.social-card-content {
    padding: 0 2rem 1.5rem;
}

.social-card-content p {
    color: var(--gray-dark);
    line-height: 1.6;
    margin-bottom: 1.5rem;
    font-size: 1rem;
}

.social-stats {
    display: flex;
    gap: 2rem;
    margin-bottom: 1rem;
}

.social-stats .stat-item {
    text-align: center;
}

.social-stats .stat-number {
    display: block;
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--primary-violet);
    margin-bottom: 0.2rem;
}

.social-stats .stat-label {
    font-size: 0.85rem;
    color: var(--gray-medium);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-weight: 500;
}

.social-cta {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.8rem;
    padding: 1.2rem;
    background: linear-gradient(135deg, var(--primary-violet), var(--primary-turquoise));
    color: var(--primary-white);
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.social-cta::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: var(--transition);
}

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

.social-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(158, 41, 145, 0.3);
}

.social-cta i {
    font-size: 1.2rem;
}

/* Couleurs spécifiques par plateforme */
.facebook-card .social-cta {
    background: linear-gradient(135deg, #1877f2, #42a5f5);
}

.instagram-card .social-cta {
    background: linear-gradient(135deg, #e1306c, #fd1d1d, #f77737, #fcaf45);
}

.google-card .social-cta {
    background: linear-gradient(135deg, #4285f4, #34a853);
}

.social-engagement {
    background: linear-gradient(135deg, var(--primary-violet), var(--primary-turquoise));
    padding: 3rem;
    border-radius: var(--border-radius);
    color: var(--primary-white);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 3rem;
    position: relative;
    overflow: hidden;
}

.social-engagement::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
    animation: pulse 6s ease-in-out infinite;
}

.engagement-content {
    flex: 1;
    position: relative;
    z-index: 1;
}

.engagement-content h3 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.engagement-content p {
    font-size: 1.1rem;
    line-height: 1.6;
    opacity: 0.9;
    margin: 0;
}

.engagement-actions {
    display: flex;
    gap: 1rem;
    flex-shrink: 0;
    position: relative;
    z-index: 1;
}

.engagement-actions .cta-button {
    background: var(--primary-white);
    color: var(--primary-violet);
    border: 2px solid var(--primary-white);
}

.engagement-actions .cta-button:hover {
    background: transparent;
    color: var(--primary-white);
    border-color: var(--primary-white);
}

.engagement-actions .cta-button.secondary {
    background: transparent;
    color: var(--primary-white);
    border: 2px solid rgba(255, 255, 255, 0.5);
}

.engagement-actions .cta-button.secondary:hover {
    background: var(--primary-white);
    color: var(--primary-violet);
    border-color: var(--primary-white);
}

/* ===== TESTIMONIALS ===== */
.testimonials {
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    position: relative;
    overflow: hidden;
}

.testimonials::before {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 350px;
    height: 350px;
    background: linear-gradient(135deg, rgba(158, 41, 145, 0.03), rgba(88, 196, 193, 0.03));
    border-radius: 50%;
    transform: translate(50%, 50%);
}

.testimonials-header {
    text-align: center;
    margin-bottom: 4rem;
    position: relative;
}

.testimonials-header .section-badge {
    display: inline-block;
    background: linear-gradient(135deg, var(--primary-violet), var(--primary-turquoise));
    color: var(--primary-white);
    padding: 0.5rem 1.5rem;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1.5rem;
    box-shadow: var(--shadow-soft);
}

.testimonials h2 {
    font-size: 3rem;
    color: var(--primary-violet);
    margin-bottom: 1.5rem;
    font-weight: 700;
    line-height: 1.2;
}

.testimonials-header .section-lead {
    font-size: 1.4rem;
    color: var(--gray-medium);
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.6;
    font-weight: 400;
}

.testimonials-showcase {
    margin-bottom: 4rem;
}

.testimonial-card.featured {
    background: var(--primary-white);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-strong);
    padding: 3rem;
    margin-bottom: 3rem;
    border: 2px solid var(--primary-violet);
    position: relative;
    overflow: hidden;
}

.testimonial-card.featured::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(135deg, var(--primary-violet), var(--primary-turquoise));
}

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

.testimonial-card {
    background: var(--primary-white);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-soft);
    padding: 2.5rem;
    transition: var(--transition);
    border: 1px solid rgba(158, 41, 145, 0.1);
    position: relative;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-strong);
    border-color: var(--primary-violet);
}

.testimonial-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(158, 41, 145, 0.1);
}

.rating {
    display: flex;
    align-items: center;
    gap: 0.3rem;
}

.rating i {
    color: #ffd700;
    font-size: 1.2rem;
}

.rating-text {
    margin-left: 0.5rem;
    font-weight: 700;
    color: var(--primary-violet);
    font-size: 1.1rem;
}

.google-badge {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(135deg, #4285f4, #34a853);
    color: var(--primary-white);
    padding: 0.4rem 0.8rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
}

.google-badge i {
    font-size: 1rem;
}

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

.testimonial-content p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: var(--gray-dark);
    font-style: italic;
    position: relative;
    padding-left: 1.5rem;
}

.testimonial-content p::before {
    content: '"';
    position: absolute;
    left: 0;
    top: -0.2rem;
    font-size: 2rem;
    color: var(--primary-violet);
    opacity: 0.3;
    font-family: serif;
}

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

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

.author-avatar {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary-violet), var(--primary-turquoise));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-white);
    font-weight: 700;
    font-size: 1.1rem;
    flex-shrink: 0;
    box-shadow: var(--shadow-soft);
}

.author-details h4 {
    color: var(--primary-violet);
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 0.2rem;
}

.author-meta {
    color: var(--gray-medium);
    font-size: 0.9rem;
    font-weight: 500;
}

.testimonials-summary {
    background: linear-gradient(135deg, var(--primary-violet), var(--primary-turquoise));
    border-radius: var(--border-radius);
    padding: 3rem;
    color: var(--primary-white);
    position: relative;
    overflow: hidden;
}

.testimonials-summary::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
    animation: pulse 5s ease-in-out infinite;
}

.summary-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
    position: relative;
    z-index: 1;
}

.stat-highlight {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: rgba(255, 255, 255, 0.1);
    padding: 1.5rem;
    border-radius: var(--border-radius);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: var(--transition);
}

.stat-highlight:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-3px);
}

.testimonials-summary .stat-icon {
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    color: var(--primary-white);
    flex-shrink: 0;
}

.stat-content {
    display: flex;
    flex-direction: column;
}

.stat-highlight .stat-number {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 0.3rem;
}

.stat-highlight .stat-label {
    font-size: 0.95rem;
    opacity: 0.9;
    font-weight: 500;
}

.testimonials-cta {
    text-align: center;
    position: relative;
    z-index: 1;
}

.testimonials-cta h3 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.testimonials-cta p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.testimonials-cta .cta-button {
    background: var(--primary-white);
    color: var(--primary-violet);
    border: 2px solid var(--primary-white);
    font-size: 1.1rem;
    padding: 1.2rem 2.5rem;
}

.testimonials-cta .cta-button:hover {
    background: transparent;
    color: var(--primary-white);
    border-color: var(--primary-white);
}

/* ===== FOOTER ===== */
.footer {
    background: linear-gradient(135deg, var(--primary-black) 0%, #1a1a1a 100%);
    color: var(--primary-white);
    position: relative;
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(135deg, var(--primary-violet), var(--primary-turquoise));
}

.footer-top {
    padding: 4rem 0 2rem;
    position: relative;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

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

@media (max-width: 1200px) {
    .footer-content {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 1200px) {
    .contact-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .contact-info-cards {
        grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
        gap: 1.5rem;
    }
}

.footer-brand {
    max-width: 400px;
}

.brand-logo h3 {
    color: var(--primary-violet);
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.brand-subtitle {
    color: var(--primary-turquoise);
    font-size: 1rem;
    font-weight: 500;
    display: block;
    margin-bottom: 1.5rem;
}

.brand-description {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    margin-bottom: 2rem;
    font-size: 1rem;
}

.footer-certifications {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.cert-badge {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(135deg, var(--primary-violet), var(--primary-turquoise));
    padding: 0.6rem 1rem;
    border-radius: 25px;
    font-size: 0.85rem;
    font-weight: 600;
    box-shadow: var(--shadow-soft);
}

.cert-badge i {
    font-size: 1rem;
}

.footer-section h4 {
    color: var(--primary-white);
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    position: relative;
}

.footer-section h4::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 30px;
    height: 2px;
    background: var(--primary-turquoise);
}

.footer-links {
    list-style: none;
    margin: 0;
    padding: 0;
}

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

.footer-links a {
    color: rgba(255, 255, 255, 0.8);
    transition: var(--transition);
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.footer-links a::before {
    content: '▶';
    font-size: 0.6rem;
    color: var(--primary-turquoise);
    opacity: 0;
    transform: translateX(-10px);
    transition: var(--transition);
}

.footer-links a:hover::before {
    opacity: 1;
    transform: translateX(0);
}

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

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.95rem;
}

.contact-item i {
    color: var(--primary-turquoise);
    width: 18px;
    font-size: 1rem;
    flex-shrink: 0;
}

.contact-item a {
    color: rgba(255, 255, 255, 0.8);
    transition: var(--transition);
}

.contact-item a:hover {
    color: var(--primary-turquoise);
}

.footer-social {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
    margin-bottom: 2rem;
}

.footer-social .social-link {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    color: rgba(255, 255, 255, 0.8);
    transition: var(--transition);
    padding: 0.6rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-social .social-link:hover {
    color: var(--primary-turquoise);
    transform: translateX(5px);
}

.footer-social .social-link i {
    width: 20px;
    font-size: 1.1rem;
    color: var(--primary-turquoise);
}

.footer-cta {
    background: linear-gradient(135deg, rgba(158, 41, 145, 0.2), rgba(88, 196, 193, 0.2));
    padding: 1.5rem;
    border-radius: var(--border-radius);
    border: 1px solid rgba(158, 41, 145, 0.3);
    text-align: center;
}

.footer-cta h5 {
    color: var(--primary-white);
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.footer-button {
    display: inline-block;
    background: linear-gradient(135deg, var(--primary-violet), var(--primary-turquoise));
    color: var(--primary-white);
    padding: 0.8rem 1.5rem;
    border-radius: var(--border-radius);
    font-weight: 600;
    font-size: 0.95rem;
    transition: var(--transition);
    box-shadow: var(--shadow-soft);
}

.footer-button:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-strong);
}

.footer-bottom {
    background: rgba(0, 0, 0, 0.3);
    padding: 1.5rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

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

.footer-copyright p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    margin: 0;
}

.footer-nav-links {
    display: flex;
    list-style: none;
    gap: 2rem;
    margin: 0;
    padding: 0;
}

.footer-nav-links a {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    transition: var(--transition);
}

.footer-nav-links a:hover {
    color: var(--primary-turquoise);
}

.legal-links {
    display: flex;
    list-style: none;
    gap: 1.5rem;
    margin: 0;
    padding: 0;
}

.legal-links a {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.85rem;
    transition: var(--transition);
}

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

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

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateX(-50%) translateY(0);
    }
    40% {
        transform: translateX(-50%) translateY(-10px);
    }
    60% {
        transform: translateX(-50%) translateY(-5px);
    }
}

/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 1000px) {
    .contact-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .contact-info-cards {
        grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
        gap: 1.5rem;
        max-width: 800px;
        margin: 0 auto;
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 1rem;
    }
    
    .footer-top {
        padding: 3rem 0 1.5rem;
    }
    
    .footer-container {
        padding: 0 1rem;
    }
    
    .nav-menu {
        position: fixed;
        top: 80px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 80px);
        background: var(--primary-white);
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
        transition: var(--transition);
        padding-top: 2rem;
        box-shadow: var(--shadow-strong);
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .nav-toggle {
        display: flex;
    }
    
    .nav-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }
    
    .nav-toggle.active span:nth-child(2) {
        opacity: 0;
    }
    
    .nav-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -6px);
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.3rem;
    }
    
    .hero-description {
        font-size: 1.1rem;
    }
    
    .presentation h2 {
        font-size: 2.2rem;
    }
    
    .section-lead {
        font-size: 1.2rem;
    }
    
    .presentation-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .stats-sidebar {
        position: static;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
    
    .expertise-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .cert-item {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    
    .services-section h2 {
        font-size: 2.2rem;
    }
    
    .services-header .section-lead {
        font-size: 1.2rem;
    }
    
    .services-showcase {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .service-image {
        height: 180px;
    }
    
    .benefits-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    
    .benefit-item {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    
    .cta-actions {
        flex-direction: column;
        align-items: center;
    }
    
    .cta-actions .cta-button {
        width: 100%;
        max-width: 300px;
    }
    
    .social-section h2 {
        font-size: 2.2rem;
    }
    
    .social-header .section-lead {
        font-size: 1.2rem;
    }
    
    .social-showcase {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .social-stats {
        gap: 1rem;
    }
    
    .social-engagement {
        flex-direction: column;
        text-align: center;
        gap: 2rem;
    }
    
    .engagement-actions {
        flex-direction: column;
        width: 100%;
    }
    
    .engagement-actions .cta-button {
        width: 100%;
    }
    
    .testimonials h2 {
        font-size: 2.2rem;
    }
    
    .testimonials-header .section-lead {
        font-size: 1.2rem;
    }
    
    .testimonial-card.featured {
        padding: 2rem;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .testimonial-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }
    
    .summary-stats {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .testimonials-summary {
        padding: 2rem;
    }
    
    .video-controls {
        bottom: 1rem;
        right: 1rem;
        gap: 0.5rem;
    }
    
    .video-toggle,
    .sound-toggle {
        width: 40px;
        height: 40px;
        padding: 0.6rem;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .hero-content {
        padding: 1rem;
    }
    
    .footer-top {
        padding: 2rem 0 1rem;
    }
    
    .footer-container {
        padding: 0 1rem;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .footer-brand {
        grid-column: auto;
        margin-bottom: 1rem;
    }
    
    .brand-logo h3 {
        font-size: 1.5rem;
    }
    
    .brand-description {
        font-size: 0.95rem;
    }
    
    .footer-section h4 {
        font-size: 1.1rem;
    }
    
    
    .footer-cta {
        padding: 1rem;
        margin-top: 1rem;
    }
    
    .footer-bottom {
        padding: 1rem 0;
    }
    
    .footer-nav-links {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .legal-links {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .presentation h2 {
        font-size: 1.8rem;
    }
    
    .section-lead {
        font-size: 1.1rem;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .expertise-areas {
        margin-top: 2rem;
        padding-top: 2rem;
    }
    
    .expertise-areas h3 {
        font-size: 1.5rem;
    }
    
    .cert-item {
        padding: 1.5rem;
    }
    
    .services-section h2 {
        font-size: 1.8rem;
    }
    
    .services-header .section-lead {
        font-size: 1.1rem;
    }
    
    .service-image {
        height: 160px;
    }
    
    .service-content {
        padding: 1.5rem;
    }
    
    .benefits-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .services-cta {
        padding: 2rem 1.5rem;
    }
    
    .cta-content h3 {
        font-size: 1.5rem;
    }
    
    .cta-content p {
        font-size: 1rem;
    }
    
    .social-section h2 {
        font-size: 1.8rem;
    }
    
    .social-header .section-lead {
        font-size: 1.1rem;
    }
    
    .social-card-header {
        padding: 1.5rem 1.5rem 1rem;
    }
    
    .social-card-content {
        padding: 0 1.5rem 1.5rem;
    }
    
    .social-logo {
        width: 50px;
        height: 50px;
    }
    
    .social-stats {
        flex-direction: column;
        gap: 1rem;
        align-items: center;
    }
    
    .social-stats .stat-item {
        padding: 0.5rem;
    }
    
    .social-engagement {
        padding: 2rem 1.5rem;
    }
    
    .engagement-content h3 {
        font-size: 1.5rem;
    }
    
    .engagement-content p {
        font-size: 1rem;
    }
    
    .testimonials h2 {
        font-size: 1.8rem;
    }
    
    .testimonials-header .section-lead {
        font-size: 1.1rem;
    }
    
    .testimonial-card.featured {
        padding: 1.5rem;
    }
    
    .testimonial-card {
        padding: 1.5rem;
    }
    
    .testimonial-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.8rem;
        margin-bottom: 1rem;
        padding-bottom: 0.8rem;
    }
    
    .author-avatar {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
    
    .testimonials-cta h3 {
        font-size: 1.5rem;
    }
    
    .testimonials-cta p {
        font-size: 1rem;
    }
    
    .testimonials-cta .cta-button {
        padding: 1rem 2rem;
        font-size: 1rem;
    }
    
    .point {
        flex-direction: column;
        text-align: center;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: left;
    }
    
    .footer-brand {
        grid-column: 1 / -1;
        text-align: center;
        max-width: 100%;
        margin-bottom: 2rem;
    }
    
    .footer-certifications {
        justify-content: center;
    }
    
    
    .footer-bottom-content {
        flex-direction: column;
        text-align: center;
        gap: 1.5rem;
    }
    
    .footer-nav-links {
        gap: 1rem;
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .legal-links {
        gap: 1rem;
        flex-wrap: wrap;
        justify-content: center;
    }

    /* Hero Page Responsive */
    .hero-page {
        height: 50vh;
        min-height: 400px;
        padding: 2rem 0;
    }

    .hero-page-content {
        padding: 0 1rem;
    }

    .hero-page-title {
        font-size: 2.5rem;
        margin-bottom: 1rem;
    }

    .hero-page-description {
        font-size: 1.1rem;
        margin-bottom: 2rem;
        padding: 0 1rem;
    }

    .hero-page-stats {
        flex-direction: column;
        gap: 1.5rem;
        align-items: center;
        padding: 0 1rem;
    }

    .hero-page-stats .stat-item {
        width: 100%;
        max-width: 250px;
        padding: 1rem;
    }

    .hero-page-stats .stat-number {
        font-size: 2rem;
    }

    .breadcrumb {
        margin-bottom: 1.5rem;
        font-size: 0.9rem;
    }

    /* Services Dynamic Responsive */
    .services-dynamic {
        padding: 3rem 0;
    }

    .services-intro {
        margin-bottom: 3rem;
        padding: 0 1rem;
    }

    .services-intro h2 {
        font-size: 2rem;
        margin-bottom: 1rem;
    }

    .services-intro p {
        font-size: 1rem;
        padding: 0 0.5rem;
    }

    .service-selector {
        margin-bottom: 2rem;
        padding: 0 1rem;
    }

    .selector-tabs {
        flex-direction: column;
        align-items: center;
        gap: 0.8rem;
        margin-bottom: 2rem;
    }

    .tab-button {
        width: 100%;
        max-width: 300px;
        justify-content: center;
        padding: 0.8rem 1.5rem;
    }

    .tab-button span {
        font-size: 0.9rem;
    }

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

    .service-content-dynamic {
        min-height: auto;
        padding: 0 1rem;
    }

    .service-detail {
        padding: 1.5rem;
        margin-bottom: 2rem;
        border-radius: 16px;
    }

    .service-detail-header {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
        margin-bottom: 2rem;
        padding-bottom: 1.5rem;
    }

    .service-detail .service-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
        border-radius: 16px;
    }

    .service-title h3 {
        font-size: 1.5rem;
        margin-bottom: 0.5rem;
    }

    .service-subtitle {
        font-size: 1rem;
    }

    .service-detail-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .service-description h4 {
        font-size: 1.2rem;
        margin-top: 1.5rem;
    }

    .service-description h4:first-child {
        margin-top: 0;
    }

    .service-description p {
        font-size: 0.95rem;
        margin-bottom: 1rem;
    }

    .service-features {
        margin: 1rem 0;
    }

    .service-features li {
        padding: 0.4rem 0;
        font-size: 0.9rem;
    }

    .process-step {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
        padding: 1rem;
        margin-bottom: 1rem;
    }

    .step-number {
        width: 35px;
        height: 35px;
        font-size: 1rem;
        align-self: center;
    }

    .step-content h5 {
        font-size: 1rem;
        margin-bottom: 0.5rem;
    }

    .step-content p {
        font-size: 0.9rem;
    }

    .service-sidebar {
        gap: 1.5rem;
    }

    .service-card-info,
    .service-certifications {
        padding: 1.5rem;
        border-radius: 12px;
    }

    .service-card-info h4,
    .service-certifications h4 {
        font-size: 1.1rem;
        margin-bottom: 1rem;
    }

    .info-item {
        padding: 0.6rem 0;
        font-size: 0.9rem;
    }

    .service-certifications .cert-item {
        padding: 0.6rem 0;
        font-size: 0.9rem;
    }

    /* Video Showcase Responsive */
    .video-showcase {
        padding: 4rem 0;
    }

    .video-intro {
        margin-bottom: 3rem;
        padding: 0 1rem;
    }

    .video-intro h2 {
        font-size: 2.2rem;
        margin-bottom: 1rem;
    }

    .video-intro p {
        font-size: 1.1rem;
        padding: 0 0.5rem;
    }

    .video-player-container {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .video-player {
        border-radius: 16px;
        margin: 0 1rem;
    }

    .play-button {
        width: 80px;
        height: 80px;
        font-size: 2rem;
    }

    .video-info h3 {
        font-size: 1.5rem;
    }

    .video-info p {
        font-size: 1rem;
    }

    .video-features {
        gap: 1.5rem;
        padding: 0 1rem;
    }

    .feature-item {
        padding: 1.5rem;
        gap: 1rem;
    }

    .feature-icon {
        width: 50px;
        height: 50px;
        font-size: 1.3rem;
        border-radius: 12px;
    }

    .feature-content h4 {
        font-size: 1.2rem;
    }

    .feature-content p {
        font-size: 0.9rem;
    }

    /* Gallery Responsive */
    .gallery-section {
        padding: 4rem 0;
    }

    .gallery-header {
        margin-bottom: 3rem;
        padding: 0 1rem;
    }

    .gallery-header h2 {
        font-size: 2.2rem;
    }

    .gallery-header p {
        font-size: 1.1rem;
        padding: 0 0.5rem;
    }



    .gallery-grid {
        grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
        gap: 1.5rem;
        margin-bottom: 3rem;
        padding: 0 1rem;
    }

    .gallery-overlay {
        padding: 1.5rem;
    }

    .gallery-info h3 {
        font-size: 1.3rem;
    }

    .gallery-info p {
        font-size: 0.9rem;
    }

    .project-type {
        font-size: 0.8rem;
        padding: 0.4rem 0.8rem;
    }

    .view-btn {
        width: 45px;
        height: 45px;
        font-size: 1.1rem;
    }

    .gallery-cta {
        padding: 3rem 1.5rem;
        border-radius: 20px;
        margin: 0 1rem;
    }

    .gallery-cta-content h3 {
        font-size: 2rem;
    }

    .gallery-cta-content p {
        font-size: 1.1rem;
    }

    .gallery-cta-actions {
        gap: 1rem;
    }

    .gallery-cta-actions .cta-button {
        padding: 0.8rem 1.5rem;
        font-size: 0.9rem;
    }

    /* Contact Responsive */
    .contact-section {
        padding: 4rem 0;
    }

    .contact-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

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

    .contact-header h2 {
        font-size: 2.2rem;
    }

    .contact-header p {
        font-size: 1.1rem;
    }

    .contact-info-cards {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 1.5rem;
        margin-bottom: 2rem;
    }

    .contact-card {
        padding: 1.5rem;
    }

    .contact-card-icon {
        width: 50px;
        height: 50px;
        font-size: 1.3rem;
        margin-bottom: 1rem;
    }

    .contact-card-content h3 {
        font-size: 1.2rem;
    }

    .contact-form-container {
        padding: 2rem;
    }

    .contact-form-container h3 {
        font-size: 1.8rem;
    }

    .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .social-contact-section {
        padding: 4rem 0;
    }

    .social-contact-header h2 {
        font-size: 2rem;
    }

    .social-contact-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .social-contact-card {
        padding: 2rem;
    }

    /* Legal Responsive */
    .legal-section {
        padding: 4rem 0;
    }

    .legal-block {
        padding: 2rem;
        margin-bottom: 1.5rem;
    }

    .legal-block h2 {
        font-size: 1.6rem;
        margin-bottom: 1.5rem;
    }

    .legal-info h3 {
        font-size: 1.1rem;
        margin-top: 1.2rem;
        margin-bottom: 0.6rem;
    }

    /* Lightbox Responsive */
    .lightbox-prev {
        left: -60px;
    }

    .lightbox-next {
        right: -60px;
    }

    .lightbox-close {
        top: -40px;
        right: -10px;
    }

    .guarantees-header h2 {
        font-size: 2rem;
    }

    .guarantees-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .contact-cta-content h2 {
        font-size: 2rem;
    }

    .contact-actions {
        flex-direction: column;
        align-items: center;
    }

    .contact-actions .cta-button {
        width: 100%;
        max-width: 300px;
    }
}

@media screen and (max-width: 768px) {
    .hero-page-stats {
        display: none;
    }
}

@media (max-width: 480px) {
    /* Hero Page Mobile */
    .hero-page {
        height: 45vh;
        min-height: 350px;
        padding: 1.5rem 0;
    }

    .hero-page-title {
        font-size: 2rem;
        line-height: 1.1;
    }

    .hero-page-description {
        font-size: 1rem;
        padding: 0 0.5rem;
        margin-bottom: 1.5rem;
    }

    .hero-page-stats {
        gap: 1rem;
        padding: 0 0.5rem;
    }

    .hero-page-stats .stat-item {
        padding: 0.8rem;
        max-width: 200px;
    }

    .hero-page-stats .stat-number {
        font-size: 1.8rem;
    }

    .hero-page-stats .stat-label {
        font-size: 0.8rem;
    }

    /* Services Dynamic Mobile */
    .services-dynamic {
        padding: 2rem 0;
    }

    .services-intro {
        margin-bottom: 2rem;
        padding: 0 0.5rem;
    }

    .services-intro h2 {
        font-size: 1.8rem;
    }

    .services-intro p {
        font-size: 0.95rem;
    }

    .service-selector {
        padding: 0 0.5rem;
        margin-bottom: 1.5rem;
    }

    .selector-tabs {
        gap: 0.6rem;
        margin-bottom: 1.5rem;
    }

    .tab-button {
        max-width: 280px;
        padding: 0.7rem 1rem;
        gap: 0.6rem;
    }

    .tab-button span {
        font-size: 0.85rem;
    }

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

    .service-content-dynamic {
        padding: 0 0.5rem;
    }

    .service-detail {
        padding: 1rem;
        margin-bottom: 1.5rem;
        border-radius: 12px;
    }

    .service-detail-header {
        gap: 0.8rem;
        margin-bottom: 1.5rem;
        padding-bottom: 1rem;
    }

    .service-detail .service-icon {
        width: 50px;
        height: 50px;
        font-size: 1.3rem;
        border-radius: 12px;
    }

    .service-title h3 {
        font-size: 1.3rem;
    }

    .service-subtitle {
        font-size: 0.9rem;
    }

    .service-detail-content {
        gap: 1.5rem;
    }

    .service-description h4 {
        font-size: 1.1rem;
        margin-top: 1.2rem;
    }

    .service-description p {
        font-size: 0.9rem;
    }

    .service-features li {
        padding: 0.3rem 0;
        font-size: 0.85rem;
    }

    .process-step {
        padding: 0.8rem;
        gap: 0.8rem;
    }

    .step-number {
        width: 30px;
        height: 30px;
        font-size: 0.9rem;
    }

    .step-content h5 {
        font-size: 0.95rem;
    }

    .step-content p {
        font-size: 0.85rem;
    }

    .service-card-info,
    .service-certifications {
        padding: 1rem;
        border-radius: 10px;
    }

    .service-card-info h4,
    .service-certifications h4 {
        font-size: 1rem;
        margin-bottom: 0.8rem;
    }

    .info-item {
        padding: 0.5rem 0;
        font-size: 0.85rem;
    }

    .service-certifications .cert-item {
        padding: 0.5rem 0;
        font-size: 0.85rem;
    }

    .service-certifications .cert-item i {
        font-size: 1rem;
        width: 18px;
    }

    /* Video Showcase Mobile */
    .video-showcase {
        padding: 3rem 0;
    }

    .video-intro {
        margin-bottom: 2rem;
        padding: 0 0.5rem;
    }

    .video-intro .section-badge {
        padding: 0.6rem 1.5rem;
        font-size: 0.8rem;
        margin-bottom: 1.5rem;
    }

    .video-intro h2 {
        font-size: 1.8rem;
        line-height: 1.1;
    }

    .video-intro p {
        font-size: 1rem;
    }

    .video-player-container {
        gap: 2rem;
    }

    .video-player {
        margin: 0 0.5rem;
        border-radius: 12px;
    }

    .play-button {
        width: 70px;
        height: 70px;
        font-size: 1.8rem;
        margin-bottom: 1.5rem;
    }

    .video-info h3 {
        font-size: 1.3rem;
    }

    .video-info p {
        font-size: 0.9rem;
    }

    .video-features {
        gap: 1rem;
        padding: 0 0.5rem;
    }

    .feature-item {
        padding: 1rem;
        gap: 0.8rem;
        border-radius: 12px;
    }

    .feature-icon {
        width: 45px;
        height: 45px;
        font-size: 1.1rem;
        border-radius: 10px;
    }

    .feature-content h4 {
        font-size: 1.1rem;
        margin-bottom: 0.3rem;
    }

    .feature-content p {
        font-size: 0.85rem;
    }

    /* Gallery Mobile */
    .gallery-section {
        padding: 3rem 0;
    }

    .gallery-header {
        margin-bottom: 2rem;
        padding: 0 0.5rem;
    }

    .gallery-header .section-badge {
        padding: 0.6rem 1.5rem;
        font-size: 0.8rem;
        margin-bottom: 1.5rem;
    }

    .gallery-header h2 {
        font-size: 1.8rem;
        line-height: 1.1;
    }

    .gallery-header p {
        font-size: 1rem;
    }



    .gallery-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
        margin-bottom: 2rem;
        padding: 0 0.5rem;
    }

    .gallery-item {
        border-radius: 16px;
    }

    .gallery-overlay {
        padding: 1rem;
    }

    .gallery-info h3 {
        font-size: 1.2rem;
        margin-bottom: 0.3rem;
    }

    .gallery-info p {
        font-size: 0.85rem;
        margin-bottom: 0.8rem;
    }

    .project-type {
        font-size: 0.75rem;
        padding: 0.3rem 0.6rem;
        gap: 0.3rem;
    }

    .view-btn {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }

    .gallery-cta {
        padding: 2rem 1rem;
        border-radius: 16px;
        margin: 0 0.5rem;
    }

    .gallery-cta-content h3 {
        font-size: 1.6rem;
        margin-bottom: 0.8rem;
    }

    .gallery-cta-content p {
        font-size: 1rem;
        margin-bottom: 1.5rem;
    }

    .gallery-cta-actions {
        flex-direction: column;
        gap: 0.8rem;
        align-items: center;
    }

    .gallery-cta-actions .cta-button {
        padding: 0.7rem 1.2rem;
        font-size: 0.85rem;
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }

    /* Contact Mobile */
    .contact-section {
        padding: 3rem 0;
    }

    .contact-content {
        gap: 2rem;
    }

    .contact-header {
        margin-bottom: 1.5rem;
        padding: 0 0.5rem;
    }

    .contact-header .section-badge {
        padding: 0.6rem 1.5rem;
        font-size: 0.8rem;
        margin-bottom: 1.5rem;
    }

    .contact-header h2 {
        font-size: 1.8rem;
        line-height: 1.1;
    }

    .contact-header p {
        font-size: 1rem;
    }

    .contact-info-cards {
        grid-template-columns: 1fr;
        gap: 1rem;
        margin-bottom: 1.5rem;
    }

    .contact-card {
        padding: 1.2rem;
        text-align: center;
    }

    .contact-card-icon {
        width: 45px;
        height: 45px;
        font-size: 1.2rem;
        margin: 0 auto 1rem;
    }

    .contact-card-content h3 {
        font-size: 1.1rem;
        margin-bottom: 0.3rem;
    }

    .contact-card-content p {
        font-size: 0.9rem;
        margin-bottom: 0.8rem;
    }

    .contact-form-container {
        padding: 1.5rem;
        border-radius: 20px;
    }

    .contact-form-container h3 {
        font-size: 1.6rem;
        margin-bottom: 0.8rem;
    }

    .contact-form-container > p {
        font-size: 0.9rem;
        margin-bottom: 1.5rem;
    }

    .contact-form {
        gap: 1.2rem;
    }

    .form-field input,
    .form-field select,
    .form-field textarea {
        padding: 0.8rem;
        font-size: 0.9rem;
    }

    .form-field textarea {
        min-height: 100px;
    }

    .form-actions .cta-button {
        min-width: 200px;
        padding: 0.8rem 1.5rem;
        font-size: 0.9rem;
    }

    .form-note {
        font-size: 0.8rem;
    }

    .social-contact-section {
        padding: 3rem 0;
    }

    .social-contact-header {
        margin-bottom: 2rem;
        padding: 0 0.5rem;
    }

    .social-contact-header h2 {
        font-size: 1.8rem;
        margin-bottom: 0.8rem;
    }

    .social-contact-header p {
        font-size: 1rem;
    }

    .social-contact-grid {
        gap: 1rem;
        padding: 0 0.5rem;
    }

    .social-contact-card {
        padding: 1.5rem;
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }

    .social-contact-icon {
        width: 50px;
        height: 50px;
        margin: 0 auto;
    }

    .social-contact-content h3 {
        font-size: 1.2rem;
        margin-bottom: 0.3rem;
    }

    .social-contact-content p {
        font-size: 0.9rem;
    }

    .social-contact-arrow {
        align-self: center;
    }

    /* Legal Mobile */
    .legal-section {
        padding: 3rem 0;
    }

    .legal-content {
        padding: 0 0.5rem;
    }

    .legal-block {
        padding: 1.5rem;
        margin-bottom: 1rem;
        border-radius: 16px;
    }

    .legal-block h2 {
        font-size: 1.4rem;
        margin-bottom: 1.2rem;
        padding-bottom: 0.8rem;
    }

    .legal-info h3 {
        font-size: 1rem;
        margin-top: 1rem;
        margin-bottom: 0.5rem;
    }

    .legal-info p {
        font-size: 0.9rem;
        margin-bottom: 1rem;
    }

    .legal-info ul {
        font-size: 0.9rem;
        padding-left: 1.2rem;
    }

    .legal-footer {
        margin-top: 2rem;
        padding-top: 1.5rem;
    }

    /* Lightbox Mobile */
    .lightbox-content {
        max-width: 95vw;
        max-height: 85vh;
    }

    .lightbox-prev {
        left: 10px;
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }

    .lightbox-next {
        right: 10px;
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }

    .lightbox-close {
        top: 10px;
        right: 10px;
        width: 35px;
        height: 35px;
        font-size: 1rem;
    }

    .lightbox-counter {
        bottom: 10px;
        font-size: 0.8rem;
        padding: 0.4rem 0.8rem;
    }
}

/* Logo Maître Artisan dans le footer */
.maitre-artisan-logo {
    margin-top: 1rem;
    text-align: center;
}

.maitre-artisan-logo img {
    max-width: 120px;
    height: auto;
    opacity: 0.9;
    transition: opacity 0.3s ease;
}

.maitre-artisan-logo img:hover {
    opacity: 1;
}

/* Responsive pour le logo Maître Artisan */
@media (max-width: 768px) {
    .maitre-artisan-logo img {
        max-width: 100px;
    }
}

@media (max-width: 480px) {
    .maitre-artisan-logo img {
        max-width: 80px;
    }
    
    .maitre-artisan-logo {
        margin-top: 0.8rem;
    }
}