:root {
    --primary: #0891B2;
    --primary-dark: #0E7490;
    --secondary: #0F172A;
    --accent: #10B981;
    --orange: #F97316;
    --text: #1E293B;
    --text-light: #64748B;
    --white: #FFFFFF;
    --light-bg: #F1F5F9;
    --gradient: linear-gradient(135deg, #0891B2 0%, #10B981 100%);
    --gradient-dark: linear-gradient(135deg, #0F172A 0%, #1E293B 100%);
    --gradient-orange: linear-gradient(135deg, #F97316 0%, #FB923C 100%);
    --shadow: 0 10px 40px rgba(8, 145, 178, 0.1);
    --shadow-lg: 0 25px 60px rgba(8, 145, 178, 0.15);
    --radius: 20px;
    --radius-sm: 12px;
}

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

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    font-family: 'Poppins', sans-serif;
    color: var(--text);
    background: var(--white);
    overflow-x: hidden;
    line-height: 1.7;
}

/* Navbar */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 1.5rem 0;
    transition: all 0.4s ease;
}

.navbar.scrolled {
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: var(--shadow);
    padding: 1rem 0;
}

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

.logo {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--white);
    text-decoration: none;
    transition: color 0.3s ease;
}

.logo span {
    color: var(--primary);
}

.navbar.scrolled .logo {
    color: var(--secondary);
}

.nav-links {
    display: flex;
    gap: 2.5rem;
    list-style: none;
}

.nav-links a {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary);
    transition: width 0.3s ease;
}

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

.navbar.scrolled .nav-links a {
    color: var(--text);
}

.navbar.scrolled .nav-links a:hover {
    color: var(--primary);
}

.nav-cta {
    background: var(--gradient);
    color: var(--white) !important;
    padding: 0.8rem 1.5rem;
    border-radius: 50px;
    font-weight: 600;
}

.nav-cta::after {
    display: none !important;
}

.nav-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(255, 107, 53, 0.4);
}

/* Mobile Menu */
.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 10px;
}

.menu-toggle span {
    width: 25px;
    height: 3px;
    background: var(--white);
    border-radius: 3px;
    transition: all 0.3s ease;
}

.navbar.scrolled .menu-toggle span {
    background: var(--secondary);
}

/* Hero Section - Full Screen avec image */
.hero {
    min-height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    background: var(--secondary);
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    right: 0;
    width: 60%;
    height: 100%;
    background-size: cover;
    background-position: center;
    clip-path: polygon(15% 0, 100% 0, 100% 100%, 0 100%);
}

.hero-bg::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, var(--secondary) 0%, transparent 50%);
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    min-height: 100vh;
    padding: 8rem 0 4rem;
}

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

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

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

.hero-image-wrapper img {
    width: 100%;
    height: auto;
    display: block;
}

.hero-cta {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 2rem;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--gradient);
    color: var(--white);
    padding: 0.5rem 1.2rem;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.hero h1 {
    font-size: clamp(1.8rem, 5vw, 4rem);
    color: var(--white);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1.5rem;
}

.hero h1 span {
    color: var(--primary);
}

.hero h1 .highlight {
    color: var(--primary);
}

.pulse {
    width: 10px;
    height: 10px;
    background: var(--white);
    border-radius: 50%;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.4);
    }
    70% {
        box-shadow: 0 0 0 10px rgba(255, 255, 255, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(255, 255, 255, 0);
    }
}

.hero-subtitle {
    font-size: 1.15rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 2rem;
    line-height: 1.8;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.btn-primary {
    background: var(--gradient);
    color: var(--white);
    padding: 1rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.4s ease;
    border: none;
    cursor: pointer;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(255, 107, 53, 0.4);
    color: var(--white);
}

.btn-secondary {
    background: transparent;
    color: var(--white);
    padding: 1rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    border: 2px solid rgba(255, 255, 255, 0.3);
    transition: all 0.4s ease;
}

.btn-secondary:hover {
    border-color: var(--primary);
    color: var(--primary);
}

.btn-outline {
    background: transparent;
    color: var(--white);
    padding: 1rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    border: 2px solid rgba(255, 255, 255, 0.3);
    transition: all 0.4s ease;
}

.btn-outline:hover {
    border-color: var(--primary);
    background: var(--primary);
    color: var(--white);
}

.btn-white {
    background: var(--white);
    color: var(--secondary);
    padding: 1rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.4s ease;
    border: none;
}

.btn-white:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(255, 255, 255, 0.3);
}

.hero-stats {
    display: flex;
    gap: 3rem;
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.hero-stats .stat {
    text-align: center;
}

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

.stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary);
    line-height: 1;
    display: block;
}

.stat-label {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.6);
    margin-top: 0.25rem;
    display: block;
}

/* Section Title Style */
.section {
    padding: 6rem 0;
}

.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 4rem;
}

