/* =========================================================
   AgRepair Preview – Thème clair (scopé WP)
   Tout est limité à .agrepair-preview
   ========================================================= */

.agrepair-preview {
  --bg: #ffffff;
  --panel: rgba(0,0,0,.06);
  --panel2: rgba(0,0,0,.09);
  --text: rgba(0,0,0,.92);
  --muted: rgba(0,0,0,.72);
  --line: rgba(0,0,0,.14);

  /* Couleur principale (marque) */
  --brand: #4e888f;
  --brand2: #3e7076;

  --shadow: 0 18px 50px rgba(0,0,0,.35);
  --radius: 18px;
  --max: 1120px;

  margin: 0;
  font-family: system-ui, -apple-system, Segoe UI, Roboto, Ubuntu, Cantarell, "Helvetica Neue", Arial, "Noto Sans", "Apple Color Emoji", "Segoe UI Emoji";
  line-height: 1.45;

  background:
    radial-gradient(1200px 650px at 20% 0%, rgba(78,136,143,0.15), transparent 55%),
    radial-gradient(900px 600px at 80% 10%, rgba(59,130,246,0.10), transparent 50%),
    radial-gradient(1000px 900px at 50% 110%, rgba(78,136,143,0.08), transparent 55%),
    var(--bg);
  
  /* Évite le collage avec le contenu WP autour */
  padding-bottom: 1px;
}

.agrepair-preview * {
  box-sizing: border-box;
}
.agrepair-preview a {
  color: inherit;
  text-decoration: none;
}
.agrepair-preview img {
  max-width: 100%;
  display: block;
}
.agrepair-preview p {
  margin: 0;
}
.agrepair-preview h1,
.agrepair-preview h2,
.agrepair-preview h3 {
  margin: 0;
}

/* Container */
.agrepair-preview .container {
  width: min(var(--max), calc(100% - 40px));
  margin: 0 auto;
}

/* ---------- Header ---------- */
.agrepair-preview header {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(10px);
  background: rgba(255,255,255,.85);
  border-bottom: 1px solid rgba(0,0,0,.12);
}

.agrepair-preview .nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 14px 0;
  flex-wrap: wrap;
}

.agrepair-preview .brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  letter-spacing: .2px;
}

.agrepair-preview .logo-img {
  height: 36px;
  width: auto;
  display: block;
}

.agrepair-preview .brand span {
  opacity: .95;
  font-size: 18px;
}

.agrepair-preview .menu {
  display: flex;
  align-items: center;
  gap: 18px;
}

.agrepair-preview .menu a {
  font-size: 14px;
  color: var(--muted);
  padding: 8px 10px;
  border-radius: 10px;
}

.agrepair-preview .menu a:hover {
  background: rgba(0,0,0,.06);
  color: var(--text);
}

.agrepair-preview .cta {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

/* Boutons */
.agrepair-preview .btn {
  border: 1px solid var(--brand);
  background: #fff;
  color: var(--brand);
  padding: 10px 14px;
  border-radius: 12px;
  font-weight: 700;
  font-size: 14px;
  cursor: pointer;
  transition: transform .08s ease, background .2s ease, border-color .2s ease;
  user-select: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  white-space: nowrap;
}

.agrepair-preview .btn:hover {
  background: linear-gradient(135deg, var(--brand), var(--brand2));
  border-color: var(--brand);
  color: #fff;
}

.agrepair-preview .btn:active {
  transform: translateY(1px);
}


.agrepair-preview .btn-primary {
  background: linear-gradient(135deg, var(--brand), var(--brand2));
  border-color: rgba(78,136,143,.55);
  color: #fff;
  box-shadow: 0 18px 45px rgba(78,136,143,.22);
}

.agrepair-preview .btn-primary:hover {
  filter: brightness(1.2);
}

/* Burger / drawer (non utilisé en version claire) */
.agrepair-preview .burger {
  display: none !important;
}
.agrepair-preview .drawer {
  display: none !important;
}

/* ---------- Bandes de logos (brand strip) ---------- */
/* Responsive + stable même si SVG de tailles différentes */
.agrepair-preview .brand-strip {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(10px, 2vw, 18px);
  margin: 6px 0 12px;
  padding: 6px 8px;
}

.agrepair-preview .brand-strip img,
.agrepair-preview .brand-strip svg {
  height: clamp(16px, 2.2vw, 26px);
  width: auto;
  display: block;
  max-width: 100%;
}

.agrepair-preview .brand-strip .sep {
  width: 1px;
  height: clamp(16px, 2.2vw, 26px);
  background: rgba(0,0,0,.15);
}

/* ---------- Hero ---------- */
.agrepair-preview .hero {
  padding: 26px 0 28px;
}

.agrepair-preview .hero-grid {
  display: grid;
  grid-template-columns: 1.2fr .6fr;
  gap: 22px;
  align-items: stretch;
}

.agrepair-preview .hero-card {
  border-radius: var(--radius);
  border: 1px solid rgba(0,0,0,.12);
  background: #fff;
  box-shadow: var(--shadow);
  overflow: hidden;
  position: relative;
}

.agrepair-preview .hero-card .inner {
  padding: 30px;
}

.agrepair-preview .kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(78,136,143,.14);
  border: 1px solid rgba(78,136,143,.28);
  color: var(--text);
  font-weight: 700;
  font-size: 12px;
  letter-spacing: .25px;
}

