/* Portfolio CSS - Développeur Web Expert */

/* PATCH URGENT - Footer centré sur tous devices max-width: 768px */
@media (max-width: 768px) {
    .footer,
    .footer-main-section {
        text-align: center !important;
    }
    
    .footer-main-section .row {
        justify-content: center !important;
        align-items: center !important;
        text-align: center !important;
    }
    
    .footer-main-section .col-lg-4,
    .footer-main-section .col-md-6,
    .footer-main-section [class*="col-"] {
        text-align: center !important;
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        justify-content: center !important;
    }
    
    .footer-brand,
    .footer-brand * {
        text-align: center !important;
    }
    
    .footer-logo-section {
        flex-direction: column !important;
        align-items: center !important;
        justify-content: center !important;
    }
    
    .footer-main-section h5,
    .footer-main-section h6,
    .footer-main-section p,
    .footer-main-section ul,
    .footer-main-section div {
        text-align: center !important;
    }
}

:root {
    --primary-color: #2c5aa0;
    --secondary-color: #f8f9fa;
    --accent-color: #17a2b8;
    --dark-color: #212529;
    --light-color: #ffffff;
    --gradient: linear-gradient(135deg, #2c5aa0 0%, #17a2b8 100%);
    --shadow-light: 0 5px 25px rgba(0, 0, 0, 0.1);
    --shadow-medium: 0 10px 30px rgba(0, 0, 0, 0.15);
    --shadow-heavy: 0 15px 35px rgba(0, 0, 0, 0.2);
}

/* Reset et Base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: var(--dark-color);
    scroll-behavior: smooth;
}

img {
    max-width: 100%;
    height: auto;
}

/* Utilitaires */
.section-padding {
    padding: 80px 0;
}

.section-title {
    text-align: center;
    margin-bottom: 60px;
}

.section-title h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 20px;
    position: relative;
}

.section-title h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: var(--gradient);
    border-radius: 2px;
}

.section-title p {
    font-size: 1.1rem;
    color: #6c757d;
    max-width: 600px;
    margin: 0 auto;
}

/* Navigation */
.navbar {
    background: rgba(255, 255, 255, 0.95) !important;
    backdrop-filter: blur(10px);
    box-shadow: var(--shadow-light);
    transition: all 0.3s ease;
    padding: 12px 0;
    min-height: 70px;
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: nowrap;
}

.navbar-brand {
    font-weight: 700;
    font-size: 1.5rem;
    color: var(--primary-color) !important;
    display: flex;
    align-items: center;
    gap: 10px;
}

.navbar-nav .nav-link {
    font-weight: 500;
    color: var(--dark-color) !important;
    transition: all 0.3s ease;
    position: relative;
    padding: 10px 20px !important;
    margin: 0 0px;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
    color: var(--primary-color) !important;
}

.navbar-nav .nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 5px;
    left: 50%;
    background: var(--primary-color);
    transition: all 0.3s ease;
}

.navbar-nav .nav-link:hover::after,
.navbar-nav .nav-link.active::after {
    width: 60%;
    left: 20%;
}

/* Hero Section */
.hero {
    background: var(--gradient);
    color: white;
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    padding-top: 100px;
}

.hero::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 1200 120"><path d="M0,0V46.29c47.79,22.2,103.59,32.17,158,28,70.36-5.37,136.33-33.31,206.8-37.5C438.64,32.43,512.34,53.67,583,72.05c69.27,18,138.3,24.88,209.4,13.08,36.15-6,69.85-17.84,104.45-29.34C989.49,25,1113-14.29,1200,52.47V0Z" opacity=".25" fill="%23ffffff"></path></svg>');
    background-size: cover;
    background-position: bottom;
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.hero .lead {
    font-size: 1.3rem;
    margin-bottom: 1.5rem;
    opacity: 0.9;
    font-weight: 400;
}

.btn-custom {
    background: rgba(255, 255, 255, 0.2);
    color: white;
    border: 2px solid white;
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.btn-custom::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: white;
    transition: all 0.3s ease;
    z-index: -1;
}

.btn-custom:hover {
    color: var(--primary-color);
    transform: translateY(-2px);
    box-shadow: var(--shadow-medium);
}

.btn-custom:hover::before {
    left: 0;
}

/* Stats Section */
.stats {
    background: var(--gradient);
    color: white;
    position: relative;
}

.stats::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 100px;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 120"><path d="M0,0V46.29c47.79,22.2,103.59,32.17,158,28,70.36-5.37,136.33-33.31,206.8-37.5C438.64,32.43,512.34,53.67,583,72.05c69.27,18,138.3,24.88,209.4,13.08,36.15-6,69.85-17.84,104.45-29.34C989.49,25,1113-14.29,1200,52.47V0Z" opacity=".25" fill="%23ffffff"></path></svg>');
    background-size: cover;
    transform: rotate(180deg);
}

.stat-item {
    text-align: center;
    padding: 30px 20px;
    position: relative;
    z-index: 2;
    transition: all 0.3s ease;
    border-radius: 15px;
}

.stat-item:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-5px);
}

.stat-item i {
    transition: all 0.3s ease;
}

.stat-item:hover i {
    transform: scale(1.2);
    color: #ffffff !important;
}

.stat-number {
    font-size: 3.5rem;
    font-weight: 700;
    display: block;
    background: linear-gradient(45deg, #fff, rgba(255,255,255,0.8));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    transition: all 0.3s ease;
    text-shadow: 0 2px 10px rgba(255, 255, 255, 0.2);
    position: relative;
}

.stat-label {
    font-size: 1.1rem;
    opacity: 0.9;
    margin-top: 10px;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 500;
}

/* About Section */
.about-image {
    margin-bottom: 30px;
}

.profile-img {
    width: 339px;
    height: 339px;
    border-radius: 50%;
    object-fit: cover;
    box-shadow: var(--shadow-medium);
    border: 5px solid white;
    position: relative;
    display: block;
    margin: 0 auto;
}

.profile-img::before {
    content: '';
    position: absolute;
    top: -15px;
    left: -15px;
    right: -15px;
    bottom: -15px;
    border: 3px solid var(--primary-color);
    border-radius: 50%;
    opacity: 0.3;
}

.about-content h3 {
    color: var(--primary-color);
    font-weight: 700;
}

.about-content .lead {
    font-weight: 500;
}

.about-content .row .col-12 {
    padding: 15px 0;
}

.about-content .row .col-12 h5 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 8px;
}

.about-content .row .col-12 p {
    margin-bottom: 0;
    font-size: 0.95rem;
    line-height: 1.5;
}

/* About Section - Expertise Cards */
.about-content .row {
    margin-top: 20px;
    margin-bottom: 30px;
}

.about-content .row .col-12 {
    background: rgba(44, 90, 160, 0.05);
    border-radius: 12px;
    margin-bottom: 15px;
    padding: 20px;
    border-left: 4px solid var(--primary-color);
    transition: all 0.3s ease;
}

.about-content .row .col-12:hover {
    background: rgba(44, 90, 160, 0.1);
    transform: translateX(5px);
}

/* International Availability Section */
.international-availability {
    background: linear-gradient(135deg, rgba(44, 90, 160, 0.05) 0%, rgba(23, 162, 184, 0.05) 100%);
    border-radius: 15px;
    padding: 20px;
    border: 2px solid rgba(44, 90, 160, 0.1);
}

.international-availability i {
    font-size: 1.2rem;
}

.international-availability strong {
    color: var(--primary-color);
    font-weight: 600;
}

.international-availability .row {
    margin: 0;
}

.international-availability .col-md-6 {
    padding: 10px;
}

/* Skills Section */
.skill-item {
    text-align: center;
    padding: 40px 30px;
    background: white;
    border-radius: 20px;
    box-shadow: var(--shadow-light);
    transition: all 0.3s ease;
    margin-bottom: 30px;
    height: 100%;
    border: 2px solid transparent;
}

.skill-item:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-heavy);
    border-color: var(--primary-color);
}

.skill-icon {
    font-size: 3.5rem;
    color: var(--primary-color);
    margin-bottom: 25px;
    transition: all 0.3s ease;
}

.skill-item:hover .skill-icon {
    transform: scale(1.1);
    color: var(--accent-color);
}

.skill-item h4 {
    color: var(--primary-color);
    margin-bottom: 15px;
    font-weight: 600;
    font-size: 1.3rem;
}

.skill-item p {
    color: #6c757d;
    line-height: 1.6;
    margin-bottom: 0;
}

/* Portfolio Section */
.portfolio-item {
    position: relative;
    overflow: hidden;
    border-radius: 20px;
    box-shadow: var(--shadow-light);
    transition: all 0.3s ease;
    background: white;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.portfolio-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-heavy);
}

.portfolio-img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    transition: all 0.5s ease;
}

/* Portfolio Placeholders */
.portfolio-placeholder {
    width: 100%;
    height: 280px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 600;
    color: white;
    position: relative;
    overflow: hidden;
    text-align: center;
}

.portfolio-placeholder::before {
    content: attr(data-text);
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
    text-align: center;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    letter-spacing: 1px;
    white-space: nowrap;
    width: auto;
}

.portfolio-placeholder {
    position: relative;
}

.portfolio-placeholder::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.1) 0%, rgba(0, 0, 0, 0.3) 100%);
    z-index: 1;
}

