/* ============================================================
   GN MOTORS — THEME CSS — VERSION MODERN
   Couleur primaire: gris très foncé | Font: Space Grotesk + Inter
   ============================================================ */

:root {
    --gnm-primary: #2a3d5d;
    --gnm-primary-dark: #1e2d45;
    --gnm-primary-light: #3a5070;
    --gnm-text: #1C1C1E;
    --gnm-text-muted: #6B6B6F;
    --gnm-text-light: #8E8E93;
    --gnm-accent: #e93838;
    --gnm-accent-alt: #ff4d4d;
    --gnm-border: #E5E5EA;
    --gnm-bg: #FFFFFF;
    --gnm-bg-light: #F2F2F7;
    --gnm-bg-cream: #FAFAFA;
    --gnm-radius: 12px;
    --gnm-shadow: 0 4px 24px rgba(0, 0, 0, 0.06);
    --gnm-shadow-hover: 0 12px 40px rgba(0, 0, 0, 0.12);
    --gnm-transition: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    --gnm-font-heading: 'Space Grotesk', sans-serif;
    --gnm-font-body: 'Inter', sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--gnm-font-body);
    font-size: 16px;
    line-height: 1.6;
    color: var(--gnm-text);
    background: var(--gnm-bg);
    -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--gnm-font-heading);
    font-weight: 700;
    color: var(--gnm-primary);
    line-height: 1.2;
    letter-spacing: -0.02em;
}

a {
    color: var(--gnm-primary);
    text-decoration: none;
    transition: color var(--gnm-transition);
}

a:hover {
    color: var(--gnm-accent);
}

img {
    max-width: 100%;
    height: auto;
}

/* ============================================================
   DECORATIVE ELEMENTS — formes géométriques réutilisables
   ============================================================ */

/* Trait décoratif sous les titres h2 */
.gnm-section h2,
.gnm-about h2,
.gnm-warranty h2,
.gnm-services h2,
.gnm-team h2,
.gnm-reviews h2,
.gnm-description h2,
.gnm-contact-form h2 {
    position: relative;
    display: inline-block;
    padding-bottom: 14px;
}

.gnm-section h2::after,
.gnm-about h2::after,
.gnm-warranty h2::after,
.gnm-services h2::after,
.gnm-team h2::after,
.gnm-reviews h2::after,
.gnm-description h2::after,
.gnm-contact-form h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 3px;
    background: var(--gnm-accent);
    border-radius: 2px;
}

.gnm-services h2::after,
.gnm-team h2::after,
.gnm-reviews h2::after {
    left: 50%;
    transform: translateX(-50%);
}

/* ============================================================
   HEADER
   ============================================================ */

.gnm-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: var(--gnm-primary);
    padding: 0 0;
    transition: all var(--gnm-transition);
}

.gnm-header.scrolled {
    box-shadow: 0 2px 30px rgba(0, 0, 0, 0.2);
}

.gnm-header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 70px;
}

.gnm-logo img {
    height: 36px;
    width: auto;
}

.gnm-nav-list {
    display: flex;
    list-style: none;
    gap: 4px;
    margin: 0;
    padding: 0;
}

.gnm-nav-list li a {
    display: block;
    padding: 8px 16px;
    color: rgba(255, 255, 255, 0.7);
    font-family: var(--gnm-font-body);
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    border-radius: 6px;
    transition: all var(--gnm-transition);
    position: relative;
}

.gnm-nav-list li a::after {
    content: '';
    position: absolute;
    bottom: 4px;
    left: 16px;
    right: 16px;
    height: 2px;
    background: var(--gnm-accent);
    transform: scaleX(0);
    transition: transform var(--gnm-transition);
}

.gnm-nav-list li a:hover::after,
.gnm-nav-list li.current-menu-item a::after {
    transform: scaleX(1);
}

.gnm-nav-list li a:hover,
.gnm-nav-list li.current-menu-item a {
    color: #fff;
}

/* Sous-menus déroulants */
.gnm-nav-list li {
    position: relative;
}

.gnm-nav-list li .sub-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 220px;
    background: var(--gnm-primary);
    border-radius: 0 0 var(--gnm-radius) var(--gnm-radius);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.25);
    list-style: none;
    padding: 8px 0;
    margin: 0;
    z-index: 1001;
}

.gnm-nav-list li:hover > .sub-menu {
    display: block;
}

.gnm-nav-list li .sub-menu li {
    position: relative;
}

.gnm-nav-list li .sub-menu li a {
    padding: 10px 20px;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.75);
    border-radius: 0;
    white-space: nowrap;
}

.gnm-nav-list li .sub-menu li a::after {
    left: 20px;
    right: 20px;
    bottom: 2px;
}

.gnm-nav-list li .sub-menu li a:hover {
    color: #fff;
    background: rgba(255, 255, 255, 0.1);
}

/* Sous-sous-menus */
.gnm-nav-list li .sub-menu .sub-menu {
    top: 0;
    left: 100%;
    border-radius: var(--gnm-radius);
}

/* Flèche indicateur sous-menu */
.gnm-nav-list li.menu-item-has-children > a {
    padding-right: 28px;
}

.gnm-nav-list li.menu-item-has-children > a::before {
    content: '▾';
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 10px;
    opacity: 0.6;
}

/* Mobile sous-menus */
.gnm-mobile-nav-list .sub-menu {
    list-style: none;
    padding: 0 0 0 15px;
    margin: 0;
}

.gnm-mobile-nav-list .sub-menu li a {
    padding: 10px 20px;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
}

.gnm-mobile-nav-list .sub-menu li a:hover {
    color: #fff;
}

.gnm-header-actions {
    display: flex;
    align-items: center;
    gap: 10px;
}

.gnm-header-cta {
    display: flex;
    align-items: center;
    gap: 6px;
    color: #fff;
    font-family: var(--gnm-font-heading);
    font-weight: 600;
    font-size: 13px;
    padding: 10px 20px;
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.25);
    transition: all var(--gnm-transition);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.gnm-header-cta:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.5);
    color: #fff;
}

