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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #1a1a1a;
    background-color: #ffffff;
}

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

/* ==================== VARIABLES & COLORS ==================== */
:root {
    --color-white: #ffffff;
    --color-black: #000000;
    --color-gray: #3a3a3a;
    --color-dark-gray: #2a2a2a;
    --color-anthracite: #3a3a3a;
    --color-light-gray: #f5f5f5;
    --color-beige: #d4c4a8;
    --color-beige-light: #e8dcc8;
    --transition: all 0.3s ease;
}

/* ==================== EMERGENCY BANNER ==================== */
.emergency-banner {
    background: linear-gradient(135deg, #E91E8C 0%, #1B3A7E 100%);
    color: white;
    padding: 12px 0;
    text-align: center;
    font-weight: 600;
    position: sticky;
    top: 0;
    z-index: 999;
    box-shadow: 0 2px 10px rgba(233, 30, 140, 0.3);
    font-size: 14px;
}

.emergency-banner a {
    color: #FFD500;
    text-decoration: none;
    font-weight: 700;
    transition: var(--transition);
    display: inline;
}

.emergency-banner a:hover {
    color: white;
    text-decoration: underline;
}

/* ==================== NAVIGATION ==================== */
.navbar {
    position: fixed;
    top: 50px;
    width: 100%;
    background-color: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    transition: var(--transition);
}

.navbar.scrolled {
    background-color: rgba(255, 255, 255, 1);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.nav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
}

.logo {
    font-size: 20px;
    font-weight: 700;
    letter-spacing: 2px;
    color: var(--color-anthracite);
    text-transform: uppercase;
    display: flex;
    align-items: center;
    gap: 8px;
    white-space: nowrap;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 40px;
}

.nav-menu a {
    color: var(--color-gray);
    text-decoration: none;
    font-weight: 500;
    transition: var(--transition);
    position: relative;
    font-size: 14px;
}

.nav-menu a:hover {
    color: var(--color-beige);
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--color-beige);
    transition: var(--transition);
}

.nav-menu a:hover::after {
    width: 100%;
}

.menu-toggle {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    gap: 5px;
    padding: 5px;
}

.menu-toggle span {
    width: 25px;
    height: 3px;
    background-color: var(--color-anthracite);
    border-radius: 2px;
    transition: var(--transition);
}

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

.hero-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -2;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0.3) 100%);
    z-index: -1;
}

.hero-content {
    text-align: center;
    color: var(--color-white);
    z-index: 1;
    padding: 20px;
}

.hero-title {
    font-size: 64px;
    font-weight: 800;
    margin-bottom: 20px;
    letter-spacing: 3px;
    text-transform: uppercase;
}

.hero-subtitle {
    font-size: 28px;
    font-weight: 300;
    margin-bottom: 15px;
    letter-spacing: 1px;
}

.hero-description {
    font-size: 18px;
    margin-bottom: 40px;
    font-weight: 300;
    letter-spacing: 0.5px;
}

.cta-button {
    display: inline-block;
    padding: 16px 45px;
    background: linear-gradient(135deg, var(--color-beige) 0%, #c9b896 100%);
    color: var(--color-anthracite);
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: var(--transition);
    letter-spacing: 0.5px;
    text-transform: uppercase;
    box-shadow: 0 10px 30px rgba(212, 196, 168, 0.3);
    touch-action: manipulation;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(212, 196, 168, 0.4);
}

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

.fade-in {
    animation: fadeIn 0.8s ease-out forwards;
    opacity: 0;
}

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

.slide-up {
    animation: slideUp 0.6s ease-out;
}

/* ==================== SECTION HEADERS ==================== */
.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header h2 {
    font-size: 48px;
    color: var(--color-anthracite);
    margin-bottom: 15px;
    position: relative;
    letter-spacing: 1px;
}

.section-header h2::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: var(--color-beige);
}

.section-header p {
    font-size: 18px;
    color: #666;
    margin-top: 30px;
}

/* ==================== SERVICES SECTION ==================== */
.services {
    padding: 100px 0;
    background-color: var(--color-light-gray);
}

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