.agrepair-preview .dot {
  width: 8px;
  height: 8px;
  border-radius: 99px;
  background: var(--brand);
  box-shadow: 0 0 0 6px rgba(78,136,143,.16);
}

.agrepair-preview h1 {
  margin: 14px 0 10px;
  font-size: clamp(28px, 3.3vw, 44px);
  line-height: 1.06;
  letter-spacing: -0.5px;
}

.agrepair-preview .lead {
  margin: 0 0 18px;
  color: var(--muted);
  font-size: 15.5px;
  max-width: 56ch;
}

.agrepair-preview .hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 16px;
}

.agrepair-preview .trust {
  display: flex;
  gap: 12px;
  margin-top: 18px;
  padding-top: 16px;
  border-top: 1px solid rgba(0,0,0,.10);
  color: var(--muted);
  font-size: 13px;
  flex-wrap: wrap;
}

.agrepair-preview .trust b {
  color: var(--text);
}

/* Points forts (icônes) */
.agrepair-preview .icon-row {
  margin-top: 18px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}

.agrepair-preview .icon-card {
  border-radius: 15px;
  border: 1px solid rgba(0,0,0,.10);
  background: rgba(0,0,0,.05);
  padding: 14px;
  display: flex;
  gap: 12px;
  align-items: flex-start;
  min-height: 92px;
}

.agrepair-preview .ic {
  width: 36px;
  height: 36px;
  border-radius: 14px;
  background: rgba(78,136,143,.14);
  border: 1px solid rgba(78,136,143,.28);
  display: grid;
  place-items: center;
  flex: 0 0 auto;
}

.agrepair-preview .icon-card b {
  display: block;
  font-size: 13px;
  margin-bottom: 2px;
}

.agrepair-preview .icon-card span {
  color: var(--muted);
  font-size: 12.5px;
  display: block;
}

/* Sidebar (panels à droite du hero) */
.agrepair-preview .side {
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.agrepair-preview .side .panel {
  border-radius: 16px;
  border: 1px solid rgba(0,0,0,.10);
  background: rgba(0,0,0,.05);
  padding: 16px;
}

.agrepair-preview .side h3 {
  margin: 0 0 6px;
  font-size: 14px;
  letter-spacing: .2px;
}

.agrepair-preview .side p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
}

.agrepair-preview .pill-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 10px;
}

.agrepair-preview .pill {
  font-size: 12px;
  color: rgba(0,0,0,.85);
  background: rgba(0,0,0,.06);
  border: 1px solid rgba(0,0,0,.10);
  padding: 7px 10px;
  border-radius: 999px;
}

/* ---------- Sections globales ---------- */
.agrepair-preview section {
  padding: 26px 0;
}

.agrepair-preview .section-title {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 14px;
  margin-bottom: 14px;
}

