/* ============================================================
   STYLE.CSS — TEMPLATE MOTRIO PREMIUM
   Charte : Rouge #E30613 / Jaune #FFD100 / Navy #0F1F3D
   ============================================================ */

/* ── VARIABLES ────────────────────────────────────────────── */
:root {
  --primary:       #E30613;
  --primary-dark:  #B8000F;
  --primary-light: #ff1a24;
  --accent:        #FFD100;
  --cta:           #F59E0B;
  --cta-dark:      #D97706;
  --navy:          #0f0f0f;
  --navy-light:    #1c1c1c;
  --dark:          #111827;
  --text:          #1f2937;
  --text-light:    #6b7280;
  --text-muted:    #9ca3af;
  --bg:            #f9fafb;
  --bg-2:          #f3f4f6;
  --white:         #ffffff;
  --border:        #e5e7eb;
  --shadow:        0 1px 3px rgba(0,0,0,0.1), 0 1px 2px rgba(0,0,0,0.06);
  --shadow-md:     0 4px 6px rgba(0,0,0,0.07), 0 2px 4px rgba(0,0,0,0.06);
  --shadow-lg:     0 10px 15px rgba(0,0,0,0.1), 0 4px 6px rgba(0,0,0,0.05);
  --shadow-xl:     0 20px 25px rgba(0,0,0,0.1), 0 10px 10px rgba(0,0,0,0.04);
  --radius:        12px;
  --radius-lg:     20px;
}

/* ── RESET ────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  color: var(--text);
  background: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
h1,h2,h3,h4 { line-height: 1.25; font-weight: 700; }
h1 { font-size: clamp(2rem, 5vw, 3.25rem); }
h2 { font-size: clamp(1.5rem, 3vw, 2.25rem); }
h3 { font-size: 1.25rem; }
h4 { font-size: 1rem; }
p  { color: var(--text-light); line-height: 1.7; }

.container { max-width: 1160px; margin: 0 auto; padding: 0 24px; }
section { padding: 80px 0; }

/* ── BUTTONS ──────────────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 13px 26px; border-radius: 8px;
  font-weight: 600; font-size: 0.95rem;
  border: none; cursor: pointer; transition: all 0.2s;
  white-space: nowrap;
}
.btn-rdv {
  background: var(--cta); color: var(--white);
  box-shadow: 0 4px 14px rgba(245,158,11,0.4);
}
.btn-rdv:hover { background: var(--cta-dark); transform: translateY(-1px); box-shadow: 0 6px 20px rgba(245,158,11,0.45); }

.btn-primary { background: var(--primary); color: var(--white); }
.btn-primary:hover { background: var(--primary-dark); transform: translateY(-1px); }

.btn-outline {
  background: transparent; color: var(--white);
  border: 2px solid rgba(255,255,255,0.5);
}
.btn-outline:hover { border-color: var(--white); background: rgba(255,255,255,0.1); }

.btn-ghost {
  background: transparent; color: var(--primary);
  border: 2px solid var(--primary);
}
.btn-ghost:hover { background: var(--primary); color: var(--white); }

.btn-wa { background: #25D366; color: var(--white); }
.btn-wa:hover { background: #1ebe59; transform: translateY(-1px); }

/* ── HEADER ───────────────────────────────────────────────── */
.header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  background: var(--navy);
  border-bottom: 3px solid var(--primary);
  box-shadow: 0 2px 20px rgba(0,0,0,0.3);
}
.header-inner {
  display: flex; align-items: center;
  justify-content: space-between; gap: 24px;
  height: 72px;
}
.header-logo {
  display: flex; align-items: center; gap: 14px;
  flex-shrink: 0;
}
.header-logo img, .header-logo .logo-svg {
  height: 42px; width: auto; object-fit: contain;
}
.header-logo-text {
  font-size: 1.05rem; font-weight: 700; color: var(--white);
  line-height: 1.2;
}
.header-logo-sub {
  font-size: 0.75rem; color: rgba(255,255,255,0.55);
  font-weight: 400;
}
.header-logo-divider {
  width: 1px; height: 36px; background: rgba(255,255,255,0.2);
}