.section-tag {
    display: inline-block;
    background: rgba(255, 107, 53, 0.1);
    color: var(--primary);
    padding: 0.5rem 1.2rem;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.section-label {
    display: inline-block;
    background: rgba(8, 145, 178, 0.1);
    color: var(--primary);
    padding: 0.5rem 1.2rem;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.section-title {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    color: var(--secondary);
    margin-bottom: 1rem;
}

.section-title span {
    color: var(--primary);
}

.section-title .highlight {
    color: var(--primary);
}

.section-subtitle {
    color: var(--text-light);
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
}

.section-desc {
    color: var(--text-light);
    font-size: 1.1rem;
}

/* About Section - Split avec diagonal */
.about-section {
    background: var(--light-bg);
    position: relative;
}

.about-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 100px;
    background: var(--secondary);
    clip-path: polygon(0 0, 100% 0, 100% 0, 0 100%);
}

/* Marquee Section */
.marquee-section {
    background: var(--primary);
    padding: 1.5rem 0;
    overflow: hidden;
}

.marquee {
    overflow: hidden;
    white-space: nowrap;
}

.marquee-content {
    display: inline-flex;
    animation: marquee 30s linear infinite;
}

.marquee-item {
    color: var(--white);
    font-weight: 600;
    font-size: 1rem;
    padding: 0 2rem;
    display: inline-flex;
    align-items: center;
}

.marquee-item::before {
    content: '•';
    margin-right: 2rem;
    opacity: 0.5;
}

@keyframes marquee {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

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

.about-images {
    position: relative;
    height: 500px;
}

.about-img-main {
    position: absolute;
    width: 70%;
    height: 80%;
    object-fit: cover;
    border-radius: var(--radius);
    box-shadow: var(--shadow-lg);
    z-index: 2;
}

.about-img-secondary {
    position: absolute;
    width: 50%;
    height: 50%;
    object-fit: cover;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    right: 0;
    bottom: 0;
    border: 5px solid var(--white);
    z-index: 3;
}

.about-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background: var(--gradient);
    color: var(--white);
    padding: 0.6rem 1rem;
    border-radius: 8px;
    text-align: center;
    z-index: 4;
    box-shadow: var(--shadow);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.about-badge .number {
    font-size: 1.2rem;
    font-weight: 700;
    line-height: 1;
}

.about-badge .text {
    font-size: 0.75rem;
    font-weight: 500;
    line-height: 1.2;
}

.about-content h2 {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--secondary);
    margin-bottom: 1.5rem;
}

.about-content p {
    color: var(--text-light);
    margin-bottom: 1.5rem;
    font-size: 1.05rem;
}

.about-intro {
    font-size: 1.15rem;
    font-weight: 500;
    color: var(--text);
    margin-bottom: 1.5rem;
}

.about-philosophy {
    background: var(--light-bg);
    padding: 1.5rem 2rem;
    border-radius: var(--radius-sm);
    border-left: 4px solid var(--primary);
    margin: 2rem 0;
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.about-philosophy i {
    color: var(--primary);
    font-size: 1.5rem;
    flex-shrink: 0;
}

.about-philosophy p {
    font-style: italic;
    font-size: 1.1rem;
    color: var(--secondary);
    font-weight: 500;
    margin: 0;
}

.about-image {
    position: relative;
}

.about-image img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    border-radius: var(--radius);
    box-shadow: var(--shadow-lg);
}

.about-image .about-badge {
    position: absolute;
    bottom: 20px;
    right: 20px;
    background: var(--gradient);
    color: var(--white);
    padding: 1rem 1.5rem;
    border-radius: var(--radius-sm);
    box-shadow: var(--shadow);
    text-align: center;
}

.about-badge .badge-number {
    display: block;
    font-size: 1.5rem;
    font-weight: 800;
    line-height: 1;
}

.about-badge .badge-text {
    font-size: 0.75rem;
    line-height: 1.3;
    opacity: 0.9;
}

.about-list {
    list-style: none;
    margin: 2rem 0;
}

.about-list li {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
    font-weight: 500;
}

.about-list li i {
    width: 30px;
    height: 30px;
    background: rgba(255, 107, 53, 0.1);
    color: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
}

/* Specialties - Cards en grille */
.specialties-section {
    background: var(--white);
}

.specialties-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.8rem;
    max-width: 1000px;
    margin: 0 auto;
}

.specialty-chip {
    background: var(--white);
    border: 2px solid var(--light-bg);
    padding: 0.8rem 1.5rem;
    border-radius: 50px;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
    cursor: default;
}

.specialty-chip:hover {
    border-color: var(--primary);
    background: rgba(255, 107, 53, 0.05);
    transform: translateY(-3px);
}

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

/* Services Cards - Hover overlay */
.services-section {
    background: var(--light-bg);
    position: relative;
}

.services-section.dark {
    background: var(--secondary);
}

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

.service-card {
    background: var(--white);
    border-radius: var(--radius);
    padding: 2rem;
    text-decoration: none;
    display: block;
    transition: all 0.4s ease;
    box-shadow: var(--shadow);
    border: 2px solid transparent;
}

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

.service-icon {
    width: 60px;
    height: 60px;
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
}

.service-card h3 {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    color: var(--secondary);
}

.service-card p {
    font-size: 0.95rem;
    color: var(--text-light);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.service-link {
    color: var(--primary);
    font-weight: 600;
    font-size: 0.95rem;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: gap 0.3s ease;
}

.service-card:hover .service-link {
    gap: 1rem;
}

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

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

.service-card-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 30%, rgba(26, 26, 46, 0.95) 100%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 2rem;
    color: var(--white);
}

.service-card-icon {
    width: 50px;
    height: 50px;
    background: var(--gradient);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    margin-bottom: 1rem;
}

