/* ========================================
   NomadView — Global Styles
   Premium portable screen rental Marseille
   ======================================== */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&display=swap');

/* ---- Reset & Base ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --blue: #1E6FD9;
  --blue-dark: #1457B3;
  --blue-light: #EBF2FC;
  --text: #111111;
  --text-secondary: #555555;
  --text-light: #888888;
  --border: #E5E7EB;
  --bg-gray: #F7F8FA;
  --green: #16a34a;
  --whatsapp: #22c55e;
  --red: #dc2626;
  --orange: #ea580c;
  --radius: 12px;
  --radius-lg: 18px;
  --shadow: 0 1px 3px rgba(0,0,0,0.06), 0 4px 16px rgba(0,0,0,0.06);
  --shadow-md: 0 4px 24px rgba(0,0,0,0.10);
  --shadow-lg: 0 8px 40px rgba(0,0,0,0.14);
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', system-ui, sans-serif;
  color: var(--text);
  background: #fff;
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { cursor: pointer; font-family: inherit; }
input, select, textarea { font-family: inherit; }

/* ---- Typography ---- */
h1 { font-size: clamp(2rem, 5vw, 3.5rem); font-weight: 800; line-height: 1.15; letter-spacing: -0.02em; }
h2 { font-size: clamp(1.5rem, 3.5vw, 2.25rem); font-weight: 700; line-height: 1.2; letter-spacing: -0.01em; }
h3 { font-size: 1.25rem; font-weight: 600; line-height: 1.3; }
h4 { font-size: 1rem; font-weight: 600; }
p { color: var(--text-secondary); line-height: 1.7; }

