/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: #ffffff;
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
    min-height: 100vh;
    overflow-x: hidden;
}

/* ==================== SCROLL ANIMATIONS ==================== */

/* Animation de base pour tous les éléments */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.animate-on-scroll.animate-visible {
    opacity: 1;
    transform: translateY(0);
}

/* Animation différente pour les cards en grille */
.services-grid .service-card.animate-on-scroll,
.features-grid .feature-item.animate-on-scroll,
.brands-grid .brand-card.animate-on-scroll,
.microsoudure-equipment-grid .equipment-card.animate-on-scroll {
    transition-delay: calc(var(--card-index, 0) * 0.15s);
}

/* Animation pour les titres de section */
.section-title.animate-on-scroll {
    transform: translateY(20px) scale(0.95);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.section-title.animate-on-scroll.animate-visible {
    transform: translateY(0) scale(1);
}

/* Animation pour les sous-titres */
.section-subtitle.animate-on-scroll {
    transform: translateY(15px);
    transition: opacity 0.7s ease-out 0.2s, transform 0.7s ease-out 0.2s;
}

/* Animation pour la section hero - visible au chargement */
.hero-content {
    animation: fadeInUp 1s ease-out;
}

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

/* Animation pour la section stats */
.stats-section.animate-on-scroll {
    opacity: 0;
    transform: scale(0.95);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.stats-section.animate-on-scroll.animate-visible {
    transform: scale(1);
}

/* Animation au survol renforcée */
.service-card,
.feature-item,
.brand-card {
    transition: all 0.3s ease, opacity 0.6s ease-out, transform 0.6s ease-out;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
.site-header {
    padding: 20px 0;
    background: rgba(0, 0, 0, 0.3);
    position: relative;
    z-index: 100;
}

.logo-link {
    text-decoration: none;
    color: inherit;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 24px;
    font-weight: 700;
    color: #ffffff;
    margin: 0;
}

.main-nav {
    display: flex;
    align-items: center;
    gap: 30px;
}

.nav-link {
    color: #ffffff;
    text-decoration: none;
    font-size: 16px;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-link:hover,
.nav-link.active {
    color: #1e90ff;
}

/* Hamburger Button */
.nav-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    background: transparent;
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    cursor: pointer;
    padding: 10px;
    z-index: 1001;
    min-width: 44px;
    min-height: 44px;
}

.hamburger-line {
    display: block;
    width: 22px;
    height: 2px;
    background: #ffffff;
    border-radius: 2px;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.nav-toggle--active .hamburger-line:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.nav-toggle--active .hamburger-line:nth-child(2) {
    opacity: 0;
}

.nav-toggle--active .hamburger-line:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

/* Body overlay when nav is open */
.nav-is-open::after {
    content: '';
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 98;
}

.btn-contact {
    background: #1e90ff;
    color: #ffffff;
    padding: 10px 25px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-contact:hover {
    background: #0066cc;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(30, 144, 255, 0.4);
}

/* Alert Banner */
.alert-banner {
    background: linear-gradient(90deg, #1e90ff 0%, #00bfff 100%);
    padding: 15px 0;
    margin-bottom: 60px;
}

.alert-content {
    display: flex;
    align-items: center;
    gap: 12px;
}

.info-icon {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
}

.alert-content p {
    margin: 0;
    font-size: 15px;
    font-weight: 500;
}

/* Hero Section */
.hero-section {
    padding: 60px 0 100px;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.hero-text {
    padding-right: 20px;
}

.hero-title {
    font-size: 56px;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 30px;
    color: #ffffff;
}

.highlight-green {
    color: #00ff88;
    display: block;
}

.hero-description {
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 25px;
    color: rgba(255, 255, 255, 0.9);
}

.hero-description strong {
    font-weight: 600;
}

.rating {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 30px;
}

.star {
    font-size: 20px;
}

.rating-text {
    font-size: 16px;
    font-weight: 600;
    color: #ffffff;
}

.btn-cta {
    display: inline-block;
    background: #1e90ff;
    color: #ffffff;
    padding: 16px 35px;
    border-radius: 30px;
    text-decoration: none;
    font-size: 18px;
    font-weight: 700;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(30, 144, 255, 0.3);
}

.btn-cta:hover {
    background: #0066cc;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(30, 144, 255, 0.5);
}

/* Hero Visual */
.hero-visual {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 600px;
}

.devices-image {
    max-width: 100%;
    height: auto;
    max-height: 600px;
    object-fit: contain;
    filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.3));
    animation: float 4s ease-in-out infinite;
}

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

/* Responsive Design */
@media (max-width: 968px) {
    .hero-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .hero-title {
        font-size: 42px;
    }

    .main-nav {
        gap: 15px;
    }

    .nav-link {
        font-size: 14px;
    }

    .visual-grid {
        height: 400px;
    }
}

@media (max-width: 768px) {
    /* Mobile navigation */
    .nav-toggle {
        display: flex;
    }

    .header-content {
        gap: 0;
    }

    .main-nav {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: rgba(10, 22, 40, 0.98);
        backdrop-filter: blur(12px);
        -webkit-backdrop-filter: blur(12px);
        padding: 16px;
        flex-direction: column;
        gap: 4px;
        border-top: 1px solid rgba(255, 255, 255, 0.1);
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        z-index: 99;
        box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
    }

    .main-nav.nav-open {
        display: flex;
    }

    .nav-link {
        font-size: 15px;
        padding: 12px 16px;
        border-radius: 10px;
        transition: background 0.2s ease;
        display: block;
    }

    .nav-link:hover,
    .nav-link.active {
        background: rgba(30, 144, 255, 0.15);
        color: #1e90ff;
    }

    .hero-title {
        font-size: 36px;
    }

    .hero-description {
        font-size: 15px;
    }

    .visual-grid {
        height: 300px;
        gap: 10px;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 28px;
    }

    .btn-cta {
        width: 100%;
        text-align: center;
    }

    .alert-content {
        font-size: 13px;
    }
}

/* ==================== HOME PAGE SECTIONS ==================== */

/* Services Overview Section */
.services-overview {
    padding: 80px 0;
    background: rgba(0, 0, 0, 0.2);
}

.text-center {
    text-align: center;
    margin-top: 50px;
}

.btn-secondary {
    display: inline-block;
    background: transparent;
    color: #ffffff;
    border: 2px solid #1e90ff;
    padding: 14px 35px;
    border-radius: 30px;
    text-decoration: none;
    font-size: 16px;
    font-weight: 700;
    transition: all 0.3s ease;
}

.btn-secondary:hover {
    background: #1e90ff;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(30, 144, 255, 0.5);
}

/* Stats Section */
.stats-section {
    padding: 60px 0;
    background: linear-gradient(135deg, #1e90ff 0%, #0066cc 100%);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
}

/* Why Choose Us Section */
.why-choose-us {
    padding: 80px 0;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-top: 50px;
}

.feature-item {
    text-align: center;
    padding: 30px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.feature-item:hover {
    transform: translateY(-8px);
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(30, 144, 255, 0.3);
    box-shadow: 0 15px 40px rgba(30, 144, 255, 0.2);
}

.feature-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #00ff88 0%, #00cc70 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 28px;
    color: #0a1628;
    font-weight: 700;
}

.feature-item h3 {
    font-size: 20px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 12px;
}

.feature-item p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
}

/* Brands Section */
.brands-section {
    padding: 80px 0;
    background: rgba(0, 0, 0, 0.2);
}

.brands-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 25px;
    margin-top: 50px;
    margin-bottom: 40px;
}

.brand-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    padding: 30px 20px;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 160px;
}

.brand-card:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(30, 144, 255, 0.3);
    box-shadow: 0 10px 30px rgba(30, 144, 255, 0.2);
}

.brand-logo {
    width: 100%;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 15px;
    position: relative;
}

.brand-logo img {
    max-width: 100%;
    max-height: 60px;
    object-fit: contain;
    filter: brightness(0) invert(1);
    opacity: 0.8;
    transition: all 0.3s ease;
}

.brand-card:hover .brand-logo img {
    opacity: 1;
    filter: brightness(0) invert(1) drop-shadow(0 0 10px rgba(30, 144, 255, 0.5));
}

.brand-placeholder {
    width: 100%;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(30, 144, 255, 0.2) 0%, rgba(0, 191, 255, 0.1) 100%);
    border-radius: 10px;
    border: 2px dashed rgba(255, 255, 255, 0.2);
}

.brand-name {
    font-size: 20px;
    font-weight: 700;
    color: #ffffff;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.brand-description {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.6);
    margin: 0;
    line-height: 1.4;
}

.brands-note {
    margin-top: 40px;
    text-align: center;
    padding: 25px;
    background: linear-gradient(135deg, rgba(30, 144, 255, 0.15) 0%, rgba(0, 191, 255, 0.05) 100%);
    border-radius: 15px;
    border: 1px solid rgba(30, 144, 255, 0.2);
}

.brands-note p {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.9);
    margin: 0;
    line-height: 1.6;
}