.agrepair-preview .section-title h2 {
  margin: 0;
  font-size: 20px;
  letter-spacing: -0.2px;
}

.agrepair-preview .section-title p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
}

.agrepair-preview .grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 12px;
}

.agrepair-preview .card {
  border-radius: var(--radius);
  border: 1px solid rgba(0,0,0,.10);
  background: rgba(0,0,0,.05);
  padding: 16px;
  box-shadow: 0 12px 35px rgba(0,0,0,.22);
}

/* Services (cartes) */
.agrepair-preview .service {
  grid-column: span 3;
  min-height: 160px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.agrepair-preview .service .top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.agrepair-preview .tag {
  font-size: 12px;
  padding: 6px 10px;
  border-radius: 999px;
  border: 1px solid rgba(0,0,0,.12);
  color: var(--muted);
  background: rgba(0,0,0,.05);
}

.agrepair-preview .service h3 {
  margin: 0;
  font-size: 15px;
  letter-spacing: -0.15px;
}

.agrepair-preview .service p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
}

.agrepair-preview .service ul {
  margin: 8px 0 0;
  padding-left: 16px;
  color: rgba(0,0,0,.78);
  font-size: 12.5px;
}

.agrepair-preview .service li {
  margin: 4px 0;
}

/* Étapes + Contact */
.agrepair-preview .steps {
  grid-column: span 7;
}
.agrepair-preview .steps ol {
  margin: 10px 0 0;
  padding-left: 18px;
  color: rgba(0,0,0,.82);
}
.agrepair-preview .steps li {
  margin: 10px 0;
  color: rgba(0,0,0,.82);
  font-size: 13px;
}
.agrepair-preview .steps li b {
  color: var(--text);
}
.agrepair-preview .steps small {
  color: var(--muted);
}

.agrepair-preview .contact {
  grid-column: span 5;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

/* Formulaires */
.agrepair-preview label {
  font-size: 12px;
  color: rgba(0,0,0,.75);
  display: block;
  margin-bottom: 6px;
}

.agrepair-preview input,
.agrepair-preview textarea,
.agrepair-preview select {
  width: 100%;
  border-radius: 14px;
  border: 1px solid rgba(0,0,0,.14);
  background: #fff;
  color: var(--text);
  padding: 11px 12px;
  outline: none;
  font-size: 14px;
}

.agrepair-preview textarea {
  min-height: 108px;
  resize: vertical;
}

.agrepair-preview .row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.agrepair-preview .note {
  font-size: 12px;
  color: var(--muted);
  margin: 0;
}

/* ---------- Décalage ancre scroll (header sticky) ---------- */
/* Permet aux ancres (#contact, #process, etc.) de ne pas être cachées sous le header */
.agrepair-preview [id] {
  scroll-margin-top: 92px;
}
@media (max-width: 680px) {
  .agrepair-preview [id] {
    scroll-margin-top: 120px;
  }
}

/* ---------- Footer ---------- */
.agrepair-preview footer {
  margin-top: 18px;
  padding: 26px 0 34px;
  border-top: 1px solid rgba(0,0,0,.10);
  color: var(--muted);
  font-size: 13px;
}

.agrepair-preview .foot {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

.agrepair-preview .foot b {
  color: var(--text);
}

.agrepair-preview .links {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.agrepair-preview .links a {
  padding: 6px 10px;
  border-radius: 10px;
  border: 1px solid rgba(0,0,0,.10);
  background: rgba(0,0,0,.04);
}

.agrepair-preview .links a:hover {
  background: rgba(0,0,0,.07);
}

/* ---------- Responsive ---------- */
@media (max-width: 980px) {
  .agrepair-preview .hero-grid {
    grid-template-columns: 1fr;
  }
  .agrepair-preview .icon-row {
    grid-template-columns: 1fr 1fr;
  }
  .agrepair-preview .service {
    grid-column: span 6;
  }
  .agrepair-preview .steps {
    grid-column: span 12;
  }
  .agrepair-preview .contact {
    grid-column: span 12;
  }
}

@media (max-width: 680px) {
  /* Layout mobile propre (sans burger) pour le header */
  .agrepair-preview .container {
    width: min(var(--max), calc(100% - 28px));
  }
  .agrepair-preview .nav {
    gap: 10px;
  }

  .agrepair-preview .menu {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    width: 100%;
  }

  .agrepair-preview .menu a {
    padding: 8px 10px;
    border: 1px solid rgba(0,0,0,.10);
    background: rgba(0,0,0,.04);
  }

  .agrepair-preview .cta {
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
  }

  .agrepair-preview .cta .btn {
    width: 100%;
  }

  .agrepair-preview .row {
    grid-template-columns: 1fr;
  }
  .agrepair-preview .icon-row {
    grid-template-columns: 1fr;
  }
  .agrepair-preview .service {
    grid-column: span 12;
  }
}

/* =========================================================
   Zones & infos: empiler les cartes en mobile
   ========================================================= */
@media (max-width: 980px) {
  #zones .grid {
    grid-template-columns: 1fr;
  }
  /* Override des grid-column inline */
  #zones .grid > .card {
    grid-column: 1 / -1 !important;
  }
}

/* =========================================================
   Mobile: suppression du menu burger + drawer (déjà masqués)
   ========================================================= */
@media (max-width: 680px) {
  .burger {
    display: none !important;
  }
  .drawer {
    display: none !important;
  }
}

/* =========================================================
   Carrousel (mini-carousel) + images
   ========================================================= */
.agrepair-preview .mini-carousel {
  margin-top: 12px;
  border-radius: 14px;
  border: 1px solid rgba(0,0,0,.10);
  background: rgba(0,0,0,.04);
  overflow: hidden;
  position: relative;
  height: 220px; /* remplit le bas de la carte sur PC */
}
@media (max-width: 680px) {
  .agrepair-preview .mini-carousel {
    height: 180px;
  }
}

.agrepair-preview .mc-track {
  height: 100%;
  display: flex;
  transition: transform .45s ease;
  will-change: transform;
}

.agrepair-preview .mc-slide {
  min-width: 100%;
  height: 100%;
}

.agrepair-preview .mc-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  opacity: .92;
}