.service-card {
    background: var(--color-white);
    padding: 40px 30px;
    border-radius: 8px;
    text-align: center;
    transition: var(--transition);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    cursor: pointer;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
    border-top: 3px solid var(--color-beige);
}

.service-icon {
    font-size: 48px;
    color: var(--color-beige);
    margin-bottom: 20px;
    transition: var(--transition);
}

.service-card:hover .service-icon {
    transform: scale(1.15) rotate(5deg);
    color: #c9b896;
}

.service-card h3 {
    font-size: 22px;
    margin-bottom: 15px;
    color: var(--color-anthracite);
}

.service-card p {
    color: #666;
    font-size: 15px;
    line-height: 1.6;
    margin-bottom: 20px;
}

.service-link {
    display: inline-block;
    color: var(--color-beige);
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    transition: var(--transition);
}

.service-link:hover {
    color: #c9b896;
    gap: 8px;
}

/* ==================== GALLERY SECTION ==================== */
.galerie {
    padding: 100px 0;
    background-color: var(--color-white);
}

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

.gallery-item {
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: var(--transition);
}

.gallery-item:hover {
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.2);
}

.before-after {
    position: relative;
    width: 100%;
    height: 400px;
    overflow: hidden;
    background: #f0f0f0;
    touch-action: none;
}

.img-wrapper {
    position: absolute;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

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

.before-after .after-image {
    clip-path: polygon(75% 0, 100% 0, 100% 100%, 75% 100%);
}

.slider-handle {
    position: absolute;
    left: 75%;
    top: 0;
    width: 4px;
    height: 100%;
    background-color: var(--color-beige);
    cursor: ew-resize;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 3px;
    touch-action: none;
}

.slider-handle i {
    color: var(--color-white);
    font-size: 12px;
}

.label {
    position: absolute;
    padding: 8px 15px;
    background-color: rgba(0, 0, 0, 0.6);
    color: var(--color-white);
    font-weight: 600;
    font-size: 14px;
    border-radius: 4px;
}

.label.before {
    top: 15px;
    left: 15px;
}

.label.after {
    top: 15px;
    right: 15px;
}

.project-name {
    padding: 20px;
    text-align: center;
    font-weight: 600;
    color: var(--color-anthracite);
    background-color: #f9f9f9;
    border-bottom: 3px solid #f5f5f5;
}

.project-description {
    padding: 10px 20px;
    text-align: center;
    font-size: 13px;
    color: #999;
    background-color: #f9f9f9;
}

/* ==================== ABOUT SECTION ==================== */
.apropos {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--color-light-gray) 0%, var(--color-white) 100%);
}

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

.about-text h2 {
    font-size: 42px;
    color: var(--color-anthracite);
    margin-bottom: 30px;
}

.about-text p {
    font-size: 16px;
    color: #555;
    margin-bottom: 20px;
    line-height: 1.8;
}

.about-text h3 {
    font-size: 22px;
    color: var(--color-anthracite);
    margin-top: 30px;
    margin-bottom: 20px;
}

.values-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.values-list li {
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 16px;
    color: #555;
}

.values-list i {
    color: var(--color-beige);
    font-size: 20px;
}

.about-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

.stat-card {
    background: var(--color-white);
    padding: 40px;
    border-radius: 8px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: var(--transition);
    border-top: 4px solid var(--color-beige);
}

.stat-card:hover {
    transform: translateY(-5px);
}

.stat-number {
    font-size: 48px;
    font-weight: 800;
    color: var(--color-beige);
    margin-bottom: 10px;
}

.stat-card p {
    font-size: 16px;
    color: #666;
    font-weight: 500;
}

/* ==================== GUARANTEES SECTION ==================== */
.guarantees {
    padding: 100px 0;
    background-color: #f9f9f9;
}

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

.guarantee-card {
    background: var(--color-white);
    padding: 40px 30px;
    border-radius: 8px;
    text-align: center;
    transition: var(--transition);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    border-left: 4px solid var(--color-beige);
}

.guarantee-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.12);
}

.guarantee-icon {
    font-size: 42px;
    color: var(--color-beige);
    margin-bottom: 15px;
}