/* ---- Navbar ---- */
.navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  background: rgba(255,255,255,0.9);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
  height: 68px;
  display: flex; align-items: center;
  transition: box-shadow 0.3s;
}
.navbar.scrolled { box-shadow: var(--shadow-md); }
.navbar-inner {
  width: 100%; max-width: 1280px; margin: 0 auto;
  padding: 0 24px;
  display: flex; align-items: center; justify-content: space-between; gap: 24px;
}
.navbar-logo { display: flex; align-items: center; gap: 10px; }
/* Logo centré sur mobile uniquement (appliqué via JS/CSS responsive) */
.navbar-logo-center { position: static; transform: none; }
.navbar-logo img { height: 36px; width: auto; }
.navbar-logo-text { font-size: 1.2rem; font-weight: 800; color: var(--text); letter-spacing: -0.02em; }
.navbar-nav { display: flex; align-items: center; gap: 32px; }
.navbar-nav a {
  font-size: 0.875rem; font-weight: 500; color: var(--text-secondary);
  transition: color 0.2s;
}
.navbar-nav a:hover, .navbar-nav a.active { color: var(--blue); }
.navbar-actions { display: flex; align-items: center; gap: 10px; }
.btn-whatsapp-nav {
  display: flex; align-items: center; gap: 6px;
  background: #dcfce7; color: #15803d;
  border: none; border-radius: 8px;
  padding: 8px 14px; font-size: 0.8rem; font-weight: 600;
  transition: background 0.2s;
}
.btn-whatsapp-nav:hover { background: #bbf7d0; }
.btn-primary {
  background: var(--blue); color: #fff;
  border: none; border-radius: 8px;
  padding: 8px 18px; font-size: 0.875rem; font-weight: 600;
  transition: background 0.2s, transform 0.15s;
}
.btn-primary:hover { background: var(--blue-dark); transform: translateY(-1px); }
.btn-primary:active { transform: translateY(0); }

/* ---- Hamburger (mobile) ---- */
.hamburger { display: none; flex-direction: column; gap: 5px; background: none; border: none; padding: 4px; }
.hamburger span { display: block; width: 22px; height: 2px; background: var(--text); border-radius: 2px; transition: all 0.3s; }

/* ---- Container ---- */
.container { max-width: 1280px; margin: 0 auto; padding: 0 24px; }

/* ---- Section spacing ---- */
section { padding: 80px 0; }

/* ---- Buttons ---- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 12px 24px; border-radius: var(--radius); font-size: 0.9rem; font-weight: 600;
  border: none; transition: all 0.2s; cursor: pointer;
}
.btn-lg { padding: 16px 32px; font-size: 1rem; border-radius: 14px; }
.btn-blue { background: var(--blue); color: #fff; }
.btn-blue:hover { background: var(--blue-dark); transform: translateY(-1px); box-shadow: 0 4px 16px rgba(30,111,217,0.35); }
.btn-outline { background: transparent; color: var(--blue); border: 2px solid var(--blue); }
.btn-outline:hover { background: var(--blue-light); }
.btn-whatsapp { background: var(--whatsapp); color: #fff; }
.btn-whatsapp:hover { background: #16a34a; transform: translateY(-1px); box-shadow: 0 4px 16px rgba(34,197,94,0.4); }
.btn-gray { background: var(--bg-gray); color: var(--text); }
.btn-gray:hover { background: var(--border); }

/* ---- Badge ---- */
.badge {
  display: inline-flex; align-items: center; gap: 5px;
  padding: 4px 10px; border-radius: 99px; font-size: 0.75rem; font-weight: 600;
}
.badge-blue { background: var(--blue-light); color: var(--blue); }
.badge-green { background: #dcfce7; color: #15803d; }
.badge-orange { background: #fff7ed; color: #c2410c; }
.badge-gray { background: var(--bg-gray); color: var(--text-secondary); }
.badge-red { background: #fee2e2; color: #b91c1c; }

/* ---- Cards ---- */
.card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 24px;
  box-shadow: var(--shadow);
}

/* ---- Trust bar ---- */
.trust-bar {
  background: var(--bg-gray);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 16px 0;
}
.trust-bar-inner {
  display: flex; align-items: center; justify-content: center;
  flex-wrap: wrap; gap: 32px;
  max-width: 1280px; margin: 0 auto; padding: 0 24px;
}
.trust-item {
  display: flex; align-items: center; gap: 8px;
  font-size: 0.8rem; font-weight: 600; color: var(--text-secondary);
}
.trust-item i { color: var(--blue); font-size: 0.9rem; }

/* ---- Section header ---- */
.section-header { text-align: center; margin-bottom: 56px; }
.section-label {
  display: inline-block;
  background: var(--blue-light); color: var(--blue);
  font-size: 0.75rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em;
  padding: 5px 14px; border-radius: 99px; margin-bottom: 16px;
}
.section-header h2 { margin-bottom: 12px; }
.section-header p { max-width: 560px; margin: 0 auto; }

/* ---- Floating WhatsApp ---- */
.wa-float {
  position: fixed; bottom: 28px; right: 28px; z-index: 999;
  width: 56px; height: 56px;
  background: var(--whatsapp);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 20px rgba(34,197,94,0.5);
  transition: transform 0.2s, box-shadow 0.2s;
  animation: pulse-wa 2.5s infinite;
}
.wa-float:hover { transform: scale(1.08); box-shadow: 0 6px 28px rgba(34,197,94,0.65); animation: none; }
.wa-float i { color: #fff; font-size: 1.4rem; }

@keyframes pulse-wa {
  0%, 100% { box-shadow: 0 4px 20px rgba(34,197,94,0.5); }
  50% { box-shadow: 0 4px 32px rgba(34,197,94,0.75); }
}

/* ---- Toggle Semaine/Week-end ---- */
.price-toggle {
  display: flex; align-items: center;
  background: var(--bg-gray);
  border: 1px solid var(--border);
  border-radius: 10px; padding: 4px;
  gap: 2px;
}
.toggle-btn {
  padding: 8px 20px; border-radius: 8px; font-size: 0.85rem; font-weight: 600;
  border: none; background: transparent; color: var(--text-secondary);
  transition: all 0.2s;
}
.toggle-btn.active { background: var(--blue); color: #fff; box-shadow: 0 2px 8px rgba(30,111,217,0.3); }

/* ---- Product cards ---- */
.product-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 24px; }
.product-card {
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  background: #fff;
  overflow: hidden;
  transition: transform 0.25s, box-shadow 0.25s;
}
.product-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.product-card-image {
  width: 100%; height: 220px; object-fit: cover;
  background: var(--bg-gray);
}
.product-card-image img { width: 100%; height: 100%; object-fit: cover; }
.product-card-body { padding: 20px; }
.product-card-title { font-size: 1rem; font-weight: 700; margin-bottom: 6px; }
.product-card-price { font-size: 1.5rem; font-weight: 800; color: var(--blue); }
.product-card-price span { font-size: 0.85rem; font-weight: 500; color: var(--text-light); }
.product-card-desc { font-size: 0.85rem; color: var(--text-secondary); margin-top: 8px; }
.featured-card { border: 2px solid var(--blue); position: relative; }
.featured-badge {
  position: absolute; top: 16px; right: 16px;
  background: var(--blue); color: #fff;
  font-size: 0.7rem; font-weight: 700; padding: 3px 10px; border-radius: 99px;
}

/* ---- Steps section ---- */
.steps-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 24px; }
.step-card { text-align: center; padding: 32px 20px; }
.step-number {
  width: 48px; height: 48px; border-radius: 50%;
  background: var(--blue-light); color: var(--blue);
  font-size: 1.1rem; font-weight: 800;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 16px;
}
.step-card h3 { margin-bottom: 8px; font-size: 1rem; }

/* ---- Calendar widget ---- */
.calendar-widget {
  background: #fff; border: 1px solid var(--border); border-radius: var(--radius-lg);
  overflow: hidden;
}
.calendar-header {
  display: flex; align-items: center; justify-content: space-between;
  padding: 16px 20px;
  border-bottom: 1px solid var(--border);
}
.calendar-nav { background: none; border: none; color: var(--text); padding: 4px 8px; cursor: pointer; border-radius: 6px; transition: background 0.15s; }
.calendar-nav:hover { background: var(--bg-gray); }
.calendar-month { font-weight: 700; font-size: 0.95rem; }
.calendar-grid { display: grid; grid-template-columns: repeat(7, 1fr); gap: 0; padding: 12px; }
.calendar-day-label { text-align: center; font-size: 0.7rem; font-weight: 600; color: var(--text-light); padding: 6px 0; }
.calendar-day {
  aspect-ratio: 1; display: flex; align-items: center; justify-content: center;
  font-size: 0.78rem; font-weight: 500; border-radius: 8px;
  cursor: pointer; transition: all 0.15s;
}
.calendar-day:hover:not(.disabled):not(.empty) { background: var(--blue-light); color: var(--blue); }
.calendar-day.today { font-weight: 700; color: var(--blue); }
.calendar-day.selected { background: var(--blue) !important; color: #fff !important; font-weight: 700; }
.calendar-day.in-range { background: var(--blue-light); color: var(--blue); border-radius: 0; }
.calendar-day.range-start { border-radius: 8px 0 0 8px; }
.calendar-day.range-end { border-radius: 0 8px 8px 0; }
.calendar-day.disabled { background: #fee2e2; color: #b91c1c; text-decoration: line-through; cursor: not-allowed; font-size: 0.72rem; }
.calendar-day.past { color: var(--text-light); cursor: not-allowed; }
.calendar-day.empty { cursor: default; }

/* ---- Reviews ---- */
.reviews-layout { display: grid; grid-template-columns: 180px 1fr; gap: 40px; align-items: start; }
.reviews-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 20px; }
.review-card { padding: 24px; background: #fff; border: 1px solid var(--border); border-radius: var(--radius-lg); }
.review-stars { color: #f59e0b; font-size: 0.85rem; margin-bottom: 10px; }
.review-text { font-style: italic; font-size: 0.9rem; margin-bottom: 16px; }
.review-author { display: flex; align-items: center; gap: 12px; }
.review-avatar {
  width: 40px; height: 40px; border-radius: 50%;
  background: var(--blue-light); color: var(--blue);
  font-weight: 700; font-size: 0.85rem;
  display: flex; align-items: center; justify-content: center;
}
.review-name { font-weight: 600; font-size: 0.875rem; }
.review-location { font-size: 0.75rem; color: var(--text-light); }

/* ---- Gallery ---- */
.gallery-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; }
.gallery-grid img { border-radius: var(--radius); width: 100%; height: 220px; object-fit: cover; cursor: pointer; transition: opacity 0.2s; }
.gallery-grid img:hover { opacity: 0.9; }
.gallery-grid .gallery-main { grid-column: span 2; height: 280px; }

/* ---- Overflow global guard ---- */
html, body { max-width: 100%; overflow-x: hidden; }
.container { width: 100%; box-sizing: border-box; }

/* ---- Footer ---- */
.footer {
  background: var(--text);
  color: rgba(255,255,255,0.8);
  padding: 60px 0 32px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}
.footer-brand p { font-size: 0.85rem; margin-top: 12px; color: rgba(255,255,255,0.55); line-height: 1.7; }
.footer-col h4 { font-size: 0.8rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.06em; color: rgba(255,255,255,0.45); margin-bottom: 16px; }
.footer-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-col ul li a { font-size: 0.85rem; color: rgba(255,255,255,0.7); transition: color 0.2s; }
.footer-col ul li a:hover { color: #fff; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 24px;
  display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 12px;
  font-size: 0.8rem; color: rgba(255,255,255,0.4);
}
.footer-logo-text { font-size: 1.1rem; font-weight: 800; color: #fff; }

/* ---- Modal ---- */
.modal-overlay {
  position: fixed; inset: 0; z-index: 9000;
  background: rgba(0,0,0,0.5);
  display: flex; align-items: center; justify-content: center;
  padding: 20px;
  opacity: 0; pointer-events: none;
  transition: opacity 0.3s;
}
.modal-overlay.open { opacity: 1; pointer-events: all; }
.modal-box {
  background: #fff; border-radius: 20px;
  padding: 40px; max-width: 520px; width: 100%;
  box-shadow: var(--shadow-lg);
  transform: translateY(16px) scale(0.97);
  transition: transform 0.3s;
}
.modal-overlay.open .modal-box { transform: translateY(0) scale(1); }
.modal-icon {
  width: 64px; height: 64px; border-radius: 50%;
  background: #dcfce7; color: #16a34a;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.8rem; margin: 0 auto 20px;
}
.modal-box h2 { text-align: center; margin-bottom: 12px; font-size: 1.4rem; }
.modal-box p { text-align: center; margin-bottom: 24px; font-size: 0.9rem; }
.modal-steps { display: flex; flex-direction: column; gap: 12px; margin-bottom: 24px; }
.modal-step {
  display: flex; align-items: flex-start; gap: 12px;
  padding: 12px 16px;
  background: var(--bg-gray); border-radius: var(--radius);
  font-size: 0.85rem;
}
.modal-step-num {
  min-width: 24px; height: 24px; border-radius: 50%;
  background: var(--blue); color: #fff;
  font-size: 0.7rem; font-weight: 700;
  display: flex; align-items: center; justify-content: center;
}
.modal-step-text strong { display: block; font-weight: 600; margin-bottom: 2px; }
.modal-step-text span { color: var(--text-light); font-size: 0.8rem; }

/* ---- Forms ---- */
.form-group { margin-bottom: 16px; }
.form-label { display: block; font-size: 0.8rem; font-weight: 600; color: var(--text); margin-bottom: 6px; }
.form-control {
  width: 100%; padding: 11px 14px;
  border: 1.5px solid var(--border); border-radius: var(--radius);
  font-size: 0.875rem; font-family: inherit; color: var(--text);
  background: #fff;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.form-control:focus { outline: none; border-color: var(--blue); box-shadow: 0 0 0 3px rgba(30,111,217,0.12); }
.form-control::placeholder { color: var(--text-light); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }

/* ---- Stepper ---- */
.stepper { display: flex; align-items: center; justify-content: center; gap: 0; margin-bottom: 40px; }
.step-item { display: flex; align-items: center; }
.step-circle {
  width: 36px; height: 36px; border-radius: 50%;
  border: 2px solid var(--border);
  background: #fff; color: var(--text-light);
  font-size: 0.8rem; font-weight: 700;
  display: flex; align-items: center; justify-content: center;
  transition: all 0.3s;
}
.step-circle.active { border-color: var(--blue); background: var(--blue); color: #fff; }
.step-circle.done { border-color: var(--green); background: var(--green); color: #fff; }
.step-line { width: 48px; height: 2px; background: var(--border); transition: background 0.3s; }
.step-line.done { background: var(--green); }
.step-label { font-size: 0.7rem; font-weight: 600; color: var(--text-light); text-align: center; margin-top: 6px; white-space: nowrap; }
.step-item-inner { display: flex; flex-direction: column; align-items: center; }

/* ---- Breadcrumb ---- */
.breadcrumb { display: flex; align-items: center; gap: 8px; font-size: 0.8rem; color: var(--text-light); margin-bottom: 24px; flex-wrap: wrap; }
.breadcrumb a { color: var(--text-light); transition: color 0.2s; }
.breadcrumb a:hover { color: var(--blue); }
.breadcrumb i { font-size: 0.65rem; }

/* ---- Accordion (FAQ) ---- */
.accordion-item { border-bottom: 1px solid var(--border); }
.accordion-trigger {
  width: 100%; text-align: left;
  padding: 18px 0; background: none; border: none;
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
  font-size: 0.95rem; font-weight: 600; color: var(--text); cursor: pointer;
}
.accordion-trigger i { color: var(--blue); transition: transform 0.3s; font-size: 0.85rem; flex-shrink: 0; }
.accordion-trigger.open i { transform: rotate(180deg); }
.accordion-content {
  max-height: 0; overflow: hidden; transition: max-height 0.35s ease;
}
.accordion-content-inner { padding-bottom: 18px; font-size: 0.9rem; color: var(--text-secondary); line-height: 1.75; }

/* ---- Utilities ---- */
.text-center { text-align: center; }
.text-blue { color: var(--blue); }
.text-light { color: var(--text-light); }
.mt-8 { margin-top: 8px; }
.mt-16 { margin-top: 16px; }
.mt-24 { margin-top: 24px; }
.mb-8 { margin-bottom: 8px; }
.mb-16 { margin-bottom: 16px; }
.mb-24 { margin-bottom: 24px; }
.flex { display: flex; }
.items-center { align-items: center; }
.gap-8 { gap: 8px; }
.gap-12 { gap: 12px; }
.gap-16 { gap: 16px; }
.fw-700 { font-weight: 700; }
.fw-600 { font-weight: 600; }
.fs-sm { font-size: 0.85rem; }
.fs-xs { font-size: 0.75rem; }

/* ---- Animations ---- */
.fade-in { opacity: 0; transform: translateY(24px); transition: opacity 0.55s ease, transform 0.55s ease; }
.fade-in.visible { opacity: 1; transform: translateY(0); }

/* ---- Responsive ---- */
@media (max-width: 1024px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  /* Navbar mobile : burger gauche, logo centré */
  .navbar-nav { display: none; }
  .navbar-actions { display: none; }
  .hamburger { display: flex; order: 0; }
  .navbar-inner {
    padding: 0 16px;
    gap: 0;
    justify-content: space-between;
    position: relative;
  }
  /* Logo centré en absolu */
  .navbar-logo-center {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
  }
  .navbar-logo-text { font-size: 1.05rem; }
  .mobile-menu {
    position: fixed; top: 68px; left: 0; right: 0; bottom: 0;
    background: #fff; z-index: 999;
    padding: 24px;
    flex-direction: column; gap: 20px;
    transform: translateX(100%); transition: transform 0.3s;
    overflow-y: auto;
  }
  .mobile-menu.open { transform: translateX(0); display: flex; }
  .mobile-menu a { font-size: 1rem; font-weight: 600; padding: 12px 0; border-bottom: 1px solid var(--border); color: var(--text); }
  .mobile-menu .mobile-cta {
    margin-top: 8px; background: var(--blue); color: #fff !important;
    text-align: center; border-radius: 10px; padding: 14px !important;
    border-bottom: none !important; font-size: 1rem;
  }
  .mobile-menu .mobile-wa {
    background: #dcfce7; color: #15803d !important;
    text-align: center; border-radius: 10px; padding: 14px !important;
    border-bottom: none !important;
  }

  /* Global */
  body { overflow-x: hidden; }
  * { max-width: 100%; box-sizing: border-box; }
  section { padding: 48px 0; }
  .form-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }

  /* Reviews — colonne unique sur mobile */
  .reviews-layout { grid-template-columns: 1fr !important; gap: 24px; }
  .reviews-left { flex-direction: row; justify-content: flex-start; gap: 20px; text-align: left; }
  .reviews-grid { grid-template-columns: 1fr !important; }

  /* Gallery grid homepage */
  .gallery-grid { grid-template-columns: 1fr 1fr; }
  .gallery-grid .gallery-main { grid-column: span 2; }

  /* Gallery masonry homepage */
  .gallery-masonry { grid-template-columns: 1fr 1fr; }

  /* Typography */
  h1 { font-size: clamp(1.6rem, 5vw, 2rem); }
  h2 { font-size: clamp(1.25rem, 4vw, 1.5rem); }

  /* Cards */
  .card { padding: 18px; }

  /* Trust bar */
  .trust-bar-inner { gap: 16px; justify-content: flex-start; overflow-x: auto; flex-wrap: nowrap; padding: 0 16px; }
  .trust-item { flex-shrink: 0; }

  /* Modal */
  .modal-box { padding: 28px 20px; border-radius: 16px; }

  /* Buttons */
  .btn-lg { padding: 14px 24px; font-size: 0.95rem; }

  /* Section header */
  .section-header { margin-bottom: 36px; }
  .section-header h2 { font-size: 1.4rem; }

  /* Footer */
  .footer { padding: 40px 0 24px; }
  .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }
}

@media (max-width: 480px) {
  /* Container */
  .container { padding: 0 14px; }

  /* Section */
  section { padding: 36px 0; }

  /* Buttons */
  .btn { padding: 11px 18px; font-size: 0.85rem; }
  .btn-lg { padding: 13px 20px; font-size: 0.9rem; }

  /* Trust bar */
  .trust-bar-inner { gap: 14px; }

  /* Gallery */
  .gallery-grid { grid-template-columns: 1fr; }
  .gallery-grid .gallery-main { grid-column: span 1; }
  .gallery-masonry { grid-template-columns: 1fr; }

  /* Images contain */
  .gallery-masonry img { object-fit: contain; background: var(--bg-gray); }

  /* Stepper */
  .stepper { gap: 0; }
  .step-line { width: 20px; }
  .step-label { font-size: 0.6rem; }

  /* Modal */
  .modal-box { padding: 22px 16px; }
  .modal-box h2 { font-size: 1.2rem; }

  /* WhatsApp float */
  .wa-float { bottom: 20px; right: 16px; width: 50px; height: 50px; }
  .wa-float i { font-size: 1.25rem; }

  /* Forms */
  .form-control { padding: 10px 12px; font-size: 0.85rem; }
  .form-label { font-size: 0.78rem; }
}