.nav { display: flex; align-items: center; gap: 4px; }
.nav a {
  color: rgba(255,255,255,0.8); font-size: 0.92rem; font-weight: 500;
  padding: 8px 14px; border-radius: 7px; transition: all 0.15s;
}
.nav a:hover { color: var(--white); background: rgba(255,255,255,0.1); }
.nav a.active { color: var(--white); background: rgba(255,255,255,0.12); }
.nav .nav-rdv {
  background: var(--cta); color: var(--white) !important;
  padding: 9px 18px; margin-left: 8px;
  box-shadow: 0 3px 12px rgba(245,158,11,0.4);
  font-weight: 700;
}
.nav .nav-rdv:hover { background: var(--cta-dark); transform: translateY(-1px); }

.hamburger {
  display: none; flex-direction: column; gap: 5px;
  background: none; border: none; cursor: pointer; padding: 4px;
}
.hamburger span {
  display: block; width: 24px; height: 2px;
  background: var(--white); border-radius: 2px; transition: all 0.3s;
}

/* ── HERO VIDEO ───────────────────────────────────────────── */
.hero {
  position: relative; height: 100vh; min-height: 640px;
  display: flex; align-items: center; justify-content: center;
  overflow: hidden; margin-top: 72px;
}
.hero-video {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover; z-index: 0;
}
.hero-overlay {
  position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(to bottom, rgba(0,0,0,0.25) 0%, rgba(0,0,0,0.72) 100%);
}
.hero-content {
  position: relative; z-index: 2;
  text-align: center; color: var(--white);
  max-width: 820px; padding: 0 24px;
}
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(255,209,0,0.15);
  border: 1px solid rgba(255,209,0,0.4);
  border-radius: 50px; padding: 6px 16px;
  font-size: 0.82rem; font-weight: 600;
  color: var(--accent); margin-bottom: 24px;
  letter-spacing: 0.02em;
}
.hero h1 { color: var(--white); margin-bottom: 16px; }
.hero h1 span { color: var(--accent); }
.hero-sub {
  font-size: 1.15rem; color: rgba(255,255,255,0.8);
  margin-bottom: 36px; max-width: 580px;
  margin-left: auto; margin-right: auto;
}
.hero-buttons { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; margin-bottom: 48px; }
.hero-rating {
  display: inline-flex; align-items: center; gap: 10px;
  background: rgba(255,255,255,0.1); backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 50px; padding: 10px 20px;
}
.hero-rating-score { font-size: 1.3rem; font-weight: 800; color: var(--white); }
.hero-stars { color: var(--accent); font-size: 1rem; letter-spacing: 2px; }
.hero-rating-text { color: rgba(255,255,255,0.75); font-size: 0.88rem; }

/* ── MOTRIO STRIP ─────────────────────────────────────────── */
.motrio-strip {
  background: var(--primary);
  padding: 14px 0; text-align: center;
}
.motrio-strip p {
  color: var(--white); font-size: 0.9rem; font-weight: 600;
  margin: 0; letter-spacing: 0.01em;
}
.motrio-strip span { color: var(--accent); }

/* ── STATS BAR ────────────────────────────────────────────── */
.stats-bar { background: var(--navy); padding: 0; }
.stats-bar-inner {
  display: grid; grid-template-columns: repeat(4,1fr);
  border-top: 1px solid rgba(255,255,255,0.08);
}
.stat-item {
  display: flex; flex-direction: column; align-items: center;
  padding: 28px 16px; text-align: center;
  border-right: 1px solid rgba(255,255,255,0.08);
}
.stat-item:last-child { border-right: none; }
.stat-number {
  font-size: 2.2rem; font-weight: 800; color: var(--accent);
  line-height: 1;
}
.stat-label { font-size: 0.78rem; color: rgba(255,255,255,0.55); margin-top: 6px; font-weight: 500; text-transform: uppercase; letter-spacing: 0.05em; }

/* ── SECTION HEADER ───────────────────────────────────────── */
.section-header { text-align: center; margin-bottom: 56px; }
.section-tag {
  display: inline-block;
  background: rgba(227,6,19,0.08);
  color: var(--primary); border: 1px solid rgba(227,6,19,0.2);
  border-radius: 50px; padding: 5px 16px;
  font-size: 0.78rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.08em;
  margin-bottom: 14px;
}
.section-header h2 { margin-bottom: 16px; color: var(--dark); }
.section-header p { max-width: 560px; margin: 0 auto; }

/* ── SERVICES GRID ────────────────────────────────────────── */
#services { background: var(--bg); }
.services-grid {
  display: grid; grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}