.gnm-header-phone {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #fff;
    font-family: var(--gnm-font-heading);
    font-weight: 600;
    font-size: 14px;
    background: var(--gnm-accent);
    padding: 10px 22px;
    border-radius: 8px;
    transition: all var(--gnm-transition);
    position: relative;
    overflow: hidden;
}

.gnm-header-phone::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, transparent 40%, rgba(255,255,255,0.15) 50%, transparent 60%);
    transform: translateX(-100%);
    transition: transform 0.6s ease;
}

.gnm-header-phone:hover::before {
    transform: translateX(100%);
}

.gnm-header-phone:hover {
    background: #d42f2f;
    color: #fff;
    transform: translateY(-1px);
    box-shadow: 0 4px 15px rgba(233, 56, 56, 0.4);
}

/* Hamburger */
.gnm-hamburger {
    background: none;
    border: none;
    width: 30px;
    height: 24px;
    position: relative;
    cursor: pointer;
}

.gnm-hamburger span {
    display: block;
    position: absolute;
    width: 100%;
    height: 2px;
    background: #fff;
    border-radius: 2px;
    left: 0;
    transition: all var(--gnm-transition);
}

.gnm-hamburger span:nth-child(1) { top: 0; }
.gnm-hamburger span:nth-child(2) { top: 11px; }
.gnm-hamburger span:nth-child(3) { top: 22px; }

/* Mobile menu */
.gnm-mobile-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 320px;
    height: 100%;
    background: var(--gnm-primary);
    z-index: 10001;
    transition: right var(--gnm-transition);
    overflow-y: auto;
}

.gnm-mobile-menu.open {
    right: 0;
}

.gnm-mobile-menu-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.gnm-mobile-close {
    background: none;
    border: none;
    color: #fff;
    font-size: 32px;
    cursor: pointer;
}

.gnm-mobile-nav-list {
    list-style: none;
    padding: 20px;
    margin: 0;
}

.gnm-mobile-nav-list li a {
    display: block;
    padding: 14px 0;
    color: rgba(255, 255, 255, 0.8);
    font-family: var(--gnm-font-heading);
    font-size: 16px;
    font-weight: 500;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.gnm-mobile-nav-list li a:hover {
    color: #fff;
}

.gnm-mobile-contact {
    padding: 20px;
}

.gnm-mobile-contact a {
    display: block;
    color: var(--gnm-accent);
    padding: 8px 0;
    font-size: 14px;
    font-weight: 600;
}

.gnm-mobile-contact a:hover {
    color: var(--gnm-accent-alt);
}

.gnm-mobile-contact a i {
    width: 24px;
}

.gnm-mobile-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    z-index: 10000;
    opacity: 0;
    visibility: hidden;
    transition: all var(--gnm-transition);
    backdrop-filter: blur(4px);
}

.gnm-mobile-overlay.open {
    opacity: 1;
    visibility: visible;
}

/* ============================================================
   HERO
   ============================================================ */

.gnm-hero {
    position: relative;
    min-height: 64vh;
    display: flex;
    align-items: center;
    background: url('../assets/images/banner1.jpg') center center/cover no-repeat fixed;
    margin-top: 70px;
}

.gnm-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(160deg, rgba(28, 28, 30, 0.85) 0%, rgba(28, 28, 30, 0.4) 60%, rgba(28, 28, 30, 0.2) 100%);
}

/* Forme géométrique décorative dans le hero */
.gnm-hero-overlay::before {
    content: '';
    position: absolute;
    top: -50px;
    right: -50px;
    width: 300px;
    height: 300px;
    border: 2px solid rgba(233, 56, 56, 0.15);
    border-radius: 50%;
    pointer-events: none;
}

.gnm-hero-overlay::after {
    content: '';
    position: absolute;
    bottom: 40px;
    right: 80px;
    width: 120px;
    height: 120px;
    border-right: 3px solid rgba(233, 56, 56, 0.25);
    border-bottom: 3px solid rgba(233, 56, 56, 0.25);
    pointer-events: none;
}

@keyframes gnmFadeUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

.gnm-hero-content {
    position: relative;
    z-index: 1;
    max-width: 650px;
    color: #fff;
}

.gnm-hero-title {
    animation: gnmFadeUp 0.8s ease forwards;
    font-family: var(--gnm-font-heading);
    font-size: 52px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 20px;
    line-height: 1.1;
    letter-spacing: -0.03em;
}

.gnm-hero-title span {
    color: var(--gnm-accent);
    display: inline;
}

.gnm-hero-text {
    font-size: 17px;
    line-height: 1.7;
    margin-bottom: 35px;
    font-weight: 300;
    animation: gnmFadeUp 0.8s 0.3s ease forwards;
    opacity: 0;
}

.gnm-hero-buttons {
    animation: gnmFadeUp 0.8s 0.6s ease forwards;
    opacity: 0;
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.gnm-btn-hero {
    background: var(--gnm-primary);
    color: #fff;
    border: 1px solid var(--gnm-accent) !important;
}

.gnm-btn-hero:hover {
    background: var(--gnm-accent);
    border-color: var(--gnm-accent);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(233, 56, 56, 0.4);
}

/* ============================================================
   BUTTONS
   ============================================================ */

.gnm-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 32px;
    border-radius: 8px;
    font-family: var(--gnm-font-heading);
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    border: 2px solid transparent;
    cursor: pointer;
    transition: all var(--gnm-transition);
    letter-spacing: 0.3px;
    text-transform: uppercase;
    position: relative;
    overflow: hidden;
}

.gnm-btn-primary {
    background: var(--gnm-primary);
    color: #fff;
    border-color: var(--gnm-primary);
}

.gnm-btn-primary:hover {
    background: var(--gnm-accent);
    border-color: var(--gnm-accent);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(233, 56, 56, 0.3);
}

.gnm-btn-outline-white {
    background: transparent;
    color: #fff;
    border-color: rgba(255, 255, 255, 0.4);
}

.gnm-btn-outline-white:hover {
    background: #fff;
    color: var(--gnm-primary);
    border-color: #fff;
}

.gnm-btn-outline {
    background: transparent;
    color: var(--gnm-primary);
    border-color: var(--gnm-primary);
}

.gnm-btn-outline:hover {
    background: var(--gnm-primary);
    color: #fff;
}