.brands-note strong {
    color: #00ff88;
    font-weight: 600;
}

/* Contact Section */
.contact-section {
    padding: 80px 0;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    margin-top: 50px;
}

.contact-info h3 {
    font-size: 24px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 30px;
}

.info-item {
    display: flex;
    gap: 15px;
    margin-bottom: 25px;
    align-items: flex-start;
}

.info-icon {
    font-size: 24px;
    flex-shrink: 0;
}

.info-item strong {
    color: #00ff88;
    display: block;
    margin-bottom: 5px;
}

.info-item a {
    color: rgba(255, 255, 255, 0.85);
    text-decoration: none;
    transition: color 0.3s ease;
}

.info-item a:hover {
    color: #1e90ff;
}

/* Contact Form */
.contact-form {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    padding: 40px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    color: #ffffff;
    font-weight: 600;
    margin-bottom: 8px;
    font-size: 14px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 10px;
    color: #ffffff;
    font-size: 15px;
    font-family: inherit;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #1e90ff;
    background: rgba(255, 255, 255, 0.15);
    box-shadow: 0 0 0 3px rgba(30, 144, 255, 0.1);
}

.form-group textarea {
    resize: vertical;
}

.form-group select {
    cursor: pointer;
}

.contact-form .btn-cta {
    width: 100%;
    margin-top: 10px;
}