.service-card h3 {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.service-card p {
    font-size: 0.9rem;
    opacity: 0.8;
    line-height: 1.5;
}

.service-card-arrow {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    width: 40px;
    height: 40px;
    background: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    opacity: 0;
    transform: translateX(20px);
    transition: all 0.3s ease;
}

.service-card:hover .service-card-arrow {
    opacity: 1;
    transform: translateX(0);
}

/* Testimonials - Nouveau style Carrousel */
.testimonials-section {
    background: var(--light-bg);
    overflow: hidden;
}

.testimonials-slider {
    overflow: hidden;
    margin: 0 -1rem;
    padding: 1rem;
}

.testimonials-track {
    display: flex;
    gap: 1.5rem;
    animation: scroll-testimonials 40s linear infinite;
}

@keyframes scroll-testimonials {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

.testimonial-card {
    flex: 0 0 350px;
    background: var(--white);
    border-radius: var(--radius);
    padding: 2rem;
    box-shadow: var(--shadow);
}

.testimonial-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.testimonial-avatar {
    width: 50px;
    height: 50px;
    background: var(--gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-weight: 700;
    font-size: 1.2rem;
}

.testimonial-info h4 {
    font-size: 1rem;
    font-weight: 600;
    color: var(--secondary);
    margin-bottom: 0.2rem;
}

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

.testimonial-stars {
    color: #FFB800;
    margin-bottom: 1rem;
    font-size: 0.9rem;
}

.testimonial-card p {
    color: var(--text);
    line-height: 1.7;
    font-size: 0.95rem;
    margin-bottom: 1rem;
}

.verified {
    font-size: 0.85rem;
    color: var(--accent);
    display: flex;
    align-items: center;
    gap: 0.3rem;
}

.rating-summary {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-top: 1rem;
}

.rating-stars {
    color: #FFB800;
    font-size: 1.2rem;
}

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

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

.testimonials-carousel {
    position: relative;
    margin-top: 2rem;
}

.testimonials-track {
    display: flex;
    gap: 1.5rem;
    transition: transform 0.5s ease;
    padding: 1rem 0;
}

.testimonial-slide {
    flex: 0 0 calc(33.333% - 1rem);
    min-width: calc(33.333% - 1rem);
}

.testimonial-card-v2 {
    background: var(--white);
    border-radius: var(--radius);
    padding: 2rem;
    height: 100%;
    box-shadow: var(--shadow);
    position: relative;
    transition: all 0.4s ease;
    border: 2px solid transparent;
}

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

.quote-icon {
    position: absolute;
    top: -15px;
    left: 25px;
    width: 50px;
    height: 50px;
    background: var(--gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.quote-icon i {
    color: var(--white);
    font-size: 1.5rem;
    transform: scaleX(-1);
}

.testimonial-quote {
    margin-top: 1.5rem;
    color: var(--text);
    font-size: 1rem;
    line-height: 1.8;
    font-style: italic;
    min-height: 100px;
}

.testimonial-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--light-bg);
}

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

.author-avatar {
    width: 45px;
    height: 45px;
    background: var(--secondary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-weight: 700;
    font-size: 1.1rem;
}

.author-info {
    display: flex;
    flex-direction: column;
}

.author-info strong {
    font-size: 0.95rem;
    color: var(--secondary);
}

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

.testimonial-rating {
    color: #FFB800;
    font-size: 0.85rem;
}

.carousel-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    margin-top: 2rem;
}

.carousel-btn {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: 2px solid var(--secondary);
    background: var(--white);
    color: var(--secondary);
    font-size: 1.2rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.carousel-btn:hover {
    background: var(--secondary);
    color: var(--white);
}

.carousel-btn:disabled {
    opacity: 0.3;
    cursor: not-allowed;
}

.carousel-dots {
    display: flex;
    gap: 0.5rem;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(26, 26, 46, 0.2);
    cursor: pointer;
    transition: all 0.3s ease;
}

.dot:hover {
    background: rgba(26, 26, 46, 0.4);
}

.dot.active {
    background: var(--primary);
    width: 30px;
    border-radius: 6px;
}

/* Zones Section */
.zones-section {
    background: var(--white);
}

/* Certifications Section */
.certifications-section {
    background: var(--white);
}

.certifications-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1.5rem;
    max-width: 1000px;
    margin: 0 auto;
}

.certification-card {
    background: var(--light-bg);
    border-radius: var(--radius);
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
}

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

.certification-icon {
    width: 60px;
    height: 60px;
    background: var(--gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    font-size: 1.5rem;
    color: var(--white);
}

.certification-card h4 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--secondary);
    margin-bottom: 0.3rem;
}

.certification-card p {
    font-size: 0.9rem;
    color: var(--text-light);
}

.zones-content {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 4rem;
    align-items: center;
}

.zones-map {
    background: var(--light-bg);
    border-radius: var(--radius);
    padding: 2rem;
    text-align: center;
}

.zones-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.8rem;
    justify-content: center;
}

.zone-tag {
    background: var(--white);
    padding: 0.8rem 1.5rem;
    border-radius: 50px;
    font-weight: 500;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
}

.zone-tag:hover {
    transform: translateY(-3px);
}

.zone-tag.main {
    background: var(--gradient);
    color: var(--white);
}

.zones-cloud {
    display: flex;
    flex-wrap: wrap;
    gap: 0.8rem;
    justify-content: center;
    max-width: 900px;
    margin: 0 auto;
}

/* ===== SERVICE DETAIL PAGE ===== */

/* Service Hero - Design sans image */
.service-hero {
    background: var(--gradient-dark);
    padding: 10rem 0 4rem;
    position: relative;
    overflow: hidden;
}

.service-hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: var(--primary);
    opacity: 0.1;
    border-radius: 50%;
}