.service-card {
  background: var(--white); border-radius: 14px;
  padding: 22px 22px; border: 1px solid var(--border);
  box-shadow: var(--shadow); transition: all 0.2s;
  display: flex; align-items: center; gap: 18px;
  text-decoration: none; color: inherit;
}
.service-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-2px); border-color: rgba(227,6,19,0.2); }
.service-icon {
  flex-shrink: 0;
  width: 52px; height: 52px;
  display: flex; align-items: center; justify-content: center;
}
.service-icon svg { width: 52px; height: 52px; }
.service-body { flex: 1; min-width: 0; }
.service-card h3 { font-size: 0.98rem; color: var(--dark); margin-bottom: 4px; line-height: 1.3; }
.service-card p { font-size: 0.82rem; color: var(--text-light); margin: 0; }
.service-arrow {
  flex-shrink: 0; width: 36px; height: 36px;
  background: var(--primary); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  transition: transform 0.2s;
}
.service-card:hover .service-arrow { transform: scale(1.1); }

/* ── TRUST SECTION ────────────────────────────────────────── */
.trust-section { background: var(--white); }
.trust-grid {
  display: grid; grid-template-columns: repeat(3,1fr); gap: 32px;
}
.trust-item {
  padding: 32px; border-radius: var(--radius);
  border: 1px solid var(--border);
  transition: all 0.25s;
}
.trust-item:hover { border-color: var(--primary); box-shadow: 0 0 0 1px var(--primary), var(--shadow-md); }
.trust-item-icon {
  font-size: 2rem; margin-bottom: 14px;
  width: 56px; height: 56px; display: flex; align-items: center; justify-content: center;
  background: linear-gradient(135deg, rgba(227,6,19,0.1), rgba(255,209,0,0.1));
  border-radius: 14px;
}
.trust-item h3 { font-size: 1.05rem; color: var(--dark); margin-bottom: 8px; }
.trust-item p { font-size: 0.88rem; }

/* ── REVIEWS ──────────────────────────────────────────────── */
.reviews-section { background: var(--bg); }
.reviews-header {
  display: flex; align-items: center; justify-content: space-between;
  background: var(--white); border-radius: var(--radius-lg);
  padding: 32px 40px; margin-bottom: 40px;
  box-shadow: var(--shadow-md); border: 1px solid var(--border);
}
.reviews-score-big {
  font-size: 4rem; font-weight: 800; color: var(--dark);
  line-height: 1; margin-bottom: 4px;
}
.reviews-stars-big { color: var(--accent); font-size: 1.4rem; letter-spacing: 3px; margin-bottom: 4px; }
.reviews-count { font-size: 0.88rem; color: var(--text-light); }
.motrio-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(227,6,19,0.06);
  border: 1px solid rgba(227,6,19,0.15);
  border-radius: 8px; padding: 10px 16px;
  font-size: 0.85rem; color: var(--primary); font-weight: 600;
}
.reviews-grid {
  display: grid; grid-template-columns: repeat(3,1fr); gap: 20px;
}
.review-card {
  background: var(--white); border-radius: var(--radius);
  padding: 24px; border: 1px solid var(--border);
  box-shadow: var(--shadow); transition: box-shadow 0.2s;
}
.review-card:hover { box-shadow: var(--shadow-md); }
.review-top { display: flex; align-items: center; gap: 12px; margin-bottom: 12px; }
.review-avatar {
  width: 40px; height: 40px; border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  color: white; display: flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: 1rem; flex-shrink: 0;
}
.review-name { font-weight: 600; font-size: 0.95rem; color: var(--dark); }
.review-date { font-size: 0.8rem; color: var(--text-muted); }
.review-stars { color: var(--accent); font-size: 0.9rem; letter-spacing: 1px; margin-bottom: 10px; }
.review-text { font-size: 0.88rem; color: var(--text-light); line-height: 1.6; }

