/* ==========================================================================
           VARIABLES ET STYLES GLOBAUX
        ========================================================================== */
        :root {
            --orange-primary: #ff7a18;
            --orange-secondary: #ff9f43;
            --orange-light: #ffe5d4;
            --dark-color: #0b3d3a;
            --dark-secondary: #094b46;
            --light-color: #ffffff;
            --gray-light: #f8f9fa;
            --gray-medium: #e9ecef;
            --gradient-orange: linear-gradient(135deg, #ff7a18 0%, #ff9f43 100%);
            --gradient-dark: linear-gradient(135deg, #0b3d3a 0%, #094b46 100%);
            --shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
            --shadow-light: 0 5px 15px rgba(0, 0, 0, 0.05);
            --shadow-hover: 0 20px 50px rgba(0, 0, 0, 0.15);
            --transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
            --border-radius: 20px;
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
            line-height: 1.6;
            color: #333;
            background: white; /* CHANGÉ : Arrière-plan blanc simple */
            -webkit-font-smoothing: antialiased;
            -moz-osx-font-smoothing: grayscale;
            overflow-x: hidden;
            min-height: 100vh;
        }

        h1, h2, h3, h4 {
            font-family: 'Poppins', sans-serif;
            font-weight: 700;
        }

        .container {
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 20px;
        }

        .section {
            padding: 80px 0; /* Restauré le padding original */
        }

        /* ==========================================================================
           ANIMATIONS
        ========================================================================== */
        @keyframes fadeUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        @keyframes slideInUp {
            from {
                opacity: 0;
                transform: translateY(40px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        @keyframes tagAppear {
            from {
                opacity: 0;
                transform: translateY(-10px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        @keyframes shimmerEffect {
            0% { transform: translateX(-100%) rotate(45deg); }
            100% { transform: translateX(100%) rotate(45deg); }
        }

        @keyframes floatAnimation {
            0%, 100% { transform: translateY(0); }
            50% { transform: translateY(-5px); }
        }

        @keyframes pulse {
            0%, 100% { transform: scale(1); }
            50% { transform: scale(1.3); }
        }

        @keyframes rotate {
            0% { transform: rotate(0deg); }
            100% { transform: rotate(360deg); }
        }

        @keyframes wordCarousel {
            0%, 20% { opacity: 0; transform: translateY(100%); }
            5%, 15% { opacity: 1; transform: translateY(0); }
            25%, 100% { opacity: 0; transform: translateY(-100%); }
        }

        @keyframes letterFloat {
            0%, 100% { transform: translateY(0); }
            50% { transform: translateY(-10px); }
        }

        .animate-on-scroll {
            opacity: 0;
            transform: translateY(30px);
            transition: opacity 0.6s ease, transform 0.6s ease;
        }

        .animate-on-scroll.visible {
            opacity: 1;
            transform: translateY(0);
            animation: slideInUp 0.6s ease-out forwards;
        }

        /* ==========================================================================
           HEADER MINIMAL
        ========================================================================== */
        .minimal-header {
            text-align: center;
            margin-bottom: 60px;
            padding-top: 40px;
        }

        .title-line {
            width: 100px;
            height: 2px;
            background: var(--gradient-orange);
            margin: 0 auto 30px;
            border-radius: 1px;
        }

        .minimal-header h2 {
            font-size: 4rem;
            font-weight: 800;
            letter-spacing: 10px;
            margin-bottom: 20px;
            color: var(--dark-color);
        }

        .letter-animation {
            display: inline-block;
            color: var(--dark-color);
            animation: letterFloat 3s ease-in-out infinite;
            animation-delay: calc(var(--i) * 0.1s);
        }

        .slogan {
            font-size: 1.1rem;
            color: #666;
            letter-spacing: 2px;
            text-transform: uppercase;
        }

        /* ==========================================================================
           FILTRES MODERNES
        ========================================================================== */
        .modern-services-filter {
            padding: 60px 0 40px;
            background: white; /* CHANGÉ : Fond blanc */
            position: relative;
            z-index: 10;
            border-bottom: 1px solid rgba(11, 61, 58, 0.1);
        }

        .modern-services-filter::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100" opacity="0.03"><circle cx="50" cy="50" r="1" fill="%230b3d3a"/></svg>');
            background-size: 40px 40px;
            pointer-events: none;
        }

        .filter-wrapper {
            background: white;
            border-radius: 24px;
            padding: 40px;
            box-shadow: 0 20px 60px rgba(11, 61, 58, 0.08);
            border: 1px solid rgba(11, 61, 58, 0.06);
        }

        /* Header du filtre */
        .modern-filter-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 40px;
            padding-bottom: 25px;
            border-bottom: 1px solid rgba(11, 61, 58, 0.08);
        }

        .header-content {
            display: flex;
            align-items: center;
            gap: 20px;
        }

        .header-icon-wrapper {
            width: 70px;
            height: 70px;
            background: var(--gradient-orange);
            border-radius: 20px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 1.8rem;
            box-shadow: 0 10px 30px rgba(255, 122, 24, 0.25);
            position: relative;
            overflow: hidden;
        }

        .header-icon-wrapper::after {
            content: '';
            position: absolute;
            top: -50%;
            left: -50%;
            right: -50%;
            bottom: -50%;
            background: linear-gradient(45deg, transparent 30%, rgba(255, 255, 255, 0.2) 50%, transparent 70%);
            transform: rotate(45deg);
            animation: shimmerEffect 3s infinite linear;
        }

        .header-text h3 {
            font-size: 2rem;
            font-weight: 800;
            color: var(--dark-color);
            margin-bottom: 8px;
            line-height: 1.2;
        }

        .header-text p {
            color: #666;
            font-size: 1rem;
            margin: 0;
            font-weight: 400;
        }

        .filter-count {
            text-align: center;
            padding: 15px 25px;
            background: linear-gradient(135deg, rgba(11, 61, 58, 0.05), rgba(255, 122, 24, 0.05));
            border-radius: 16px;
            border: 1px solid rgba(11, 61, 58, 0.1);
            min-width: 120px;
        }

        .count-number {
            display: block;
            font-size: 2.5rem;
            font-weight: 800;
            color: var(--orange-primary);
            line-height: 1;
        }

        .count-label {
            font-size: 0.9rem;
            color: #666;
            font-weight: 500;
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }

        /* Tabs du filtre */
        .modern-filter-tabs {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
            gap: 16px;
            margin-bottom: 40px;
        }

        .modern-tab-btn {
            background: white;
            border: 1.5px solid rgba(11, 61, 58, 0.08);
            border-radius: 18px;
            padding: 20px;
            display: flex;
            align-items: center;
            gap: 15px;
            cursor: pointer;
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            position: relative;
            overflow: hidden;
            outline: none;
        }

        .modern-tab-btn::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(135deg, rgba(255, 122, 24, 0.05), rgba(255, 159, 67, 0.05));
            opacity: 0;
            transition: opacity 0.3s ease;
        }

        .modern-tab-btn:hover::before {
            opacity: 1;
        }

        .modern-tab-btn:hover {
            border-color: var(--orange-primary);
            transform: translateY(-3px);
            box-shadow: 0 10px 30px rgba(255, 122, 24, 0.15);
        }

        .modern-tab-btn.active {
            background: var(--gradient-orange);
            border-color: transparent;
            box-shadow: 0 15px 40px rgba(255, 122, 24, 0.25);
            animation: floatAnimation 3s ease-in-out infinite;
        }

        .modern-tab-btn.active::before {
            opacity: 0;
        }

        .tab-icon {
            width: 48px;
            height: 48px;
            background: rgba(11, 61, 58, 0.05);
            border-radius: 14px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--dark-color);
            font-size: 1.4rem;
            flex-shrink: 0;
            transition: all 0.3s ease;
        }

        .modern-tab-btn.active .tab-icon {
            background: rgba(255, 255, 255, 0.2);
            color: white;
        }

        .tab-content {
            flex: 1;
            text-align: left;
            min-width: 0;
        }

        .tab-title {
            display: block;
            font-size: 1.1rem;
            font-weight: 700;
            color: var(--dark-color);
            margin-bottom: 4px;
            transition: color 0.3s ease;
        }

        .modern-tab-btn.active .tab-title {
            color: white;
        }

        .tab-count {
            display: block;
            font-size: 0.85rem;
            color: #666;
            font-weight: 500;
            transition: color 0.3s ease;
        }

        .modern-tab-btn.active .tab-count {
            color: rgba(255, 255, 255, 0.9);
        }

        .tab-indicator {
            width: 8px;
            height: 8px;
            background: var(--orange-primary);
            border-radius: 50%;
            opacity: 0;
            transform: scale(0);
            transition: all 0.3s ease;
        }

        .modern-tab-btn.active .tab-indicator {
            opacity: 1;
            transform: scale(1);
        }

        /* Barre d'actions */
        .filter-actions-bar {
            display: flex;
            justify-content: space-between;
            align-items: center;
            gap: 30px;
            margin-bottom: 30px;
            padding: 25px;
            background: linear-gradient(135deg, rgba(11, 61, 58, 0.02), rgba(255, 122, 24, 0.02));
            border-radius: 18px;
            border: 1px solid rgba(11, 61, 58, 0.06);
        }

        .search-container {
            flex: 1;
            position: relative;
            max-width: 500px;
        }

        .search-icon {
            position: absolute;
            left: 20px;
            top: 50%;
            transform: translateY(-50%);
            color: #666;
            font-size: 1.1rem;
        }

        .search-input {
            width: 100%;
            padding: 18px 20px 18px 55px;
            background: white;
            border: 2px solid rgba(11, 61, 58, 0.1);
            border-radius: 14px;
            font-size: 1rem;
            font-family: 'Inter', sans-serif;
            color: var(--dark-color);
            transition: all 0.3s ease;
            outline: none;
        }

        .search-input:focus {
            border-color: var(--orange-primary);
            box-shadow: 0 0 0 3px rgba(255, 122, 24, 0.1);
        }

        .clear-search {
            position: absolute;
            right: 15px;
            top: 50%;
            transform: translateY(-50%);
            background: rgba(11, 61, 58, 0.1);
            border: none;
            width: 32px;
            height: 32px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #666;
            cursor: pointer;
            transition: all 0.3s ease;
            opacity: 0;
            pointer-events: none;
        }

        .clear-search.visible {
            opacity: 1;
            pointer-events: all;
        }

        .clear-search:hover {
            background: rgba(11, 61, 58, 0.2);
            color: var(--dark-color);
        }

        .filter-actions {
            display: flex;
            gap: 15px;
        }

        .action-btn {
            background: white;
            border: 1.5px solid rgba(11, 61, 58, 0.1);
            border-radius: 12px;
            padding: 14px 24px;
            font-size: 0.95rem;
            font-weight: 600;
            color: var(--dark-color);
            cursor: pointer;
            display: flex;
            align-items: center;
            gap: 10px;
            transition: all 0.3s ease;
        }

        .action-btn:hover {
            border-color: var(--orange-primary);
            background: rgba(255, 122, 24, 0.05);
            transform: translateY(-2px);
            box-shadow: 0 5px 20px rgba(255, 122, 24, 0.1);
        }

        /* Filtres actifs */
        .active-filters-display {
            padding: 25px;
            background: linear-gradient(135deg, rgba(11, 61, 58, 0.03), rgba(255, 122, 24, 0.03));
            border-radius: 18px;
            border: 1px solid rgba(11, 61, 58, 0.06);
            display: flex;
            justify-content: space-between;
            align-items: center;
            gap: 20px;
        }

        .filters-tags {
            display: flex;
            flex-wrap: wrap;
            gap: 10px;
            flex: 1;
        }

        .filter-tag {
            background: var(--gradient-orange);
            color: white;
            padding: 10px 18px;
            border-radius: 12px;
            font-size: 0.9rem;
            font-weight: 600;
            display: inline-flex;
            align-items: center;
            gap: 10px;
            box-shadow: 0 5px 15px rgba(255, 122, 24, 0.2);
            animation: tagAppear 0.3s ease-out;
        }

        .filter-tag .remove-filter {
            font-size: 0.8rem;
            opacity: 0.8;
            cursor: pointer;
            transition: opacity 0.3s ease;
        }

        .filter-tag .remove-filter:hover {
            opacity: 1;
        }

        .filters-info {
            display: flex;
            align-items: center;
            gap: 15px;
        }

        .services-count {
            display: flex;
            align-items: center;
            gap: 10px;
            color: #666;
            font-size: 0.95rem;
            font-weight: 500;
        }

        .services-count i {
            color: var(--orange-primary);
        }

        #totalServicesCount {
            font-weight: 700;
            color: var(--dark-color);
        }

        /* ==========================================================================
           GRILLE DES SERVICES
        ========================================================================== */
        .all-services-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
            gap: 30px;
            margin: 60px 0;
        }

        .service-category-card {
            background: white;
            border-radius: var(--border-radius);
            overflow: hidden;
            box-shadow: var(--shadow);
            transition: var(--transition);
            position: relative;
            border-top: 5px solid var(--orange-primary);
            opacity: 0;
            transform: translateY(30px);
            animation: fadeUp 0.6s ease-out forwards;
            animation-delay: calc(var(--i) * 0.1s);
        }

        .service-category-card.visible {
            opacity: 1;
            transform: translateY(0);
        }

        .service-category-card:hover {
            transform: translateY(-15px);
            box-shadow: var(--shadow-hover);
        }

        .service-category-card:nth-child(1) { border-color: #ff7a18; }
        .service-category-card:nth-child(2) { border-color: #9d4edd; }
        .service-category-card:nth-child(3) { border-color: #ffd166; }
        .service-category-card:nth-child(4) { border-color: #06d6a0; }
        .service-category-card:nth-child(5) { border-color: #f8961e; }
        .service-category-card:nth-child(6) { border-color: #457b9d; }
        .service-category-card:nth-child(7) { border-color: #9d4edd; }
        .service-category-card:nth-child(8) { border-color: #f8961e; }
        .service-category-card:nth-child(9) { border-color: #3a86ff; }

        /* Image du service */
        .service-image-container {
            width: 100%;
            height: 220px;
            position: relative;
            overflow: hidden;
        }

        .service-image-container img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .service-category-card:hover .service-image-container img {
            transform: scale(1.1);
        }

        .image-overlay {
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(to bottom, 
                transparent 40%, 
                rgba(11, 61, 58, 0.8) 100%);
            display: flex;
            align-items: flex-end;
            padding: 20px;
            color: white;
        }

        .image-overlay h4 {
            font-size: 1.4rem;
            font-weight: 700;
            margin: 0;
            text-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
        }

        /* En-tête de catégorie */
        .category-header {
            padding: 25px 25px 15px;
            display: flex;
            align-items: center;
            gap: 15px;
            background: linear-gradient(135deg, rgba(11, 61, 58, 0.03), rgba(255, 122, 24, 0.03));
        }

        .category-icon {
            width: 60px;
            height: 60px;
            border-radius: 15px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 1.8rem;
            flex-shrink: 0;
            box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
            transition: var(--transition);
        }

        .service-category-card:hover .category-icon {
            transform: rotate(10deg) scale(1.1);
        }

        .category-icon.impression { background: var(--gradient-orange); }
        .category-icon.marketing { background: linear-gradient(135deg, #9d4edd, #c77dff); }
        .category-icon.design { background: linear-gradient(135deg, #ffd166, #ffb347); }
        .category-icon.textile { background: linear-gradient(135deg, #06d6a0, #0db39e); }
        .category-icon.admin { background: linear-gradient(135deg, #f8961e, #f9c74f); }
        .category-icon.grand-format { background: linear-gradient(135deg, #457b9d, #a8dadc); }
        .category-icon.objets { background: linear-gradient(135deg, #9d4edd, #560bad); }
        .category-icon.complement { background: linear-gradient(135deg, #f8961e, #f3722c); }
        .category-icon.cachet { background: linear-gradient(135deg, #3a86ff, #4361ee); }
        .category-icon.engraving {background: linear-gradient(135deg, #8B0000, #FF4500);}
        .category-title h3 {
            font-size: 1.3rem;
            color: var(--dark-color);
            margin-bottom: 5px;
            line-height: 1.3;
        }

        .category-count {
            font-size: 0.85rem;
            color: var(--orange-primary);
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            display: flex;
            align-items: center;
            gap: 5px;
        }

        /* Contenu de la catégorie */
        .category-content {
            padding: 0 25px 25px;
        }

        .category-content p {
            color: #666;
            margin-bottom: 20px;
            line-height: 1.7;
            font-weight: 300;
            font-size: 0.9rem;
        }

        .services-list {
            list-style: none;
            margin: 0;
            padding: 0;
        }

        .services-list li {
            padding: 12px 0;
            border-bottom: 1px solid rgba(0, 0, 0, 0.05);
            display: flex;
            align-items: center;
            gap: 12px;
            transition: var(--transition);
            color: var(--dark-color);
            font-weight: 500;
        }

        .services-list li:hover {
            background: rgba(255, 122, 24, 0.05);
            padding-left: 15px;
            border-radius: 10px;
        }

        .services-list li:last-child {
            border-bottom: none;
        }

        .service-item-icon {
            width: 24px;
            height: 24px;
            background: rgba(6, 214, 160, 0.1);
            border-radius: 8px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--orange-primary);
            font-size: 0.8rem;
            flex-shrink: 0;
            transition: var(--transition);
        }

        .services-list li:hover .service-item-icon {
            background: var(--gradient-orange);
            color: white;
            transform: rotate(5deg) scale(1.1);
        }

        .service-item-text {
            flex: 1;
            font-size: 0.9rem;
        }

        /* ==========================================================================
           SECTION RÉSUMÉ DES SERVICES
        ========================================================================== */
        .services-summary {
            background: white;
            border-radius: var(--border-radius);
            padding: 60px 40px;
            box-shadow: var(--shadow);
            margin: 60px 0;
        }

        .summary-header {
            text-align: center;
            margin-bottom: 50px;
        }

        .summary-header h2 {
            font-size: 2.5rem;
            color: var(--dark-color);
            margin-bottom: 20px;
        }

        .summary-header p {
            color: #666;
            max-width: 600px;
            margin: 0 auto;
            font-size: 1.1rem;
            font-weight: 300;
        }

        .summary-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 40px;
        }

        .summary-card {
            text-align: center;
            padding: 40px 25px;
            border-radius: 20px;
            background: var(--gray-light);
            transition: var(--transition);
            position: relative;
            overflow: hidden;
        }

        .summary-card:hover {
            transform: translateY(-10px);
            background: white;
            box-shadow: var(--shadow);
        }

        .summary-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 5px;
            background: var(--gradient-orange);
        }

        .summary-icon {
            width: 80px;
            height: 80px;
            border-radius: 20px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 2.2rem;
            margin: 0 auto 25px;
            background: var(--gradient-dark);
        }

        .summary-card h3 {
            font-size: 1.4rem;
            color: var(--dark-color);
            margin-bottom: 15px;
        }

        .summary-card p {
            color: #666;
            font-size: 0.95rem;
            line-height: 1.6;
        }

        /* ==========================================================================
           SECTION CTA
        ========================================================================== */
        .cta-section {
            background: white; /* CHANGÉ : Fond blanc */
            border-radius: var(--border-radius);
            padding: 80px 40px;
            color: var(--dark-color); /* CHANGÉ : Texte en couleur foncée */
            text-align: center;
            margin: 80px 0;
            position: relative;
            overflow: hidden;
            box-shadow: var(--shadow);
            border: 2px solid rgba(11, 61, 58, 0.1);
        }

        .cta-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="50" cy="50" r="1" fill="%230b3d3a" opacity="0.1"/></svg>');
            background-size: 50px 50px;
            pointer-events: none;
        }

        .cta-content h2 {
            font-size: 2.8rem;
            margin-bottom: 20px;
            font-weight: 800;
            position: relative;
            z-index: 1;
        }

        .cta-content p {
            opacity: 0.9;
            margin-bottom: 40px;
            font-size: 1.2rem;
            position: relative;
            z-index: 1;
            max-width: 600px;
            margin: 0 auto 40px;
            font-weight: 300;
            color: #666;
        }

        .cta-buttons {
            display: flex;
            gap: 25px;
            justify-content: center;
            flex-wrap: wrap;
            position: relative;
            z-index: 1;
        }

        .cta-btn {
            background: var(--gradient-orange); /* CHANGÉ : Dégradé orange */
            color: white; /* CHANGÉ : Texte blanc */
            border: none;
            padding: 20px 45px;
            border-radius: 15px;
            font-weight: 700;
            font-size: 1.1rem;
            cursor: pointer;
            transition: var(--transition);
            display: inline-flex;
            align-items: center;
            gap: 12px;
            box-shadow: 0 15px 40px rgba(255, 122, 24, 0.2);
            text-decoration: none;
            min-width: 200px;
            justify-content: center;
        }

        .cta-btn:hover {
            transform: translateY(-8px);
            box-shadow: 0 20px 50px rgba(255, 122, 24, 0.3);
            color: white;
            text-decoration: none;
        }

        /* ==========================================================================
           BOUTON WHATSAPP MODERNE
        ========================================================================== */
        .btn-whatsapp-modern {
            background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
            color: white;
            padding: 20px 45px;
            border-radius: 15px;
            border: none;
            font-weight: 700;
            font-size: 1.1rem;
            text-decoration: none;
            display: inline-flex;
            align-items: center;
            gap: 12px;
            transition: var(--transition);
            box-shadow: 0 15px 40px rgba(37, 211, 102, 0.3);
            position: relative;
            overflow: hidden;
            cursor: pointer;
            min-width: 200px;
            justify-content: center;
        }

        .btn-whatsapp-modern::before {
            content: '';
            position: absolute;
            top: 50%;
            left: 50%;
            width: 0;
            height: 0;
            background: rgba(255, 255, 255, 0.2);
            border-radius: 50%;
            transform: translate(-50%, -50%);
            transition: width 0.6s, height 0.6s;
        }

        .btn-whatsapp-modern:hover {
            transform: translateY(-8px) scale(1.05);
            box-shadow: 0 20px 50px rgba(37, 211, 102, 0.4);
            color: white;
            text-decoration: none;
        }

        .btn-whatsapp-modern:hover::before {
            width: 300px;
            height: 300px;
        }

        .btn-icon {
            font-size: 1.5rem;
            transition: transform 0.3s ease;
        }

        .btn-whatsapp-modern:hover .btn-icon {
            transform: rotate(15deg) scale(1.2);
        }

        /* ==========================================================================
           RESPONSIVE DESIGN
        ========================================================================== */
        @media (max-width: 1200px) {
            .all-services-grid {
                grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
            }
            
            .modern-filter-tabs {
                grid-template-columns: repeat(3, 1fr);
            }
        }

        @media (max-width: 992px) {
            .section {
                padding: 60px 0;
            }
            
            .services-summary {
                padding: 40px 20px;
            }
            
            .filter-wrapper {
                padding: 30px;
            }
            
            .modern-filter-header {
                flex-direction: column;
                align-items: flex-start;
                gap: 25px;
            }
            
            .filter-count {
                align-self: flex-start;
            }
            
            .filter-actions-bar {
                flex-direction: column;
                align-items: stretch;
            }
            
            .search-container {
                max-width: 100%;
            }
            
            .summary-grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }

        @media (max-width: 768px) {
            .all-services-grid {
                grid-template-columns: 1fr;
                gap: 25px;
            }
            
            .modern-filter-tabs {
                grid-template-columns: repeat(2, 1fr);
            }
            
            .modern-services-filter {
                padding: 40px 0 20px;
            }
            
            .filter-wrapper {
                padding: 25px;
            }
            
            .header-icon-wrapper {
                width: 60px;
                height: 60px;
                font-size: 1.5rem;
            }
            
            .header-text h3 {
                font-size: 1.8rem;
            }
            
            .active-filters-display {
                flex-direction: column;
                align-items: flex-start;
                gap: 20px;
            }
            
            .summary-grid {
                grid-template-columns: 1fr;
                gap: 25px;
            }
            
            .cta-section {
                padding: 60px 20px;
            }
            
            .cta-content h2 {
                font-size: 2rem;
            }
            
            .summary-header h2 {
                font-size: 2rem;
            }
            
            .service-image-container {
                height: 200px;
            }
            
            .minimal-header h2 {
                font-size: 2.5rem;
                letter-spacing: 5px;
            }
        }

        @media (max-width: 576px) {
            .section {
                padding: 50px 0;
            }
            
            .modern-filter-tabs {
                grid-template-columns: 1fr;
            }
            
            .modern-tab-btn {
                padding: 10px;
            }
            
            .header-content {
                flex-direction: column;
                align-items: flex-start;
                gap: 15px;
            }
            
            .filter-actions {
                flex-direction: column;
                width: 100%;
            }
            
            .action-btn {
                width: 100%;
                justify-content: center;
            }
            
            .category-header {
                padding: 10px;
            }
            
            .category-icon {
                width: 50px;
                height: 50px;
                font-size: 1.4rem;
            }
            
            .category-title h3 {
                font-size: 1.1rem;
            }
            
            .cta-buttons {
                flex-direction: column;
                width: 100%;
            }
            
            .cta-btn, .btn-whatsapp-modern {
                width: 100%;
                max-width: 350px;
                margin: 0 auto;
            }
            
            .service-image-container {
                height: 180px;
            }
            
            .image-overlay h4 {
                font-size: 1.2rem;
            }
            
            .minimal-header h2 {
                font-size: 2rem;
                letter-spacing: 3px;
            }
        }