.guarantee-card h3 {
    font-size: 18px;
    margin-bottom: 12px;
    color: var(--color-anthracite);
}

.guarantee-card p {
    color: #666;
    font-size: 14px;
    line-height: 1.6;
}

/* ==================== REVIEWS SECTION ==================== */
.avis {
    padding: 100px 0;
    background-color: var(--color-white);
}

.reviews-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: flex-start;
}

.google-rating-box {
    background: linear-gradient(135deg, var(--color-light-gray) 0%, var(--color-white) 100%);
    padding: 50px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    border-left: 4px solid var(--color-beige);
    position: sticky;
    top: 120px;
}

.rating-header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-bottom: 20px;
    font-size: 24px;
    font-weight: 700;
    color: #4285F4;
}

.rating-stars {
    font-size: 32px;
    color: var(--color-beige);
    margin: 20px 0;
    letter-spacing: 5px;
}

.rating-text {
    font-size: 16px;
    color: #666;
    margin-bottom: 25px;
}

.review-button {
    display: inline-block;
    padding: 14px 30px;
    background: linear-gradient(135deg, var(--color-beige) 0%, #c9b896 100%);
    color: var(--color-anthracite);
    text-decoration: none;
    font-weight: 600;
    border-radius: 6px;
    transition: var(--transition);
    box-shadow: 0 5px 15px rgba(212, 196, 168, 0.2);
    touch-action: manipulation;
}

.review-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(212, 196, 168, 0.3);
}

.reviews-right {
    display: flex;
    flex-direction: column;
    gap: 25px;
    overflow-y: auto;
    max-height: 600px;
}

.review-card {
    background: var(--color-white);
    padding: 25px;
    border-radius: 8px;
    border-left: 3px solid var(--color-beige);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    transition: var(--transition);
    flex-shrink: 0;
}

.review-card:hover {
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transform: translateX(5px);
}

.review-stars {
    color: var(--color-beige);
    font-size: 14px;
    letter-spacing: 3px;
    margin-bottom: 12px;
}

.review-text {
    font-size: 14px;
    color: #555;
    font-style: italic;
    margin-bottom: 12px;
    line-height: 1.6;
}

.review-author {
    font-size: 13px;
    color: #999;
    font-weight: 600;
}

/* ==================== CONTACT SECTION ==================== */
.contact {
    padding: 100px 0;
    background-color: var(--color-light-gray);
}

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