/* ── CTA BAND ─────────────────────────────────────────────── */
.cta-band {
  background: linear-gradient(135deg, #111 0%, #1c1c1c 50%, #0f0f0f 100%);
  padding: 80px 0; text-align: center; position: relative; overflow: hidden;
}
.cta-band::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 4px;
  background: linear-gradient(90deg, var(--primary), var(--accent), var(--primary));
}
.cta-band h2 { color: var(--white); margin-bottom: 14px; }
.cta-band p  { color: rgba(255,255,255,0.7); max-width: 500px; margin: 0 auto 36px; }
.cta-buttons { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* ── BLOG ─────────────────────────────────────────────────── */
.blog-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 28px; }
.blog-card {
  background: var(--white); border-radius: var(--radius);
  border: 1px solid var(--border); overflow: hidden;
  box-shadow: var(--shadow); transition: all 0.25s;
}
.blog-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-3px); }
.blog-card-img {
  height: 180px; background: linear-gradient(135deg, #111, var(--primary));
  display: flex; align-items: center; justify-content: center;
  font-size: 3rem; position: relative; overflow: hidden;
}
.blog-card-img img { width: 100%; height: 100%; object-fit: cover; }
.blog-card-cat {
  position: absolute; top: 12px; left: 12px;
  background: var(--primary); color: var(--white);
  font-size: 0.72rem; font-weight: 700; text-transform: uppercase;
  padding: 4px 10px; border-radius: 50px; letter-spacing: 0.05em;
}
.blog-card-body { padding: 24px; }
.blog-card-date { font-size: 0.78rem; color: var(--text-muted); margin-bottom: 8px; }
.blog-card h3 { font-size: 1rem; color: var(--dark); margin-bottom: 10px; line-height: 1.4; }
.blog-card p { font-size: 0.85rem; margin-bottom: 16px; }
.blog-card-link { font-size: 0.85rem; font-weight: 600; color: var(--primary); }

/* Blog article page */
.blog-hero { background: linear-gradient(135deg, var(--primary) 0%, #111 100%); padding: 100px 0 60px; margin-top: 72px; }
.blog-hero-cat {
  display: inline-block; background: var(--primary); color: white;
  font-size: 0.75rem; font-weight: 700; text-transform: uppercase;
  padding: 4px 12px; border-radius: 50px; margin-bottom: 16px;
}
.blog-hero h1 { color: var(--white); max-width: 760px; margin-bottom: 16px; }
.blog-hero-meta { color: rgba(255,255,255,0.6); font-size: 0.9rem; }
.blog-content { max-width: 760px; margin: 0 auto; padding: 60px 24px; }
.blog-content h2 { font-size: 1.5rem; color: var(--dark); margin: 40px 0 16px; }
.blog-content h3 { font-size: 1.15rem; color: var(--dark); margin: 28px 0 12px; }
.blog-content p { margin-bottom: 20px; font-size: 1rem; }
.blog-content ul { margin: 0 0 20px 24px; list-style: disc; }
.blog-content ul li { margin-bottom: 8px; color: var(--text-light); }
.blog-tip {
  background: rgba(227,6,19,0.06); border-left: 4px solid var(--primary);
  border-radius: 0 8px 8px 0; padding: 20px 24px; margin: 32px 0;
}
.blog-tip strong { color: var(--primary); }

/* ── PAGE HERO (sous-pages) ───────────────────────────────── */
.page-hero {
  background: linear-gradient(135deg, var(--primary) 0%, #1a1a1a 100%);
  padding: 100px 0 60px; margin-top: 72px;
  border-bottom: 3px solid var(--primary);
}
.page-hero h1 { color: var(--white); margin-bottom: 12px; }
.page-hero p  { color: rgba(255,255,255,0.7); font-size: 1.05rem; }

/* ── SERVICES PAGE ────────────────────────────────────────── */
.service-detail {
  display: grid; grid-template-columns: 280px 1fr; gap: 48px;
  background: var(--white); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 40px;
  margin-bottom: 24px; transition: box-shadow 0.2s;
}
.service-detail:hover { box-shadow: var(--shadow-lg); }
.service-detail:target { border-color: var(--primary); box-shadow: 0 0 0 3px rgba(227,6,19,0.1); }
.service-left { display: flex; flex-direction: column; align-items: center; text-align: center; }
.service-big-icon {
  width: 72px; height: 72px; display: flex; align-items: center; justify-content: center;
  background: transparent; border-radius: var(--radius); margin: 0 auto 16px;
}
.service-big-icon svg { width: 52px; height: 52px; }
.service-tag {
  display: inline-block; background: rgba(227,6,19,0.08); color: var(--primary);
  font-size: 0.75rem; font-weight: 600; padding: 4px 12px; border-radius: 50px;
  margin-bottom: 16px; text-transform: uppercase; letter-spacing: 0.05em;
}
.service-detail h2 { color: var(--dark); margin-bottom: 12px; font-size: 1.5rem; }
.service-detail p { margin-bottom: 20px; }
.kw-tags { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 24px; }
.kw-tag {
  background: var(--bg); padding: 6px 14px; border-radius: 50px;
  font-size: 0.83rem; font-weight: 500; color: var(--text); border: 1px solid var(--border);
}
.guarantee-box {
  background: rgba(227,6,19,0.05); border: 1px solid rgba(227,6,19,0.15);
  border-radius: var(--radius); padding: 16px 20px;
  font-size: 0.88rem; color: var(--text);
}

/* ── CONTACT ──────────────────────────────────────────────── */
.contact-cards {
  display: grid; grid-template-columns: repeat(4,1fr);
  gap: 20px; margin-bottom: 56px;
}
.contact-card {
  background: var(--white); border-radius: var(--radius);
  border: 1px solid var(--border); padding: 28px 20px;
  text-align: center; box-shadow: var(--shadow);
  transition: all 0.2s;
}
.contact-card:hover { border-color: var(--primary); box-shadow: 0 0 0 1px var(--primary), var(--shadow-md); }
.contact-card-icon {
  font-size: 2rem; width: 56px; height: 56px;
  display: flex; align-items: center; justify-content: center;
  background: rgba(227,6,19,0.08); border-radius: 14px;
  margin: 0 auto 14px;
}
.contact-card h4 { font-size: 0.9rem; color: var(--dark); margin-bottom: 6px; }
.contact-card a { color: var(--primary); font-weight: 600; font-size: 0.95rem; }
.contact-card p { font-size: 0.78rem; color: var(--text-muted); margin-top: 4px; }

.contact-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; }

.map-embed {
  border-radius: var(--radius); overflow: hidden;
  box-shadow: var(--shadow-md); height: 320px;
}
.map-embed iframe { width: 100%; height: 100%; border: none; }

.horaires-table { width: 100%; border-collapse: collapse; }
.horaires-table tr { border-bottom: 1px solid var(--border); }
.horaires-table tr:last-child { border: none; }
.horaires-table tr.today td { color: var(--primary); font-weight: 700; }
.horaires-table tr.fermé td { color: var(--text-muted); }
.horaires-table td { padding: 11px 8px; font-size: 0.9rem; }
.horaires-table td:last-child { text-align: right; font-weight: 600; color: var(--dark); }

/* ── RESERVATION ──────────────────────────────────────────── */
.resa-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: start; }
.resa-form-card {
  background: var(--white); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 40px;
  box-shadow: var(--shadow-md);
}
.form-group { margin-bottom: 20px; }
.form-group label {
  display: block; font-size: 0.88rem; font-weight: 600;
  color: var(--dark); margin-bottom: 6px;
}
.form-group input, .form-group select, .form-group textarea {
  width: 100%; padding: 12px 16px;
  border: 1.5px solid var(--border); border-radius: 8px;
  font-family: inherit; font-size: 0.95rem; color: var(--text);
  background: var(--white); transition: border-color 0.2s;
  outline: none;
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
  border-color: var(--primary); box-shadow: 0 0 0 3px rgba(227,6,19,0.08);
}
.form-group textarea { min-height: 100px; resize: vertical; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.resa-option {
  display: flex; align-items: flex-start; gap: 16px;
  padding: 20px; background: var(--bg); border-radius: var(--radius);
  margin-bottom: 12px; border: 2px solid transparent; transition: all 0.2s; cursor: pointer;
}
.resa-option:hover { border-color: var(--primary); background: rgba(227,6,19,0.03); }
.resa-option-icon { font-size: 1.8rem; flex-shrink: 0; }
.resa-option h4 { font-size: 0.95rem; margin-bottom: 4px; color: var(--dark); }
.resa-option p  { font-size: 0.85rem; }
.resa-option a  { display: inline-block; margin-top: 8px; font-weight: 600; color: var(--primary); font-size: 0.88rem; }
.success-msg { display: none; text-align: center; padding: 32px; background: #e8f5e9; border-radius: var(--radius); }
.success-msg h3 { color: #2e7d32; margin-bottom: 8px; }

/* ── FOOTER ───────────────────────────────────────────────── */
.footer { background: var(--navy); color: rgba(255,255,255,0.7); }
.footer-top {
  padding: 64px 0 40px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 48px; }
.footer-brand h3 { color: var(--white); font-size: 1.1rem; margin: 16px 0 8px; }
.footer-brand p  { font-size: 0.88rem; margin-bottom: 20px; }
.footer-col h4 { color: var(--white); font-size: 0.85rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.06em; margin-bottom: 20px; }
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul li a { font-size: 0.9rem; color: rgba(255,255,255,0.6); transition: color 0.2s; }
.footer-col ul li a:hover { color: var(--accent); }
.footer-col ul li { font-size: 0.9rem; color: rgba(255,255,255,0.6); }
.footer-motrio-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(255,209,0,0.1); border: 1px solid rgba(255,209,0,0.25);
  border-radius: 8px; padding: 10px 14px;
  font-size: 0.82rem; font-weight: 600; color: var(--accent);
}
.footer-bottom {
  display: flex; align-items: center; justify-content: space-between;
  padding: 20px 0; font-size: 0.82rem; color: rgba(255,255,255,0.4);
}
.footer-bottom a { color: rgba(255,255,255,0.4); transition: color 0.2s; }
.footer-bottom a:hover { color: var(--accent); }

/* ── WHATSAPP FLOAT ───────────────────────────────────────── */
.whatsapp-float {
  position: fixed; bottom: 28px; right: 28px; z-index: 900;
  display: flex; align-items: center; gap: 10px;
}
.whatsapp-label {
  background: var(--dark); color: white;
  font-size: 0.8rem; font-weight: 600; padding: 8px 14px;
  border-radius: 8px; white-space: nowrap;
  opacity: 0; transform: translateX(8px);
  transition: all 0.2s; pointer-events: none;
}
.whatsapp-float:hover .whatsapp-label { opacity: 1; transform: translateX(0); }
.whatsapp-btn {
  width: 56px; height: 56px; background: #25D366;
  border-radius: 50%; display: flex; align-items: center;
  justify-content: center; box-shadow: 0 4px 20px rgba(37,211,102,0.45);
  transition: transform 0.2s;
}
.whatsapp-btn:hover { transform: scale(1.08); }
.whatsapp-btn svg { width: 28px; height: 28px; fill: white; }

/* ── MOTRIO LOGO SVG ──────────────────────────────────────── */
.motrio-logo-default {
  height: 42px; display: flex; align-items: center;
  background: var(--primary); border-radius: 6px; padding: 0 12px;
  gap: 0;
}
.motrio-logo-text {
  font-size: 1.25rem; font-weight: 800; color: white;
  letter-spacing: -0.02em; line-height: 1;
}
.motrio-logo-bar {
  width: 100%; height: 3px; background: var(--accent);
  border-radius: 2px; margin-top: 2px;
}

/* ── RESPONSIVE ───────────────────────────────────────────── */
@media (max-width: 960px) {
  .trust-grid { grid-template-columns: 1fr 1fr; }
  .reviews-grid { grid-template-columns: 1fr 1fr; }
  .blog-grid { grid-template-columns: 1fr 1fr; }
  .contact-cards { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: span 2; }
  .service-detail { grid-template-columns: 1fr; }
}

@media (max-width: 720px) {
  section { padding: 56px 0; }
  .stats-bar-inner { grid-template-columns: repeat(2,1fr); }
  .stat-item:nth-child(2) { border-right: none; }
  .services-grid { grid-template-columns: 1fr; }
  .trust-grid { grid-template-columns: 1fr; }
  .reviews-grid { grid-template-columns: 1fr; }
  .blog-grid { grid-template-columns: 1fr; }
  .contact-cards { grid-template-columns: 1fr 1fr; }
  .contact-layout { grid-template-columns: 1fr; }
  .resa-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-brand { grid-column: span 1; }
  .reviews-header { flex-direction: column; gap: 20px; text-align: center; padding: 24px; }
  .hero-buttons { flex-direction: column; align-items: center; }
  .cta-buttons { flex-direction: column; align-items: center; }
  .nav { display: none; position: fixed; inset: 72px 0 0; background: var(--navy); flex-direction: column; padding: 24px; gap: 8px; overflow-y: auto; }
  .nav.open { display: flex; }
  .nav a { padding: 14px 16px; font-size: 1rem; border-radius: 10px; }
  .nav .nav-rdv { margin-left: 0; text-align: center; justify-content: center; }
  .hamburger { display: flex; }
  .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }
}

@media (max-width: 480px) {
  .contact-cards { grid-template-columns: 1fr; }
}