.service-hero::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -5%;
    width: 300px;
    height: 300px;
    background: var(--primary);
    opacity: 0.05;
    border-radius: 50%;
}

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

.service-hero .breadcrumb {
    margin-bottom: 2rem;
}

.service-hero .breadcrumb a,
.service-hero .breadcrumb span {
    color: rgba(255,255,255,0.7);
}

.service-hero .breadcrumb span:last-child {
    color: var(--primary);
}

.service-hero-content {
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
}

.service-hero-icon {
    width: 90px;
    height: 90px;
    background: var(--gradient);
    border-radius: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    color: var(--white);
    margin: 0 auto 1.5rem;
    box-shadow: 0 20px 40px rgba(255, 107, 53, 0.3);
}

.service-hero h1 {
    color: var(--white);
    font-size: clamp(2.2rem, 5vw, 3.2rem);
    margin-bottom: 1rem;
    font-weight: 800;
}

.service-hero-subtitle {
    color: rgba(255,255,255,0.85);
    font-size: 1.2rem;
    line-height: 1.6;
}

/* Service Intro */
.service-intro {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.service-intro p {
    font-size: 1.15rem;
    line-height: 1.9;
    color: var(--text);
}

/* Benefits Grid */
.benefits-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}

.benefit-card {
    background: var(--white);
    padding: 2rem;
    border-radius: var(--radius);
    text-align: center;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
}

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

.benefit-icon {
    width: 60px;
    height: 60px;
    background: rgba(255, 107, 53, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    font-size: 1.5rem;
    color: var(--primary);
}

.benefit-card h4 {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    color: var(--secondary);
}

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

/* For Who Grid */
.for-who-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.for-who-content .section-title {
    text-align: left;
}

.for-who-list {
    list-style: none;
    margin-top: 2rem;
}

.for-who-list li {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1rem;
    font-size: 1.05rem;
    color: var(--text);
}

.for-who-list li i {
    color: var(--primary);
    font-size: 1.2rem;
    margin-top: 0.2rem;
}

.for-who-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: var(--radius);
    box-shadow: var(--shadow-lg);
}

/* Session Content */
.session-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.session-content .section-title {
    margin-bottom: 2rem;
}

.session-text {
    font-size: 1.15rem;
    line-height: 1.9;
    color: rgba(255,255,255,0.9);
    margin-bottom: 2rem;
}

.session-hint {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255,107,53,0.2);
    color: var(--primary);
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    font-weight: 500;
}

/* Steps Grid */
.steps-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.step-card {
    text-align: center;
    padding: 2rem;
    position: relative;
}

.step-number {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 30px;
    height: 30px;
    background: var(--gradient);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.9rem;
}

.step-icon {
    width: 70px;
    height: 70px;
    background: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 1rem auto 1.5rem;
    font-size: 1.8rem;
    color: var(--primary);
    box-shadow: var(--shadow);
}

.step-card h4 {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    color: var(--secondary);
}

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

/* Other Services Grid */
.other-services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

/* ===== SERVICE DETAIL PAGE LAYOUT ===== */
.service-detail-grid {
    display: grid;
    grid-template-columns: 1fr 350px;
    gap: 3rem;
    align-items: start;
}

.service-detail-main {
    background: var(--white);
    border-radius: var(--radius);
    padding: 3rem;
    box-shadow: var(--shadow);
}

.service-detail-main h2 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--secondary);
    margin: 2.5rem 0 1rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--light-bg);
}

.service-detail-main h2:first-of-type {
    margin-top: 2rem;
    padding-top: 0;
    border-top: none;
}

.service-detail-main p {
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 1rem;
}

.service-detail-main .lead {
    font-size: 1.15rem;
    color: var(--text);
    font-weight: 500;
    line-height: 1.8;
}

.service-icon-large {
    width: 80px;
    height: 80px;
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin-bottom: 1.5rem;
}

/* Benefits in service detail */
.service-detail-main .benefits-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin-top: 1.5rem;
}

.benefit-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.25rem;
    background: var(--light-bg);
    border-radius: var(--radius-sm);
    transition: all 0.3s ease;
}

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