/* ==================== IMPRESSION 3D SECTION ==================== */
.impression-3d-section {
    padding: 80px 0;
    background: linear-gradient(135deg, rgba(30, 144, 255, 0.05) 0%, rgba(0, 191, 255, 0.02) 100%);
}

.impression-3d-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.impression-3d-image {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.printer-image {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.5s ease;
}

.impression-3d-image:hover .printer-image {
    transform: scale(1.05);
}

.impression-3d-text {
    padding: 20px;
}

.impression-3d-text .section-title {
    text-align: left;
    margin-bottom: 20px;
}

.impression-3d-description {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 30px;
    line-height: 1.8;
}

.impression-3d-features {
    list-style: none;
    margin: 30px 0;
}

.impression-3d-features li {
    padding: 12px 0;
    color: rgba(255, 255, 255, 0.85);
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    gap: 15px;
}

.impression-3d-features i {
    color: #00ff88;
    font-size: 1.3rem;
    min-width: 25px;
}

.impression-3d-cta {
    margin-top: 40px;
}

.impression-3d-cta .btn-cta {
    display: inline-block;
    margin-bottom: 20px;
}

.impression-3d-note {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    gap: 10px;
}

.impression-3d-note i {
    color: #1e90ff;
    font-size: 1.2rem;
}

@media (max-width: 968px) {
    .impression-3d-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .impression-3d-image {
        order: -1;
    }
}

@media (max-width: 768px) {
    .impression-3d-section {
        padding: 50px 0;
    }

    .impression-3d-features li {
        font-size: 1rem;
    }

    .impression-3d-description {
        font-size: 1.05rem;
    }
}

/* ==================== MICRO-SOUDURE SECTION ==================== */

.microsoudure-section {
    padding: 80px 0;
    background: linear-gradient(135deg, rgba(255, 100, 0, 0.05) 0%, rgba(255, 165, 0, 0.03) 100%);
    position: relative;
    overflow: hidden;
}

.microsoudure-section::before {
    content: '';
    position: absolute;
    top: -1px;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, rgba(255, 140, 0, 0.4), transparent);
}

.microsoudure-header {
    text-align: center;
    margin-bottom: 60px;
}

.microsoudure-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 140, 0, 0.15);
    border: 1px solid rgba(255, 140, 0, 0.4);
    color: #ffaa00;
    padding: 8px 20px;
    border-radius: 30px;
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    margin-bottom: 20px;
}

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

.microsoudure-intro {
    max-width: 760px;
    margin: 20px auto 0;
    font-size: 1.15rem;
    color: rgba(255, 255, 255, 0.82);
    line-height: 1.85;
}

.microsoudure-equipment-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 50px;
}

.equipment-card {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 140, 0, 0.2);
    border-radius: 20px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.equipment-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 50px rgba(255, 140, 0, 0.15);
    border-color: rgba(255, 140, 0, 0.5);
}

.equipment-image-wrap {
    width: 100%;
    height: 220px;
    overflow: hidden;
    position: relative;
    background: rgba(0, 0, 0, 0.3);
}

.equipment-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}

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

.equipment-img-placeholder {
    display: none;
    width: 100%;
    height: 100%;
    align-items: center;
    justify-content: center;
    background: rgba(255, 140, 0, 0.08);
}

.equipment-img-placeholder i {
    font-size: 4rem;
    color: rgba(255, 140, 0, 0.4);
}

.equipment-info {
    padding: 24px;
}