/* Boutons de navigation du carousel */
.agrepair-preview .mc-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 38px;
  height: 38px;
  border-radius: 12px;
  border: 1px solid rgba(255,255,255,.12);
  background: rgba(8,14,26,.55);
  color: rgba(255,255,255,.9);
  cursor: pointer;
  display: grid;
  place-items: center;
}
.agrepair-preview .mc-btn.prev {
  left: 10px;
}
.agrepair-preview .mc-btn.next {
  right: 10px;
}

.agrepair-preview .mc-btn:hover {
  background: rgba(255,255,255,.08);
}

/* Indicateurs (dots) */
.agrepair-preview .mc-dots {
  position: absolute;
  left: 50%;
  bottom: 10px;
  transform: translateX(-50%);
  display: flex;
  gap: 6px;
  padding: 6px 8px;
  border-radius: 999px;
  background: rgba(0,0,0,.22);
  border: 1px solid rgba(255,255,255,.10);
}

.agrepair-preview .mc-dot {
  width: 8px;
  height: 8px;
  border-radius: 99px;
  background: rgba(255,255,255,.35);
}

.agrepair-preview .mc-dot.active {
  background: var(--brand);
}

/* =========================================================
   Carousel principal + flèches (lightbox)
   ========================================================= */
.agrepair-preview .mini-carousel {
  margin-top: 12px;
  height: 320px; /* plus grand sur écran large */
  border-radius: 14px;
  overflow: hidden;
  background: rgba(0,0,0,.04);
  border: 1px solid rgba(0,0,0,.10);
}
@media (max-width: 980px) {
  .agrepair-preview .mini-carousel {
    height: 240px;
  }
}
@media (max-width: 680px) {
  .agrepair-preview .mini-carousel {
    height: 200px;
  }
}

.agrepair-preview .mc-imgbtn {
  width: 100%;
  height: 100%;
  border: 0;
  padding: 0;
  background: transparent;
  cursor: zoom-in;
}

