/* ==========================================================================
   0. CONFIGURATION GLOBALE & RESET
   ========================================================================== */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  max-width: 100%;
  overflow-x: hidden;
}

body {
  font-family: 'Inter', sans-serif;
  background: #fff;
  color: #0F172A;
  max-width: 100%;
  overflow-x: hidden; 
}

/* Bloquer le scroll pendant la cinématique */
body.intro-active {
  overflow: hidden;
}


/* ==========================================================================
   1. CINÉMATIQUE D'INTRO & EFFET DE LUMIÈRE
   ========================================================================== */
#intro-screen {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: #0F172A;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  transition: opacity 0.6s ease, visibility 0.6s;
  padding: 20px;
}

#intro-screen.fade-out {
  opacity: 0;
  visibility: hidden;
}

.intro-content {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  width: 100%;
  max-width: 600px;
}

.intro-logo-icon {
  width: 60px;
  height: 60px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeInDown 0.8s forwards 0.2s ease;
}

.intro-logo-icon i {
  font-size: 30px;
  color: #fff;
}

.intro-title {
  font-family: 'Syne', sans-serif;
  font-size: clamp(28px, 7vw, 56px);
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin: 0;
  opacity: 0;
  width: 100%;
  word-wrap: break-word;
  background: linear-gradient(to right, #475569 20%, #fff 40%, #fff 60%, #475569 80%);
  background-size: 200% auto;
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
  animation: 
    fadeInUp 0.8s forwards 0.4s ease, 
    shineLight 2s linear infinite 1.2s;
}

@keyframes fadeInDown { to { opacity: 1; transform: translateY(0); } }
@keyframes fadeInUp { to { opacity: 1; transform: translateY(0); } }
@keyframes shineLight { to { background-position: 200% center; } }


/* ==========================================================================
   2. BARRE DE NAVIGATION (NAV)
   ========================================================================== */
.ap-nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: #fff;
  border-bottom: 1px solid #E8EAF0;
  padding: 0 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 70px;
}

.ap-nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
}

.ap-nav-logo-icon {
  width: 42px;
  height: 42px;
  background: #0F172A;
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.ap-nav-logo-icon i {
  font-size: 20px;
  color: #fff;
}

.ap-nav-logo-text {
  font-family: 'Syne', sans-serif;
  font-size: 17px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #0F172A;
}

.ap-nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
}

.ap-nav-links a {
  font-size: 14px;
  font-weight: 500;
  color: #475569;
  text-decoration: none;
  transition: color .2s;
}

.ap-nav-links a:hover {
  color: #0F172A;
}

.ap-nav-cta:hover {
  background: #0F172A;
  color: #fff;
}

/* --- BOUTON BURGER  --- */
.ap-burger-btn {
  display: none; /* Masqué sur PC */
  flex-direction: column;
  justify-content: space-between;
  width: 22px;
  height: 16px;
  background: transparent;
  border: none;
  cursor: pointer;
  z-index: 1000;
  padding: 0;
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1); 
}

.ap-burger-btn span {
  width: 100%;
  height: 2px;
  background-color: #0F172A;
  border-radius: 2px;
  transition: transform 0.4s cubic-bezier(0.68, -0.6, 0.32, 1.6), 
              opacity 0.3s ease;
}

/* --- CINÉMATIQUE ACTIVED --- */

/* Le bouton entier pivote à 180 degrés */
.ap-burger-btn.active {
  transform: rotate(180deg);
}

/* La barre du haut descend et pivote */
.ap-burger-btn.active span:nth-child(1) { 
  transform: translateY(7px) rotate(45deg); 
}

/* La barre du milieu s'effondre proprement avec un effet de scale */
.ap-burger-btn.active span:nth-child(2) { 
  opacity: 0;
  transform: scale(0);
}

/* La barre du bas remonte et pivote à l'opposé */
.ap-burger-btn.active span:nth-child(3) { 
  transform: translateY(-7px) rotate(-45deg); 
}

/* --- VOLET MENU MOBILE  --- */
.ap-mobile-menu {
  position: fixed;
  top: 70px;
  left: -100%; /* Masqué à gauche */
  width: 280px;
  height: calc(100vh - 70px);
  background: #ffffff;
  box-shadow: 10px 0 30px rgba(15, 23, 42, 0.04);
  border-right: 1px solid #E8EAF0;
  z-index: 99;
  transition: left 0.4s cubic-bezier(0.25, 1, 0.5, 1);
  display: flex;
  flex-direction: column;
}