.equipment-name {
    font-size: 1.25rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 4px;
}

.equipment-role {
    font-size: 0.85rem;
    font-weight: 600;
    color: #ffaa00;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 14px;
}

.equipment-desc {
    font-size: 0.97rem;
    color: rgba(255, 255, 255, 0.74);
    line-height: 1.7;
}

.microsoudure-footer-note {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    background: rgba(0, 255, 136, 0.06);
    border: 1px solid rgba(0, 255, 136, 0.2);
    border-radius: 14px;
    padding: 24px 28px;
    max-width: 860px;
    margin: 0 auto;
}

.microsoudure-footer-note > i {
    color: #00ff88;
    font-size: 1.4rem;
    margin-top: 2px;
    flex-shrink: 0;
}

.microsoudure-footer-note p {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.82);
    line-height: 1.7;
}

.microsoudure-link {
    color: #00ff88;
    text-decoration: none;
    font-weight: 600;
}

.microsoudure-link:hover {
    text-decoration: underline;
}

@media (max-width: 968px) {
    .microsoudure-equipment-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 640px) {
    .microsoudure-equipment-grid {
        grid-template-columns: 1fr;
    }

    .microsoudure-section {
        padding: 50px 0;
    }

    .microsoudure-intro {
        font-size: 1rem;
    }

    .microsoudure-footer-note {
        flex-direction: column;
        gap: 10px;
    }
}

/* Footer */
.site-footer {
    background: rgba(0, 0, 0, 0.5);
    padding: 60px 0 30px;
    margin-top: 100px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 60px;
    margin-bottom: 40px;
}

.footer-column h4 {
    font-size: 20px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 20px;
}

.footer-column p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.7;
}

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

.footer-column ul li {
    margin-bottom: 12px;
}

.footer-column ul li a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}

.footer-column ul li a:hover {
    color: #1e90ff;
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.5);
    margin: 0 0 10px 0;
}

.footer-legal-links {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}

.footer-legal-links a {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.4);
    text-decoration: none;
    transition: color 0.2s ease;
}

.footer-legal-links a:hover {
    color: rgba(255, 255, 255, 0.8);
}

.footer-legal-links span {
    color: rgba(255, 255, 255, 0.2);
    font-size: 12px;
}

/* Pages légales */
.legal-content-section {
    padding: 60px 0 80px;
}

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

.legal-block {
    margin-bottom: 40px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    padding: 30px 35px;
}

.legal-block h2 {
    font-size: 1.2rem;
    font-weight: 700;
    color: #4ade80;
    margin-bottom: 15px;
}

.legal-block p {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.75);
    line-height: 1.7;
    margin-bottom: 10px;
}

.legal-block ul {
    list-style: none;
    padding: 0;
    margin: 10px 0;
}

.legal-block ul li {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.75);
    padding: 5px 0 5px 20px;
    position: relative;
    line-height: 1.6;
}

.legal-block ul li::before {
    content: '›';
    position: absolute;
    left: 0;
    color: #4ade80;
    font-weight: 700;
}

.legal-block a {
    color: #4ade80;
    text-decoration: none;
}

.legal-block a:hover {
    text-decoration: underline;
}

.legal-nav {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    justify-content: center;
    margin-top: 50px;
    padding-bottom: 20px;
}

.btn-legal {
    display: inline-block;
    padding: 12px 24px;
    border-radius: 8px;
    font-size: 0.9rem;
    font-weight: 600;
    text-decoration: none;
    background: #4ade80;
    color: #1a2332;
    transition: all 0.2s ease;
}

.btn-legal:hover {
    background: #22c55e;
    transform: translateY(-2px);
}

.btn-legal-outline {
    background: transparent;
    color: rgba(255, 255, 255, 0.7);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.btn-legal-outline:hover {
    background: rgba(255, 255, 255, 0.05);
    color: white;
    transform: translateY(-2px);
}

/* Home Page Responsive */
@media (max-width: 1024px) {
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }

    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .brands-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 20px;
    }
}