.benefit-item .benefit-icon {
    width: 45px;
    height: 45px;
    min-width: 45px;
    background: var(--gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.1rem;
    margin: 0;
}

.benefit-item h4 {
    font-size: 1rem;
    font-weight: 600;
    color: var(--secondary);
    margin-bottom: 0.25rem;
}

.benefit-item p {
    font-size: 0.9rem;
    color: var(--text-light);
    margin: 0;
    line-height: 1.5;
}

/* Tags list */
.tags-list {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-top: 1rem;
}

.tag {
    background: var(--light-bg);
    color: var(--secondary);
    padding: 0.6rem 1.2rem;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 500;
    transition: all 0.3s ease;
}

.tag:hover {
    background: var(--primary);
    color: var(--white);
}

/* Sidebar */
.service-detail-sidebar {
    position: sticky;
    top: 100px;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.sidebar-card {
    background: var(--white);
    border-radius: var(--radius);
    padding: 2rem;
    box-shadow: var(--shadow);
}

.sidebar-card:first-child {
    background: var(--gradient);
    color: var(--white);
    text-align: center;
}

.sidebar-card:first-child h3 {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.sidebar-card:first-child p {
    opacity: 0.9;
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
}

.sidebar-card:first-child .btn-primary {
    background: var(--white);
    color: var(--primary);
}

.sidebar-card:first-child .btn-primary:hover {
    background: var(--secondary);
    color: var(--white);
}

.sidebar-card h4 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--secondary);
    margin-bottom: 1rem;
}

/* Other services list in sidebar */
.other-services {
    list-style: none;
    padding: 0;
    margin: 0;
}

.other-services li {
    margin-bottom: 0.5rem;
}

.other-services li:last-child {
    margin-bottom: 0;
}

.other-services a {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 1rem;
    background: var(--light-bg);
    border-radius: var(--radius-sm);
    text-decoration: none;
    color: var(--text);
    font-weight: 500;
    font-size: 0.95rem;
    transition: all 0.3s ease;
}

.other-services a:hover {
    background: var(--primary);
    color: var(--white);
    transform: translateX(5px);
}

.other-services a i {
    font-size: 1.1rem;
    color: var(--primary);
    transition: color 0.3s ease;
}

.other-services a:hover i {
    color: var(--white);
}

/* Utility classes */
.w-100 {
    width: 100%;
}

.lead {
    font-size: 1.15rem;
    font-weight: 500;
    line-height: 1.8;
}

/* CTA Section */
.cta-section {
    background: var(--gradient-dark);
    padding: 5rem 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 500px;
    height: 500px;
    background: var(--primary);
    opacity: 0.1;
    border-radius: 50%;
}

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

.cta-badge {
    display: inline-block;
    background: var(--gradient);
    color: var(--white);
    padding: 0.5rem 1.2rem;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.cta-section h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    color: var(--white);
    margin-bottom: 1rem;
}

.cta-section h2 strong {
    color: var(--primary);
}

.cta-section p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.2rem;
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Page Header */
.page-header {
    background: var(--gradient-dark);
    padding: 10rem 0 4rem;
    position: relative;
}

.page-header::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 100px;
    background: var(--white);
    clip-path: polygon(0 100%, 100% 100%, 100% 0);
}

.page-header h1 {
    color: var(--white);
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 800;
}

.page-header p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.2rem;
    margin-top: 1rem;
}

.breadcrumb {
    display: flex;
    gap: 0.5rem;
    list-style: none;
    margin-bottom: 1rem;
}

.breadcrumb a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
}

.breadcrumb span {
    color: var(--primary);
}

/* Footer */
.footer {
    background: var(--secondary);
    color: var(--white);
    padding: 5rem 0 2rem;
}

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

.footer-brand {
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 1rem;
}

.footer-brand span {
    color: var(--primary);
}

.footer-text {
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 1.5rem;
    max-width: 300px;
}

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

.social-links a {
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: var(--primary);
    transform: translateY(-3px);
}

.footer-title {
    font-weight: 700;
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}

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

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

.footer-links a {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    transition: color 0.3s ease;
}

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

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    margin-top: 3rem;
    padding-top: 2rem;
    text-align: center;
    color: rgba(255, 255, 255, 0.5);
}

.footer-bottom a {
    color: var(--primary);
    text-decoration: none;
}

/* Contact Form */
.contact-section {
    background: var(--light-bg);
}

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

.contact-info {
    background: var(--gradient);
    border-radius: var(--radius);
    padding: 2.5rem;
    color: var(--white);
}

.contact-info h2 {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.contact-info > p {
    opacity: 0.9;
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 2rem;
}

.contact-info h3 {
    font-size: 1.5rem;
    margin-bottom: 2rem;
}

.contact-info-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.contact-info-item:last-child {
    margin-bottom: 0;
}

.contact-icon {
    width: 50px;
    height: 50px;
    min-width: 50px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
}

.contact-info-item h4 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 0.3rem;
}

.contact-info-item p {
    opacity: 0.9;
    font-size: 0.95rem;
    line-height: 1.5;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.contact-item i {
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
}

.contact-item h4 {
    font-size: 1rem;
    margin-bottom: 0.3rem;
}

.contact-item p {
    opacity: 0.9;
    font-size: 0.95rem;
}

.contact-form-wrapper {
    background: var(--white);
    border-radius: var(--radius);
    padding: 2.5rem;
    box-shadow: var(--shadow);
}

.contact-form {
    background: var(--white);
    border-radius: var(--radius);
    padding: 2.5rem;
    box-shadow: var(--shadow);
}

.contact-form-wrapper .contact-form {
    padding: 0;
    box-shadow: none;
}

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

.form-group label {
    display: block;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--secondary);
    font-size: 0.95rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 1rem 1.2rem;
    border: 2px solid var(--light-bg);
    border-radius: var(--radius-sm);
    font-size: 1rem;
    font-family: inherit;
    transition: all 0.3s ease;
    background: var(--white);
}

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

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--text-light);
}

.form-group select {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='%2364748B' viewBox='0 0 16 16'%3E%3Cpath d='M7.247 11.14 2.451 5.658C1.885 5.013 2.345 4 3.204 4h9.592a1 1 0 0 1 .753 1.659l-4.796 5.48a1 1 0 0 1-1.506 0z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    padding-right: 3rem;
}

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

.form-label {
    display: block;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--secondary);
}