.gnm-btn-full {
    width: 100%;
}

/* ============================================================
   SECTIONS
   ============================================================ */

.gnm-section {
    padding: 70px 0;
    position: relative;
}

.gnm-section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 50px;
}

.gnm-section-header h2 {
    font-size: 36px;
    margin: 0;
}

.gnm-link {
    font-family: var(--gnm-font-heading);
    font-weight: 600;
    font-size: 15px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.gnm-link i {
    transition: transform var(--gnm-transition);
}

.gnm-link:hover i {
    transform: translateX(5px);
}

.gnm-vehicles-cta {
    text-align: center;
    margin-top: 50px;
}

/* ============================================================
   VEHICLE CARDS (Homepage + Listing)
   ============================================================ */

.gnm-vcard {
    display: block;
    background: var(--gnm-bg);
    border-radius: var(--gnm-radius);
    overflow: hidden;
    text-decoration: none;
    color: var(--gnm-text);
    border: 1px solid var(--gnm-border);
    transition: all var(--gnm-transition);
    position: relative;
}

.gnm-vcard::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 0;
    background: var(--gnm-accent);
    transition: height var(--gnm-transition);
    z-index: 1;
    border-radius: var(--gnm-radius) 0 0 0;
}

.gnm-vcard:hover::before {
    height: 100%;
}

.gnm-vcard:hover {
    transform: translateY(-8px);
    box-shadow: var(--gnm-shadow-hover);
    color: var(--gnm-text);
    border-color: transparent;
}

.gnm-vcard-img {
    position: relative;
    aspect-ratio: 4 / 3;
    overflow: hidden;
}

.gnm-vcard-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.gnm-vcard:hover .gnm-vcard-img img {
    transform: scale(1.08);
}

.gnm-vcard-price {
    position: absolute;
    bottom: 12px;
    right: 12px;
    background: var(--gnm-accent);
    color: #fff;
    padding: 8px 18px;
    border-radius: 8px;
    font-family: var(--gnm-font-heading);
    font-weight: 700;
    font-size: 15px;
    letter-spacing: -0.02em;
}

.gnm-vcard-body {
    padding: 20px;
}

.gnm-vcard-body h3 {
    font-family: var(--gnm-font-heading);
    font-size: 15px;
    font-weight: 600;
    margin: 0 0 12px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.gnm-vcard-specs {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}

.gnm-vcard-specs span {
    font-size: 12px;
    color: var(--gnm-text-muted);
    background: var(--gnm-bg-light);
    padding: 5px 10px;
    border-radius: 6px;
    font-weight: 500;
}

.gnm-vcard-specs span i {
    color: var(--gnm-accent);
    margin-right: 4px;
}

/* ============================================================
   PARTNERS
   ============================================================ */

.gnm-partners {
    background: var(--gnm-bg-light);
    padding: 50px 0;
    text-align: center;
}

.gnm-partners-label {
    font-family: var(--gnm-font-heading);
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--gnm-text-light);
    margin-bottom: 25px;
}

.gnm-partners-logos {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
}

.gnm-partners-logos img {
    height: 40px;
    width: auto;
    opacity: 0.4;
    filter: grayscale(100%);
    transition: all var(--gnm-transition);
}

.gnm-partners-logos a:hover img {
    opacity: 1;
    filter: grayscale(0);
}

/* ============================================================
   ABOUT
   ============================================================ */

.gnm-about {
    position: relative;
    overflow: hidden;
    background: url('../assets/images/about.png') center center/cover no-repeat, var(--gnm-primary);
    background-blend-mode: luminosity;
}

/* Overlay blanc pour atténuer l'image grisée */
.gnm-about::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(255, 255, 255, 0.85);
    pointer-events: none;
    z-index: 0;
}

.gnm-about::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--gnm-accent), transparent 60%);
    pointer-events: none;
}

.gnm-about .container {
    position: relative;
    z-index: 1;
}

.gnm-about-img {
    width: 100%;
    max-width: 100%;
    height: auto;
    border-radius: var(--gnm-radius);
    box-shadow: var(--gnm-shadow-hover);
    position: relative;
    border: 3px solid rgba(233, 56, 56, 0.15);
    filter: grayscale(100%);
    transition: filter var(--gnm-transition);
    object-fit: cover;
}

.gnm-about-img:hover {
    filter: grayscale(0%);
}

.gnm-about h2 {
    font-size: 36px;
    margin-bottom: 25px;
}

.gnm-about p {
    font-size: 16px;
    color: var(--gnm-text);
    margin-bottom: 15px;
    line-height: 1.8;
}

/* ============================================================
   SERVICES
   ============================================================ */

.gnm-services {
    background: var(--gnm-bg-light);
    position: relative;
    overflow: hidden;
}

/* Lignes diagonales décoratives */
.gnm-services::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 300px;
    height: 300px;
    background: repeating-linear-gradient(
        -45deg,
        transparent,
        transparent 30px,
        rgba(233, 56, 56, 0.03) 30px,
        rgba(233, 56, 56, 0.03) 31px
    );
    pointer-events: none;
}

.gnm-services h2 {
    font-size: 36px;
    margin-bottom: 10px;
}

.gnm-service-card {
    background: var(--gnm-bg);
    padding: 40px 28px calc(14% + 25px);
    border-radius: var(--gnm-radius);
    text-align: center;
    height: 100%;
    border: 1px solid var(--gnm-border);
    transition: all var(--gnm-transition);
    position: relative;
    overflow: hidden;
}

/* Demi-bordure décorative en haut de la carte */
.gnm-service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 3px;
    background: var(--gnm-accent);
    border-radius: 0 0 3px 3px;
    transition: width var(--gnm-transition);
}

.gnm-service-card:hover::before {
    width: 100%;
}

/* Image véhicule en bas de chaque carte */
.gnm-service-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 14%;
    background: url('../assets/images/fond_01.png') center center/cover no-repeat;
    border-radius: 0 0 var(--gnm-radius) var(--gnm-radius);
}