.agrepair-preview .mc-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Flèches du carousel principal */
.agrepair-preview .mc-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 42px;
  height: 42px;
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,.14);
  background: rgba(8,14,26,.60);
  color: rgba(255,255,255,.92);
  cursor: pointer;
  display: grid;
  place-items: center;
  font-size: 22px;
  line-height: 1;
  z-index: 2;
}
.agrepair-preview .mc-btn.prev {
  left: 12px;
}
.agrepair-preview .mc-btn.next {
  right: 12px;
}

.agrepair-preview .mc-btn:hover {
  background: rgba(255,255,255,.08);
}

/* =========================================================
   Lightbox (affichage photo en grand)
   ========================================================= */
.agrepair-preview .mc-lightbox {
  position: fixed;
  inset: 0;
  display: none;
  z-index: 9999;
  background: rgba(0,0,0,.30);
  padding: 18px;
}

.agrepair-preview .mc-lightbox.open {
  display: grid;
  place-items: center;
}

.agrepair-preview .mc-lb-inner {
  position: relative;
  width: min(1100px, 96vw);
  max-height: 92vh;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(0,0,0,.18);
  background: rgba(8,14,26,.75);
}

.agrepair-preview .mc-lb-inner img {
  width: 100%;
  height: 100%;
  max-height: 92vh;
  object-fit: contain;
  display: block;
}

.agrepair-preview .mc-lb-close {
  position: absolute;
  top: 10px;
  right: 10px;
  width: 42px;
  height: 42px;
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,.18);
  background: rgba(8,14,26,.70);
  color: rgba(255,255,255,.92);
  cursor: pointer;
  display: grid;
  place-items: center;
  z-index: 1;
}
.agrepair-preview .mc-lb-close:hover {
  background: rgba(255,255,255,.12);
}
/* (curseur en main plutôt que loupe sur images de mini-carousel) */
.agrepair-preview .mc-imgbtn {
  cursor: pointer;
}

/* Navigation du lightbox (flèches) */
.agrepair-preview .mc-lb-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 46px;
  height: 46px;
  border-radius: 16px;
  border: 1px solid rgba(255,255,255,.18);
  background: rgba(8,14,26,.70);
  color: rgba(255,255,255,.92);
  cursor: pointer;
  display: grid;
  place-items: center;
  font-size: 24px;
  z-index: 2;
}
.agrepair-preview .mc-lb-btn.prev {
  left: 12px;
}
.agrepair-preview .mc-lb-btn.next {
  right: 12px;
}

.agrepair-preview .mc-lb-btn:hover {
  background: rgba(255,255,255,.12);
}

/* =========================================================
   Mobile : panels du hero déplacés sous le formulaire
   ========================================================= */

/* Par défaut : on cache la version mobile des panels */
.agrepair-preview .side-mobile {
  display: none;
}

/* En mobile : on cache la colonne de panels du hero (celle de droite en haut) */
@media (max-width: 980px) {
  .agrepair-preview .hero-grid > aside.hero-card.side {
    display: none;
  }
  /* ... et on affiche les panels en version mobile, sous la section Contact */
  .agrepair-preview .side-mobile {
    display: flex;
    flex-direction: column;
    gap: 12px;
    grid-column: span 12;
    padding: 16px; /* conserve le style de .card */
  }
  /* même style que les panels du hero */
  .agrepair-preview .side-mobile .panel {
    border-radius: 16px;
    border: 1px solid rgba(0,0,0,.10);
    background: rgba(0,0,0,.05);
    padding: 16px;
  }
}

/* Liens sociaux (pictogrammes et texte) */
.agrepair-preview .social-links {
  margin-top: 10px;
  display: grid;
  gap: 6px;
}

.agrepair-preview .social-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--text);
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  width: fit-content;
  opacity: .95;
}

.agrepair-preview .social-link:hover {
  opacity: 1;
  text-decoration: underline;
}

.agrepair-preview .social-ic {
  width: 22px;
  height: 22px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

/* Empêcher l'agrandissement du texte (iOS) dans zone #zones */
.agrepair-preview #zones .card p {
  font-size: 13px;
  line-height: 1.45;
}