.contact-form {
    background: var(--color-white);
    padding: 50px;
    border-radius: 8px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

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

.form-group.full-width {
    grid-column: 1 / -1;
}

.form-group label {
    display: block;
    margin-bottom: 10px;
    font-weight: 600;
    color: var(--color-anthracite);
    font-size: 14px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 15px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-family: inherit;
    font-size: 15px;
    transition: var(--transition);
    color: #333;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #bbb;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--color-beige);
    box-shadow: 0 0 0 3px rgba(212, 196, 168, 0.1);
    background-color: rgba(212, 196, 168, 0.02);
}

.submit-button {
    width: 100%;
    padding: 16px;
    background: linear-gradient(135deg, var(--color-beige) 0%, #c9b896 100%);
    color: var(--color-anthracite);
    border: none;
    border-radius: 4px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 5px 20px rgba(212, 196, 168, 0.2);
    touch-action: manipulation;
}

.submit-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(212, 196, 168, 0.3);
}

.form-notice {
    font-size: 12px;
    color: #999;
    margin-top: 10px;
}

.contact-info {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

.contact-info h3 {
    font-size: 28px;
    color: var(--color-anthracite);
    margin-bottom: 30px;
}

/* ========== FIX: REMOVE BLACK BOXES FROM CONTACT INFO ========== */
.info-item-clean {
    display: flex;
    gap: 20px;
    margin-bottom: 40px;
    align-items: flex-start;
    padding: 15px 0;
    border-bottom: 1px solid #e0e0e0;
}

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

.info-item-clean i {
    font-size: 24px;
    color: var(--color-beige);
    min-width: 30px;
    margin-top: 5px;
    flex-shrink: 0;
}

.info-item-clean .label {
    font-weight: 600;
    color: var(--color-anthracite);
    margin-bottom: 5px;
    background: none;
    padding: 0;
    font-size: 14px;
}

.info-item-clean p {
    margin: 0;
    color: #555;
    font-size: 15px;
    line-height: 1.6;
}

.info-item-clean a {
    color: var(--color-beige);
    text-decoration: none;
    transition: var(--transition);
    font-weight: 600;
}

.info-item-clean a:hover {
    color: #c9b896;
}

.social-links {
    display: flex;
    gap: 20px;
    margin-top: 40px;
    padding-top: 20px;
    border-top: 1px solid #e0e0e0;
    flex-wrap: wrap;
}

.social-links a {
    width: 45px;
    height: 45px;
    background-color: var(--color-anthracite);
    color: var(--color-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    text-decoration: none;
    touch-action: manipulation;
    -webkit-user-select: none;
    user-select: none;
}

.social-links a:hover {
    background-color: var(--color-beige);
    color: var(--color-anthracite);
    transform: translateY(-5px);
}

.map-container {
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

/* ==================== FOOTER ==================== */
.footer {
    background-color: var(--color-anthracite);
    color: var(--color-white);
    padding: 60px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-section h4 {
    margin-bottom: 15px;
    font-size: 18px;
}

.footer-section p {
    margin-bottom: 10px;
    opacity: 0.8;
    font-size: 14px;
}

.footer-section a {
    color: var(--color-beige);
    text-decoration: none;
    transition: var(--transition);
}

.footer-section a:hover {
    color: var(--color-white);
}

.social-icons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.social-icons a {
    width: 40px;
    height: 40px;
    background-color: rgba(212, 196, 168, 0.2);
    color: var(--color-beige);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    touch-action: manipulation;
}

.social-icons a:hover {
    background-color: var(--color-beige);
    color: var(--color-anthracite);
}

.footer-bottom {
    border-top: 1px solid rgba(212, 196, 168, 0.2);
    padding-top: 20px;
    text-align: center;
    opacity: 0.7;
    font-size: 13px;
}

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

/* ==================== RESPONSIVE ==================== */
@media (max-width: 1024px) {
    .reviews-content {
        grid-template-columns: 1fr;
    }

    .google-rating-box {
        position: static;
    }

    .reviews-right {
        max-height: none;
    }
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 42px;
        letter-spacing: 2px;
    }

    .hero-subtitle {
        font-size: 20px;
    }

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

    .nav-menu {
        position: absolute;
        top: 70px;
        right: 0;
        background: var(--color-white);
        flex-direction: column;
        width: 100%;
        gap: 0;
        max-height: 0;
        overflow: hidden;
        transition: var(--transition);
    }

    .nav-menu.active {
        max-height: 600px;
    }

    .nav-menu li {
        padding: 15px 20px;
        border-bottom: 1px solid #eee;
    }

    .menu-toggle {
        display: flex;
    }

    .menu-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(10px, 10px);
    }

    .menu-toggle.active span:nth-child(2) {
        opacity: 0;
    }

    .menu-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -7px);
    }

    .section-header h2 {
        font-size: 36px;
    }

    .section-header p {
        font-size: 16px;
    }

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

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

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

    .about-text h2 {
        font-size: 32px;
    }

    .about-stats {
        grid-template-columns: 1fr 1fr;
    }

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

    .reviews-content {
        gap: 40px;
    }

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

    .contact-form {
        padding: 30px;
    }

    .contact-info {
        padding: 20px 0;
    }

    .info-item-clean {
        margin-bottom: 30px;
    }

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

    .before-after {
        height: 300px;
    }
}

@media (max-width: 480px) {
    /* ========== MOBILE OPTIMIZATIONS ========== */
    .emergency-banner {
        padding: 10px 5px;
        font-size: 12px;
    }

    .navbar {
        top: 40px;
    }

    .logo {
        font-size: 16px;
        letter-spacing: 1px;
    }

    .logo svg {
        width: 40px !important;
        height: 28px !important;
    }

    .hero {
        margin-top: 80px;
        min-height: auto;
        padding: 40px 0;
    }

    .hero-title {
        font-size: 28px;
        letter-spacing: 1px;
        margin-bottom: 15px;
    }

    .hero-subtitle {
        font-size: 16px;
        margin-bottom: 10px;
    }

    .hero-description {
        font-size: 14px;
        margin-bottom: 25px;
    }

    .cta-button {
        padding: 12px 25px;
        font-size: 13px;
        width: 100%;
        max-width: 300px;
    }

    .section-header h2 {
        font-size: 28px;
        margin-bottom: 10px;
    }

    .section-header h2::after {
        bottom: -12px;
        width: 50px;
        height: 2px;
    }

    .section-header p {
        font-size: 14px;
        margin-top: 20px;
    }

    .services {
        padding: 60px 0;
    }

    .services-grid {
        gap: 20px;
    }

    .service-card {
        padding: 25px 15px;
    }

    .service-icon {
        font-size: 36px;
        margin-bottom: 15px;
    }

    .service-card h3 {
        font-size: 18px;
        margin-bottom: 12px;
    }

    .service-card p {
        font-size: 13px;
        margin-bottom: 15px;
    }

    .galerie {
        padding: 60px 0;
    }

    .gallery-grid {
        gap: 20px;
    }

    .before-after {
        height: 250px;
    }

    .label {
        padding: 6px 12px;
        font-size: 12px;
    }

    .project-name {
        padding: 15px;
        font-size: 15px;
    }

    .project-description {
        padding: 8px 15px;
        font-size: 12px;
    }

    .apropos {
        padding: 60px 0;
    }

    .about-content {
        gap: 30px;
    }

    .about-text h2 {
        font-size: 26px;
        margin-bottom: 20px;
    }

    .about-text p {
        font-size: 14px;
        margin-bottom: 15px;
    }

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

    .stat-card {
        padding: 25px;
    }

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

    .stat-card p {
        font-size: 14px;
    }

    .guarantees {
        padding: 60px 0;
    }

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

    .guarantee-card {
        padding: 25px 15px;
    }

    .guarantee-icon {
        font-size: 32px;
        margin-bottom: 12px;
    }

    .guarantee-card h3 {
        font-size: 16px;
        margin-bottom: 10px;
    }

    .guarantee-card p {
        font-size: 13px;
    }

    .avis {
        padding: 60px 0;
    }

    .review-card {
        padding: 20px;
    }

    .review-stars {
        font-size: 12px;
        letter-spacing: 2px;
    }

    .review-text {
        font-size: 13px;
        margin-bottom: 10px;
    }

    .review-author {
        font-size: 12px;
    }

    .contact {
        padding: 60px 0;
    }

    .contact-wrapper {
        gap: 25px;
    }

    .contact-form {
        padding: 20px;
    }

    .contact-info h3 {
        font-size: 22px;
        margin-bottom: 20px;
    }

    .info-item-clean {
        margin-bottom: 25px;
        padding: 12px 0;
    }

    .info-item-clean i {
        font-size: 20px;
        min-width: 25px;
    }

    .info-item-clean .label {
        font-size: 13px;
    }

    .info-item-clean p {
        font-size: 14px;
    }

    .social-links {
        gap: 15px;
        margin-top: 25px;
        padding-top: 15px;
    }

    .social-links a {
        width: 40px;
        height: 40px;
    }

    .footer {
        padding: 40px 0 15px;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 25px;
        margin-bottom: 25px;
    }

    .footer-section h4 {
        margin-bottom: 12px;
        font-size: 16px;
    }

    .footer-section p {
        margin-bottom: 8px;
        font-size: 13px;
    }

    .footer-bottom {
        font-size: 11px;
    }
}

/* ==================== TOUCH OPTIMIZATIONS ==================== */
@media (hover: none) and (pointer: coarse) {
    /* Désactiver les animations coûteuses sur mobile */
    .service-card:hover {
        transform: none;
    }

    .guarantee-card:hover {
        transform: none;
    }

    .review-card:hover {
        transform: translateX(0);
    }
}