/* Specific colors for each placeholder */
.portfolio-placeholder[data-bg="#2c5aa0"] {
    background: linear-gradient(135deg, #2c5aa0 0%, #1e4080 100%);
}

.portfolio-placeholder[data-bg="#17a2b8"] {
    background: linear-gradient(135deg, #17a2b8 0%, #138496 100%);
}

.portfolio-placeholder[data-bg="#28a745"] {
    background: linear-gradient(135deg, #28a745 0%, #1e7e34 100%);
}

.portfolio-placeholder[data-bg="#ffc107"] {
    background: linear-gradient(135deg, #ffc107 0%, #e0a800 100%);
    color: #000000;
}

.portfolio-placeholder[data-bg="#ffc107"]::before {
    color: #000000;
    text-shadow: 0 2px 10px rgba(255, 255, 255, 0.3);
}

.portfolio-placeholder[data-bg="#dc3545"] {
    background: linear-gradient(135deg, #dc3545 0%, #c82333 100%);
}

.portfolio-placeholder[data-bg="#6f42c1"] {
    background: linear-gradient(135deg, #6f42c1 0%, #5a32a3 100%);
}

.portfolio-placeholder[data-bg="#0dcaf0"] {
    background: linear-gradient(135deg, #0dcaf0 0%, #0aa2c0 100%);
}

.portfolio-placeholder[data-bg="#198754"] {
    background: linear-gradient(135deg, #198754 0%, #146c43 100%);
}

.portfolio-placeholder[data-bg="#fd7e14"] {
    background: linear-gradient(135deg, #fd7e14 0%, #e8681c 100%);
}

.portfolio-placeholder[data-bg="#20c997"] {
    background: linear-gradient(135deg, #20c997 0%, #1aa179 100%);
}

.portfolio-placeholder[data-bg="#6610f2"] {
    background: linear-gradient(135deg, #6610f2 0%, #520dc2 100%);
}

/* Microsoft Colors */
.portfolio-placeholder[data-bg="#512bd4"] {
    background: linear-gradient(135deg, #512bd4 0%, #3f1ea8 100%);
}

.portfolio-placeholder[data-bg="#0078d4"] {
    background: linear-gradient(135deg, #0078d4 0%, #005a9e 100%);
}

/* Portfolio placeholder icons */
.portfolio-placeholder .icon {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 2.5rem;
    z-index: 3;
    opacity: 0.4;
}

/* Add pattern overlay */
.portfolio-placeholder .pattern {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 20% 20%, rgba(255,255,255,0.1) 1px, transparent 1px),
        radial-gradient(circle at 80% 80%, rgba(255,255,255,0.1) 1px, transparent 1px);
    background-size: 50px 50px;
    z-index: 1;
}

/* Hover effects for placeholders */
.portfolio-item:hover .portfolio-placeholder::before {
    transform: scale(1.1);
    transition: transform 0.3s ease;
}

.portfolio-item:hover .portfolio-img {
    transform: scale(1.1);
}

.portfolio-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(44, 90, 160, 0.95), rgba(23, 162, 184, 0.95));
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all 0.3s ease;
    flex-direction: column;
    text-align: center;
    padding: 30px;
}

.portfolio-item:hover .portfolio-overlay {
    opacity: 1;
}

.portfolio-overlay h4 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 15px;
    text-align: center;
}

.portfolio-overlay p {
    font-size: 1rem;
    margin-bottom: 20px;
    line-height: 1.5;
    text-align: center;
}

.portfolio-buttons {
    text-align: center;
    display: flex;
    justify-content: center;
    gap: 10px;
}

.portfolio-overlay .btn {
    border-radius: 25px;
    padding: 10px 25px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.portfolio-overlay .btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

/* Portfolio Filter */
.portfolio-filter {
    margin-bottom: 50px;
}

.portfolio-filter .btn {
    margin: 0 5px 10px 5px;
    padding: 12px 25px;
    border-radius: 25px;
    font-weight: 500;
    transition: all 0.3s ease;
    border: 2px solid var(--primary-color);
    background: transparent;
    color: var(--primary-color);
}

.portfolio-filter .btn:hover,
.portfolio-filter .btn.active {
    background: var(--primary-color);
    color: white;
    transform: translateY(-2px);
    box-shadow: var(--shadow-medium);
}

/* Portfolio Grid Fix */
#portfolio .row {
    display: flex;
    flex-wrap: wrap;
}

#portfolio .row > [class*="col-"] {
    display: flex;
    margin-bottom: 30px;
}

/* Portfolio Animation */
.portfolio-item-hidden {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.5s ease;
}

.portfolio-item-visible {
    opacity: 1;
    transform: translateY(0);
    transition: all 0.5s ease;
}

/* Testimonial Avatars */
.testimonial-avatar {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 1rem;
    text-transform: uppercase;
    flex-shrink: 0;
}

/* Enhanced testimonials */
.testimonial-item {
    transition: all 0.3s ease;
}

.testimonial-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

/* Responsive Portfolio */
@media (max-width: 768px) {
    .portfolio-filter .btn {
        margin: 0 2px 8px 2px;
        padding: 10px 15px;
        font-size: 0.9rem;
    }
    
    .portfolio-item {
        margin-bottom: 20px;
    }
    
    .portfolio-overlay {
        padding: 20px;
    }
    
    .portfolio-overlay h4 {
        font-size: 1.3rem;
    }
    
    .portfolio-overlay p {
        font-size: 0.9rem;
    }
    
    .testimonial-avatar {
        width: 45px;
        height: 45px;
        font-size: 0.9rem;
    }
}

/* Contact Section */
.contact {
    background: var(--secondary-color);
    position: relative;
}

.contact::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 100px;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 120"><path d="M0,0V46.29c47.79,22.2,103.59,32.17,158,28,70.36-5.37,136.33-33.31,206.8-37.5C438.64,32.43,512.34,53.67,583,72.05c69.27,18,138.3,24.88,209.4,13.08,36.15-6,69.85-17.84,104.45-29.34C989.49,25,1113-14.29,1200,52.47V0Z" opacity=".25" fill="%23ffffff"></path></svg>');
    background-size: cover;
}

.contact-form {
    background: white;
    padding: 50px 40px;
    border-radius: 20px;
    box-shadow: var(--shadow-medium);
    position: relative;
    z-index: 2;
}

.form-control {
    border: 2px solid #e9ecef;
    border-radius: 15px;
    padding: 15px 20px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: #fafafa;
}

.form-control:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.2rem rgba(44, 90, 160, 0.25);
    background: white;
}

.contact-info {
    padding: 30px 20px;
    text-align: center;
}

.contact-info i {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.contact-info h5 {
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 10px;
}

/* Footer Moderne */
.footer-modern {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
    color: white;
    position: relative;
    overflow: hidden;
}

.footer-wave {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100px;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 120"><path d="M0,0V46.29c47.79,22.2,103.59,32.17,158,28,70.36-5.37,136.33-33.31,206.8-37.5C438.64,32.43,512.34,53.67,583,72.05c69.27,18,138.3,24.88,209.4,13.08,36.15-6,69.85-17.84,104.45-29.34C989.49,25,1113-14.29,1200,52.47V0Z" fill="%23f8f9fa"></path></svg>');
    background-size: cover;
    z-index: 1;
}

.footer-main-section {
    padding: 116px 0 60px;
    position: relative;
    z-index: 2;
}

/* Footer Brand */
.footer-brand .footer-logo {
    width: 60px;
    height: 60px;
    font-size: 1rem;
    margin-right: 20px;
    flex-shrink: 0;
}

.brand-text {
    display: flex;
    flex-direction: column;
}

.brand-name {
    color: white;
    font-size: 1.8rem;
    font-weight: 700;
    margin: 0;
    background: linear-gradient(45deg, #fff, #e3f2fd);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.brand-tagline {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.footer-description {
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
    margin: 20px 0;
}

/* Footer Stats */
.footer-stats {
    display: flex;
    gap: 30px;
    margin-top: 25px;
    flex-wrap: wrap;
}

.footer-stats .stat-item {
    text-align: center;
    min-width: 60px;
}

.footer-stats .stat-number {
    display: block;
    font-size: 1.5rem;
    font-weight: 700;
    color: #4facfe;
    line-height: 1;
}

.footer-stats .stat-label {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.7);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Footer Sections */
.footer-section {
    height: 100%;
}

.footer-title {
    color: white;
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid rgba(79, 172, 254, 0.3);
    display: inline-block;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 0.95rem;
    display: inline-block;
}

.footer-links a:hover {
    color: #4facfe;
    transform: translateX(5px);
}

.footer-links a::before {
    content: '▶';
    margin-right: 8px;
    font-size: 0.7rem;
    opacity: 0;
    transition: all 0.3s ease;
}

.footer-links a:hover::before {
    opacity: 1;
}

/* Style pour le nouveau service de recrutement dans le footer */
.footer-main-section a[href="#recrutement-it"] {
    position: relative;
    padding-right: 35px !important;
}

.footer-main-section a[href="#recrutement-it"] span {
    animation: pulse-badge 2s infinite;
}

@keyframes pulse-badge {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

/* Tech Badges */
.footer-tech-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.tech-badge {
    display: inline-block;
    padding: 6px 12px;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 600;
    text-align: center;
    width: fit-content;
    transition: all 0.3s ease;
}

.tech-badge.dotnet { background: linear-gradient(135deg, #512bd4, #6b3ce0); }
.tech-badge.react { background: linear-gradient(135deg, #61dafb, #21d4fd); }
.tech-badge.vue { background: linear-gradient(135deg, #4fc08d, #41b883); }
.tech-badge.azure { background: linear-gradient(135deg, #0078d4, #005a9e); }
.tech-badge.node { background: linear-gradient(135deg, #68a063, #8cc84b); }
.tech-badge.python { background: linear-gradient(135deg, #3776ab, #ffd43b); }

.tech-badge:hover {
    transform: scale(1.05);
    box-shadow: 0 4px 15px rgba(79, 172, 254, 0.3);
}

/* Contact Section */
.contact-quick {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 15px;
}

.contact-item i {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(79, 172, 254, 0.2);
    border-radius: 50%;
    color: #4facfe;
    font-size: 1.1rem;
    flex-shrink: 0;
}

.contact-item > div {
    display: flex;
    flex-direction: column;
}

.contact-label {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.6);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 2px;
}

.contact-item a {
    color: white;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
}

.contact-item a:hover {
    color: #4facfe;
}

/* Réseaux Sociaux Modernes */
.social-section {
    margin-top: 30px;
}

.social-title {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 15px;
}

.social-links-modern {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.social-link {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 15px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 25px;
    color: white;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.social-link:hover {
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.social-link.linkedin:hover { background: linear-gradient(135deg, #0077b5, #005885); }
.social-link.github:hover { background: linear-gradient(135deg, #333, #000); }
.social-link.email:hover { background: linear-gradient(135deg, #ea4335, #d32f2f); }
.social-link.whatsapp:hover { background: linear-gradient(135deg, #25d366, #128c7e); }

/* Newsletter Section */
.newsletter-section {
    padding: 40px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    z-index: 2;
}

.newsletter-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
}

.newsletter-card h5 {
    color: white;
    font-weight: 600;
    margin-bottom: 10px;
}

.newsletter-card p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 25px;
}

/* Newsletter Form - Centré sur tous les appareils */
.newsletter-form {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    max-width: 400px;
    margin: 0 auto;
}

.newsletter-input-wrapper {
    width: 100%;
    display: flex;
    justify-content: center;
}

.newsletter-email {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: white;
    border-radius: 25px;
    padding: 15px 20px;
    width: 100%;
    max-width: 350px;
    text-align: center;
}

.newsletter-email::placeholder {
    color: rgba(255, 255, 255, 0.6);
}

.newsletter-email:focus {
    background: rgba(255, 255, 255, 0.15);
    border-color: #4facfe;
    color: white;
    box-shadow: 0 0 0 0.2rem rgba(79, 172, 254, 0.25);
}

.newsletter-button-wrapper {
    width: 100%;
    display: flex;
    justify-content: center;
}

.btn-newsletter {
    background: linear-gradient(135deg, #4facfe, #00f2fe);
    border: none;
    color: white;
    font-weight: 600;
    padding: 15px 30px;
    border-radius: 25px;
    transition: all 0.3s ease;
    min-width: 150px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.btn-newsletter:hover {
    background: linear-gradient(135deg, #00f2fe, #4facfe);
    color: white;
    transform: translateY(-1px);
    box-shadow: 0 5px 15px rgba(79, 172, 254, 0.4);
}

/* Footer Bottom - Centré sur tous devices */
.footer-bottom {
    padding: 30px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    z-index: 2;
}

.footer-bottom-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 15px;
}

/* Logo responsive section */
.footer-logo-section {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

/* Footer main section desktop centré */
.footer-main-section {
    text-align: center;
}

.footer-main-section .col-lg-4,
.footer-main-section .col-md-6 {
    display: flex;
    justify-content: center;
}

.footer-brand {
    width: 100%;
    max-width: 400px;
}

.copyright {
    display: flex;
    align-items: center;
    gap: 15px;
    color: rgba(255, 255, 255, 0.8);
}

.footer-logo-mini {
    width: 35px;
    height: 35px;
    font-size: 0.7rem;
    flex-shrink: 0;
}

.footer-links-bottom {
    display: flex;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
    justify-content: center;
}

.footer-links-bottom a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.footer-links-bottom a:hover {
    color: #4facfe;
}

.footer-links-bottom .separator {
    color: rgba(255, 255, 255, 0.4);
}

.footer-links-bottom .expertise {
    color: #4facfe;
    font-weight: 600;
    font-size: 0.85rem;
}

/* Particules d'animation */
.footer-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.footer-particles .particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: rgba(79, 172, 254, 0.6);
    border-radius: 50%;
    animation: floatParticle 8s ease-in-out infinite;
}

.footer-particles .particle:nth-child(1) {
    left: 10%;
    animation-delay: 0s;
}

.footer-particles .particle:nth-child(2) {
    left: 30%;
    animation-delay: 2s;
}

.footer-particles .particle:nth-child(3) {
    left: 50%;
    animation-delay: 4s;
}

.footer-particles .particle:nth-child(4) {
    left: 70%;
    animation-delay: 6s;
}

.footer-particles .particle:nth-child(5) {
    left: 90%;
    animation-delay: 1s;
}

@keyframes floatParticle {
    0%, 100% {
        transform: translateY(100vh) scale(0);
        opacity: 0;
    }
    10% {
        opacity: 1;
        transform: scale(1);
    }
    90% {
        opacity: 1;
    }
    100% {
        transform: translateY(-100px) scale(0);
        opacity: 0;
    }
}

/* Section précédemment dupliquée supprimée pour éviter les conflits */
    
    /* Brand section tablette */
    .footer-brand {
        text-align: center !important;
        display: block !important;
    }
    
    .footer-brand .d-flex {
        justify-content: center !important;
        margin-bottom: 15px !important;
    }
    
    .footer-brand p {
        max-width: 280px !important;
        margin: 15px auto !important;
        text-align: center !important;
    }
    
    /* Titres sections tablette */
    .footer-main-section h6 {
        text-align: center !important;
        margin-bottom: 15px !important;
        padding-bottom: 8px !important;
        border-bottom: 2px solid rgba(79, 172, 254, 0.3) !important;
        display: inline-block !important;
    }
    
    /* Listes tablette */
    .footer-main-section ul {
        text-align: center !important;
        padding: 0 !important;
        list-style: none !important;
    }
    
    .footer-main-section li {
        text-align: center !important;
        margin: 6px 0 !important;
    }
    
    .footer-main-section a {
        display: inline-block !important;
        padding: 4px 8px !important;
        border-radius: 12px !important;
        transition: all 0.3s ease !important;
    }
    
    .footer-main-section a:hover {
        background: rgba(79, 172, 254, 0.1) !important;
    }
    
    .social-links-modern {
        justify-content: center !important;
        margin-top: 20px;
        display: flex !important;
        align-items: center;
        text-align: center;
    }
    
    /* Centrer les réseaux sociaux du footer */
    .footer-main-section div[style*="display: flex; gap: 15px; flex-wrap: wrap"] {
        justify-content: center !important;
        align-items: center !important;
        text-align: center !important;
    }
    
    .footer-main-section div[style*="text-align: center"] p {
        text-align: center !important;
    }
    
    /* Badge CEO responsive tablettes */
    .ceo-badge {
        font-size: 0.9rem !important;
        padding: 8px 16px !important;
        display: block !important;
        width: fit-content !important;
        margin: 0 auto 15px !important;
        text-align: center !important;
    }
    
    /* Centraliser tous les éléments de liste */
    .footer-section ul,
    .footer-section ol {
        list-style: none !important;
        padding: 0 !important;
        margin: 0 auto !important;
        text-align: center !important;
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
    }
    
    /* Newsletter Mobile - Centré parfaitement */
    .newsletter-form {
        max-width: 100% !important;
        padding: 0 15px;
        gap: 20px !important;
    }
    
    .newsletter-input-wrapper {
        width: 100% !important;
    }
    
    .newsletter-email {
        max-width: 280px !important;
        padding: 12px 18px !important;
        font-size: 16px;
    }
    
    .newsletter-button-wrapper {
        width: 100% !important;
    }
    
    .btn-newsletter {
        width: 200px !important;
        padding: 12px 20px !important;
        font-size: 16px !important;
        margin: 0 auto !important;
    }
    
    /* Footer mobile centré + logo descendu */
    .footer-main-section {
        text-align: center !important;
        padding: 78px 0 40px !important;
    }
    
    .footer-main-section .row {
        justify-content: center !important;
        align-items: center !important;
        text-align: center !important;
    }
    
    .footer-main-section .col-lg-4,
    .footer-main-section .col-md-6 {
        margin-bottom: 40px !important;
        text-align: center !important;
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        justify-content: center !important;
    }
    
    .footer-brand {
        width: 100% !important;
        text-align: center !important;
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
    }
    
    .footer-logo-section {
        flex-direction: column !important;
        align-items: center !important;
        margin-bottom: 30px !important;
    }
    
    .footer-logo {
        margin: 0 0 15px 0 !important;
        width: 50px !important;
        height: 50px !important;
        font-size: 0.9rem !important;
    }
    
    .footer-brand-text {
        text-align: center !important;
    }
    
    /* Forcer le centrage de toutes les sections footer */
    .footer-main-section h5,
    .footer-main-section h6,
    .footer-main-section p,
    .footer-main-section ul,
    .footer-main-section div {
        text-align: center !important;
    }
    
    .footer-main-section ul {
        list-style: none !important;
        padding: 0 !important;
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
    }
    
    .footer-main-section ul li {
        text-align: center !important;
        margin-bottom: 8px !important;
    }
    
    /* Stats footer centrées */
    .footer-brand div[style*="display: flex"] {
        justify-content: center !important;
        align-items: center !important;
    }
    
    /* Réseaux sociaux forcés au centre */
    .footer-main-section div[style*="gap: 15px"] {
        justify-content: center !important;
        align-items: center !important;
    }
    
    /* Forcer le centrage complet - règles supplémentaires */
    .footer {
        text-align: center !important;
    }
    
    .footer .container {
        text-align: center !important;
    }
    
    .footer .row {
        justify-content: center !important;
        text-align: center !important;
    }
    
    /* Forcer tous les éléments du footer au centre */
    .footer * {
        text-align: center !important;
    }
    
    /* Surcharger toutes les autres règles */
    .footer-main-section,
    .footer-main-section *,
    .footer-main-section div,
    .footer-main-section p,
    .footer-main-section h1,
    .footer-main-section h2,
    .footer-main-section h3,
    .footer-main-section h4,
    .footer-main-section h5,
    .footer-main-section h6 {
        text-align: center !important;
        justify-content: center !important;
        align-items: center !important;
    }
    
    .footer-bottom {
        padding: 20px 15px !important;
    }
    
    .footer-bottom-content {
        gap: 20px !important;
    }
    
    .footer-links-bottom {
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        gap: 8px !important;
    }
    
    .footer-bottom .footer-links-bottom a {
        padding: 5px 10px !important;
        margin: 2px !important;
        border-radius: 12px !important;
        font-size: 0.9rem !important;
    }
    
    .footer-links-bottom {
        flex-direction: column;
        gap: 10px;
        justify-content: center;
    }
    
    .copyright {
        justify-content: center;
        text-align: center;
    }
    
    /* Technologies 2x2 pour tablettes - Ciblage HTML direct */
    .footer-main-section div[style*="display: flex; flex-direction: column; gap: 8px;"] {
        display: flex !important;
        flex-direction: row !important;
        flex-wrap: wrap !important;
        justify-content: center !important;
        align-items: center !important;
        text-align: center !important;
        gap: 8px !important;
        max-width: 280px !important;
        margin: 0 auto !important;
        padding: 0 !important;
    }
    
    .footer-main-section div[style*="display: flex; flex-direction: column; gap: 8px;"] span {
        flex: 0 0 calc(50% - 4px) !important;
        width: calc(50% - 4px) !important;
        max-width: calc(50% - 4px) !important;
        min-width: calc(50% - 4px) !important;
        margin: 3px 0 !important;
        font-size: 0.75rem !important;
        padding: 8px 6px !important;
        text-align: center !important;
        box-sizing: border-box !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        min-height: 32px !important;
        border-radius: 14px !important;
        white-space: nowrap !important;
        font-weight: 600 !important;
        overflow: hidden !important;
        text-overflow: ellipsis !important;
    }
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-up {
    animation: fadeInUp 0.8s ease forwards;
}

/* Responsive Design */
@media (max-width: 992px) {
    /* Empêcher le débordement horizontal et améliorer le responsive */
    body, html {
        overflow-x: hidden !important;
    }
    
    .container, .container-fluid {
        max-width: 100% !important;
        padding-left: 15px;
        padding-right: 15px;
    }
    
    /* Améliorer l'espacement des sections sur tablettes */
    section {
        padding: 40px 15px !important;
    }
    
    .hero {
        padding-top: 80px;
    }
    
    .hero h1 {
        font-size: 3rem;
    }
    
    .about-image {
        margin-bottom: 40px;
        text-align: center;
    }
    
    .profile-img {
        width: 200px;
        height: 200px;
        margin: 0 auto 20px;
    }
    
    .about-content {
        text-align: center;
    }
    
    .section-padding {
        padding: 60px 0;
    }
}

@media (max-width: 768px) {
    /* Empêcher débordement horizontal sur mobile uniquement */
    body {
        overflow-x: hidden;
    }
    
    .container,
    .container-fluid,
    .row {
        max-width: 100%;
        overflow-x: hidden;
    }
    
    .hero {
        padding: 110px 20px 60px;
        min-height: 90vh;
        margin-top: 70px;
    }
    
    .hero h1 {
        font-size: 2.5rem;
    }
    
    .hero .lead {
        font-size: 1.1rem;
    }
    
    .profile-img {
        width: 160px;
        height: 160px;
        margin: 0 auto 20px;
    }
    
    .section-title h2 {
        font-size: 2rem;
    }
    
    .stat-number {
        font-size: 2.5rem;
    }
    
    .skill-item {
        margin-bottom: 20px;
    }
    
    .contact-form {
        padding: 30px 25px;
    }
    
    /* Newsletter responsive */
    .newsletter-section {
        padding: 30px 0;
        margin: 0 15px;
    }
    
    .newsletter-card {
        padding: 25px 15px;
        margin: 0 auto;
        max-width: 100%;
        text-align: center !important;
    }
    
    /* Newsletter Tablette - Centré */
    .newsletter-form {
        max-width: 350px !important;
        gap: 18px !important;
    }
    
    .newsletter-email {
        max-width: 320px !important;
        padding: 14px 20px !important;
        font-size: 15px;
    }
    
    .btn-newsletter {
        width: 180px !important;
        padding: 14px 22px !important;
        font-size: 15px !important;
    }
    
    /* Footer tablettes - Centré avec logo adapté */
    .footer-main-section {
        padding: 80px 0 50px !important;
    }
    
    .footer-logo-section {
        flex-direction: column !important;
        margin-bottom: 25px !important;
    }
    
    .footer-logo {
        margin: 0 0 12px 0 !important;
        width: 45px !important;
        height: 45px !important;
    }
    
    .footer-brand-text h4 {
        font-size: 1.6rem !important;
    }
    
    .footer-bottom-content {
        gap: 18px !important;
    }
    
    .btn-newsletter {
        border-radius: 25px !important;
        width: 100% !important;
        max-width: 200px !important;
        margin: 10px auto 0 !important;
        font-size: 16px !important;
        padding: 12px 20px !important;
        display: block !important;
        text-align: center !important;
    }
    
    /* Badge CEO responsive mobile */
    .ceo-badge {
        font-size: 0.85rem !important;
        padding: 6px 14px !important;
        display: block !important;
        width: fit-content !important;
        margin: 0 auto 12px !important;
        text-align: center !important;
    }
    
    /* Réseaux sociaux centrés mobile */
    .footer-main-section div[style*="display: flex; gap: 15px; flex-wrap: wrap"] {
        justify-content: center !important;
        align-items: center !important;
        gap: 10px !important;
    }
    
    .footer-main-section div[style*="display: flex; gap: 15px; flex-wrap: wrap"] a {
        font-size: 0.85rem !important;
        padding: 8px 12px !important;
    }
}

@media (max-width: 576px) {
    /* Prévention débordement horizontal petits écrans */
    body, html {
        overflow-x: hidden;
    }
    
    .container, .container-fluid {
        padding-left: 10px;
        padding-right: 10px;
    }
    
    .row {
        margin-left: -10px;
        margin-right: -10px;
    }
    
    .col, [class*="col-"] {
        padding-left: 10px;
        padding-right: 10px;
    }
    
    .hero {
        padding: 120px 15px 50px;
        min-height: 85vh;
        margin-top: 70px;
    }
    
    .hero h1 {
        font-size: 2rem;
    }
    
    .profile-img {
        width: 140px;
        height: 140px;
        margin: 0 auto 15px;
    }
    
    .btn-custom {
        display: block;
        margin: 10px 0;
        text-align: center;
    }
    
    .navbar-brand {
        font-size: 1.3rem;
    }
    
    /* Footer mobile très petit écran - Centralisation renforcée */
    .footer-main-section {
        padding: 50px 10px 30px;
        text-align: center !important;
    }
    
    .footer-main-section .container,
    .footer-main-section .row,
    .footer-main-section [class*="col-"] {
        text-align: center !important;
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        justify-content: center !important;
    }
    
    .footer-brand .footer-logo {
        width: 50px;
        height: 50px;
        font-size: 0.9rem;
    }
    
    .footer-description {
        font-size: 0.9rem;
        max-width: 280px;
    }
    
    .footer-stats .stat-item {
        margin: 0 10px;
    }
    
    .footer-title {
        font-size: 1.1rem;
    }
    
    .footer-links a {
        font-size: 0.9rem;
        padding: 5px 0;
    }
    
    /* Technologies 2x2 mobiles - Ciblage HTML direct */
    .footer-main-section div[style*="display: flex; flex-direction: column; gap: 8px;"] {
        display: flex !important;
        flex-direction: row !important;
        flex-wrap: wrap !important;
        justify-content: center !important;
        gap: 6px !important;
        max-width: 260px !important;
        margin: 0 auto !important;
        padding: 0 !important;
    }
    
    .footer-main-section div[style*="display: flex; flex-direction: column; gap: 8px;"] span {
        flex: 0 0 calc(50% - 3px) !important;
        width: calc(50% - 3px) !important;
        max-width: calc(50% - 3px) !important;
        min-width: calc(50% - 3px) !important;
        font-size: 0.72rem !important;
        padding: 6px 4px !important;
        margin: 2px 0 !important;
        text-align: center !important;
        box-sizing: border-box !important;
        min-height: 30px !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        border-radius: 13px !important;
        white-space: nowrap !important;
        font-weight: 600 !important;
        overflow: hidden !important;
        text-overflow: ellipsis !important;
    }
}

/* Media Query pour très petits écrans mobiles */
@media (max-width: 480px) {
    /* Prévention débordement horizontal */
    body, html {
        overflow-x: hidden !important;
    }
    
    .container, .container-fluid {
        padding-left: 8px !important;
        padding-right: 8px !important;
        max-width: 100% !important;
    }
    
    /* Badge CEO responsive très petit écran */
    .ceo-badge {
        font-size: 0.8rem !important;
        padding: 5px 12px !important;
        display: block !important;
        width: fit-content !important;
        margin: 0 auto 10px !important;
        text-align: center !important;
        border-width: 1px !important;
    }
    
    /* Hero section optimisé */
    .hero {
        padding: 100px 10px 40px !important;
        min-height: 80vh;
        margin-top: 60px;
    }
    
    .hero h1 {
        font-size: 1.8rem !important;
        line-height: 1.2;
        margin-bottom: 15px;
    }
    
    .hero .lead {
        font-size: 1rem !important;
        margin-bottom: 20px;
    }
    
    /* Photo personnelle encore plus petite */
    .profile-img {
        width: 120px !important;
        height: 120px !important;
        margin: 0 auto 10px !important;
    }
    
    /* Navigation mobile */
    .navbar {
        padding: 10px 0 !important;
    }
    
    .navbar-brand {
        font-size: 1.1rem !important;
    }
    
    /* Sections générales */
    section {
        padding: 30px 10px !important;
    }
    
    .section-title h2 {
        font-size: 1.8rem !important;
        margin-bottom: 15px;
    }
    
    /* Footer ultra optimisé et organisé */
    .footer-main-section {
        padding: 35px 8px 20px !important;
        text-align: center !important;
        display: block !important;
    }
    
    /* Réorganisation complète des colonnes footer sur mobile */
    .footer-main-section .row {
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        gap: 25px !important;
    }
    
    .footer-main-section .col-lg-4,
    .footer-main-section .col-lg-2,
    .footer-main-section .col-md-6,
    .footer-main-section [class*="col-"] {
        width: 100% !important;
        max-width: 280px !important;
        margin: 0 auto 20px !important;
        padding: 15px 10px !important;
        text-align: center !important;
        display: block !important;
    }
    
    /* Brand section centrée */
    .footer-brand {
        text-align: center !important;
        margin-bottom: 20px !important;
    }
    
    .footer-brand .d-flex {
        justify-content: center !important;
        align-items: center !important;
        flex-direction: column !important;
        gap: 10px !important;
    }
    
    .footer-brand .logo-creative-hex {
        width: 50px !important;
        height: 50px !important;
        font-size: 0.9rem !important;
        margin: 0 auto 10px !important;
    }
    
    .footer-brand h4 {
        font-size: 1.4rem !important;
        text-align: center !important;
        margin: 5px 0 !important;
    }
    
    .footer-brand span {
        font-size: 0.8rem !important;
        text-align: center !important;
        display: block !important;
        margin-bottom: 15px !important;
    }
    
    .footer-brand p {
        font-size: 0.85rem !important;
        max-width: 260px !important;
        margin: 15px auto !important;
        text-align: center !important;
        line-height: 1.5 !important;
    }
    
    /* Stats horizontales et centrées */
    .footer-brand > div[style*="display: flex"] {
        justify-content: center !important;
        gap: 15px !important;
        margin: 15px auto !important;
        flex-wrap: wrap !important;
    }
    
    .footer-brand > div[style*="display: flex"] > div {
        min-width: 50px !important;
        text-align: center !important;
    }
    
    /* Titres des sections */
    .footer-main-section h6 {
        font-size: 1rem !important;
        margin-bottom: 12px !important;
        text-align: center !important;
        display: block !important;
        border-bottom: 2px solid rgba(79, 172, 254, 0.4) !important;
        padding-bottom: 8px !important;
        max-width: 150px !important;
        margin: 0 auto 15px !important;
    }
    
    /* Listes et liens */
    .footer-main-section ul {
        list-style: none !important;
        padding: 0 !important;
        margin: 0 auto !important;
        text-align: center !important;
        display: block !important;
    }
    
    .footer-main-section li {
        margin: 8px 0 !important;
        text-align: center !important;
    }
    
    .footer-main-section a {
        font-size: 0.85rem !important;
        padding: 5px 10px !important;
        display: inline-block !important;
        text-align: center !important;
        border-radius: 15px !important;
        transition: all 0.3s ease !important;
    }
    
    .footer-main-section a:hover {
        background: rgba(79, 172, 254, 0.1) !important;
        transform: translateY(-2px) !important;
    }
    
    /* Technologies centrées 2x2 - Ciblage direct du HTML */
    .footer-main-section div[style*="display: flex; flex-direction: column; gap: 8px;"] {
        display: flex !important;
        flex-direction: row !important;
        flex-wrap: wrap !important;
        justify-content: center !important;
        align-items: center !important;
        gap: 6px !important;
        max-width: 240px !important;
        margin: 0 auto !important;
        padding: 0 !important;
    }
    
    .footer-main-section div[style*="display: flex; flex-direction: column; gap: 8px;"] span {
        flex: 0 0 calc(50% - 3px) !important;
        width: calc(50% - 3px) !important;
        max-width: calc(50% - 3px) !important;
        min-width: calc(50% - 3px) !important;
        font-size: 0.7rem !important;
        padding: 7px 4px !important;
        min-height: 28px !important;
        margin: 2px 0 !important;
        text-align: center !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        border-radius: 12px !important;
        font-weight: 600 !important;
        line-height: 1 !important;
        box-sizing: border-box !important;
        white-space: nowrap !important;
        overflow: hidden !important;
        text-overflow: ellipsis !important;
    }
    
    /* Stats footer */
    .footer-stats .stat-item {
        margin: 0 8px !important;
    }
    
    .footer-stats .stat-number {
        font-size: 1.2rem !important;
    }
    
    .footer-stats .stat-label {
        font-size: 0.7rem !important;
    }
    
    /* Newsletter optimisée */
    .newsletter-section {
        padding: 25px 8px !important;
        margin: 0 5px !important;
    }
    
    .newsletter-card {
        padding: 20px 10px !important;
        text-align: center !important;
    }
    
    /* Newsletter Très Petits Écrans - Centré */
    .newsletter-form {
        max-width: 100% !important;
        padding: 0 10px;
        gap: 15px !important;
    }
    
    .newsletter-email {
        max-width: 250px !important;
        padding: 10px 15px !important;
        font-size: 14px !important;
    }
    
    .btn-newsletter {
        width: 160px !important;
        padding: 10px 15px !important;
        font-size: 14px !important;
    }
    
    /* Footer très petits écrans - Logo encore plus descendu */
    .footer-main-section {
        padding: 40px 0 30px !important;
    }
    
    .footer-logo {
        width: 40px !important;
        height: 40px !important;
        font-size: 0.8rem !important;
        margin: 0 0 20px 0 !important;
    }
    
    .footer-brand-text h4 {
        font-size: 1.4rem !important;
    }
    
    .footer-brand-text span {
        font-size: 0.8rem !important;
    }
    
    .footer-bottom-content {
        gap: 15px !important;
    }
    
    .footer-links-bottom a {
        font-size: 0.85rem !important;
        padding: 4px 8px !important;
    }
    
    /* Réseaux sociaux centrés très petit écran */
    .footer-main-section div[style*="display: flex; gap: 15px; flex-wrap: wrap"] {
        justify-content: center !important;
        align-items: center !important;
        gap: 8px !important;
    }
    
    .footer-main-section div[style*="display: flex; gap: 15px; flex-wrap: wrap"] a {
        font-size: 0.8rem !important;
        padding: 6px 10px !important;
    }
    
    /* Boutons et éléments interactifs */
    .btn-custom {
        font-size: 0.9rem !important;
        padding: 8px 15px !important;
        margin: 8px 0 !important;
    }
    
    /* Espacement des colonnes */
    .row {
        margin-left: -8px !important;
        margin-right: -8px !important;
    }
    
    .col, [class*="col-"] {
        padding-left: 8px !important;
        padding-right: 8px !important;
    }
}

/* Loading Animation */
.loading {
    display: inline-block;
    width: 20px;
    height: 20px;
    border: 3px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    border-top-color: white;
    animation: spin 1s ease-in-out infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

/* Scroll to top button */
.scroll-top {
    position: fixed;
    bottom: 90px;
    right: 20px;
    width: 50px;
    height: 50px;
    background: var(--primary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 1000;
}

.scroll-top.visible {
    opacity: 1;
    visibility: visible;
}

.scroll-top:hover {
    background: var(--accent-color);
    color: white;
    transform: translateY(-3px);
}

/* WhatsApp Floating Button */
.whatsapp-float {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 60px;
    height: 60px;
    background: #25D366;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-size: 1.8rem;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    transition: all 0.3s ease;
    z-index: 1001;
    animation: whatsappPulse 2s infinite;
}

.whatsapp-float:hover {
    background: #128C7E;
    color: white;
    transform: translateY(-5px) scale(1.1);
    box-shadow: 0 6px 25px rgba(37, 211, 102, 0.6);
}

.whatsapp-float i {
    font-size: 1.8rem;
}

/* WhatsApp pulse animation */
@keyframes whatsappPulse {
    0% {
        box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    }
    50% {
        box-shadow: 0 4px 20px rgba(37, 211, 102, 0.6), 0 0 0 10px rgba(37, 211, 102, 0.1);
    }
    100% {
        box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    }
}

/* Responsive WhatsApp button */
@media (max-width: 768px) {
    .whatsapp-float {
        width: 55px;
        height: 55px;
        bottom: 15px;
        right: 15px;
        font-size: 1.6rem;
    }
    
    .scroll-top {
        bottom: 80px;
        right: 15px;
        width: 45px;
        height: 45px;
    }
}

/* Portfolio visibility fix - ensure all items are visible */
#portfolio .row.g-4 {
    display: flex !important;
    flex-wrap: wrap !important;
}

#portfolio .col-lg-4 {
    display: block !important;
    opacity: 1 !important;
    transform: translateY(0) !important;
    transition: all 0.3s ease;
    visibility: visible !important;
}

#portfolio .portfolio-item {
    opacity: 1 !important;
    visibility: visible !important;
    display: block !important;
}

#portfolio .portfolio-placeholder {
    display: flex !important;
    visibility: visible !important;
    align-items: center !important;
    justify-content: center !important;
    text-align: center !important;
}

/* Centrage spécifique pour tous les éléments portfolio */
#portfolio .portfolio-item {
    text-align: center;
}

#portfolio .portfolio-placeholder::before {
    position: absolute !important;
    top: 50% !important;
    left: 50% !important;
    transform: translate(-50%, -50%) !important;
    text-align: center !important;
    width: auto !important;
}

#portfolio .portfolio-placeholder .icon {
    position: absolute !important;
    top: 20px !important;
    right: 20px !important;
}

/* Centrage forcé pour chaque placeholder portfolio */
.portfolio-placeholder[data-bg] {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    text-align: center !important;
    position: relative !important;
}

.portfolio-placeholder[data-bg]::before {
    position: absolute !important;
    top: 50% !important;
    left: 50% !important;
    transform: translate(-50%, -50%) !important;
    text-align: center !important;
    z-index: 2 !important;
    font-weight: 600 !important;
    font-size: 1.5rem !important;
    white-space: nowrap !important;
}

/* Modal de paiement */
.modal-content {
    border: none;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.modal-header {
    border-radius: 15px 15px 0 0;
    border-bottom: none;
    padding: 1.5rem;
}

.modal-body {
    padding: 2rem;
}

.modal-footer {
    border-top: 1px solid #dee2e6;
    border-radius: 0 0 15px 15px;
    padding: 1rem 2rem;
}

#proceedPayment {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border: none;
    padding: 10px 25px;
    border-radius: 25px;
    transition: all 0.3s ease;
}

#proceedPayment:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0,123,255,0.3);
}

/* Pulse Agency Branding Redesign */
.company-branding-new {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    border: 2px solid transparent;
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 10px 30px rgba(0, 123, 255, 0.1);
    position: relative;
    overflow: hidden;
}

.company-branding-new::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 123, 255, 0.03) 0%, rgba(40, 167, 69, 0.03) 100%);
    border-radius: 18px;
}

.company-branding-new * {
    position: relative;
    z-index: 1;
}

.logo-brand {
    width: 55px;
    height: 55px;
    filter: drop-shadow(0 4px 8px rgba(0, 123, 255, 0.2));
    animation: logoFloat 3s ease-in-out infinite;
}

@keyframes logoFloat {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-5px); }
}

.company-name {
    font-size: 1.8rem;
    font-weight: 700;
    background: linear-gradient(135deg, #007bff 0%, #28a745 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin: 0;
    letter-spacing: -0.5px;
}

.company-tagline {
    font-size: 0.9rem;
    color: #6c757d;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.ceo-info {
    display: flex;
    align-items: center;
    background: rgba(0, 123, 255, 0.05);
    padding: 0.8rem 1.2rem;
    border-radius: 12px;
    border-left: 4px solid #007bff;
}

.ceo-name {
    font-size: 1.1rem;
    font-weight: 600;
    color: #007bff;
    margin-right: 1rem;
}

.ceo-title {
    font-size: 0.9rem;
    color: #6c757d;
    font-weight: 500;
    padding: 0.2rem 0.8rem;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 15px;
    border: 1px solid rgba(0, 123, 255, 0.2);
}

/* Logo complet avec texte intégré */
.company-branding-logo {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 10px 30px rgba(0, 123, 255, 0.1);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.company-branding-logo::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 123, 255, 0.02) 0%, rgba(40, 167, 69, 0.02) 100%);
    border-radius: 18px;
}

.logo-container {
    position: relative;
    z-index: 2;
}

.logo-complete {
    max-width: 100%;
    height: auto;
    width: 280px;
    filter: drop-shadow(0 4px 12px rgba(0, 123, 255, 0.15));
    animation: logoGlow 4s ease-in-out infinite;
}

@keyframes logoGlow {
    0%, 100% { 
        filter: drop-shadow(0 4px 12px rgba(0, 123, 255, 0.15));
        transform: scale(1);
    }
    50% { 
        filter: drop-shadow(0 6px 20px rgba(0, 123, 255, 0.25));
        transform: scale(1.02);
    }
}

.ceo-info-simple {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    background: rgba(0, 123, 255, 0.05);
    padding: 0.8rem 1.5rem;
    border-radius: 15px;
    border: 1px solid rgba(0, 123, 255, 0.1);
    position: relative;
    z-index: 2;
}

.ceo-info-simple .ceo-name {
    font-size: 1.1rem;
    font-weight: 600;
    color: #007bff;
}

.ceo-info-simple .ceo-title {
    font-size: 0.9rem;
    color: #6c757d;
    font-weight: 500;
    background: rgba(255, 255, 255, 0.7);
    padding: 0.3rem 0.8rem;
    border-radius: 12px;
    border: 1px solid rgba(0, 123, 255, 0.15);
}

/* Logo complet avec toute la section intégrée */
.company-logo-complete {
    text-align: center;
    margin-bottom: 2rem;
}

.logo-full-section {
    max-width: 100%;
    height: auto;
    width: 350px;
}

/* Logo dans la navbar - taille plus grande et alignement */
.navbar-brand .logo-full-section {
    width: 280px;
    height: auto;
    vertical-align: middle;
}

/* Option 1: Logo circulaire avec bordure élégante */
.logo-circle-option1 {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: linear-gradient(135deg, #2c5aa0 0%, #17a2b8 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 700;
    font-size: 1.1rem;
    text-align: center;
    line-height: 1.2;
    box-shadow: 0 8px 25px rgba(44, 90, 160, 0.3);
    border: 3px solid white;
    position: relative;
    transition: all 0.3s ease;
}

.logo-circle-option1:hover {
    transform: scale(1.05);
    box-shadow: 0 12px 35px rgba(44, 90, 160, 0.4);
}

.logo-circle-option1::before {
    content: '';
    position: absolute;
    top: -5px;
    left: -5px;
    right: -5px;
    bottom: -5px;
    border: 2px solid var(--primary-color);
    border-radius: 50%;
    opacity: 0.3;
    animation: pulse 2s infinite;
}

/* Option 2: Logo avec icône centrale et texte autour */
.logo-circle-option2 {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    border: 4px solid var(--primary-color);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 30px rgba(44, 90, 160, 0.2);
    position: relative;
    transition: all 0.3s ease;
}

.logo-circle-option2:hover {
    transform: rotate(5deg) scale(1.05);
    box-shadow: 0 15px 40px rgba(44, 90, 160, 0.3);
}

.logo-circle-option2 .logo-icon {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 2px;
}

.logo-circle-option2 .logo-text {
    font-size: 0.7rem;
    font-weight: 600;
    color: var(--primary-color);
    text-align: center;
    line-height: 1;
}

/* Option 3: Badge moderne avec effet glassmorphism */
.logo-circle-option3 {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.25);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.3);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 600;
    text-align: center;
    line-height: 1.1;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    position: relative;
    transition: all 0.3s ease;
}

/* NOUVEAUX DESIGNS CRÉATIFS */

/* Logo Pulse Agency - Design Moderne & Professionnel */
.logo-creative-hex {
    width: 90px;
    height: 90px;
    background: linear-gradient(135deg, #2c3e50 0%, #3498db 50%, #2980b9 100%);
    border-radius: 16px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 800;
    position: relative;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 
        0 8px 32px rgba(52, 73, 94, 0.3),
        0 2px 8px rgba(0, 0, 0, 0.1);
    text-align: center;
    line-height: 1.1;
    font-family: 'Segoe UI', system-ui, sans-serif;
    border: 2px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
}

.logo-creative-hex:hover {
    transform: translateY(-4px) scale(1.05);
    box-shadow: 
        0 16px 48px rgba(52, 73, 94, 0.4),
        0 8px 24px rgba(52, 152, 219, 0.2);
    background: linear-gradient(135deg, #34495e 0%, #3498db 50%, #2980b9 100%);
}

.logo-creative-hex::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(135deg, #3498db, #2980b9, #34495e);
    border-radius: 18px;
    z-index: -1;
    opacity: 0.3;
    transition: all 0.3s ease;
}

.logo-creative-hex:hover::before {
    opacity: 0.6;
    background: linear-gradient(135deg, #52c9f5, #3498db, #2980b9);
}

@keyframes rainbow {
    0% { filter: hue-rotate(0deg); }
    100% { filter: hue-rotate(360deg); }
}

/* Styles responsive pour le logo Pulse Agency */
@media (max-width: 768px) {
    .logo-creative-hex {
        width: 60px !important;
        height: 60px !important;
        font-size: 0.8rem;
        border-radius: 12px;
    }
    
    .logo-creative-hex::before {
        border-radius: 14px;
    }
}

@media (max-width: 576px) {
    .logo-creative-hex {
        width: 50px !important;
        height: 50px !important;
        font-size: 0.7rem;
        border-radius: 10px;
    }
    
    .logo-creative-hex::before {
        border-radius: 12px;
    }
}

/* NOUVELLES VARIANTES MODERNES - SIGNATURES & ICÔNES */

/* Option A: Logo avec Signature Manuscrite */
.logo-signature {
    width: 90px;
    height: 90px;
    background: linear-gradient(135deg, #1e3c72 0%, #2a5298 100%);
    border-radius: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    transition: all 0.4s ease;
    box-shadow: 0 10px 30px rgba(30, 60, 114, 0.3);
}

.logo-signature::before {
    content: "KB";
    position: absolute;
    top: 8px;
    right: 8px;
    font-size: 0.7rem;
    color: rgba(255, 255, 255, 0.6);
    font-family: 'Brush Script MT', cursive;
    font-style: italic;
}

.logo-signature::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, transparent, #3498db, transparent);
    animation: signatureGlow 2s ease-in-out infinite;
}

@keyframes signatureGlow {
    0%, 100% { opacity: 0.5; transform: scaleX(0.8); }
    50% { opacity: 1; transform: scaleX(1); }
}

/* Option B: Logo avec Icône Tech ⚡ */
.logo-tech-icon {
    width: 90px;
    height: 90px;
    background: linear-gradient(135deg, #16a085 0%, #2c5aa0 50%, #17a2b8 100%);
    border-radius: 18px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 
        0 12px 35px rgba(22, 160, 133, 0.3),
        0 2px 8px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    color: white;
    font-weight: 800;
    text-align: center;
    line-height: 1.1;
    font-family: 'Segoe UI', system-ui, sans-serif;
}

.logo-tech-icon::before {
    content: '⚡';
    position: absolute;
    top: 6px;
    right: 8px;
    font-size: 1.1rem;
    opacity: 0.9;
    animation: sparkle 2s ease-in-out infinite;
    filter: drop-shadow(0 0 4px rgba(255, 255, 255, 0.6));
}

.logo-tech-icon:hover {
    transform: translateY(-4px) scale(1.05);
    box-shadow: 
        0 20px 50px rgba(22, 160, 133, 0.4),
        0 8px 24px rgba(23, 162, 184, 0.3);
    background: linear-gradient(135deg, #1abc9c 0%, #3d6bb0 50%, #20b2cc 100%);
}

.logo-tech-icon:hover::before {
    animation: sparkleHover 0.8s ease-in-out infinite;
    filter: drop-shadow(0 0 8px rgba(255, 255, 255, 0.9));
}

@keyframes sparkle {
    0%, 100% { 
        transform: scale(1) rotate(0deg); 
        opacity: 0.9; 
    }
    25% { 
        transform: scale(1.1) rotate(45deg); 
        opacity: 1; 
    }
    50% { 
        transform: scale(1.2) rotate(90deg); 
        opacity: 0.8; 
    }
    75% { 
        transform: scale(1.1) rotate(135deg); 
        opacity: 1; 
    }
}

@keyframes sparkleHover {
    0%, 100% { 
        transform: scale(1.3) rotate(0deg); 
        opacity: 1; 
    }
    50% { 
        transform: scale(1.5) rotate(180deg); 
        opacity: 0.7; 
    }
}

/* Option C: Logo avec Badge CEO */
.logo-ceo-badge {
    width: 90px;
    height: 90px;
    background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
    border-radius: 16px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(52, 73, 94, 0.3);
}

.logo-ceo-badge::after {
    content: 'CEO';
    position: absolute;
    bottom: 8px;
    right: 8px;
    font-size: 0.6rem;
    background: #e74c3c;
    color: white;
    padding: 2px 6px;
    border-radius: 8px;
    font-weight: 700;
    letter-spacing: 0.5px;
}

/* Option D: Logo avec Effet Hologramme */
.logo-hologram {
    width: 90px;
    height: 90px;
    background: linear-gradient(135deg, #0f0f23 0%, #1a1a3a 100%);
    border-radius: 16px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
    border: 1px solid #00ffff;
    box-shadow: 
        0 0 20px rgba(0, 255, 255, 0.3),
        inset 0 0 20px rgba(0, 255, 255, 0.1);
}

.logo-hologram::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent 30%, rgba(0, 255, 255, 0.1) 50%, transparent 70%);
    animation: scan 3s linear infinite;
}

@keyframes scan {
    0% { transform: translateX(-100%) translateY(-100%); }
    100% { transform: translateX(100%) translateY(100%); }
}

/* Option E: Logo Minimaliste avec Point d'Accent */
.logo-minimal-accent {
    width: 90px;
    height: 90px;
    background: #ffffff;
    border-radius: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
    transition: all 0.3s ease;
    box-shadow: 
        0 10px 30px rgba(0, 0, 0, 0.1),
        0 1px 8px rgba(0, 0, 0, 0.06);
    border: 2px solid #f8f9fa;
}

.logo-minimal-accent .logo-text {
    color: #2c3e50;
    font-weight: 800;
}

.logo-minimal-accent::after {
    content: '●';
    position: absolute;
    top: 12px;
    right: 12px;
    color: #e74c3c;
    font-size: 0.8rem;
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.3); opacity: 0.7; }
}

/* Styles responsifs pour toutes les nouvelles variantes */
@media (max-width: 768px) {
    .logo-signature, .logo-tech-icon, .logo-ceo-badge, .logo-hologram, .logo-minimal-accent {
        width: 60px !important;
        height: 60px !important;
        font-size: 0.8rem;
    }
}

@media (max-width: 576px) {
    .logo-signature, .logo-tech-icon, .logo-ceo-badge, .logo-hologram, .logo-minimal-accent {
        width: 50px !important;
        height: 50px !important;
        font-size: 0.7rem;
    }
}

/* Option 5: Logo Néon Cyberpunk */
.logo-creative-neon {
    width: 95px;
    height: 95px;
    border-radius: 50%;
    background: radial-gradient(circle at 30% 30%, rgba(0, 255, 255, 0.2) 0%, rgba(255, 0, 255, 0.2) 100%);
    border: 3px solid;
    border-image: linear-gradient(45deg, #00ffff, #ff00ff, #ffff00) 1;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #00ffff;
    font-weight: 700;
    font-size: 1.1rem;
    text-shadow: 0 0 10px currentColor, 0 0 20px currentColor, 0 0 40px currentColor;
    box-shadow: 
        0 0 20px rgba(0, 255, 255, 0.5),
        inset 0 0 20px rgba(0, 255, 255, 0.1);
    position: relative;
    animation: neonPulse 2s ease-in-out infinite alternate;
}

@keyframes neonPulse {
    from {
        box-shadow: 
            0 0 20px rgba(0, 255, 255, 0.5),
            inset 0 0 20px rgba(0, 255, 255, 0.1);
        text-shadow: 0 0 10px currentColor, 0 0 20px currentColor, 0 0 40px currentColor;
    }
    to {
        box-shadow: 
            0 0 30px rgba(0, 255, 255, 0.8),
            0 0 60px rgba(255, 0, 255, 0.3),
            inset 0 0 30px rgba(0, 255, 255, 0.2);
        text-shadow: 0 0 15px currentColor, 0 0 30px currentColor, 0 0 60px currentColor;
    }
}

/* Option 6: Logo Diamant 3D */
.logo-creative-diamond {
    width: 85px;
    height: 85px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 50%, #667eea 100%);
    transform: rotate(45deg);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    box-shadow: 
        0 0 0 3px white,
        0 15px 35px rgba(118, 75, 162, 0.4);
    transition: all 0.4s ease;
    clip-path: polygon(50% 0%, 100% 50%, 50% 100%, 0% 50%);
}

.logo-creative-diamond:hover {
    transform: rotate(45deg) scale(1.15);
    box-shadow: 
        0 0 0 3px white,
        0 25px 50px rgba(118, 75, 162, 0.6);
}

.logo-creative-diamond .diamond-content {
    transform: rotate(-45deg);
    color: white;
    font-weight: 700;
    font-size: 1rem;
    text-align: center;
    line-height: 1;
}

/* Option 7: Logo Organique Liquide */
.logo-creative-liquid {
    width: 90px;
    height: 90px;
    background: linear-gradient(45deg, #ff6b6b, #4ecdc4);
    border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 700;
    font-size: 1.1rem;
    box-shadow: 0 20px 40px rgba(255, 107, 107, 0.4);
    position: relative;
    transition: all 0.4s ease;
    animation: liquidMorph 4s ease-in-out infinite;
}

@keyframes liquidMorph {
    0%, 100% {
        border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
        background: linear-gradient(45deg, #ff6b6b, #4ecdc4);
    }
    25% {
        border-radius: 30% 60% 70% 40% / 50% 60% 30% 60%;
        background: linear-gradient(135deg, #4ecdc4, #45b7d1);
    }
    50% {
        border-radius: 50% 60% 30% 60% / 60% 40% 60% 30%;
        background: linear-gradient(225deg, #45b7d1, #96ceb4);
    }
    75% {
        border-radius: 40% 40% 60% 50% / 70% 50% 40% 50%;
        background: linear-gradient(315deg, #96ceb4, #ff6b6b);
    }
}

.logo-creative-liquid:hover {
    transform: scale(1.1);
    animation-duration: 1s;
}

/* Option 8: Logo Hologramme */
.logo-creative-holo {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    background: conic-gradient(from 0deg, 
        rgba(255,0,150,0.8) 0deg,
        rgba(0,255,255,0.8) 60deg,
        rgba(255,255,0,0.8) 120deg,
        rgba(255,0,150,0.8) 180deg,
        rgba(0,255,255,0.8) 240deg,
        rgba(255,255,0,0.8) 300deg,
        rgba(255,0,150,0.8) 360deg);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    animation: holoRotate 3s linear infinite;
}

.logo-creative-holo::before {
    content: '';
    position: absolute;
    top: 3px;
    left: 3px;
    right: 3px;
    bottom: 3px;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 50%;
    z-index: 1;
}

.logo-creative-holo .holo-content {
    position: relative;
    z-index: 2;
    color: transparent;
    background: conic-gradient(from 45deg, #ff0096, #00ffff, #ffff00, #ff0096);
    background-clip: text;
    -webkit-background-clip: text;
    font-weight: 700;
    font-size: 1.1rem;
    animation: holoShimmer 2s ease-in-out infinite;
}

@keyframes holoRotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

@keyframes holoShimmer {
    0%, 100% { opacity: 0.8; }
    50% { opacity: 1; }
}

/* Option 9: Logo Particules Énergétiques */
.logo-creative-energy {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    background: radial-gradient(circle at center, rgba(255,255,255,0.9) 30%, transparent 70%);
    border: 2px solid #4facfe;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.logo-creative-energy::before,
.logo-creative-energy::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    border: 2px solid transparent;
    border-top-color: #00f2fe;
    border-right-color: #4facfe;
    animation: energyRotate 2s linear infinite;
}

.logo-creative-energy::after {
    animation-delay: -1s;
    border-top-color: #ff6b6b;
    border-right-color: #feca57;
}

@keyframes energyRotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.logo-creative-energy .energy-content {
    color: #4facfe;
    font-weight: 700;
    font-size: 1.1rem;
    z-index: 2;
    position: relative;
}

.logo-circle-option3:hover {
    background: rgba(255, 255, 255, 0.35);
    transform: translateY(-3px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
}

.logo-circle-option3 .company-initial {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 2px;
}

.logo-circle-option3 .company-tagline-mini {
    font-size: 0.6rem;
    opacity: 0.9;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Texte compagnon pour toutes les options */
.logo-companion-text {
    margin-left: 15px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-width: 0; /* Permet au texte de se comprimer */
}

.logo-companion-text .company-name-main {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--primary-color);
    margin: 0;
    line-height: 1.1;
    white-space: nowrap;
}

.logo-companion-text .company-subtitle {
    font-size: 0.7rem;
    background: linear-gradient(200deg, #667eea, #434343);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 300;
    margin: 0;
    text-transform: none;
    letter-spacing: 0.2px;
    font-style: italic;
    transition: all 0.3s ease;
    line-height: 1.2;
    /* Le texte peut passer à la ligne si nécessaire */
    white-space: normal;
    max-width: 200px;
}

.logo-companion-text .company-subtitle:hover {
    background: linear-gradient(200deg, #7c8cff, #5a5a5a);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Alignement du logo dans la navbar */
.navbar-brand .company-logo-complete {
    display: flex;
    align-items: center;
    margin-bottom: 0;
    text-align: left;
}

/* Nouvelle approche moderne pour le hero */
.hero-card {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    text-align: center;
    transition: all 0.3s ease;
    /* Descendre la carte sur desktop uniquement */
    margin-top: 40px;
}

.hero-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.15);
}

.hero-greeting {
    font-style: italic;
}

.hero-name {
    background: linear-gradient(135deg, #2c3e50, #3498db);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: -1px;
    margin-bottom: 0;
}

.hero-roles {
    margin-bottom: 2rem;
}

.role-primary .badge {
    border-radius: 25px;
    font-weight: 600;
    border: 2px solid #343a40;
    transition: all 0.3s ease;
}

.role-primary .badge:hover {
    transform: scale(1.1);
    box-shadow: 0 8px 20px rgba(52, 58, 64, 0.4);
}

.role-secondary {
    font-size: 1.1rem;
}

.hero-stats {
    border-top: 2px solid #e9ecef;
    padding-top: 1rem;
    margin-top: 1rem;
}

.stat-item {
    text-align: center;
    min-width: 80px;
}

.stat-item span {
    font-size: 1.5rem;
    display: block;
}

/* Style pour le badge CEO dans about */
.about-title .badge {
    border-radius: 20px;
    font-weight: 600;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
}

.about-title .badge:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 20px rgba(0, 86, 179, 0.5) !important;
}

/* Ajustements navbar pour l'alignement */
.navbar-brand {
    padding-top: 0.3rem;
    padding-bottom: 0.3rem;
    display: flex;
    align-items: center;
}



.company-intro {
    background: linear-gradient(135deg, rgba(0, 123, 255, 0.05) 0%, transparent 100%);
    padding: 1.5rem;
    border-radius: 15px;
    border: 2px solid rgba(0, 123, 255, 0.1);
}

.navbar-brand {
    font-size: 1.5rem;
    font-weight: 700;
}

.navbar-brand span {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.logo-img {
    width: 35px;
    height: 35px;
    transition: all 0.3s ease;
}

.navbar-brand:hover .logo-img {
    transform: scale(1.1) rotate(5deg);
}

.logo-img-hero {
    width: 45px;
    height: 45px;
    animation: pulse 2s infinite;
}

.logo-img-footer {
    width: 30px;
    height: 30px;
    filter: brightness(0) invert(1);
}

.logo-img-about {
    width: 50px;
    height: 50px;
    animation: rotate 4s linear infinite;
}

@keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
}

/* Logo responsiveness */
@media (max-width: 768px) {
    .logo-img {
        width: 30px;
        height: 30px;
    }
    
    .logo-img-hero {
        width: 40px;
        height: 40px;
    }
    
    .company-branding-new {
        padding: 1.5rem;
        margin-bottom: 2rem;
    }
    
    .logo-brand {
        width: 45px;
        height: 45px;
    }
    
    .company-name {
        font-size: 1.5rem;
    }
    
    .ceo-info {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }
    
    .ceo-name {
        margin-right: 0;
        margin-bottom: 0.2rem;
    }
    
    .company-branding-logo {
        padding: 1.5rem 1rem;
    }
    
    .logo-complete {
        width: 240px;
    }
    
    .ceo-info-simple {
        flex-direction: column;
        gap: 0.5rem;
        padding: 1rem;
    }
    
    .logo-full-section {
        width: 300px;
    }
    
    .navbar-brand .logo-full-section {
        width: 240px;
    }
    
    .navbar-brand {
        padding-top: 0.2rem;
        padding-bottom: 0.2rem;
    }
    
    /* Hero responsive */
    .hero-name {
        font-size: 2.5rem;
    }
    
    .hero-card {
        padding: 2rem;
        margin: 1rem;
        margin-top: 0 !important; /* Annuler le margin-top desktop sur mobile */
    }
    
    .hero-stats {
        flex-direction: column;
        gap: 1rem !important;
    }
    
    .stat-item span {
        font-size: 1.2rem;
    }
}

@media (max-width: 480px) {
    .logo-full-section {
        width: 250px;
    }
    
    .navbar-brand .logo-full-section {
        width: 200px;
    }
    
    .navbar-brand {
        padding-top: 0.1rem;
        padding-bottom: 0.1rem;
    }
    
    /* Hero mobile */
    .hero-name {
        font-size: 1.8rem;
    }
    
    .hero-card {
        padding: 1.5rem;
        margin: 0.5rem;
        margin-top: 0 !important; /* Annuler le margin-top desktop sur très petits écrans */
        border-radius: 15px;
    }
    
    .role-primary .badge {
        font-size: 0.9rem;
        padding: 0.5rem 1rem;
    }
    
    .hero-description h2 {
        font-size: 1rem;
    }
}

.bi-code-slash {
    color: #ffffff;
    filter: drop-shadow(0 2px 4px rgb(255, 255, 255));
}

/* Animation pour l'icône de code */
.navbar-brand .bi-code-slash {
    transition: transform 0.3s ease;
}

.navbar-brand:hover .bi-code-slash {
    transform: rotate(10deg);
}

/* Section Équipe */
.team-section {
    background: linear-gradient(135deg, rgba(0, 123, 255, 0.08) 0%, rgba(40, 167, 69, 0.05) 100%);
    border: 2px solid rgba(0, 123, 255, 0.1);
    position: relative;
    overflow: hidden;
}

.team-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 100%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(255,255,255,0.1), transparent);
    transform: rotate(45deg);
    animation: shine 3s infinite;
}

@keyframes shine {
    0% { transform: translateX(-100%) rotate(45deg); }
    100% { transform: translateX(100%) rotate(45deg); }
}

.team-count {
    background: rgba(255,255,255,0.9);
    border-radius: 50%;
    width: 100px;
    height: 100px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.team-skills .badge {
    font-size: 0.75rem;
    padding: 0.4rem 0.8rem;
}

/* ================================
   RESPONSIVITÉ GLOBALE
   ================================ */

/* Tablettes et écrans moyens */
@media (max-width: 992px) {
    .section-padding {
        padding: 60px 0;
    }
    
    .section-title h2 {
        font-size: 2rem;
    }
    
    .container {
        max-width: 100%;
        padding: 0 15px;
    }
    
    /* Navbar responsive */
    .navbar-collapse {
        background: white;
        border-radius: 10px;
        box-shadow: var(--shadow-light);
        padding: 20px;
        margin-top: 10px;
    }
    
    .navbar-nav .nav-link {
        padding: 10px 0 !important;
        text-align: center;
    }
}

/* Mobiles */
@media (max-width: 768px) {
    body {
        font-size: 14px;
    }
    
    .section-padding {
        padding: 40px 0;
    }
    
    .section-title {
        margin-bottom: 40px;
    }
    
    .section-title h2 {
        font-size: 1.8rem;
    }
    
    .section-title p {
        font-size: 1rem;
        padding: 0 20px;
    }
    
    /* Container et grilles */
    .container {
        padding: 0 10px;
        max-width: 100%;
    }
    
    .row {
        margin: 0 -10px;
    }
    
    [class*="col-"] {
        padding: 0 10px;
        margin-bottom: 20px;
    }
    
    /* Hero section */
    .hero {
        padding: 100px 0 50px;
        text-align: center;
    }
    
    .hero h1 {
        font-size: 2rem;
    }
    
    .hero .lead {
        font-size: 1rem;
    }
    
    /* Cards et éléments */
    .card {
        margin-bottom: 20px;
    }
    
    .btn {
        font-size: 0.9rem;
        padding: 10px 20px;
    }
    
    .btn-lg {
        font-size: 1rem;
        padding: 12px 24px;
    }
    
    /* Portfolio */
    .portfolio-item {
        margin-bottom: 30px;
    }
    
    /* Services */
    .service-card {
        margin-bottom: 30px;
    }
    
    /* Textes */
    h1 { font-size: 1.8rem !important; }
    h2 { font-size: 1.6rem !important; }
    h3 { font-size: 1.4rem !important; }
    h4 { font-size: 1.2rem !important; }
    h5 { font-size: 1.1rem !important; }
    
    /* Boutons flottants responsive */
    .whatsapp-float {
        width: 50px;
        height: 50px;
        bottom: 10px;
        right: 10px;
        font-size: 1.4rem;
    }
    
    .scroll-top {
        bottom: 70px;
        right: 10px;
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
}

/* Petits mobiles */
@media (max-width: 480px) {
    .container {
        padding: 0 8px;
        max-width: 100%;
    }
    
    .section-padding {
        padding: 30px 0;
    }
    
    .section-title h2 {
        font-size: 1.5rem;
    }
    
    .hero {
        padding: 80px 0 40px;
    }
    
    .hero h1 {
        font-size: 1.6rem;
        line-height: 1.3;
    }
    
    .hero .lead {
        font-size: 0.9rem;
    }
    
    /* Boutons plus petits */
    .btn {
        font-size: 0.8rem;
        padding: 8px 16px;
    }
    
    .btn-lg {
        font-size: 0.9rem;
        padding: 10px 20px;
    }
    
    /* Cards compactes */
    .card {
        font-size: 0.9rem;
    }
    
    .card-title {
        font-size: 1.1rem;
    }
    
    /* Boutons flottants très petits */
    .whatsapp-float {
        width: 45px;
        height: 45px;
        bottom: 8px;
        right: 8px;
        font-size: 1.2rem;
    }
    
    .scroll-top {
        bottom: 60px;
        right: 8px;
        width: 35px;
        height: 35px;
        font-size: 0.9rem;
    }
}

/* Très petits écrans */
@media (max-width: 360px) {
    .container {
        padding: 0 5px;
        max-width: 100%;
    }
    
    .section-title h2 {
        font-size: 1.3rem;
    }
    
    .hero h1 {
        font-size: 1.4rem;
    }
    
    .btn {
        font-size: 0.75rem;
        padding: 6px 12px;
    }
    
    .whatsapp-float {
        width: 40px;
        height: 40px;
        bottom: 5px;
        right: 5px;
        font-size: 1rem;
    }
    
    .scroll-top {
        bottom: 50px;
        right: 5px;
        width: 32px;
        height: 32px;
        font-size: 0.8rem;
    }
}

/* Hero Expertise Cards Styles - Proposition 1 */
.hero-expertise-cards .expertise-card {
    display: flex;
    align-items: center;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 12px;
    border: 1px solid rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.hero-expertise-cards .expertise-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.hero-expertise-cards .expertise-icon {
    margin-right: 1rem;
    font-size: 1.5rem;
}

.hero-expertise-cards .expertise-content h6 {
    font-weight: 600;
    color: #2c3e50;
}

@media (max-width: 768px) {
    .hero-expertise-cards .expertise-card {
        padding: 0.8rem;
        margin-bottom: 0.5rem;
    }
    
    .hero-expertise-cards .expertise-icon {
        font-size: 1.2rem;
        margin-right: 0.8rem;
    }
    
    .hero-expertise-cards .expertise-content h6 {
        font-size: 0.9rem;
    }
    
    .hero-expertise-cards .expertise-content small {
        font-size: 0.75rem;
    }
}

/* Hero Journey Timeline Styles - Proposition 2 */
.hero-journey {
    position: relative;
    padding-left: 0;
}

.hero-journey::before {
    content: '';
    position: absolute;
    left: 15px;
    top: 20px;
    bottom: 20px;
    width: 2px;
    background: linear-gradient(to bottom, #007bff, #28a745, #17a2b8);
    border-radius: 2px;
}

.journey-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 2rem;
    position: relative;
}

.journey-dot {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 1.5rem;
    position: relative;
    z-index: 2;
    border: 3px solid white;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.journey-content {
    flex: 1;
    background: rgba(255, 255, 255, 0.9);
    padding: 1rem;
    border-radius: 12px;
    border: 1px solid rgba(0, 0, 0, 0.05);
    backdrop-filter: blur(5px);
}

.journey-content h6 {
    color: #2c3e50;
    font-weight: 600;
}

@media (max-width: 768px) {
    .hero-journey::before {
        left: 12px;
    }
    
    .journey-dot {
        width: 24px;
        height: 24px;
        margin-right: 1rem;
    }
    
    .journey-content {
        padding: 0.8rem;
    }
    
    .journey-content h6 {
        font-size: 0.9rem;
    }
    
    .journey-content .badge {
        font-size: 0.7rem;
        padding: 0.25rem 0.5rem;
    }
}

/* Hero Skills Showcase Styles - Proposition 3 */
.hero-skills-showcase {
    background: rgba(248, 249, 250, 0.8);
    border-radius: 16px;
    padding: 1.5rem;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.skills-title {
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
}

.skills-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.skill-tag {
    background: linear-gradient(45deg, #007bff, #0056b3);
    color: white;
    padding: 0.4rem 0.8rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 500;
    box-shadow: 0 2px 8px rgba(0, 123, 255, 0.2);
    transition: all 0.3s ease;
}

.skill-tag:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 123, 255, 0.3);
}

.skills-description p {
    color: #495057;
    line-height: 1.5;
}

@media (max-width: 768px) {
    .hero-skills-showcase {
        padding: 1rem;
    }
    
    .skills-title {
        font-size: 1rem;
        margin-bottom: 0.8rem;
    }
    
    .skill-tag {
        font-size: 0.75rem;
        padding: 0.3rem 0.6rem;
    }
    
    .skills-description p {
        font-size: 0.9rem;
    }
}

/* Hero Intro Minimaliste Styles - Proposition 4 */
.hero-intro {
    text-align: center;
}

.hero-intro .intro-main h3 {
    line-height: 1.4;
    letter-spacing: -0.02em;
}

.hero-intro .lead-text {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #6c757d;
    max-width: 500px;
    margin: 0 auto 1.5rem;
}

.hero-intro .highlight-text {
    background: linear-gradient(45deg, #007bff, #28a745);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 600;
}

.intro-features {
    margin: 1.5rem 0;
}

.feature-mini {
    padding: 0.5rem;
}

.feature-number {
    font-size: 1.8rem;
    font-weight: 700;
    line-height: 1;
    margin-bottom: 0.25rem;
    display: block;
}

.feature-mini small {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-weight: 500;
}

@media (max-width: 768px) {
    .hero-intro .intro-main h3 {
        font-size: 1.1rem;
    }
    
    .hero-intro .lead-text {
        font-size: 1rem;
        margin-bottom: 1rem;
    }
    
    .feature-number {
        font-size: 1.5rem;
    }
    
    .feature-mini small {
        font-size: 0.7rem;
    }
}

/* SERVICES SECTION STYLES */
#services {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.service-card {
    background: white;
    padding: 2rem 1.5rem;
    border-radius: 16px;
    text-align: center;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 
        0 4px 20px rgba(0, 0, 0, 0.08),
        0 1px 4px rgba(0, 0, 0, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.8);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 
        0 20px 40px rgba(0, 0, 0, 0.12),
        0 4px 8px rgba(0, 0, 0, 0.06);
    border-color: rgba(102, 126, 234, 0.3);
}

.service-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
}

.service-card h4 {
    color: #2c3e50;
    font-weight: 700;
    font-size: 1.25rem;
    margin-bottom: 1rem;
    line-height: 1.3;
}

.service-card p {
    color: #6c757d;
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 0;
    flex-grow: 1;
}

/* Expertise Section */
.expertise-section {
    background: white;
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 
        0 8px 30px rgba(0, 0, 0, 0.08),
        0 2px 8px rgba(0, 0, 0, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.9);
}

.expertise-section h3 {
    color: #2c3e50;
    font-weight: 700;
    margin-bottom: 2rem;
}

.expertise-item {
    display: flex;
    align-items: center;
    padding: 0.75rem 1rem;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    border-radius: 12px;
    transition: all 0.3s ease;
    border: 1px solid rgba(102, 126, 234, 0.1);
    height: 100%;
    text-align: left;
}

.expertise-item:hover {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(102, 126, 234, 0.3);
}

.expertise-item span {
    margin-left: 0.75rem;
    font-weight: 500;
    font-size: 0.9rem;
}

/* Responsive pour Services */
@media (max-width: 768px) {
    .service-card {
        padding: 1.5rem 1rem;
    }
    
    .service-icon {
        font-size: 2.5rem;
        margin-bottom: 1rem;
    }
    
    .service-card h4 {
        font-size: 1.1rem;
    }
    
    .expertise-section {
        padding: 1.5rem;
    }
    
    .expertise-item {
        padding: 0.5rem 0.75rem;
    }
    
    .expertise-item span {
        font-size: 0.85rem;
    }
}

@media (max-width: 576px) {
    .service-card {
        padding: 1.25rem 0.75rem;
    }
    
    .service-icon {
        font-size: 2rem;
    }
    
    .expertise-section {
        padding: 1rem;
    }
}

/* HERO DESCRIPTION - STYLE MODERNE */
.hero-description-styled {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.9), rgba(248, 249, 250, 0.95));
    backdrop-filter: blur(8px);
    border-radius: 16px;
    padding: 1.8rem;
    box-shadow: 
        0 8px 32px rgba(0, 0, 0, 0.06),
        0 2px 8px rgba(0, 0, 0, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.7);
    line-height: 1.8;
    font-size: 1.1rem;
    color: #495057;
    position: relative;
    overflow: hidden;
}

.hero-description-styled::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(180deg, #667eea, #764ba2);
    border-radius: 0 2px 2px 0;
}

.hero-description-styled strong {
    background: linear-gradient(135deg, #2c3e50, #3498db);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 700;
    position: relative;
}

.hero-description-styled em {
    background: linear-gradient(135deg, #667eea, #764ba2);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 600;
    font-style: normal;
    padding: 0.2rem 0.5rem;
    border-radius: 8px;
    background-color: rgba(102, 126, 234, 0.08);
    display: inline-block;
    margin: 0.2rem 0;
}

.hero-description-styled:hover {
    transform: translateY(-3px);
    box-shadow: 
        0 12px 40px rgba(0, 0, 0, 0.1),
        0 4px 16px rgba(0, 0, 0, 0.06);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Responsive pour Hero Description */
@media (max-width: 768px) {
    .hero-description-styled {
        padding: 1.4rem;
        font-size: 1rem;
        line-height: 1.7;
    }
}

@media (max-width: 576px) {
    .hero-description-styled {
        padding: 1.2rem;
        font-size: 0.95rem;
        line-height: 1.6;
    }
    
    .hero-description-styled em {
        display: block;
        margin: 0.5rem 0;
        text-align: center;
        padding: 0.4rem 0.8rem;
    }
}

/* ==========================================
   SECTION RECRUTEMENT IT - STYLES NOUVEAUX
   ========================================== */

/* Carte principale recrutement */
.recruitment-main-card {
    border: 2px solid rgba(0, 123, 255, 0.1);
    transition: all 0.3s ease;
}

.recruitment-main-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 123, 255, 0.15);
    border-color: rgba(0, 123, 255, 0.3);
}

.recruitment-icon {
    background: linear-gradient(135deg, #007bff, #0056b3);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    filter: drop-shadow(0 2px 4px rgba(0, 123, 255, 0.3));
}

/* Features du recrutement */
.feature-item {
    border: 1px solid rgba(0, 123, 255, 0.1);
    transition: all 0.2s ease;
    cursor: pointer;
}

.feature-item:hover {
    background: linear-gradient(135deg, #f8f9ff, #e6f3ff) !important;
    border-color: rgba(0, 123, 255, 0.3);
    transform: translateY(-2px);
}

.feature-icon {
    color: #007bff;
}

/* Carte statistiques */
.recruitment-stats {
    border: 2px solid rgba(40, 167, 69, 0.1);
}

.stat-item {
    padding: 0.8rem 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.stat-item:last-child {
    border-bottom: none;
}

/* Styles pour la section statistiques de recrutement */
.recruitment-stats {
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
}

.recruitment-stats .stat-item {
    display: flex !important;
    flex-direction: column !important;
    visibility: visible !important;
    opacity: 1 !important;
}

.recruitment-stats .stat-label {
    color: #6c757d !important;
    font-weight: 500 !important;
    font-size: 0.9rem !important;
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
}

.recruitment-stats .stat-value {
    color: #28a745 !important;
    font-weight: 700 !important;
    font-size: 1.2rem !important;
    display: block !important;
    visibility: visible !important;
}

/* Forcer l'affichage de la colonne statistiques */
.col-lg-4[data-aos="fade-left"] {
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
}

/* Stat label général */
.stat-label {
    color: #343a40;
    font-weight: 500;
}

.stat-value {
    font-size: 1.2rem;
}

.progress {
    background-color: rgba(40, 167, 69, 0.1);
}

/* Tags expertise */
.expertise-tags .badge {
    margin: 0.2rem;
    padding: 0.4rem 0.8rem;
    font-size: 0.8rem;
    font-weight: 500;
}

/* Section technologies - VERSION SIMPLIFIÉE POUR ÉVITER LES CONFLITS */
.tech-coverage-simple {
    border: 1px solid rgba(0, 0, 0, 0.1);
    position: relative;
}

.tech-category-simple {
    background: linear-gradient(135deg, #f8f9fa, #ffffff);
    border-radius: 8px;
    border: 1px solid rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    min-height: 200px;
}

.tech-category-simple:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.tech-category-simple h6 {
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.tech-list {
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
}

.tech-item {
    background: white;
    padding: 0.4rem 0.8rem;
    border-radius: 15px;
    font-size: 0.85rem;
    color: #495057;
    border: 1px solid rgba(0, 0, 0, 0.08);
    transition: all 0.2s ease;
    text-align: center;
}

.tech-item:hover {
    background: #007bff;
    color: white;
    transform: scale(1.02);
}

/* Styles pour les badges premium */
.specializations-section {
    background: linear-gradient(135deg, #f8f9ff, #e6f3ff);
    border-radius: 15px;
    padding: 2rem;
    margin-top: 2rem;
}

.premium-badge {
    position: relative;
    border: none !important;
    font-weight: 600 !important;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    cursor: pointer;
}

.premium-badge:hover {
    transform: translateY(-2px) scale(1.05);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

/* Gradients pour les badges */
.bg-gradient-primary {
    background: linear-gradient(135deg, #007bff, #0056b3) !important;
}

.bg-gradient-success {
    background: linear-gradient(135deg, #28a745, #1e7e34) !important;
}

.bg-gradient-info {
    background: linear-gradient(135deg, #17a2b8, #138496) !important;
}

.bg-gradient-warning {
    background: linear-gradient(135deg, #ffc107, #e0a800) !important;
    color: #212529 !important;
}

.bg-gradient-danger {
    background: linear-gradient(135deg, #dc3545, #c82333) !important;
}

.bg-gradient-dark {
    background: linear-gradient(135deg, #343a40, #23272b) !important;
}

/* Responsive pour version étendue */
@media (max-width: 1200px) {
    .tech-category {
        padding: 1.2rem;
    }
    
    .tech-tags {
        max-height: 240px;
    }
}

@media (max-width: 768px) {
    .tech-category {
        padding: 1rem;
        margin-bottom: 1rem;
    }
    
    .tech-tags {
        max-height: 200px;
    }
    
    .tech-tags span {
        font-size: 0.8rem;
        padding: 0.4rem 0.6rem;
    }
    
    .specializations-section {
        padding: 1.5rem;
    }
    
    .premium-badge {
        font-size: 0.8rem !important;
        padding: 0.4rem 0.8rem !important;
        margin: 0.2rem !important;
    }
}

@media (max-width: 576px) {
    .tech-category-simple {
        padding: 1rem;
        margin-bottom: 1.5rem;
    }
    
    .tech-category-simple h6 {
        font-size: 0.9rem;
        text-align: center;
        margin-bottom: 0.8rem;
    }
    
    .tech-list {
        gap: 0.3rem;
    }
    
    .tech-item {
        font-size: 0.8rem;
        padding: 0.3rem 0.6rem;
    }
    
    /* Corrections pour éviter les chevauchements */
    .recruitment-main-card {
        padding: 1.5rem !important;
        margin-bottom: 2rem;
    }
    
    .feature-item {
        margin-bottom: 1rem !important;
        padding: 1rem !important;
    }
    
    .tech-coverage-simple {
        padding: 1rem !important;
    }
}

/* Corrections générales pour éviter les chevauchements */
.recruitment-main-card {
    border: 1px solid rgba(0, 123, 255, 0.1);
    transition: all 0.3s ease;
}

.recruitment-stats {
    border: 1px solid rgba(40, 167, 69, 0.1);
}

.feature-item {
    border: 1px solid rgba(0, 123, 255, 0.08);
    transition: all 0.2s ease;
}

.feature-item:hover {
    background: #f8f9fa !important;
    border-color: rgba(0, 123, 255, 0.2);
}

/* Fix pour le header - VERSION COMPACTE */
.navbar-brand {
    display: flex !important;
    align-items: center !important;
    max-width: 280px; /* Limite la largeur du logo */
}

.navbar-brand .logo-tech-icon {
    flex-shrink: 0;
    margin-right: 0.6rem;
}

.navbar-brand .logo-companion-text {
    margin-left: 0;
    min-width: 0; /* Permet au texte de se réduire */
}

/* Responsive pour navbar */
@media (max-width: 991px) {
    .navbar-brand {
        max-width: 220px;
    }
    
    .navbar-brand .logo-companion-text .company-name-main {
        font-size: 1rem !important;
    }
    
    .navbar-brand .logo-companion-text .company-subtitle {
        font-size: 0.65rem !important;
    }
}

@media (max-width: 768px) {
    .navbar-brand {
        max-width: 240px;
    }
    
    .logo-tech-icon {
        width: 45px !important;
        height: 45px !important;
    }
    
    .navbar-brand .logo-companion-text .company-name-main {
        font-size: 0.95rem !important;
    }
    
    .navbar-brand .logo-companion-text .company-subtitle {
        font-size: 0.6rem !important;
        line-height: 1.2;
        /* Garde le sous-titre visible sur tablette */
    }
}

@media (max-width: 576px) {
    .navbar-brand {
        max-width: 180px;
    }
    
    .logo-tech-icon {
        width: 40px !important;
        height: 40px !important;
        margin-right: 0.4rem !important;
    }
    
    .navbar-brand .logo-companion-text .company-name-main {
        font-size: 0.9rem !important;
        line-height: 1.1;
    }
    
    .navbar-brand .logo-companion-text .company-subtitle {
        font-size: 0.55rem !important;
        line-height: 1.1;
        /* Garde le sous-titre visible même sur mobile */
    }
}

/* Styles minimalistes pour le bouton burger */
.navbar-toggler {
    border: 1px solid rgba(255, 255, 255, 0.3);
    padding: 0.25rem 0.5rem;
}

.navbar-toggler:focus {
    box-shadow: 0 0 0 0.25rem rgba(255, 255, 255, 0.25);
}

/* Badge NEW pour le recrutement */
.new-badge {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 2px 4px rgba(220, 53, 69, 0.3);
}

@keyframes pulse-new {
    0% {
        transform: scale(1);
        box-shadow: 0 2px 4px rgba(220, 53, 69, 0.3);
    }
    50% {
        transform: scale(1.05);
        box-shadow: 0 4px 8px rgba(220, 53, 69, 0.5);
    }
    100% {
        transform: scale(1);
        box-shadow: 0 2px 4px rgba(220, 53, 69, 0.3);
    }
}

/* Responsive pour le badge NEW */
@media (max-width: 768px) {
    .new-badge {
        font-size: 0.55rem !important;
        padding: 1px 4px !important;
    }
}

/* Supprimer tous les styles custom du burger - laisser Bootstrap par défaut */

/* Assurer que le navbar est bien aligné */
.navbar {
    padding-top: 0.5rem !important;
    padding-bottom: 0.5rem !important;
}

.navbar > .container-fluid {
    display: flex !important;
    flex-wrap: inherit !important;
    align-items: center !important;
    justify-content: space-between !important;
}

/* Burger très visible sur mobile */
@media (max-width: 991px) {
    .navbar-toggler {
        background-color: #ffffff !important;
        border: 2px solid #007bff !important;
        border-radius: 6px !important;
        padding: 8px !important;
    }
    
    .navbar-toggler-icon {
        background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='%23007bff' stroke-linecap='round' stroke-miterlimit='10' stroke-width='3' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e") !important;
        width: 1.5em !important;
        height: 1.5em !important;
    }

    .navbar-collapse {
        background: rgba(255, 255, 255, 0.98);
        border-radius: 8px;
        margin-top: 10px;
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
        padding: 1rem;
    }

    .navbar-nav {
        text-align: center;
    }

    .navbar-nav .nav-link {
        padding: 0.75rem 1rem;
        margin: 0.25rem 0;
        border-radius: 6px;
        transition: all 0.3s ease;
    }

    .navbar-nav .nav-link:hover {
        background: rgba(0, 123, 255, 0.1);
        color: #007bff;
    }
}

/* Amélioration espacement navigation */
@media (max-width: 1200px) {
    .navbar-nav .nav-link {
        padding: 8px 15px !important;
        margin: 0 3px;
        font-size: 0.9rem;
    }
}

@media (max-width: 992px) {
    .navbar-nav .nav-link {
        padding: 8px 12px !important;
        margin: 0 2px;
        font-size: 0.85rem;
    }
    
    /* Style pour le lien Recrutement IT sur tablette */
    .navbar-nav .nav-link[href="#recrutement-it"] {
        font-size: 0.8rem !important;
        padding: 6px 10px !important;
    }
}

/* Navbar personnalisée - Point de rupture à 1393px */
.navbar-expand-custom .navbar-nav {
    flex-direction: row;
}

.navbar-expand-custom .navbar-nav .nav-link {
    padding-right: 0.5rem;
    padding-left: 0.5rem;
}

.navbar-expand-custom .navbar-collapse {
    display: flex !important;
    flex-basis: auto;
}

.navbar-expand-custom .navbar-toggler {
    display: none;
}

/* Menu mobile - Apparaît à partir de 1393px */
@media (max-width: 1393px) {
    /* Base du menu mobile */
    .navbar-expand-custom .navbar-collapse {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        z-index: 1000;
        background: rgba(255, 255, 255, 0.98);
        border-radius: 8px;
        margin-top: 10px;
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
        padding: 1.5rem;
        backdrop-filter: blur(10px);
        /* Animation rapide et fluide */
        opacity: 0;
        transform: translateY(-10px);
        transition: all 0.15s cubic-bezier(0.25, 0.46, 0.45, 0.94);
        visibility: hidden;
        display: block !important;
    }
    
    /* Menu ouvert - animation rapide */
    .navbar-expand-custom .navbar-collapse.show {
        opacity: 1;
        transform: translateY(0);
        visibility: visible;
    }

    /* Bouton burger optimisé */
    .navbar-expand-custom .navbar-toggler {
        display: block !important;
        background-color: #ffffff;
        border: 2px solid #007bff;
        border-radius: 6px;
        padding: 8px;
        transition: transform 0.1s ease;
    }
    
    /* Effet hover sur le burger */
    .navbar-expand-custom .navbar-toggler:hover {
        transform: scale(1.05);
    }
    
    /* Icône burger */
    .navbar-expand-custom .navbar-toggler-icon {
        background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='%23007bff' stroke-linecap='round' stroke-miterlimit='10' stroke-width='3' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
        width: 1.5em;
        height: 1.5em;
    }

    /* Navigation mobile optimisée */
    .navbar-expand-custom .navbar-nav {
        flex-direction: column;
        text-align: center;
    }

    .navbar-expand-custom .navbar-nav .nav-link {
        padding: 0.75rem 1rem;
        margin: 0.25rem 0;
        border-radius: 6px;
        transition: all 0.1s ease;
        font-weight: 500;
        color: #333 !important;
        opacity: 0;
        transform: translateY(5px);
    }

    /* Animation d'entrée des liens */
    .navbar-expand-custom .navbar-collapse.show .nav-link {
        opacity: 1;
        transform: translateY(0);
    }

    .navbar-expand-custom .navbar-collapse.show .nav-link:nth-child(1) { transition-delay: 0.05s; }
    .navbar-expand-custom .navbar-collapse.show .nav-link:nth-child(2) { transition-delay: 0.10s; }
    .navbar-expand-custom .navbar-collapse.show .nav-link:nth-child(3) { transition-delay: 0.15s; }
    .navbar-expand-custom .navbar-collapse.show .nav-link:nth-child(4) { transition-delay: 0.20s; }
    .navbar-expand-custom .navbar-collapse.show .nav-link:nth-child(5) { transition-delay: 0.25s; }
    .navbar-expand-custom .navbar-collapse.show .nav-link:nth-child(6) { transition-delay: 0.30s; }

    .navbar-expand-custom .navbar-nav .nav-link:hover {
        background: rgba(0, 123, 255, 0.1);
        color: #007bff;
        transform: translateX(3px);
    }
}
    
    .navbar-nav .nav-link {
        padding: 12px 20px !important;
        margin: 2px 0;
        border-radius: 6px;
        transition: all 0.3s ease;
    }
    
    .navbar-nav .nav-link:hover {
        background: rgba(44, 90, 160, 0.1);
        transform: translateX(5px);
    }
}

/* Responsive pour section recrutement */
@media (max-width: 768px) {
    .recruitment-main-card {
        padding: 2rem !important;
    }
    
    .feature-item {
        flex-direction: column;
        text-align: center;
    }
    
    .feature-icon {
        margin-bottom: 0.5rem !important;
    }
    
    .tech-category {
        margin-bottom: 1rem;
    }
}

@media (max-width: 576px) {
    .recruitment-main-card {
        padding: 1.5rem !important;
    }
    
    .recruitment-stats {
        padding: 1.5rem !important;
        margin-top: 1.5rem;
    }
    
    .tech-coverage {
        padding: 1.5rem !important;
    }
    
    .section-title h2 {
        font-size: 1.8rem;
    }
}