.ap-mobile-menu.open {
  left: 0; /* Glisse proprement */
}

.ap-mobile-menu-header {
  padding: 24px 24px 12px 24px;
}

.ap-mobile-menu-title {
  font-family: 'Syne', sans-serif;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #94A3B8;
}

.ap-mobile-menu-links {
  display: flex;
  flex-direction: column;
  padding: 12px 16px;
  gap: 6px;
}

.ap-mobile-menu-links a {
  font-size: 15px;
  font-weight: 500;
  color: #475569;
  text-decoration: none;
  padding: 12px 16px;
  border-radius: 8px;
  transition: all 0.2s ease;
}

.ap-mobile-menu-links a:hover {
  background: #F1F5F9;
  color: #0F172A;
}


/* ==========================================================================
   3. SECTION HERO 
   ========================================================================== */
.ap-hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 40vw; 
  background: #b1bac43b;
  overflow: hidden;
}

.ap-hero-left {
  padding: 5vw 40px; 
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.ap-hero img, 
.ap-hero-right img {
  width: 100%;
  height: 100%;
  object-fit: cover; 
  object-position: center center; 
}

.ap-hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #0F172A;
  background: #F1F5F9;
  border: 1px solid #E2E8F0;
  padding: 7px 14px;
  border-radius: 4px;
  margin-bottom: 28px;
  width: fit-content;
}

.ap-hero-tag i {
  font-size: 14px;
}

.ap-hero-h1 {
  font-family: 'Syne', sans-serif;
  font-size: clamp(36px, 5vw, 64px);
  font-weight: 800;
  line-height: 1.0;
  color: #0F172A;
  text-transform: uppercase;
  letter-spacing: -0.01em;
  margin-bottom: 24px;
}

.ap-hero-h1 span {
  display: block;
  color: #3D4A5C;
}

.ap-hero-sub {
  font-size: 15px;
  color: #64748B;
  line-height: 1.65;
  max-width: 400px;
  margin-bottom: 36px;
}

.ap-hero-actions {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}

.ap-btn-dark {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  background: #0F172A;
  color: #fff;
  border: none;
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.05em;
  padding: 14px 24px;
  border-radius: 4px;
  cursor: pointer;
  transition: background .2s;
  text-decoration: none;
}

.ap-btn-dark:hover {
  background: #1E293B;
}

.ap-btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  background: #fff;
  color: #0F172A;
  border: 1.5px solid #CBD5E1;
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  font-weight: 500;
  padding: 13px 22px;
  border-radius: 4px;
  cursor: pointer;
  transition: border-color .2s;
}

.ap-btn-outline:hover {
  border-color: #0F172A;
}

.ap-hero-right {
  background: #F1F5F9;
  position: relative;
  overflow: hidden;
}

.ap-hero-right img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.ap-hero-avail {
  position: absolute;
  bottom: 24px;
  left: 24px;
  right: 24px;
  background: #fff;
  border-radius: 8px;
  padding: 16px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border: 1px solid #E2E8F0;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.ap-avail-dot {
  width: 9px;
  height: 9px;
  background: #22C55E;
  border-radius: 50%;
  margin-right: 8px;
  display: inline-block;
}

.ap-avail-text {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #0F172A;
}

.ap-avail-sub {
  font-size: 12px;
  color: #64748B;
}


/* ==========================================================
   4. STRUCTURE ALIGNEMENT TITRE + VISUEL MINI
   ========================================================== */
.ap-title-showroom-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 50px;
    margin-bottom: 50px;
    max-width: 1100px;
    margin-left: auto;
    margin-right: auto;
}

.ap-showroom-visual {
    flex: 0.9;
    max-width: 460px;
}

.ap-showroom-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
    border-radius: 12px;
    box-shadow: 0 20px 40px rgba(15, 23, 42, 0.08);
}

.ap-showroom-text-side {
    flex: 1.1;
    text-align: left;
}

.ap-showroom-kicker {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: #94A3B8;
    margin-bottom: 14px;
    text-align: left;
}

.ap-showroom-h2 {
    font-family: 'Syne', sans-serif;
    font-size: clamp(26px, 3.5vw, 42px);
    font-weight: 800;
    color: #0F172A;
    margin-bottom: 14px;
    line-height: 1.1;
    text-align: left;
}