.gnm-services .col-lg-3:nth-child(1) .gnm-service-card::after { background-image: url('../assets/images/fond_01.png'); }
.gnm-services .col-lg-3:nth-child(2) .gnm-service-card::after { background-image: url('../assets/images/fond_02.png'); }
.gnm-services .col-lg-3:nth-child(3) .gnm-service-card::after { background-image: url('../assets/images/fond_03.png'); }
.gnm-services .col-lg-3:nth-child(4) .gnm-service-card::after { background-image: url('../assets/images/fond_04.png'); }

.gnm-service-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--gnm-shadow-hover);
    border-color: transparent;
}

.gnm-service-icon {
    width: 64px;
    height: 64px;
    border-radius: 16px;
    background: var(--gnm-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 22px;
    transition: all var(--gnm-transition);
}

.gnm-service-card:hover .gnm-service-icon {
    background: var(--gnm-accent);
    transform: rotate(-5deg) scale(1.05);
}

.gnm-service-icon i {
    font-size: 24px;
    color: #fff;
}

.gnm-service-card h4 {
    font-size: 18px;
    margin-bottom: 8px;
}

.gnm-service-tag {
    font-size: 13px;
    font-style: italic;
    color: var(--gnm-accent);
    margin-bottom: 12px;
    font-weight: 500;
}

.gnm-service-card p:last-child {
    font-size: 14px;
    color: var(--gnm-text-muted);
    line-height: 1.7;
    margin: 0;
}

/* ============================================================
   WARRANTY
   ============================================================ */

.gnm-warranty {
    position: relative;
    overflow: hidden;
}

/* Forme décorative coin */
.gnm-warranty::after {
    content: '';
    position: absolute;
    bottom: -20px;
    right: 50px;
    width: 100px;
    height: 100px;
    border-right: 3px solid var(--gnm-border);
    border-bottom: 3px solid var(--gnm-border);
    opacity: 0.4;
    pointer-events: none;
}

.gnm-warranty h2 {
    font-size: 36px;
    margin-bottom: 25px;
}

.gnm-warranty p {
    line-height: 1.8;
    margin-bottom: 12px;
    color: var(--gnm-text-muted);
}

.gnm-warranty-logos {
    display: flex;
    gap: 40px;
    align-items: center;
    justify-content: center;
    background: var(--gnm-primary);
    padding: 40px 50px;
    border-radius: var(--gnm-radius);
    position: relative;
    overflow: hidden;
}

.gnm-warranty-logos::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 80px;
    height: 3px;
    background: var(--gnm-accent);
}

.gnm-warranty-logos img {
    height: 80px;
    width: auto;
    object-fit: contain;
}

/* ============================================================
   TEAM
   ============================================================ */

.gnm-team {
    background: var(--gnm-bg-light);
    position: relative;
    overflow: hidden;
}

.gnm-team::before {
    content: '';
    position: absolute;
    top: 40px;
    left: -40px;
    width: 150px;
    height: 150px;
    border: 2px solid rgba(233, 56, 56, 0.08);
    border-radius: 50%;
    pointer-events: none;
}

.gnm-team h2 {
    font-size: 36px;
}

.gnm-team-card {
    text-align: center;
    background: var(--gnm-bg);
    border-radius: var(--gnm-radius);
    padding: 30px 20px;
    height: 100%;
    border: 1px solid var(--gnm-border);
    transition: all var(--gnm-transition);
    position: relative;
    overflow: hidden;
}

.gnm-team-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--gnm-accent), var(--gnm-primary));
    transform: scaleX(0);
    transition: transform var(--gnm-transition);
}

.gnm-team-card:hover::after {
    transform: scaleX(1);
}

.gnm-team .row > div:first-child .gnm-team-card {
    border: 1px solid var(--gnm-accent);
}

.gnm-team-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--gnm-shadow);
}

.gnm-team-photo {
    width: 110px;
    height: 110px;
    border-radius: 50%;
    overflow: hidden;
    margin: 0 auto 15px;
    border: 3px solid var(--gnm-bg-light);
    position: relative;
}

.gnm-team-photo::after {
    content: '';
    position: absolute;
    inset: -5px;
    border-radius: 50%;
    border: 2px dashed var(--gnm-border);
    pointer-events: none;
}

.gnm-team-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(100%);
    transition: filter var(--gnm-transition);
}

.gnm-team-card:hover .gnm-team-photo img {
    filter: grayscale(0%);
}

.gnm-team-card h4 {
    font-size: 18px;
    margin-bottom: 4px;
}