@media (max-width: 768px) {
    .services-overview,
    .why-choose-us,
    .brands-section,
    .contact-section {
        padding: 60px 0;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .features-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .brands-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .contact-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

@media (max-width: 480px) {
    .stats-grid {
        grid-template-columns: 1fr;
    }

    .stat-item {
        padding: 20px;
    }

    .service-card,
    .feature-item,
    .brand-card {
        padding: 25px;
    }

    .brands-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .contact-form {
        padding: 25px;
    }

    .section-title {
        font-size: 28px;
    }
}

/* ==================== SERVICES PAGE ==================== */

/* Page Header */
.page-header {
    text-align: center;
    padding: 80px 0 60px;
    background: linear-gradient(135deg, rgba(30, 144, 255, 0.1) 0%, transparent 100%);
}

.page-title {
    font-size: 48px;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 15px;
}

.page-subtitle {
    font-size: 20px;
    color: rgba(255, 255, 255, 0.8);
    max-width: 700px;
    margin: 0 auto;
}

/* Services Section */
.services-section {
    padding: 60px 0 80px;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

/* Service Card */
.service-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    padding: 35px;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #1e90ff 0%, #00bfff 100%);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease;
}

.service-card:hover {
    transform: translateY(-8px);
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(30, 144, 255, 0.3);
    box-shadow: 0 15px 40px rgba(30, 144, 255, 0.2);
}

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

/* Featured Card */
.service-card.featured {
    border: 2px solid #1e90ff;
    background: linear-gradient(135deg, rgba(30, 144, 255, 0.15) 0%, rgba(0, 191, 255, 0.05) 100%);
}

.featured-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: linear-gradient(135deg, #00ff88 0%, #00cc70 100%);
    color: #0a1628;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Service Icon */
.service-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #1e90ff 0%, #00bfff 100%);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    color: #ffffff;
}

.service-icon svg {
    width: 32px;
    height: 32px;
}

.service-card.featured .service-icon {
    background: linear-gradient(135deg, #00ff88 0%, #00cc70 100%);
}

/* Service Content */
.service-title {
    font-size: 22px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 15px;
    line-height: 1.3;
}

.service-description {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.7;
    margin-bottom: 20px;
}

/* Service Features List */
.service-features {
    list-style: none;
    padding: 0;
    margin: 0;
}

.service-features li {
    position: relative;
    padding-left: 25px;
    margin-bottom: 10px;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
}

.service-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #00ff88;
    font-weight: 700;
    font-size: 16px;
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, #1e90ff 0%, #0066cc 100%);
    padding: 80px 0;
    margin-top: 60px;
}

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

.cta-title {
    font-size: 42px;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 15px;
}

.cta-text {
    font-size: 20px;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 35px;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-cta.primary {
    background: #ffffff;
    color: #1e90ff;
    padding: 16px 35px;
    border-radius: 30px;
    text-decoration: none;
    font-size: 18px;
    font-weight: 700;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.btn-cta.primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.btn-cta.secondary {
    background: transparent;
    color: #ffffff;
    border: 2px solid #ffffff;
    padding: 14px 35px;
    border-radius: 30px;
    text-decoration: none;
    font-size: 18px;
    font-weight: 700;
    transition: all 0.3s ease;
}

.btn-cta.secondary:hover {
    background: #ffffff;
    color: #1e90ff;
    transform: translateY(-3px);
}

/* Services Page Responsive */
@media (max-width: 968px) {
    .page-title {
        font-size: 38px;
    }

    .services-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 20px;
    }

    .cta-title {
        font-size: 32px;
    }
}

@media (max-width: 768px) {
    .page-header {
        padding: 60px 0 40px;
    }

    .page-title {
        font-size: 32px;
    }

    .page-subtitle {
        font-size: 18px;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    .btn-cta.primary,
    .btn-cta.secondary {
        width: 100%;
        max-width: 300px;
    }
}

@media (max-width: 480px) {
    .page-title {
        font-size: 28px;
    }

    .service-card {
        padding: 25px;
    }

    .cta-section {
        padding: 60px 0;
    }

    .cta-title {
        font-size: 26px;
    }

    .cta-text {
        font-size: 16px;
    }
}

/* ==================== À PROPOS PAGE ==================== */

/* About Story Section */
.about-story-section {
    padding: 80px 0;
}

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

.about-content {
    padding-right: 20px;
}

.section-title {
    font-size: 38px;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 25px;
}

.section-title.centered {
    text-align: center;
}

.section-subtitle {
    text-align: center;
    font-size: 18px;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 50px;
}

.about-text {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.8;
    margin-bottom: 20px;
}

.about-text strong {
    color: #ffffff;
    font-weight: 600;
}

/* Stats Row */
.stats-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.stat-item {
    text-align: center;
    padding: 25px;
    background: rgba(30, 144, 255, 0.1);
    border-radius: 15px;
    border: 1px solid rgba(30, 144, 255, 0.2);
}

.stat-number {
    font-size: 36px;
    font-weight: 800;
    color: #00ff88;
    margin-bottom: 8px;
}

.stat-label {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* About Image */
.about-image {
    display: flex;
    align-items: center;
    justify-content: center;
}

.store-image {
    width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
    transition: transform 0.3s ease;
}

.store-image:hover {
    transform: scale(1.02);
}

.image-placeholder {
    width: 100%;
    height: 400px;
    background: linear-gradient(135deg, rgba(30, 144, 255, 0.2) 0%, rgba(0, 191, 255, 0.1) 100%);
    border-radius: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border: 2px dashed rgba(255, 255, 255, 0.2);
}

.image-placeholder svg {
    width: 80px;
    height: 80px;
    color: rgba(255, 255, 255, 0.4);
}

/* Values Section */
.values-section {
    padding: 80px 0;
    background: rgba(0, 0, 0, 0.2);
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 50px;
}

.value-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    padding: 35px;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.value-card:hover {
    transform: translateY(-8px);
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(30, 144, 255, 0.3);
    box-shadow: 0 15px 40px rgba(30, 144, 255, 0.2);
}

.value-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #1e90ff 0%, #00bfff 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    color: #ffffff;
}

.value-icon svg {
    width: 36px;
    height: 36px;
}

.value-title {
    font-size: 22px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 15px;
}

.value-description {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
}

/* Why Us Section */
.why-us-section {
    padding: 80px 0;
}

.why-us-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.advantage-list {
    display: flex;
    flex-direction: column;
    gap: 25px;
    margin-top: 30px;
}

.advantage-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.advantage-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #00ff88 0%, #00cc70 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: #0a1628;
}

.advantage-icon svg {
    width: 28px;
    height: 28px;
}

.advantage-text h4 {
    font-size: 18px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 5px;
}

.advantage-text p {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
}

/* Why Us Highlight */
.why-us-highlight {
    position: sticky;
    top: 100px;
}

.highlight-box {
    background: linear-gradient(135deg, rgba(30, 144, 255, 0.2) 0%, rgba(0, 191, 255, 0.1) 100%);
    border: 2px solid rgba(30, 144, 255, 0.3);
    border-radius: 20px;
    padding: 40px;
}

.highlight-box h3 {
    font-size: 28px;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 20px;
}

.highlight-box p {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.8;
    margin-bottom: 20px;
}

.highlight-box strong {
    color: #00ff88;
    font-weight: 600;
}

.highlight-cta {
    margin-top: 30px;
}

.btn-highlight {
    display: inline-block;
    background: linear-gradient(135deg, #1e90ff 0%, #00bfff 100%);
    color: #ffffff;
    padding: 14px 30px;
    border-radius: 25px;
    text-decoration: none;
    font-size: 16px;
    font-weight: 700;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(30, 144, 255, 0.4);
}

.btn-highlight:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(30, 144, 255, 0.6);
}

/* Location Section */
.location-section {
    padding: 80px 0;
    background: rgba(0, 0, 0, 0.2);
}

.location-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.location-text {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.8;
    margin-bottom: 25px;
}

.location-text strong {
    color: #00ff88;
    font-weight: 600;
}

.location-list {
    list-style: none;
    padding: 0;
    margin: 25px 0;
}

.location-list li {
    position: relative;
    padding-left: 30px;
    margin-bottom: 12px;
    font-size: 16px;
    color: rgba(255, 255, 255, 0.8);
}

.location-list li::before {
    content: '📍';
    position: absolute;
    left: 0;
    font-size: 18px;
}

.location-note {
    display: flex;
    gap: 12px;
    align-items: flex-start;
    padding: 20px;
    background: rgba(30, 144, 255, 0.1);
    border-radius: 12px;
    border-left: 4px solid #1e90ff;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.8);
    margin-top: 25px;
}

.info-icon-small {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
    color: #1e90ff;
}

.location-visual {
    display: flex;
    align-items: center;
    justify-content: center;
}

.map-placeholder {
    width: 100%;
    height: 400px;
    background: linear-gradient(135deg, rgba(0, 255, 136, 0.1) 0%, rgba(30, 144, 255, 0.1) 100%);
    border-radius: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border: 2px solid rgba(0, 255, 136, 0.2);
}

.map-placeholder svg {
    width: 80px;
    height: 80px;
    color: #00ff88;
    margin-bottom: 20px;
}

.map-placeholder p {
    font-size: 20px;
    font-weight: 700;
    color: #ffffff;
}

/* À Propos Page Responsive */
@media (max-width: 968px) {
    .about-grid,
    .why-us-grid,
    .location-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .values-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .stats-row {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .section-title {
        font-size: 32px;
    }

    .why-us-highlight {
        position: static;
    }
}

@media (max-width: 768px) {
    .values-grid {
        grid-template-columns: 1fr;
    }

    .about-story-section,
    .values-section,
    .why-us-section,
    .location-section {
        padding: 60px 0;
    }

    .section-title {
        font-size: 28px;
    }

    .advantage-list {
        gap: 20px;
    }

    .highlight-box {
        padding: 30px;
    }
}

@media (max-width: 480px) {
    .value-card {
        padding: 25px;
    }

    .stat-number {
        font-size: 28px;
    }

    .image-placeholder,
    .map-placeholder {
        height: 300px;
    }

    .location-list li {
        font-size: 14px;
    }
}

/* ==================== TARIFS PAGE ==================== */

.tarifs-section {
    padding: 120px 0 80px;
    min-height: 60vh;
}

.tarifs-wrapper {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    margin-top: 50px;
    position: relative;
    z-index: 1;
}

.tarif-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 35px;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 220px;
}

.tarif-card:hover {
    transform: translateY(-8px);
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(30, 144, 255, 0.3);
    box-shadow: 0 15px 40px rgba(30, 144, 255, 0.2);
}

.tarif-header {
    flex: 1;
}

.tarif-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #00ff88 0%, #00cc70 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    font-size: 28px;
    color: #0a1628;
}

.tarif-card h3 {
    font-size: 20px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 10px;
    line-height: 1.3;
}

.tarif-subtitle {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
    margin: 10px 0 0 0;
    line-height: 1.5;
}

.tarif-price {
    font-size: 36px;
    font-weight: 800;
    color: #00ff88;
    margin-top: 20px;
    display: flex;
    align-items: center;
}

.tarifs-note {
    margin-top: 50px;
    text-align: center;
    padding: 25px;
    background: linear-gradient(135deg, rgba(30, 144, 255, 0.15) 0%, rgba(0, 191, 255, 0.05) 100%);
    border-radius: 15px;
    border: 1px solid rgba(30, 144, 255, 0.2);
}

.tarifs-note p {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.9);
    margin: 0;
    line-height: 1.6;
}

.tarifs-note strong {
    color: #00ff88;
    font-weight: 600;
}

/* Tarifs Page Responsive */
@media (max-width: 968px) {
    .tarifs-wrapper {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 25px;
    }

    .tarif-card {
        padding: 30px;
        min-height: 200px;
    }

    .tarif-icon {
        width: 50px;
        height: 50px;
        font-size: 24px;
    }

    .tarif-card h3 {
        font-size: 18px;
    }

    .tarif-price {
        font-size: 32px;
    }
}

@media (max-width: 768px) {
    .tarifs-section {
        padding: 60px 0;
    }

    .tarifs-wrapper {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .tarif-card {
        padding: 25px;
    }
}

@media (max-width: 480px) {
    .tarif-card h3 {
        font-size: 16px;
    }

    .tarif-subtitle {
        font-size: 13px;
    }

    .tarif-price {
        font-size: 28px;
    }

    .tarifs-note {
        padding: 20px;
    }

    .tarifs-note p {
        font-size: 14px;
    }
}

/* ==================== RÉPARATION SMARTPHONES SECTION ==================== */

.reparation-smartphones-section {
    padding: 80px 0;
    background: rgba(0, 0, 0, 0.2);
}

.smartphone-brands {
    margin: 40px 0 60px;
}

.brand-selector {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.brand-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    padding: 20px 30px;
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.brand-item:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: #00ff88;
    transform: translateY(-5px);
}

.brand-item i {
    font-size: 36px;
    color: #00ff88;
}

.brand-item span {
    font-size: 14px;
    font-weight: 600;
    color: #ffffff;
}

.reparation-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
    margin-top: 40px;
}

.reparation-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 30px;
    text-align: center;
    transition: all 0.3s ease;
}