.ap-showroom-desc {
    font-size: 15px;
    color: #64748B;
    max-width: 540px;
    line-height: 1.65;
    margin-bottom: 0;
    text-align: left;
}


/* ==========================================================================
   5. SECTION STATISTIQUES
   ========================================================================== */
.ap-stats {
  padding: 60px 40px;
  background: #F8FAFC;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  border-top: 1px solid #E2E8F0;
  border-bottom: 1px solid #E2E8F0;
}

.ap-stat {
  padding: 40px 20px;
  text-align: center;
  position: relative;
}

.ap-stat::after {
  content: '';
  position: absolute;
  right: 0;
  top: 20%;
  bottom: 20%;
  width: 1px;
  background: #E2E8F0;
}

.ap-stat:last-child::after {
  display: none;
}

.ap-stat-icon {
  width: 56px;
  height: 56px;
  border: 1.5px solid #E2E8F0;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}

.ap-stat-icon i {
  font-size: 22px;
  color: #0F172A;
}

.ap-stat-num {
  font-family: 'Syne', sans-serif;
  font-size: 52px;
  font-weight: 800;
  color: #0F172A;
  line-height: 1;
  margin-bottom: 10px;
}

.ap-stat-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #94A3B8;
}


/* ==========================================================================
   6. MISE EN PAGE STRUCTURELLE DES SECTIONS (Générique)
   ========================================================================== */
.ap-section {
  padding: 72px 40px;
}

.ap-section-alt {
  background: #F8FAFC;
}

.ap-section-kicker {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #94A3B8;
  margin-bottom: 14px;
}

.ap-section-h2 {
  font-family: 'Syne', sans-serif;
  font-size: clamp(26px, 3.5vw, 42px);
  font-weight: 800;
  color: #0F172A;
  margin-bottom: 14px;
  line-height: 1.1;
}

.ap-section-desc {
  font-size: 15px;
  color: #64748B;
  max-width: 540px;
  margin-bottom: 48px;
  line-height: 1.65;
}

.center {
  text-align: center;
}

.center .ap-section-desc {
  margin: 0 auto 48px;
}


/* ==========================================================================
   7. ONGLETS SERVICES (TABS)
   ========================================================================== */
.ap-tabs {
  display: flex;
  gap: 0;
  border: 1.5px solid #E2E8F0;
  border-radius: 8px;
  overflow: hidden;
  margin-bottom: 32px;
}

.ap-tab {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 16px 12px;
  background: #fff;
  border: none;
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #64748B;
  cursor: pointer;
  border-right: 1px solid #E2E8F0;
  transition: all .2s;
}

.ap-tab:last-child {
  border-right: none;
}

.ap-tab i {
  font-size: 16px;
}

.ap-tab.active {
  background: #0F172A;
  color: #fff;
}

.ap-tab-panel {
  display: none;
}

.ap-tab-panel.active {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  animation: fadeup .25s ease;
}

@keyframes fadeup {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}

.ap-service-check {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 20px;
  border: 1px solid #E2E8F0;
  border-radius: 8px;
  background: #fff;
}