.form-control {
    width: 100%;
    padding: 1rem 1.2rem;
    border: 2px solid var(--light-bg);
    border-radius: var(--radius-sm);
    font-size: 1rem;
    font-family: inherit;
    transition: border-color 0.3s ease;
}

.form-control:focus {
    outline: none;
    border-color: var(--primary);
}

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

/* Captcha */
.captcha-container {
    background: var(--light-bg);
    border-radius: var(--radius-sm);
    padding: 1.2rem 1.5rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.captcha-box {
    background: var(--light-bg);
    border-radius: var(--radius-sm);
    padding: 1.2rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.dice-display {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 2.5rem;
    line-height: 1;
}

.dice-plus {
    font-size: 1.5rem;
    color: var(--text-light);
}

.dice-equals {
    font-size: 1.5rem;
    color: var(--text-light);
    margin: 0 0.5rem;
}

.captcha-container input[type="number"] {
    width: 70px;
    text-align: center;
    font-size: 1.2rem;
    font-weight: 600;
    padding: 0.75rem;
    border: 2px solid var(--light-bg);
    border-radius: var(--radius-sm);
    background: var(--white);
}

.captcha-container input[type="number"]:focus {
    border-color: var(--primary);
    outline: none;
}

.captcha-input {
    width: 70px;
    text-align: center;
    font-size: 1.2rem;
    font-weight: 600;
}

.captcha-refresh {
    background: none;
    border: none;
    color: var(--primary);
    cursor: pointer;
    font-size: 1.3rem;
    padding: 0.5rem;
    transition: all 0.3s ease;
    border-radius: 50%;
}

.captcha-refresh:hover {
    transform: rotate(180deg);
    background: rgba(8, 145, 178, 0.1);
}

.btn-submit {
    background: var(--gradient);
    color: var(--white);
    border: none;
    padding: 1rem 2.5rem;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.4s ease;
    width: 100%;
}

.btn-submit:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(255, 107, 53, 0.4);
}

/* FAQ */
.faq-section {
    background: var(--white);
}

.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: var(--light-bg);
    border-radius: var(--radius-sm);
    margin-bottom: 1rem;
    overflow: hidden;
    transition: all 0.3s ease;
}

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

.faq-item.active {
    background: var(--white);
    box-shadow: var(--shadow);
}

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

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

.faq-question i {
    color: var(--primary);
    font-size: 1.2rem;
    transition: transform 0.3s ease;
    flex-shrink: 0;
}

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

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
}

.faq-answer p {
    padding: 0 1.5rem 1.5rem;
    color: var(--text-light);
    line-height: 1.8;
    margin: 0;
}

.faq-answer-inner {
    padding: 0 1.5rem 1.5rem;
    color: var(--text-light);
    line-height: 1.8;
}

.faq-item.active .faq-answer {
    max-height: 500px;
}

/* Utilities */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

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

/* Animations */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease;
}

.reveal.revealed {
    opacity: 1;
    transform: translateY(0);
}

/* Spinner */
.spinner {
    display: none;
    width: 20px;
    height: 20px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-top-color: var(--white);
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
    margin-right: 0.5rem;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

.btn-submit.loading .spinner {
    display: inline-block;
}

/* Alert */
.alert {
    padding: 1rem 1.5rem;
    border-radius: var(--radius-sm);
    margin-bottom: 1.5rem;
    display: none;
}

.alert.show {
    display: block;
}

.alert-success {
    background: rgba(16, 185, 129, 0.1);
    color: #10B981;
}

.alert-danger {
    background: rgba(239, 68, 68, 0.1);
    color: #EF4444;
}

/* Mobile Offcanvas */
.offcanvas {
    position: fixed;
    top: 0;
    right: -100%;
    width: 300px;
    height: 100vh;
    background: var(--white);
    z-index: 2000;
    transition: right 0.4s ease;
    box-shadow: -10px 0 40px rgba(0,0,0,0.2);
}

.offcanvas.active {
    right: 0;
}

.offcanvas-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem;
    border-bottom: 1px solid var(--light-bg);
}

.offcanvas-header .logo {
    color: var(--secondary);
}

.offcanvas-close {
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--text);
    padding: 0.5rem;
}

.offcanvas-body {
    padding: 1.5rem;
}

.offcanvas-nav {
    list-style: none;
}

.offcanvas-nav li {
    margin-bottom: 0;
}

.offcanvas-nav a {
    display: block;
    padding: 1rem 0;
    color: var(--text);
    text-decoration: none;
    font-weight: 500;
    font-size: 1.1rem;
    border-bottom: 1px solid var(--light-bg);
    transition: all 0.3s ease;
}

.offcanvas-nav a:hover,
.offcanvas-nav a.active {
    color: var(--primary);
    padding-left: 0.5rem;
}

.offcanvas-nav .nav-cta {
    display: inline-block;
    margin-top: 1rem;
    background: var(--gradient);
    color: var(--white);
    padding: 1rem 2rem;
    border-radius: 50px;
    text-align: center;
    border: none;
}

.offcanvas-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.5);
    z-index: 1999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.offcanvas-overlay.active {
    opacity: 1;
    visibility: visible;
}