.reparation-card:hover {
    transform: translateY(-8px);
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(30, 144, 255, 0.3);
    box-shadow: 0 15px 40px rgba(30, 144, 255, 0.2);
}

.reparation-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #1e90ff 0%, #00bfff 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 32px;
    color: #ffffff;
}

.reparation-card h3 {
    font-size: 20px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 12px;
}

.reparation-card p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
    margin-bottom: 20px;
}

.reparation-price {
    font-size: 28px;
    font-weight: 800;
    color: #00ff88;
    margin: 20px 0 10px;
}

.reparation-note {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.5);
    font-style: italic;
    margin: 0;
}

.reparation-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 60px;
    padding-top: 60px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.info-box {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 25px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.info-box i {
    font-size: 40px;
    color: #00ff88;
    flex-shrink: 0;
}

.info-box h4 {
    font-size: 18px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 5px;
}

.info-box p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
    margin: 0;
}

/* Réparation Smartphones Responsive */
@media (max-width: 968px) {
    .brand-selector {
        gap: 20px;
    }

    .brand-item {
        padding: 15px 20px;
    }

    .brand-item i {
        font-size: 30px;
    }

    .reparation-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 20px;
    }

    .reparation-icon {
        width: 60px;
        height: 60px;
        font-size: 28px;
    }

    .reparation-info {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}