.ap-check-box {
  width: 28px;
  height: 28px;
  background: #0F172A;
  border-radius: 5px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.ap-check-box i {
  font-size: 14px;
  color: #fff;
}

.ap-service-check h4 {
  font-size: 13px;
  font-weight: 700;
  color: #0F172A;
  margin-bottom: 4px;
}

.ap-service-check p {
  font-size: 12px;
  color: #64748B;
  line-height: 1.5;
}


/* ==========================================================================
   8. CARACTÉRISTIQUES (FEATURES)
   ========================================================================== */
.ap-feat-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.ap-feat-card {
  padding: 24px 20px;
  border: 1px solid #E2E8F0;
  border-radius: 10px;
  background: #fff;
}

.ap-feat-icon {
  width: 44px;
  height: 44px;
  border: 1.5px solid #E2E8F0;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
}

.ap-feat-icon i {
  font-size: 20px;
  color: #0F172A;
}

.ap-feat-card h4 {
  font-size: 14px;
  font-weight: 700;
  color: #0F172A;
  margin-bottom: 8px;
}

.ap-feat-card p {
  font-size: 13px;
  color: #64748B;
  line-height: 1.55;
}


/* ==========================================================
   SWIPER GALLERY
   ========================================================== */

.gallerySwiper{
  width:100%;
  padding:20px 0 70px;

}

.gallerySwiper .swiper-slide{
  width:420px;
  height:620px;
  border-radius:24px;
  overflow:hidden;

}

.gallerySwiper .swiper-slide img{
  width:100%;
  height:100%;
  object-fit:cover;
  display:block;

}

.gallerySwiper .swiper-button-next,
.gallerySwiper .swiper-button-prev{
  width:54px;
  height:54px;
  border-radius:50%;
  background:#fff;
  color:#111827;
  box-shadow:0 10px 25px rgba(0,0,0,.15);

}

.gallerySwiper .swiper-button-next::after,
.gallerySwiper .swiper-button-prev::after{
  font-size:20px;
  font-weight:bold;

}

.swiper-button-next,
.swiper-button-prev{
  opacity:0;
  visibility:hidden;
  transition:.3s;
}

.gallerySwiper:hover .swiper-button-next::after,
.gallerySwiper:hover .swiper-button-prev::after{
  opacity:1;
  visibility:visible;
}

@media(max-width:768px){

.gallerySwiper .swiper-slide{

width:90%;

height:420px;

}

}

/* ==========================================================================
   10. SECTION MARQUES
   ========================================================================== */
.brands-section {
  padding: 120px 20px;
  background: #f7f8fb;
}

.brands-card {
  position: relative;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0;
  background: transparent;
  border-radius: 0;
  min-height: auto;
  box-shadow: none;
  overflow: visible;
}

.brands-card::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 700px;
  height: 700px;
  background: radial-gradient(circle, rgba(0, 128, 255, 0.08), transparent 70%);
  pointer-events: none;
  z-index: 0;
}

.brands-content {
  position: relative;
  z-index: 2;
  text-align: center;
}

.brands-subtitle {
  display: block;
  font-size: 12px;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: #7c8798;
  margin-bottom: 25px;
}

.brands-title {
  margin-bottom: 50px;
}

.brands-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px;
  max-width: 1100px;
  margin: 0 auto;
}

.brands-list span {
  padding: 14px 28px;
  border-radius: 999px;
  background: rgba(255,255,255,.8);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(15,23,42,.05);
  color: #667085;
  font-size: 18px;
  font-weight: 500;
  transition: all .3s ease;
  box-shadow: 0 4px 12px rgba(15,23,42,.04);
}

.brands-list span:hover {
  color: #0080ff;
  transform: translateY(-4px);
  border-color: rgba(0,128,255,.15);
  box-shadow: 0 12px 24px rgba(0,128,255,.10);
}

.light {
  display: none;
}


/* ==========================================================================
   11. GRILLE DES TARIFS (PRICING PC)
   ========================================================================== */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr); 
  gap: 30px;
  margin-top: 60px;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}

.service-card {
  background: #fff;
  border-radius: 28px;
  overflow: hidden;
  border: 1px solid rgba(15,23,42,.08);
  box-shadow: 0 10px 30px rgba(15,23,42,.06);
  transition: .35s ease;
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(15,23,42,.10);
}

.service-card img {
  width: 100%;
  height: 240px;
  object-fit: cover;
  object-position: center 70%;
}

.service-body { padding: 24px; }

.service-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
}

.service-top h3 {
  margin: 0;
  font-size: 28px;
  font-weight: 500;
}

.service-top span {
  background: #eef1f5;
  padding: 8px 14px;
  border-radius: 999px;
  font-size: 14px;
  white-space: nowrap;
}

.service-body p {
  margin: 20px 0;
  color: #5b6472;
  line-height: 1.6;
}

.service-actions { display: flex; gap: 12px; }

.btn-grey, .btn-blue {
  flex: 1;
  text-align: center;
  padding: 14px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 600;
}