.gnm-team-role {
    font-size: 13px;
    color: var(--gnm-accent);
    font-weight: 600;
    margin-bottom: 5px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.gnm-team-loc {
    font-size: 12px;
    color: var(--gnm-text-light);
    display: inline-block;
    margin-bottom: 10px;
}

.gnm-team-loc i {
    margin-right: 3px;
}

.gnm-team-bio {
    font-size: 13px;
    color: var(--gnm-text-muted);
    line-height: 1.6;
    margin: 0;
}

/* ============================================================
   GOOGLE REVIEWS
   ============================================================ */

.gnm-reviews {
    background: var(--gnm-bg-light);
}

/* Trustindex : header en noir, cartes en bleu foncé */
.gnm-reviews h2 {
    color: var(--gnm-text) !important;
}

.ti-widget.ti-goog .ti-rating-text,
.ti-widget.ti-goog .ti-rating-text strong,
.ti-widget.ti-goog .ti-rating-text strong span,
.ti-widget.ti-goog .ti-rating-text span,
.ti-widget.ti-goog .ti-footer,
.ti-widget.ti-goog .ti-footer span,
.ti-widget.ti-goog .ti-footer a {
    color: #1C1C1E !important;
}

/* Cartes d'avis : fond bleu foncé au lieu de noir */
.ti-widget.ti-goog .ti-review-item > .ti-inner,
.ti-widget.ti-goog .ti-load-more-reviews-container .ti-load-more-reviews-button {
    background: var(--gnm-primary) !important;
    background-color: var(--gnm-primary) !important;
}

.gnm-reviews-header {
    text-align: center;
    margin-bottom: 35px;
}

.gnm-reviews-header h2 {
    font-size: 36px;
    margin-bottom: 15px;
}

.gnm-reviews-rating {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
}

.gnm-stars {
    display: flex;
    gap: 3px;
}

.gnm-stars i {
    color: #FBBC04;
    font-size: 20px;
}

.gnm-rating-text {
    font-size: 16px;
    color: var(--gnm-text-muted);
}

.gnm-rating-text strong {
    font-size: 22px;
    color: var(--gnm-text);
}

.gnm-reviews-placeholder {
    text-align: center;
    padding: 40px;
    background: var(--gnm-bg);
    border-radius: var(--gnm-radius);
    border: 2px dashed var(--gnm-border);
}

.gnm-reviews-placeholder i.fab {
    font-size: 24px;
    color: #4285F4;
    margin-right: 8px;
}

.gnm-reviews-placeholder p {
    margin-bottom: 20px;
    color: var(--gnm-text-muted);
}

/* ============================================================
   CTA BANNER
   ============================================================ */

.gnm-cta-banner {
    position: relative;
    padding: 120px 0;
    background: url('../assets/images/banner2.jpg') center/cover no-repeat;
    text-align: center;
}

.gnm-cta-overlay {
    position: absolute;
    inset: 0;
    background: rgba(42, 61, 93, 0.88);
}

/* Formes décoratives */
.gnm-cta-overlay::before {
    content: '';
    position: absolute;
    top: 30px;
    left: 30px;
    width: 60px;
    height: 60px;
    border-left: 3px solid rgba(233, 56, 56, 0.3);
    border-top: 3px solid rgba(233, 56, 56, 0.3);
    pointer-events: none;
}

.gnm-cta-overlay::after {
    content: '';
    position: absolute;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    border-right: 3px solid rgba(233, 56, 56, 0.3);
    border-bottom: 3px solid rgba(233, 56, 56, 0.3);
    pointer-events: none;
}

.gnm-cta-content {
    position: relative;
    z-index: 1;
}

.gnm-cta-content h2 {
    color: #fff;
    font-size: 40px;
    margin-bottom: 10px;
    letter-spacing: -0.02em;
}

.gnm-cta-content p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 18px;
    margin-bottom: 35px;
}

.gnm-cta-content .gnm-btn-primary {
    background: var(--gnm-accent);
    border-color: var(--gnm-accent);
}

.gnm-cta-content .gnm-btn-primary:hover {
    background: #fff;
    border-color: #fff;
    color: var(--gnm-primary);
}

/* ============================================================
   PAGE HEADER
   ============================================================ */

.gnm-page-header {
    position: relative;
    background: url('../assets/images/fond_gnmotors.jpg') center center/cover no-repeat fixed;
    padding: 100px 0 50px;
    margin-top: 70px;
}

.gnm-page-header::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(42, 61, 93, 0.8);
}

/* Trait décoratif */
.gnm-page-header::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--gnm-accent) 0%, transparent 50%);
}

.gnm-page-header .container {
    position: relative;
    z-index: 1;
}

.gnm-page-header h1 {
    color: #fff;
    font-size: 40px;
    margin-bottom: 8px;
    letter-spacing: -0.02em;
}

.gnm-page-header p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 17px;
    margin: 0;
}

/* ============================================================
   FORMS / INPUTS
   ============================================================ */

.gnm-input {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid var(--gnm-border);
    border-radius: 8px;
    font-family: var(--gnm-font-body);
    font-size: 15px;
    color: var(--gnm-text);
    background: var(--gnm-bg);
    transition: border-color var(--gnm-transition), box-shadow var(--gnm-transition);
}

.gnm-input:focus {
    outline: none;
    border-color: var(--gnm-primary);
    box-shadow: 0 0 0 3px rgba(28, 28, 30, 0.08);
}

.gnm-label {
    display: block;
    font-family: var(--gnm-font-heading);
    font-size: 13px;
    font-weight: 600;
    color: var(--gnm-text);
    margin-bottom: 6px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.gnm-checkbox {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    font-size: 13px;
    color: var(--gnm-text-muted);
    cursor: pointer;
}

.gnm-checkbox input {
    margin-top: 3px;
}

/* ============================================================
   CONTACT PAGE
   ============================================================ */

.gnm-contact-card {
    background: var(--gnm-bg);
    padding: 40px;
    border-radius: var(--gnm-radius);
    border: 1px solid var(--gnm-border);
}

.gnm-contact-card h2 {
    font-size: 24px;
    margin-bottom: 25px;
}

.gnm-info-card {
    background: var(--gnm-bg-light);
    padding: 25px;
    border-radius: var(--gnm-radius);
    margin-bottom: 20px;
    border-left: 3px solid var(--gnm-accent);
}

.gnm-info-card h3 {
    font-size: 16px;
    margin-bottom: 12px;
}

.gnm-info-card h3 i {
    margin-right: 8px;
    color: var(--gnm-accent);
}

.gnm-info-card p {
    font-size: 14px;
    color: var(--gnm-text-muted);
    margin-bottom: 6px;
    line-height: 1.6;
}

.gnm-phone-link {
    font-family: var(--gnm-font-heading);
    font-size: 22px;
    font-weight: 700;
    color: var(--gnm-primary);
}

/* ============================================================
   ALERTS / CF7
   ============================================================ */

.wpcf7 input[type="text"],
.wpcf7 input[type="email"],
.wpcf7 input[type="tel"],
.wpcf7 input[type="url"],
.wpcf7 select,
.wpcf7 textarea {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid var(--gnm-border);
    border-radius: 8px;
    font-family: var(--gnm-font-body);
    font-size: 15px;
    color: var(--gnm-text);
    background: var(--gnm-bg);
    transition: border-color var(--gnm-transition), box-shadow var(--gnm-transition);
}

.wpcf7 input:focus,
.wpcf7 select:focus,
.wpcf7 textarea:focus {
    outline: none;
    border-color: var(--gnm-primary);
    box-shadow: 0 0 0 3px rgba(28, 28, 30, 0.08);
}

.wpcf7 input[type="submit"] {
    width: 100%;
    padding: 14px 30px;
    border-radius: 8px;
    font-family: var(--gnm-font-heading);
    font-size: 14px;
    font-weight: 600;
    background: var(--gnm-primary);
    color: #fff;
    border: 2px solid var(--gnm-primary);
    cursor: pointer;
    transition: all var(--gnm-transition);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.wpcf7 input[type="submit"]:hover {
    background: var(--gnm-accent);
    border-color: var(--gnm-accent);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(233, 56, 56, 0.3);
}

.wpcf7 label {
    display: block;
    font-family: var(--gnm-font-heading);
    font-size: 12px;
    font-weight: 600;
    color: var(--gnm-text);
    margin-bottom: 6px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.wpcf7 label br {
    display: none;
}

.wpcf7 textarea {
    rows: 4;
    min-height: auto;
    height: 80px;
}

.wpcf7-response-output {
    border-radius: 8px !important;
    font-family: var(--gnm-font-body) !important;
    font-size: 14px !important;
}

.wpcf7 .wpcf7-not-valid-tip {
    font-family: var(--gnm-font-body);
    font-size: 12px;
}

.gnm-alert {
    padding: 14px 18px;
    border-radius: 8px;
    font-size: 14px;
}

.gnm-alert-success {
    background: #e8f5e9;
    color: #2e7d32;
    border: 1px solid #a5d6a7;
}

.gnm-alert-error {
    background: #fce4ec;
    color: #c62828;
    border: 1px solid #ef9a9a;
}

/* ============================================================
   FOOTER
   ============================================================ */

.gnm-footer {
    background: var(--gnm-primary);
    color: rgba(255, 255, 255, 0.7);
    padding-top: 70px;
    position: relative;
}

/* Trait rouge en haut du footer */
.gnm-footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--gnm-accent), transparent 70%);
}