@media (max-width: 768px) {
    .reparation-smartphones-section {
        padding: 60px 0;
    }

    .smartphone-brands {
        margin: 30px 0 40px;
    }

    .brand-selector {
        gap: 15px;
    }

    .brand-item {
        padding: 12px 15px;
    }

    .brand-item i {
        font-size: 24px;
    }

    .brand-item span {
        font-size: 12px;
    }

    .reparation-grid {
        grid-template-columns: 1fr;
    }

    .reparation-card {
        padding: 25px;
    }
}

@media (max-width: 480px) {
    .reparation-card h3 {
        font-size: 18px;
    }

    .reparation-price {
        font-size: 24px;
    }

    .info-box {
        flex-direction: column;
        text-align: center;
        padding: 20px;
    }

    .info-box i {
        font-size: 32px;
    }
}

/* ==================== AM�LIORATIONS RESPONSIVE GLOBALES ==================== */

/* Container - padding adaptatif */
@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
}

/* Logo adaptatif */
@media (max-width: 400px) {
    .logo {
        font-size: 18px;
    }
}

/* Hero section mobile */
@media (max-width: 768px) {
    .hero-section {
        padding: 40px 0 60px;
    }

    .hero-visual {
        height: auto;
        min-height: 250px;
    }

    .hero-text {
        padding-right: 0;
    }
}