/* Couleurs des icônes sociales (y compris via propriété stroke) */
.agrepair-preview .social-ic.ig {
  color: #e1306c;  /* Instagram */
}
.agrepair-preview .social-ic.fb {
  color: #1877f2;  /* Facebook */
}

/* Page protégée par mot de passe : rendre le formulaire lisible sur fond clair */
.agrepair-preview .post-password-form,
.agrepair-preview .post-password-form p,
.agrepair-preview .post-password-form label {
  color: #111 !important;
}

.agrepair-preview .post-password-form input[type="password"] {
  color: #111 !important;
  background: #fff !important;
  border: 1px solid rgba(0,0,0,.25) !important;
}

.agrepair-preview .post-password-form input[type="submit"] {
  color: #111 !important;
  background: #fff !important;
  border: 1px solid rgba(0,0,0,.25) !important;
  font-weight: 800;
  cursor: pointer;
}

/* Encadré avis (Google reviews) */
.agrepair-preview .g-reviews {
  margin-top: 14px;
  padding: 14px;
  border-radius: 16px;
  border: 1px solid rgba(0,0,0,.10);
  background: rgba(0,0,0,.04);
}

.agrepair-preview .g-reviews h4 {
  margin: 0 0 6px;
  font-size: 17px;
  color: var(--text);
}

.agrepair-preview .g-reviews-text {
  margin: 0;
  font-size: 13px;
  color: var(--muted);
}

.agrepair-preview .g-reviews-actions {
  margin-top: 10px;
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

/* =========================================================
   Desktop : agrandir les logos marques
   ========================================================= */
.agrepair-preview .brand-strip img,
.agrepair-preview .brand-strip svg {
    transition: transform 0.3s ease-in-out;
}

.agrepair-preview .brand-strip img:hover,
.agrepair-preview .brand-strip svg:hover {
    transform: scale(1.1);
	filter: brightness(1.15);
}

/* =========================================================
   Mobile : masquer les titres de sections
   ========================================================= */
@media (max-width: 680px){
  .agrepair-preview .section-title{
    display: none;
  }
}
/* Mobile */
@media (max-width: 980px){
  .agrepair-preview .hero-grid{ grid-template-columns: 1fr; }
  .agrepair-preview .icon-row{ grid-template-columns: 1fr 1fr; }
  .agrepair-preview .service{ grid-column: span 6; }
  .agrepair-preview .steps{ grid-column: span 12; }
  .agrepair-preview .contact{ grid-column: span 12; }
}

@media (max-width: 680px){
  .agrepair-preview .menu{ display:none; }
  .agrepair-preview .burger{ display:inline-block; }
  .agrepair-preview .row{ grid-template-columns: 1fr; }
  .agrepair-preview .icon-row{ grid-template-columns: 1fr; }
  .agrepair-preview .service{ grid-column: span 12; }
}

/* Drawer */
.agrepair-preview .drawer{
  display:none;
  border-top: 1px solid rgba(255,255,255,.10);
  padding: 10px 0 14px;
}

.agrepair-preview .drawer a{
  display:block;
  padding: 10px 0;
  color: rgba(255,255,255,.82);
}

.agrepair-preview .drawer a:hover{ color: var(--text); }
.agrepair-preview .drawer.open{ display:block; }

.agrepair-preview .card.service {
  transition: transform 0.2s ease;
}

.agrepair-preview .card.service:hover {
  transform: scale(1.05);
}


.agrepair-preview .icon-card {
  transition: transform 0.2s ease;
}

.agrepair-preview .icon-card:hover {
  transform: scale(1.05);
}

.agrepair-preview .menu {
	  transition: transform 0.2s ease;
}

.agrepair-preview .menu:hover {
  transform: scale(1.05);
}
.agrepair-preview .mini-carousel

.agrepair-preview .mini-carousel {
	  transition: transform 0.2s ease;
}

.agrepair-preview .mini-carousel:hover {
  transform: scale(1.02);
}

.agrepair-preview .g-reviews {
	  transition: transform 0.2s ease;
}

.agrepair-preview .g-reviews:hover {
  transform: scale(1.02);
}