.gnm-footer-logo img {
    margin-bottom: 15px;
}

.gnm-footer-logo p {
    font-size: 14px;
    font-style: italic;
    opacity: 0.6;
}

.gnm-footer-title {
    color: #fff;
    font-family: var(--gnm-font-heading);
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 18px;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    padding-bottom: 10px;
}

.gnm-footer-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 25px;
    height: 2px;
    background: var(--gnm-accent);
}

.gnm-footer-address p,
.gnm-footer-contact p {
    font-size: 14px;
    margin-bottom: 8px;
    line-height: 1.5;
}

.gnm-footer-address i,
.gnm-footer-contact i {
    width: 18px;
    margin-right: 6px;
    color: var(--gnm-accent);
}

.gnm-footer-contact a {
    color: rgba(255, 255, 255, 0.7);
}

.gnm-footer-contact a:hover {
    color: #fff;
}

.gnm-footer-social {
    display: flex;
    gap: 10px;
    margin-top: 15px;
}

.gnm-footer-social a {
    width: 40px;
    height: 40px;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 18px;
    transition: all var(--gnm-transition);
}

.gnm-footer-social a:hover {
    background: var(--gnm-accent);
    transform: translateY(-3px);
}

.gnm-footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
    margin-top: 50px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    font-size: 13px;
}

.gnm-footer-bottom p {
    margin: 0;
    opacity: 0.5;
}

.gnm-footer-address a {
    color: rgba(255, 255, 255, 0.85);
}

.gnm-footer-address a:hover {
    color: #fff;
}

.gnm-footer-links {
    display: flex;
    gap: 20px;
}

.gnm-footer-links a {
    color: rgba(255, 255, 255, 0.5);
    font-size: 13px;
}

.gnm-footer-links a:hover {
    color: #fff;
}

/* ============================================================
   PAGE CONTENT
   ============================================================ */

.gnm-page-content {
    max-width: 800px;
    line-height: 1.8;
}

.gnm-page-content h2 {
    margin-top: 30px;
    margin-bottom: 15px;
}

.gnm-page-content p {
    margin-bottom: 15px;
}

/* ============================================================
   LISTING PAGE (archive-voiture.php)
   ============================================================ */

.gnm-listing-section {
    padding: 20px 0 80px;
}

.gnm-listing-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    padding-top: 15px;
}

.gnm-location-tabs {
    display: flex;
    gap: 6px;
}

.gnm-loc-tab {
    padding: 10px 22px;
    border-radius: 8px;
    font-family: var(--gnm-font-heading);
    font-size: 13px;
    font-weight: 600;
    color: var(--gnm-text-muted);
    background: var(--gnm-bg-light);
    border: 1px solid var(--gnm-border);
    text-decoration: none;
    transition: all var(--gnm-transition);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    cursor: pointer;
}

.gnm-loc-tab:hover {
    color: var(--gnm-primary);
    border-color: var(--gnm-primary);
}

.gnm-loc-tab.active {
    background: var(--gnm-primary);
    color: #fff;
    border-color: var(--gnm-primary);
}

.gnm-results-count {
    font-size: 15px;
    color: var(--gnm-text-muted);
}

.gnm-results-count span {
    font-family: var(--gnm-font-heading);
    font-weight: 700;
    color: var(--gnm-primary);
}

.gnm-filters {
    background: var(--gnm-bg-light);
    padding: 20px;
    border-radius: var(--gnm-radius);
    margin-bottom: 30px;
    border: 1px solid var(--gnm-border);
}

.gnm-select {
    width: 100%;
    padding: 10px 14px;
    border: 1px solid var(--gnm-border);
    border-radius: 8px;
    font-family: var(--gnm-font-body);
    font-size: 14px;
    color: var(--gnm-text);
    background: var(--gnm-bg);
    transition: border-color var(--gnm-transition);
}

.gnm-select:focus {
    outline: none;
    border-color: var(--gnm-primary);
}

.gnm-btn-reset {
    width: 100%;
    padding: 10px 14px;
    background: none;
    border: 1px solid var(--gnm-primary);
    border-radius: 8px;
    font-family: var(--gnm-font-heading);
    font-size: 13px;
    font-weight: 600;
    color: var(--gnm-primary);
    cursor: pointer;
    transition: all var(--gnm-transition);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.gnm-btn-reset:hover {
    background: var(--gnm-primary);
    color: #fff;
}

/* Card alias for listing */
.gnm-card {
    display: block;
    background: var(--gnm-bg);
    border-radius: var(--gnm-radius);
    overflow: hidden;
    text-decoration: none;
    color: var(--gnm-text);
    border: 1px solid var(--gnm-border);
    transition: all var(--gnm-transition);
    position: relative;
}

.gnm-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 0;
    background: var(--gnm-accent);
    transition: height var(--gnm-transition);
    z-index: 1;
    border-radius: var(--gnm-radius) 0 0 0;
}