@media (max-width: 480px) {
    .hero-section {
        padding: 30px 0 50px;
    }

    .hero-title {
        font-size: 28px;
    }

    .btn-cta {
        width: 100%;
        text-align: center;
        padding: 14px 20px;
        font-size: 16px;
    }

    .alert-content {
        font-size: 13px;
    }

    .alert-banner {
        margin-bottom: 30px;
    }
}

/* Tablette - section stats (2 colonnes maintient) */
@media (min-width: 481px) and (max-width: 768px) {
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Section-title adaptatif tablette */
@media (max-width: 768px) {
    .section-title {
        font-size: 26px;
    }

    .section-subtitle {
        font-size: 16px;
        margin-bottom: 35px;
    }
}

/* Footer mobile */
@media (max-width: 768px) {
    .site-footer {
        padding: 40px 0 20px;
        margin-top: 60px;
    }

    .footer-content {
        gap: 30px;
    }
}

/* Contact grid tablette */
@media (max-width: 968px) {
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

/* Am�lioration touch targets */
@media (max-width: 768px) {
    .btn-cta,
    .btn-secondary,
    .btn-contact,
    .btn-highlight {
        min-height: 44px;
        display: inline-flex;
        align-items: center;
        justify-content: center;
    }

    .info-item a {
        padding: 4px 0;
        display: inline-block;
    }
}

/* Impression 3D mobile */
@media (max-width: 480px) {
    .impression-3d-section {
        padding: 40px 0;
    }

    .impression-3d-text {
        padding: 10px 0;
    }
}

/* Micro-soudure mobile */
@media (max-width: 480px) {
    .microsoudure-header {
        margin-bottom: 40px;
    }

    .equipment-image-wrap {
        height: 180px;
    }

    .equipment-info {
        padding: 16px;
    }
}

/* Services page mobile */
@media (max-width: 480px) {
    .page-header {
        padding: 40px 0 30px;
    }

    .page-title {
        font-size: 24px;
    }

    .page-subtitle {
        font-size: 15px;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .service-card {
        padding: 22px;
    }
}

/* CTA section tablette */
@media (max-width: 768px) {
    .cta-section {
        padding: 60px 0;
    }

    .cta-title {
        font-size: 26px;
    }

    .cta-text {
        font-size: 16px;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: stretch;
    }

    .btn-cta.primary,
    .btn-cta.secondary {
        width: 100%;
        max-width: 100%;
        text-align: center;
    }
}

/* Tarifs mobile */
@media (max-width: 480px) {
    .tarifs-section {
        padding: 50px 0 40px;
    }

    .tarifs-wrapper {
        grid-template-columns: 1fr;
    }
}

/* Am�lioration texte sur tr�s petits �crans */
@media (max-width: 360px) {
    .logo {
        font-size: 16px;
    }

    .hero-title {
        font-size: 24px;
    }

    .section-title {
        font-size: 22px;
    }

    .tarif-price,
    .reparation-price {
        font-size: 24px;
    }
}
