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

.gk-section-title {
    font-family: 'Poppins', sans-serif !important;
    font-weight: 600 !important;
    font-size: 24px !important;
    color: #242424 !important;
    text-align: center !important;
    margin-bottom: 10px !important;
}

.gk-divider {
    width: 50px;
    height: 2px;
    background: #B3362F;
    margin: 0 auto 40px;
}

/* Partenaire - masonry avec background-image */
.gk-masonry {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    grid-template-rows: 250px 250px;
    gap: 15px;
}
.gk-masonry-card {
    position: relative;
    overflow: hidden;
    display: block;
    text-decoration: none;
    background-size: cover;
    background-position: center;
    background-color: #333;
}
.gk-masonry-card.gk-masonry-tall { grid-row: span 2; }
.gk-masonry-card:first-child { grid-column: 1; grid-row: 1 / 3; }
.gk-masonry-card:nth-child(2) { grid-column: 2; grid-row: 1; }
.gk-masonry-card:nth-child(3) { grid-column: 2; grid-row: 2; }
.gk-masonry-card:last-child { grid-column: 3; grid-row: 1 / 3; }
.gk-masonry-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(0,0,0,0.3);
    transition: background 0.3s;
}
.gk-masonry-card:hover::before { background: rgba(0,0,0,0.15); }
.gk-masonry-overlay {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    padding: 25px;
    z-index: 1;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}
.gk-masonry-overlay h3 {
    font-family: 'Poppins', sans-serif !important;
    font-weight: 700 !important;
    font-size: 16px !important;
    color: #fff !important;
    margin: 0 0 5px !important;
}
.gk-masonry-overlay p {
    font-size: 13px;
    color: rgba(255,255,255,0.85);
    margin: 0;
    line-height: 1.5;
}