.gnm-card:hover::before {
    height: 100%;
}

.gnm-card:hover {
    box-shadow: var(--gnm-shadow-hover);
    color: var(--gnm-text);
    border-color: transparent;
}

.gnm-card-image { position: relative; aspect-ratio: 4/3; overflow: hidden; }
.gnm-card-image img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s ease; }
.gnm-card:hover .gnm-card-image img { transform: scale(1.08); }
.gnm-card-price {
    position: absolute;
    bottom: 10px;
    right: 10px;
    background: var(--gnm-accent);
    color: #fff;
    padding: 8px 18px;
    border-radius: 8px;
    font-family: var(--gnm-font-heading);
    font-weight: 700;
    font-size: 15px;
}
.gnm-card-body { padding: 18px; }
.gnm-card-title {
    font-family: var(--gnm-font-heading);
    font-size: 15px;
    font-weight: 600;
    margin: 0 0 10px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.gnm-card-specs { display: flex; flex-wrap: wrap; gap: 6px; }
.gnm-spec {
    font-size: 12px;
    color: var(--gnm-text-muted);
    background: var(--gnm-bg-light);
    padding: 5px 10px;
    border-radius: 6px;
    font-weight: 500;
}
.gnm-spec i { color: var(--gnm-accent); margin-right: 4px; }
.gnm-no-results { text-align: center; padding: 60px; font-size: 18px; color: var(--gnm-text-muted); }

/* ============================================================
   SINGLE VEHICLE PAGE
   ============================================================ */

.gnm-breadcrumb {
    padding: 15px 0;
    background: var(--gnm-bg-light);
    border-bottom: 1px solid var(--gnm-border);
    margin-top: 70px;
    margin-bottom: 30px;
}
.admin-bar .gnm-header { top: 32px; }
.admin-bar .gnm-hero { margin-top: 102px; }
.admin-bar .gnm-breadcrumb { margin-top: 102px; }
.admin-bar .gnm-page-header { margin-top: 102px; padding-top: 132px; }
.admin-bar .gnm-listing-section { margin-top: 20px; }
@media (max-width: 782px) { .admin-bar .gnm-header { top: 46px; } .admin-bar .gnm-hero { margin-top: 70px; padding-top: 20px; } .admin-bar .gnm-breadcrumb { margin-top: 116px; } .admin-bar .gnm-listing-section { margin-top: 20px; } .admin-bar .gnm-page-header { margin-top: 116px; padding-top: 12px; } }

.gnm-breadcrumb a {
    font-size: 13px;
    color: var(--gnm-primary);
    font-weight: 500;
}
.gnm-breadcrumb .gnm-sep { margin: 0 8px; color: var(--gnm-text-light); }
.gnm-breadcrumb .gnm-current { font-size: 13px; color: var(--gnm-text-muted); }

.gnm-gallery-main {
    position: relative;
    border-radius: var(--gnm-radius);
    overflow: hidden;
    margin-bottom: 10px;
    cursor: pointer;
}
.gnm-gallery-main img { width: 100%; aspect-ratio: 4/3; object-fit: cover; display: block; }
.gnm-gallery-count {
    position: absolute;
    bottom: 12px;
    left: 12px;
    background: rgba(0,0,0,0.6);
    color: #fff;
    padding: 6px 14px;
    border-radius: 6px;
    font-size: 13px;
    font-weight: 500;
    backdrop-filter: blur(4px);
}
.gnm-gallery-thumbs { display: flex; gap: 6px; overflow-x: auto; padding-bottom: 6px; }
.gnm-thumb {
    width: 70px;
    height: 52px;
    object-fit: cover;
    border-radius: 8px;
    cursor: pointer;
    opacity: 0.45;
    transition: all var(--gnm-transition);
    flex-shrink: 0;
    border: 2px solid transparent;
}
.gnm-thumb:hover, .gnm-thumb.active {
    opacity: 1;
    border-color: var(--gnm-accent);
}

.gnm-vehicle-title {
    font-family: var(--gnm-font-heading);
    font-size: 26px;
    font-weight: 700;
    color: var(--gnm-text);
    margin: 0 0 5px;
    line-height: 1.2;
    letter-spacing: -0.02em;
}
.gnm-vehicle-location { font-size: 14px; color: var(--gnm-text-muted); margin: 0; }
.gnm-vehicle-location i { color: var(--gnm-accent); margin-right: 4px; }

.gnm-vehicle-price {
    font-family: var(--gnm-font-heading);
    font-weight: 700;
    font-size: 34px;
    color: var(--gnm-accent);
    margin: 15px 0 25px;
    letter-spacing: -0.03em;
    position: relative;
    display: inline-block;
}

/* Trait décoratif sous le prix */
.gnm-vehicle-price::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 40px;
    height: 3px;
    background: var(--gnm-accent);
    opacity: 0.3;
    border-radius: 2px;
}

.gnm-specs-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
    margin-bottom: 25px;
}
.gnm-spec-item {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    padding: 12px;
    background: var(--gnm-bg-light);
    border-radius: 10px;
    transition: all var(--gnm-transition);
    border: 1px solid transparent;
}
.gnm-spec-item:hover {
    border-color: var(--gnm-border);
    background: var(--gnm-bg);
}
.gnm-spec-item i {
    color: var(--gnm-accent);
    font-size: 15px;
    margin-top: 2px;
    width: 20px;
    text-align: center;
    flex-shrink: 0;
}
.gnm-spec-label {
    display: block;
    font-family: var(--gnm-font-heading);
    font-size: 10px;
    color: var(--gnm-text-light);
    text-transform: uppercase;
    letter-spacing: 0.8px;
    margin-bottom: 2px;
}
.gnm-spec-value {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: var(--gnm-text);
}