.btn-grey { background: #dfe3e8; color: #111827; }
.btn-blue { background: #0F172A; color: white; }


/* ==========================================================================
   AVIS GOOGLE - sliderr
   ========================================================================== */

.googleSwiper{
    width:100%;
    padding:20px 5px 70px;
    position:relative;
}

.googleSwiper .swiper-wrapper{
    align-items:stretch;
}

.googleSwiper .swiper-slide{
    height:auto;
    display:flex;
}

.ap-ti-card{

    width:100%;
    height:100%;

    background:#fff;

    border:1px solid #E5E7EB;

    border-radius:18px;

    padding:26px;

    box-shadow:
        0 12px 40px rgba(15,23,42,.05);

    transition:
        transform .35s,
        box-shadow .35s;
}

.ap-ti-card:hover{

    transform:translateY(-8px);

    box-shadow:
        0 22px 60px rgba(15,23,42,.10);

}

.ap-ti-header{
    display:flex;
    align-items:flex-start;
    gap:3px;
    position:relative;
    margin-bottom:20px;
}

.ap-ti-avatar{

    width:44px;
    height:44px;

    border-radius:50%;

    display:flex;
    justify-content:center;
    align-items:center;

    color:#fff;

    font-weight:700;

    font-size:16px;

    margin-right:12px;

    flex-shrink:0;

}

.ap-avatar-a{background:#10b981;}
.ap-avatar-m{background:#0284c7;}
.ap-avatar-s{background:#b45309;}
.ap-avatar-d{background:#ec4899;}
.ap-avatar-n{background:#f97316;}

.ap-ti-user{
    flex:1;
    display:flex;
    flex-direction:column;
    align-items:flex-start;
}

.ap-ti-name{
    font-size:15px;
    font-weight:600;
    color:#202124;
    line-height:1.2;
    margin-bottom:4px;
}

.ap-ti-date{
    font-size:12px;
    color:#5f6368;
    line-height:1.2;
}


.ap-ti-stars{
    display:flex;
    align-items:center;

    margin-top:6px;

    font-size:14px;
    letter-spacing:1px;
    color:#fbbc04;

    line-height:1;
}



.ap-ti-text{

    color:#475569;

    font-size:14px;

    line-height:1.8;

}

.ap-ti-icon-google{
    position:absolute;
    right:0;
    top:0;

    width:22px;
    height:22px;

    background:url("https://upload.wikimedia.org/wikipedia/commons/c/c1/Google_%22G%22_logo.svg") center/contain no-repeat;
}

.ap-ti-icon-google:hover{

    transform:scale(1.15);

}

/*==================================================
FLÈCHES
==================================================*/

.google-prev,
.google-next{

    width:46px!important;

    height:46px!important;

    border-radius:50%;

    background:#fff;

    border:1px solid #E5E7EB;

    box-shadow:
        0 10px 30px rgba(15,23,42,.08);

    color:#111827!important;

    transition:.25s;

}

.google-prev:hover,
.google-next:hover{

    transform:scale(1.06);

    background:#F8FAFC;

}

.google-prev::after,
.google-next::after{

    font-size:18px!important;

    font-weight:700;

}

/* ==========================================================
   FLÈCHES : CACHÉES PAR DÉFAUT
   ========================================================== */

.google-prev,
.google-next{
    opacity:0;
    visibility:hidden;
    transition:.3s;
}

.googleSwiper:hover .google-prev,
.googleSwiper:hover .google-next{
    opacity:1;
    visibility:visible;
}



/*==================================================
RESPONSIVE
==================================================*/

@media(max-width:991px){

    .google-prev,
    .google-next{

        width:42px!important;

        height:42px!important;

    }

}

@media(max-width:768px){

    .googleSwiper{

        padding-bottom:55px;

    }

    .google-prev,
    .google-next{

        display:none!important;

    }

    .ap-ti-card{

        border-radius:16px;

        padding:22px;

    }

    .ap-ti-text{

        font-size:13px;

    }

}

@media(max-width:480px){

    .googleSwiper{

        padding-left:8px;
        padding-right:8px;

    }

    .ap-ti-card{

        padding:20px;

    }

}

/* ==========================================================================
   12. FORMULAIRE DE CONTACT & CARTE
   ========================================================================== */
.ap-form-call-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  width: 100%;
  margin-top: 12px;
  background: #fff;
  color: #0F172A;
  border: 1.5px solid #CBD5E1;
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 14px;
  border-radius: 6px;
  text-decoration: none;
  cursor: pointer;
  transition: all .2s;
}

.ap-form-call-btn:hover {
  border-color: #0F172A;
  background: #F8FAFC;
}

.ap-contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}

.ap-form-group {
  margin-bottom: 18px;
}

.ap-form-group label {
  display: block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #64748B;
  margin-bottom: 8px;
}

.ap-form-group input, .ap-form-group textarea {
  width: 100%;
  background: #fff;
  border: 1.5px solid #E2E8F0;
  border-radius: 6px;
  padding: 12px 16px;
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  color: #0F172A;
  outline: none;
  transition: border-color .2s;
}

.ap-form-group input:focus, .ap-form-group textarea:focus {
  border-color: #0F172A;
}

.ap-form-group textarea {
  resize: vertical;
  min-height: 120px;
}

.ap-form-submit {
  width: 100%;
  background: #0F172A;
  color: #fff;
  border: none;
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 15px;
  border-radius: 6px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  transition: background .2s;
}

.ap-form-submit:hover {
  background: #1E293B;
}

/* ==========================================================
   STYLE COMPLIANCE RGPD FORMULAIRE
   ========================================================== */
.ap-form-rgpd {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin: 15px 0;
    text-align: left;
}

.ap-form-rgpd input[type="checkbox"] {
    margin-top: 4px;
    cursor: pointer;
}

.ap-form-rgpd label {
    font-family: 'Inter', sans-serif;
    font-size: 13px;
    color: #64748B;
    line-height: 1.4;
    cursor: pointer;
}

.ap-map-block {
  border: 1.5px solid #E2E8F0;
  border-radius: 10px;
  overflow: hidden;
  min-height: 340px;
}

.ap-map-block {
  border: 1.5px solid #E2E8F0;
  border-radius: 10px;
  overflow: hidden;
  min-height: 340px;
}

.ap-map-block iframe {
  width: 100%;
  height: 340px;
  border: none;
  display: block;
}

.ap-contact-info {
  margin-top: 20px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.ap-contact-info-row {
  display: flex;
  align-items: center;
  gap: 14px;
}

.ap-contact-info-icon {
  width: 36px;
  height: 36px;
  border: 1.5px solid #E2E8F0;
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.ap-contact-info-icon i {
  font-size: 16px;
  color: #0F172A;
}

.ap-contact-info-text {
  font-size: 13px;
  color: #475569;
}

.ap-contact-info-text strong {
  display: block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #0F172A;
  margin-bottom: 2px;
}


/* ==========================================================================
   13. FOOTER
   ========================================================================== */

.ap-footer{
    background:#0F172A;
    color:#94A3B8;
    padding:70px 30px 30px;
    border-top:1px solid #1E293B;
}

/* ==========================================================
   GRILLE
========================================================== */

.ap-footer-grid{

    max-width:1200px;

    margin:auto;

    display:grid;

    grid-template-columns:repeat(3,minmax(0,1fr));

    column-gap:80px;

    row-gap:50px;

    align-items:start;

    padding-bottom:50px;

}

.ap-footer-block{

    display:flex;

    flex-direction:column;

    align-items:flex-start;

    justify-content:flex-start;

}

/* ==========================================================
   TITRES
========================================================== */

.ap-footer-kicker{

    font-size:11px;

    font-weight:700;

    text-transform:uppercase;

    letter-spacing:.12em;

    color:#64748B;

    margin-bottom:18px;

}

/* ==========================================================
   LOGO
========================================================== */

.ap-footer-badge{

    display:inline-flex;

    align-items:center;

    justify-content:center;

    padding:5px 14px;

    border-radius:999px;

    margin-top:14px;

    background:#1E293B;

    color:#CBD5E1;

    font-size:11px;

    font-weight:600;

}

/* ==========================================================
   TEXTE
========================================================== */

.ap-footer-text{

    margin-top:16px;

    color:#64748B;

    line-height:1.7;

    font-size:14px;

    max-width:280px;

}

.ap-footer-subtext{

    margin-top:12px;

    font-size:13px;

    color:#64748B;

    line-height:1.6;

}

/* ==========================================================
   LIENS
========================================================== */

.ap-footer-links-list{

    list-style:none;

    padding:0;

    margin:0;

}

.ap-footer-links-list li{

    margin-bottom:14px;

}

.ap-footer-links-list a{

    text-decoration:none;

    color:#94A3B8;

    transition:.25s;

    font-size:14px;

}

.ap-footer-links-list a:hover{

    color:#ffffff;

    padding-left:4px;

}

.ap-footer-block:nth-child(2){
    align-items:center;
    text-align:center;
    transform: translateX(-12px);
}

/* ==========================================================
   BOUTON
========================================================== */

.ap-footer-btn-cta{

    display:inline-flex;

    align-items:center;

    gap:10px;

    padding:12px 22px;

    border-radius:999px;

    border:1px solid #334155;

    background:transparent;

    color:#ffffff;

    font-size:14px;

    font-weight:600;

    cursor:pointer;

    transition:.3s;

}

.ap-footer-btn-cta:hover{

    background:#1E293B;

    border-color:#475569;

}

/* ==========================================================
   COPYRIGHT
========================================================== */

.ap-footer-bottom-bar{

    max-width:1200px;

    margin:40px auto 0;

    padding-top:30px;

    border-top:1px solid #1E293B;

}

.ap-footer-bottom-bar p{

    display:flex;

    justify-content:center;

    align-items:center;

    flex-wrap:wrap;

    gap:8px;

    margin:0;

    font-size:13px;

    color:#64748B;

    line-height:1.8;

}

.ap-footer-bottom-bar a{

    color:#64748B;

    text-decoration:none;

    transition:.25s;

}

.ap-footer-bottom-bar a:hover{

    color:#ffffff;

}



/* ==========================================================================
   MEDIA QUERIES POUR LE RENDU 2 COLONNES SUR MOBILE
   ========================================================================== */

  /* RESPONSIVE MOBILE SÉCURISÉ */
@media (max-width: 768px) {
  .ap-footer-grid {
    grid-template-columns: 1fr; /* On empile sur mobile pour laisser le copyright respirer tout en bas */
    gap: 35px 0px;
  }
}


@media (max-width: 480px) {
  .ap-footer {
    padding: 40px 16px 20px 16px;
  }
}


/* ==========================================================================
   14. RESPONSIVE DESIGN ARCHITECTURÉ
   ========================================================================== */

/* --- TABLETTES ET PETITS ÉCRANS ORDI (Max 1024px) --- */
@media (max-width: 1024px) {
  .ap-nav {
    padding: 0 24px;
  }
  .ap-nav-links {
    gap: 20px;
  }
  .ap-hero {
    grid-template-columns: 1fr; 
    min-height: auto;
  }
  .ap-hero-left {
    padding: 60px 24px;
    text-align: center; 
    align-items: center;
  }
  .ap-hero-left h1 {
    font-size: 36px; 
    line-height: 1.2;
  }
  .ap-section {
    padding: 60px 24px;
  }
  .ap-feat-grid {
    grid-template-columns: repeat(2, 1fr); 
  }
  .ap-pricing-grid {
    grid-template-columns: repeat(2, 1fr); 
    justify-content: center;
  }
  .ap-pricing-grid .ap-price-card:last-child {
    grid-column: span 2;
    max-width: 50%;
    margin: 0 auto;
    width: 100%;
  }
  .ap-tab-panel.active {
    grid-template-columns: repeat(2, 1fr); 
  }
}

/* --- PETITES TABLETTES ET GRANDS TÉLÉPHONES (Max 900px) --- */
@media (max-width: 900px) {
  /* MODIFICATION ICI : On cache les liens et on active le burger */
  .ap-nav-links { 
    display: none !important; 
  }
  .ap-burger-btn {
    display: flex !important; /* Rend le bouton burger visible */
  }
  
  .ap-hero-right { 
    min-height: 300px; 
    height: 350px;
  }
  .ap-stats { 
    grid-template-columns: 1fr; 
    gap: 0;
  }
  .ap-stat::after {
    display: none; 
  }
  .ap-stat {
    border-bottom: 1px solid #E2E8F0;
    padding: 24px 20px;
  }
  .ap-stat:last-child {
    border-bottom: none;
  }
  .ap-gallery { 
    grid-template-columns: 1fr 1fr; 
    grid-template-rows: auto; 
  }

  .services-grid {
    display: grid !important;
    grid-template-columns: repeat(2, 1fr) !important; 
    gap: 20px !important;
  }


  .ap-gal-item.r2 { 
    grid-row: span 1; 
  }
  .ap-gal-item.c2 { 
    grid-column: span 2; 
  }
  .ap-contact-grid { 
    grid-template-columns: 1fr; 
  }
  .ap-footer-top {
    grid-template-columns: 1fr !important; /* Passe sur une seule colonne */
    gap: 32px;
  }
  .ap-footer-bottom {
    flex-direction: column-reverse; /* Met les liens au-dessus du copyright sur mobile */
    align-items: flex-start;
  }
  .ap-footer-grid {
    grid-template-columns: repeat(2, 1fr); /* Conserve l'esprit PhoneSpot en 2 colonnes */
    gap: 40px 20px;
  }
}

/* --- SMARTPHONES (Max 600px) --- */
@media (max-width: 600px) {
  .ap-nav, 
  .ap-hero-left, 
  .ap-section, 
  .ap-social-proof { 
    padding-left: 16px; 
    padding-right: 16px; 
  }
  
  .ap-nav-cta {
    padding: 8px 14px;
    font-size: 12px;
  }
  
  .ap-hero-left {
    padding-top: 40px;
    padding-bottom: 40px;
  }
  
  /* FIX CHEVAUCHEMENT MOBILE HERO */
  .ap-hero-left h1 {
    font-size: 26px !important; 
    line-height: 1.3 !important; 
    margin-bottom: 12px !important;
  }
  .ap-hero-left p {
    font-size: 14px !important;
    line-height: 1.5 !important; 
    margin-bottom: 20px !important;
  }

  /* FORÇAGE DE L'EMPLEMENT DES PACKS EN 1 COLONNE UNIQUE SUR TELEPHONE */
  .services-grid {
    grid-template-columns: 1fr !important;
    max-width: 440px;
    margin-left: auto;
    margin-right: auto;
    gap: 24px;
  }
  
  .ap-hero-avail {
    left: 12px;
    right: 12px;
    bottom: 12px;
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
    padding: 12px;
  }
  
  .ap-social-proof {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }

  .ap-tabs {
    flex-direction: column; 
    border-radius: 6px;
  }
  
  .ap-tab {
    border-right: none;
    border-bottom: 1px solid #E2E8F0;
    padding: 14px;
  }
  
  .ap-tab:last-child {
    border-bottom: none;
  }
  
  .ap-tab-panel.active { 
    grid-template-columns: 1fr; 
  }
  
  .ap-feat-grid { 
    grid-template-columns: 1fr; 
  }
  
  .ap-gallery { 
    grid-template-columns: 1fr; 
  }
  
  .ap-gal-item.c2 { 
    grid-column: span 1; 
  }
  
  .ap-pricing-grid {
    grid-template-columns: 1fr;
  }
  
  .ap-pricing-grid .ap-price-card:last-child {
    grid-column: span 1;
    max-width: 100%;
  }
  
  .ap-footer{
    padding:50px 24px 28px;
  }

  .ap-footer-grid{

    display:flex;
    flex-direction:column;
    align-items:center;

    gap:42px;

    text-align:center;
  }

  .ap-footer-block{

    width:100%;

    display:flex;
    flex-direction:column;

    align-items:center;

    text-align:center;

    transform:none !important;
  }

  /* -------- Logo -------- */

  .ap-nav-logo{

    justify-content:center;

    margin-bottom:10px;
  }

  .ap-footer-badge{

    margin-top:0;
    margin-bottom:16px;
  }

  .ap-footer-text{

    max-width:290px;

    margin:0 auto;

    line-height:1.7;
  }

  /* -------- Navigation -------- */

  .ap-footer-links-list{

    width:100%;

    display:grid;

    grid-template-columns:repeat(2,1fr);

    gap:16px 10px;

    margin-top:8px;
  }

  .ap-footer-links-list li{

    margin:0;
  }

  /* -------- RDV -------- */

  .ap-footer-btn-cta{

    margin:8px auto 18px;

    width:100%;

    max-width:300px;

    justify-content:center;
  }

  .ap-footer-subtext{

    max-width:250px;

    margin:auto;

    line-height:1.6;
  }

  /* -------- Copyright -------- */

  .ap-footer-bottom-bar{

    margin-top:10px;

    padding-top:22px;
  }

  .ap-footer-bottom-bar p{

    display:flex;

    flex-direction:column;

    align-items:center;

    gap:8px;

    font-size:12px;

    line-height:1.6;
  }

  .ap-footer-bottom-bar a{

    margin:0 6px;
  }
  /* Ajustement de la Mini en showroom mobile */
  .ap-title-showroom-wrapper {
    flex-direction: column-reverse; 
    gap: 24px;
  }
  .ap-showroom-text-side { text-align: center; }
  .ap-showroom-kicker, .ap-showroom-h2, .ap-showroom-desc {
    text-align: center !important;
    margin-left: auto !important;
    margin-right: auto !important;
  }

  /* Ajustement de la galerie d'images sur smartphone */
  .ap-slider-container { padding: 0 15px; }
  .ap-gal-item { flex: 0 0 85vw; height: 420px; }
  .ap-slider-arrow { display: none; }

  /* Ajustement des badges marques sur smartphone */
  .brands-section { padding: 80px 20px; }
  .brands-list { gap: 12px; }
  .brands-list span { padding: 12px 18px; font-size: 15px; }
  .brands-card::before { width: 400px; height: 400px; }
}