/* Responsive */
@media (max-width: 1024px) {
    .hero-bg {
        width: 50%;
    }
    
    .about-grid,
    .zones-content,
    .contact-grid,
    .for-who-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
    
    .about-content {
        margin-top: 1rem;
    }
    
    .testimonials-wrapper {
        flex-direction: column;
    }
    
    .testimonial-rating-card {
        flex: 0 0 auto;
    }
    
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
    
    .benefits-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .steps-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .other-services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .service-detail-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .service-detail-sidebar {
        position: static;
        flex-direction: row;
        flex-wrap: wrap;
    }
    
    .service-detail-sidebar .sidebar-card {
        flex: 1;
        min-width: 280px;
    }
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
    }
    
    .menu-toggle {
        display: flex;
    }
    
    /* Hero Mobile - Image en background, contenu par dessus */
    .hero {
        min-height: 100vh;
        padding: 0;
        display: flex;
        align-items: flex-end;
        position: relative;
    }
    
    .hero-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
        min-height: auto;
        padding: 8rem 0 3rem;
    }
    
    .hero-image {
        display: none;
    }
    
    .hero-bg {
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        width: 100%;
        height: 100%;
        clip-path: none;
        background-position: top center;
    }
    
    .hero-bg::before {
        content: '';
        position: absolute;
        inset: 0;
        background: linear-gradient(180deg, rgba(26,26,46,0.2) 0%, rgba(26,26,46,0.95) 70%);
        display: block;
    }
    
    .hero > .container {
        position: relative;
        z-index: 2;
        padding-bottom: 3rem;
        padding-top: 8rem;
    }
    
    .hero-content {
        padding: 0;
        text-align: center;
        max-width: 100%;
    }
    
    .hero-badge {
        font-size: 0.75rem;
        padding: 0.4rem 1rem;
        margin-bottom: 1rem;
    }
    
    .hero h1 {
        font-size: 1.6rem;
        margin-bottom: 1rem;
        line-height: 1.2;
    }
    
    .hero-subtitle {
        font-size: 0.9rem;
        margin-bottom: 1.5rem;
        line-height: 1.6;
    }
    
    .hero-cta {
        justify-content: center;
        gap: 0.75rem;
    }
    
    .hero-cta .btn-primary,
    .hero-cta .btn-outline {
        padding: 0.9rem 1.5rem;
        font-size: 0.9rem;
    }
    
    .hero-buttons {
        justify-content: center;
        gap: 0.75rem;
    }
    
    .hero-buttons .btn-primary,
    .hero-buttons .btn-secondary {
        padding: 0.9rem 1.5rem;
        font-size: 0.9rem;
    }
    
    .hero-stats {
        display: flex;
        justify-content: center;
        gap: 2rem;
        margin-top: 2rem;
        padding-top: 1.5rem;
        flex-wrap: wrap;
        border-top: 1px solid rgba(255,255,255,0.1);
    }
    
    .stat-number {
        font-size: 1.8rem;
    }
    
    .stat-label {
        font-size: 0.75rem;
    }
    
    /* Marquee mobile */
    .marquee-section {
        padding: 1rem 0;
    }
    
    .marquee-item {
        font-size: 0.9rem;
        padding: 0 1.5rem;
    }
    
    /* Section adjustments mobile */
    .section {
        padding: 3rem 0;
    }
    
    .section-header {
        margin-bottom: 2rem;
    }
    
    .section-title {
        font-size: 1.6rem;
    }
    
    .about-grid {
        gap: 2rem;
    }
    
    .about-images {
        height: 350px;
        margin-bottom: 1rem;
    }
    
    /* Pour les pages services où l'image est seule */
    .about-images img.about-img-main[style*="width:100%"] {
        position: relative;
        width: 100% !important;
        height: auto !important;
        border-radius: var(--radius);
    }
    
    .about-content {
        padding-top: 0.5rem;
    }
    
    .about-content .section-tag {
        margin-bottom: 0.75rem;
    }
    
    .about-content h2 {
        margin-top: 0.5rem;
    }
    
    .about-img-main {
        width: 80%;
        height: 70%;
    }
    
    .about-img-secondary {
        width: 45%;
        height: 45%;
    }
    
    .about-badge {
        top: 10px;
        left: 10px;
        padding: 0.5rem 0.8rem;
        font-size: 0.85rem;
    }
    
    .about-badge i {
        font-size: 0.9rem;
    }
    
    .about-badge .text {
        font-size: 0.7rem;
    }
    
    .about-content h2 {
        font-size: 1.6rem;
    }
    
    /* About image mobile */
    .about-image img {
        height: 350px;
    }
    
    .about-philosophy {
        padding: 1rem 1.5rem;
    }
    
    /* Certifications mobile */
    .certifications-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
    
    .certification-card {
        padding: 1.5rem;
    }
    
    .certification-icon {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }
    
    /* Testimonials mobile */
    .testimonials-slider {
        margin: 0;
        padding: 0.5rem;
    }
    
    .testimonial-card {
        flex: 0 0 300px;
        padding: 1.5rem;
    }
    
    /* Service Detail Mobile */
    .service-detail-grid {
        gap: 1.5rem;
    }
    
    .service-detail-main {
        padding: 1.5rem;
    }
    
    .service-detail-main h2 {
        font-size: 1.3rem;
        margin: 2rem 0 0.75rem;
        padding-top: 1.25rem;
    }
    
    .service-detail-main .benefits-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .benefit-item {
        padding: 1rem;
    }
    
    .service-icon-large {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
    
    .tags-list {
        gap: 0.5rem;
    }
    
    .tag {
        padding: 0.5rem 1rem;
        font-size: 0.85rem;
    }
    
    .service-detail-sidebar {
        flex-direction: column;
    }
    
    .service-detail-sidebar .sidebar-card {
        min-width: 100%;
    }
    
    .sidebar-card {
        padding: 1.5rem;
    }
    
    .other-services a {
        padding: 0.6rem 0.8rem;
        font-size: 0.9rem;
    }
    
    .service-image {
        margin-bottom: 0;
    }
    
    .service-detail-img {
        max-height: 280px;
        border-radius: var(--radius-sm);
    }
    
    .service-detail-grid .about-content {
        padding-top: 0;
    }
    
    .service-detail-grid .about-content .section-tag {
        margin-bottom: 0.5rem;
    }
    
    .service-detail-grid .about-content h2 {
        margin-top: 0;
        margin-bottom: 1rem;
        font-size: 1.5rem;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    .testimonial-rating-card {
        padding: 2rem;
    }
    
    .big-rating {
        font-size: 3.5rem;
    }
    
    .services-grid,
    .other-services-grid {
        grid-template-columns: 1fr;
    }
    
    .service-card {
        height: 280px;
    }
    
    /* Service Detail Page Mobile */
    .service-hero {
        min-height: 40vh;
        padding-top: 6rem;
        padding-bottom: 2rem;
    }
    
    .service-hero-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
        border-radius: 15px;
    }
    
    .service-hero h1 {
        font-size: 1.8rem;
    }
    
    .service-hero-subtitle {
        font-size: 1rem;
    }
    
    .service-intro p {
        font-size: 1rem;
        text-align: left;
    }
    
    .benefits-grid,
    .steps-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .benefit-card {
        padding: 1.5rem;
        display: flex;
        align-items: flex-start;
        text-align: left;
        gap: 1rem;
    }
    
    .benefit-icon {
        margin: 0;
        flex-shrink: 0;
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }
    
    .benefit-card h4 {
        margin-bottom: 0.3rem;
    }
    
    .for-who-grid {
        gap: 2rem;
    }
    
    .for-who-content .section-title {
        font-size: 1.5rem;
    }
    
    .for-who-list li {
        font-size: 0.95rem;
    }
    
    .for-who-image img {
        height: 250px;
    }
    
    .session-text {
        font-size: 1rem;
        text-align: left;
    }
    
    .session-hint {
        font-size: 0.9rem;
        padding: 0.6rem 1rem;
    }
    
    .step-card {
        padding: 1.5rem 1rem;
    }
    
    .step-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .contact-info {
        padding: 2rem;
    }
    
    .contact-info h2 {
        font-size: 1.5rem;
    }
    
    .contact-icon {
        width: 45px;
        height: 45px;
        min-width: 45px;
        font-size: 1.1rem;
    }
    
    .contact-info-item {
        margin-bottom: 1.25rem;
    }
    
    .contact-info-item h4 {
        font-size: 0.95rem;
    }
    
    .contact-info-item p {
        font-size: 0.9rem;
    }
    
    .contact-form-wrapper {
        padding: 1.5rem;
    }
    
    .contact-form {
        padding: 1.5rem;
    }
    
    .form-group label {
        font-size: 0.9rem;
    }
    
    .form-group input,
    .form-group select,
    .form-group textarea {
        padding: 0.875rem 1rem;
        font-size: 0.95rem;
    }
    
    .captcha-container {
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: flex-start;
        padding: 1rem;
    }
    
    .dice-display {
        font-size: 2rem;
    }
    
    .captcha-container input[type="number"] {
        width: 60px;
        font-size: 1rem;
        padding: 0.6rem;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .page-header {
        padding: 8rem 0 3rem;
    }
    
    .page-header h1 {
        font-size: 2rem;
    }
    
    .page-header::after {
        height: 50px;
    }
    
    .cta-section {
        padding: 3rem 0;
    }
    
    .cta-section h2 {
        font-size: 1.6rem;
    }
    
    .captcha-box {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }
    
    .zones-content {
        gap: 2rem;
    }
    
    .specialties-grid {
        gap: 0.5rem;
    }
    
    .specialty-chip {
        padding: 0.6rem 1rem;
        font-size: 0.85rem;
    }
    
    /* Carrousel témoignages mobile */
    .testimonial-slide {
        flex: 0 0 100%;
        min-width: 100%;
    }
    
    .testimonial-card-v2 {
        padding: 1.5rem;
    }
    
    .testimonial-quote {
        min-height: auto;
        font-size: 0.95rem;
    }
    
    .carousel-btn {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
    
    .rating-summary {
        flex-direction: column;
        gap: 0.5rem;
    }
}

@media (max-width: 480px) {
    .hero h1 {
        font-size: 1.5rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .hero-buttons .btn-primary,
    .hero-buttons .btn-secondary {
        width: 100%;
        justify-content: center;
    }
    
    .hero-stats {
        gap: 1rem;
    }
    
    .stat-item {
        flex: 1;
        min-width: 80px;
    }
    
    .about-images {
        height: 300px;
    }
    
    .container {
        padding: 0 1rem;
    }
}

/* Tablet responsive pour carrousel */
@media (min-width: 769px) and (max-width: 1024px) {
    .testimonial-slide {
        flex: 0 0 calc(50% - 0.75rem);
        min-width: calc(50% - 0.75rem);
    }
}