.gnm-cta-buttons { display: flex; flex-direction: column; gap: 10px; margin-bottom: 30px; }

.gnm-description {
    margin-top: 50px;
    padding-top: 40px;
    border-top: 1px solid var(--gnm-border);
    position: relative;
}
.gnm-description h2 { font-size: 24px; margin-bottom: 20px; }
.gnm-description-content { font-size: 15px; line-height: 1.8; color: var(--gnm-text-muted); }
.gnm-description-content p { margin-bottom: 12px; }
.gnm-desc-truncated { max-height: 400px; overflow: hidden; position: relative; }
.gnm-desc-truncated::after { content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 80px; background: linear-gradient(transparent, var(--gnm-bg)); }
.gnm-desc-toggle {
    display: block;
    margin-top: 10px;
    background: none;
    border: none;
    color: var(--gnm-accent);
    font-family: var(--gnm-font-heading);
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    padding: 0;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
.gnm-desc-toggle:hover { opacity: 0.8; }

.gnm-contact-form {
    margin-top: 50px;
    padding: 40px;
    background: var(--gnm-bg-light);
    border-radius: var(--gnm-radius);
    border: 1px solid var(--gnm-border);
    position: relative;
    overflow: hidden;
}

/* Demi-bordure décorative */
.gnm-contact-form::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 80px;
    height: 3px;
    background: var(--gnm-accent);
}

.gnm-contact-form h2 { font-size: 24px; margin-bottom: 25px; }
.gnm-single-vehicle { padding-bottom: 80px; }

/* Lightbox */
.gnm-lightbox {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.95);
    z-index: 99999;
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(10px);
}
.gnm-lightbox img { max-width: 90%; max-height: 85vh; object-fit: contain; border-radius: 8px; }
.gnm-lb-close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: rgba(255,255,255,0.1);
    border: none;
    color: #fff;
    font-size: 28px;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    cursor: pointer;
    z-index: 2;
    transition: all var(--gnm-transition);
    display: flex;
    align-items: center;
    justify-content: center;
}
.gnm-lb-close:hover { background: rgba(255,255,255,0.2); }
.gnm-lb-prev, .gnm-lb-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.15);
    color: #fff;
    font-size: 24px;
    width: 52px;
    height: 52px;
    cursor: pointer;
    border-radius: 50%;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all var(--gnm-transition);
}
.gnm-lb-prev { left: 20px; }
.gnm-lb-next { right: 20px; }
.gnm-lb-prev:hover, .gnm-lb-next:hover { background: rgba(255,255,255,0.2); }
.gnm-lb-counter {
    position: absolute;
    bottom: 25px;
    left: 50%;
    transform: translateX(-50%);
    color: rgba(255,255,255,0.6);
    font-family: var(--gnm-font-heading);
    font-size: 14px;
    letter-spacing: 1px;
}

/* ============================================================
   RESPONSIVE
   ============================================================ */

@media (max-width: 991px) {
    .gnm-hero { min-height: 40vh; }
    .gnm-hero-title { font-size: 36px; }
    .gnm-section { padding: 70px 0; }
    .gnm-specs-grid { grid-template-columns: 1fr 1fr; }
    .gnm-listing-header { flex-direction: column; align-items: flex-start; gap: 10px; }
    .gnm-listing-section { padding: 10px 0 60px; }
}

@media (max-width: 767px) {
    body { font-size: 14px; }
    h2 { font-size: 22px !important; }
    h3 { font-size: 16px !important; }
    h4 { font-size: 15px !important; }
    .gnm-hero { min-height: auto; margin-top: 70px; padding: 0; background-position: center top; background-size: cover; background-attachment: scroll; }
    .gnm-hero-overlay { background: linear-gradient(180deg, rgba(28,28,30,0.9) 0%, rgba(28,28,30,0.75) 60%, rgba(28,28,30,0.5) 100%); }
    .gnm-hero-content { padding-bottom: 28vh; }
    .gnm-hero-title { font-size: 26px !important; }
    .gnm-hero-text { font-size: 14px; margin-bottom: 25px; }
    .gnm-hero-buttons { flex-direction: row; gap: 10px; }
    .gnm-hero-buttons .gnm-btn { padding: 12px 20px; font-size: 12px; flex: 1; text-align: center; }
    .gnm-section { padding: 40px 0; }
    .gnm-section-header { flex-direction: column; align-items: flex-start; gap: 10px; }
    .gnm-section-header h2 { font-size: 24px !important; }
    .gnm-page-header { padding: 40px 0 20px; }
    .gnm-page-header h1 { font-size: 22px !important; }
    .gnm-listing-section { padding: 5px 0 40px; }
    .gnm-footer-bottom { flex-direction: column; gap: 10px; text-align: center; }
    .gnm-contact-card { padding: 20px; }
    .gnm-contact-form { padding: 20px; }
    .gnm-cta-banner { padding: 60px 0; }
    .gnm-cta-content h2 { font-size: 22px !important; }
    .gnm-cta-content p { font-size: 15px; }
    .gnm-vehicle-title { font-size: 20px; }
    .gnm-vehicle-price { font-size: 28px; }
    .gnm-btn { padding: 12px 24px; font-size: 13px; }
    .gnm-card-body { padding: 9px; }
    .wpcf7 input[type="text"],
    .wpcf7 input[type="email"],
    .wpcf7 input[type="tel"],
    .wpcf7 input[type="url"],
    .wpcf7 select { padding: 8px 12px; font-size: 13px; }
    .wpcf7 textarea { padding: 8px 12px; font-size: 13px; }
    .wpcf7 label { font-size: 11px; margin-bottom: 3px; }
    .wpcf7 p { margin-bottom: 8px !important; }
    .wpcf7 input[type="submit"] { padding: 10px 20px; font-size: 13px; }
    .gnm-contact-form { padding: 15px; margin-top: 30px; }
    .gnm-contact-form h2 { font-size: 18px !important; margin-bottom: 15px; }
    .gnm-description { margin-top: 0; padding-top: 20px; }
    .gnm-spec-item { padding: 3px; gap: 10px; }
    .gnm-description-content { line-height: 1.4; }
    .gnm-description-content p { margin-bottom: 8px; }
}