/* Marques */
.gk-marques {
    border-top: 1px solid #E5E5E5;
    border-bottom: 1px solid #E5E5E5;
    padding: 30px 0;
    background: #fff;
}
.gk-marques-title {
    text-align: center;
    font-family: 'Poppins', sans-serif !important;
    font-weight: 700 !important;
    font-size: 14px !important;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #242424 !important;
    margin-bottom: 25px;
}
.gk-marques-list {
    display: flex;
    justify-content: center;
    gap: 35px;
    flex-wrap: wrap;
}
.gk-marque-badge {
    display: inline-block;
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    font-size: 12px;
    letter-spacing: 1px;
    color: #fff !important;
    background: #000;
    padding: 14px 35px;
    text-decoration: none !important;
    text-transform: uppercase;
    border-radius: 25px;
    transition: background 0.2s;
}
.gk-marque-badge:hover { background: #B3362F; color: #fff !important; }

/* Dutycall */
.gk-dutycall { background: #fff; }
.gk-badge {
    display: inline-block;
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #B3362F;
    margin-bottom: 10px;
}
/* DUTYCALL masonry : image gauche tall, texte centre haut, image centre bas, image droite tall */
.gk-dutycall-masonry {
    display: grid !important;
    grid-template-columns: 1fr 1.3fr 1fr;
    grid-template-rows: auto auto;
    gap: 15px;
    max-width: 1400px;
    margin: 0 auto;
}
.gk-dc-img-left, .gk-dc-img-centre, .gk-dc-img-right {
    overflow: hidden;
    position: relative;
    background-transition: transform 0.5s ease;
}
.gk-dc-img-left::after, .gk-dc-img-centre::after, .gk-dc-img-right::after {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(0,0,0,0);
    transition: background 0.4s ease;
}
.gk-dc-img-left:hover::after, .gk-dc-img-centre:hover::after, .gk-dc-img-right:hover::after {
    background: rgba(0,0,0,0.15);
}
.gk-dc-texte {
    transition: background-color 0.3s ease;
}
.gk-dc-texte:hover {
    background-color: #f7f7f7;
}
.gk-dc-img-left {
    grid-column: 1;
    grid-row: 1 / 3;
    background-size: cover;
    background-position: center;
    min-height: 500px;
}
.gk-dc-texte {
    grid-column: 2;
    grid-row: 1;
    padding: 40px 50px;
    text-align: center;
}
.gk-dc-texte p {
    font-size: 15px !important;
    color: #666 !important;
    line-height: 1.7;
    margin-bottom: 15px;
}
.gk-dc-img-centre {
    grid-column: 2;
    grid-row: 2;
    background-size: cover;
    background-position: center;
    min-height: 300px;
}
.gk-dc-img-right {
    grid-column: 3;
    grid-row: 1 / 3;
    background-size: cover;
    background-position: center;
    min-height: 500px;
}

/* Histoire / Qui sommes-nous */
.gk-histoire { background: #fff; border-top: 1px solid #e5e5e5; }
.gk-histoire-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: start;
}
.gk-histoire-img img { width: 100%; object-fit: cover; }
.gk-subtitle {
    font-family: 'Poppins', sans-serif !important;
    font-weight: 600 !important;
    font-size: 12px !important;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: #B3362F !important;
    margin-bottom: 5px;
}
.gk-histoire-text h2 {
    font-family: 'Poppins', sans-serif !important;
    font-weight: 700 !important;
    font-size: 26px !important;
    color: #242424 !important;
    margin-bottom: 20px !important;
}
.gk-histoire-text > p {
    font-size: 14px !important;
    color: #666 !important;
    line-height: 1.7;
    margin-bottom: 15px;
}

/* Accordion */
.gk-accordion { margin-top: 20px; }
.gk-accordion-item { border-bottom: 1px solid #e5e5e5; }
.gk-accordion-header {
    font-family: 'Poppins', sans-serif !important;
    font-weight: 600 !important;
    font-size: 13px !important;
    color: #242424 !important;
    padding: 15px 0;
    cursor: pointer;
    transition: color 0.2s;
    user-select: none;
}
.gk-accordion-header:hover, .gk-accordion-header.active { color: #B3362F !important; }
.gk-accordion-body {
    display: none;
    font-size: 14px;
    color: #666;
    line-height: 1.6;
    padding: 0 0 15px;
}

/* Boutons */
.gk-btn {
    display: inline-block;
    font-family: 'Poppins', sans-serif !important;
    font-weight: 700 !important;
    font-size: 13px !important;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding: 14px 35px;
    text-decoration: none !important;
    transition: background 0.2s;
}
.gk-btn-red {
    background: #B3362F;
    color: #fff !important;
}
.gk-btn-red:hover { background: #922a24; color: #fff !important; }

/* Articles - style cards comme gkpro */
.gk-articles { background: #fff; border-top: 1px solid #E5E5E5; }
.gk-articles-grid {
    display: grid !important;
    grid-template-columns: repeat(4, 1fr) !important;
    gap: 20px !important;
}
.gk-article-card {
    border: 1px solid #e5e5e5;
    overflow: hidden;
    transition: box-shadow 0.3s;
}
.gk-article-card:hover { box-shadow: 0 5px 20px rgba(0,0,0,0.1); }
.gk-article-card img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    display: block;
    transition: transform 0.3s;
}
.gk-article-card:hover img { transform: scale(1.03); }
.gk-article-card a { text-decoration: none !important; }
.gk-article-card-body {
    padding: 20px;
}
.gk-article-meta {
    font-family: 'Poppins', sans-serif;
    font-size: 11px;
    color: #B3362F;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
.gk-article-card-body h3 {
    font-family: 'Poppins', sans-serif !important;
    font-weight: 600 !important;
    font-size: 14px !important;
    color: #242424 !important;
    margin: 8px 0 15px !important;
    line-height: 1.4 !important;
}
.gk-article-card-body h3 a { color: #242424 !important; text-decoration: none !important; }
.gk-article-card-body h3 a:hover { color: #B3362F !important; }
.gk-btn-small {
    display: inline-block;
    background: #B3362F;
    color: #fff !important;
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    font-size: 11px;
    text-transform: uppercase;
    padding: 8px 18px;
    text-decoration: none !important;
    letter-spacing: 0.5px;
    transition: background 0.2s;
}
.gk-btn-small:hover { background: #922a24; color: #fff !important; }

/* Temoignages */
.gk-temoignages { background: #fff; border-top: 1px solid #e5e5e5; }
.gk-stars-center {
    text-align: center;
    color: #fbbf24;
    font-size: 22px;
    margin-bottom: 5px;
}
.gk-avis-note {
    text-align: center;
    font-size: 14px;
    color: #666;
    margin-bottom: 30px;
}
.gk-temoignages-grid {
    display: grid !important;
    grid-template-columns: repeat(3, 1fr) !important;
    gap: 20px !important;
}
.gk-temoignage {
    border: 1px solid #E5E5E5;
    padding: 25px;
}
.gk-temoignage-stars {
    color: #fbbf24;
    font-size: 14px;
    margin-bottom: 10px;
}
.gk-temoignage p {
    font-size: 14px !important;
    color: #333 !important;
    line-height: 1.6;
    font-style: italic;
    margin-bottom: 15px;
}
.gk-temoignage-date {
    font-size: 12px;
    color: #999;
    margin-left: 10px;
}
.gk-temoignage strong {
    font-size: 13px;
    color: #242424;
}

/* Contact */
.gk-contact-section { background: #fff; border-top: 1px solid #e5e5e5; }
.gk-contact-grid {
    display: grid !important;
    grid-template-columns: 1fr 1fr !important;
    gap: 40px !important;
    align-items: start;
}
.gk-contact-text p {
    font-size: 14px !important;
    color: #666 !important;
    line-height: 1.7;
    margin-bottom: 10px;
}
.gk-contact-img img {
    width: 100%;
    object-fit: cover;
}

/* Responsive mobile */
@media (max-width: 768px) {
    .gk-section { padding: 30px 0; }
    .gk-container { padding: 0 15px; }
    .gk-section-title { font-size: 20px !important; }
    .gk-divider { margin-bottom: 25px; }

    /* Masonry : reset toutes les positions grid */
    .gk-masonry {
        grid-template-columns: 1fr !important;
        grid-template-rows: auto !important;
    }
    .gk-masonry-card,
    .gk-masonry-card.gk-masonry-tall,
    .gk-masonry-card:first-child,
    .gk-masonry-card:nth-child(2),
    .gk-masonry-card:nth-child(3),
    .gk-masonry-card:last-child {
        grid-column: 1 !important;
        grid-row: auto !important;
        min-height: 200px;
    }

    /* Marques */
    .gk-marques-list { gap: 8px; }
    .gk-marque-badge { font-size: 10px; padding: 10px 18px; }

    /* Dutycall : reset positions, cacher images laterales */
    .gk-dutycall-masonry {
        grid-template-columns: 1fr !important;
        grid-template-rows: auto !important;
        gap: 10px !important;
    }
    .gk-dc-img-left, .gk-dc-img-right { display: none !important; }
    .gk-dc-texte {
        grid-column: 1 !important;
        grid-row: 1 !important;
        padding: 30px 20px !important;
    }
    .gk-dc-img-centre {
        grid-column: 1 !important;
        grid-row: 2 !important;
        min-height: 250px !important;
    }

    /* Histoire */
    .gk-histoire-grid {
        grid-template-columns: 1fr !important;
        gap: 25px !important;
    }
    .gk-histoire-text h2 { font-size: 22px !important; }

    /* Articles */
    .gk-articles-grid { grid-template-columns: 1fr !important; }
    .gk-article-card img { height: 180px; }

    /* Temoignages */
    .gk-temoignages-grid { grid-template-columns: 1fr !important; }

    /* Contact */
    .gk-contact-grid {
        grid-template-columns: 1fr !important;
        gap: 25px !important;
    }
    .gk-contact-img img { max-height: 250px; }

    /* Newsletter mobile */
    .gk-newsletter > div > div {
        grid-template-columns: 1fr !important;
        gap: 25px !important;
        align-items: start !important;
    }

    /* Boutons plus grands pour touch */
    .gk-btn { padding: 12px 30px; font-size: 12px !important; }
    .gk-btn-small { padding: 10px 20px; }
}

/* Footer mobile */
@media (max-width: 768px) {
    .gk-footer > div > div:first-child {
        grid-template-columns: 1fr !important;
        gap: 25px !important;
        text-align: center;
    }
    .gk-footer > div > div:first-child > div:first-child {
        display: flex;
        justify-content: center;
    }
    .gk-footer > div > div:nth-child(2) {
        grid-template-columns: 1fr 1fr !important;
        gap: 25px !important;
    }
    .gk-footer > div > div:last-child {
        flex-direction: column !important;
        align-items: center !important;
        text-align: center;
    }

    /* Reassurance */
    .gk-reassurance > div {
        flex-direction: column !important;
        gap: 25px !important;
    }
}
