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

/* =======================
   VARIABLES COULEURS
======================= */
:root {
  --primary: #0B2E6B;
  --primary-dark: #071C3F;
  --accent: #D61F2C;
  --accent-soft: #FCA5A5;

  --bg: #F5F7FB;
  --card: #FFFFFF;
  --glass: rgba(255,255,255,.75);

  --text: #0B1220;
  --text-muted: #6B7280;

  --radius: 26px;
  --radius-lg: 20px;
  --radius-xl: 32px;
}

/* =======================
   GLOBAL
======================= */
* {
  box-sizing: border-box;
}

body {
  font-family: 'Inter', sans-serif;
  background: var(--bg);
  color: var(--text);
  margin: 0;
  overflow-x: hidden;
}

/* =======================
   HEADER
======================= */
.header {
  background: rgba(255,255,255,.85);
  backdrop-filter: blur(20px) saturate(160%);
  border-bottom: 1px solid rgba(10,47,107,.12);
  padding: 12px 0;
}

.logo {
  font-weight: 800;
  font-size: 22px;
  letter-spacing: .5px;
}
.logo span {
  color: var(--primary);
}

/* Search */
.search-box {
  background: #EEF2FF;
  padding: 10px 16px;
  border-radius: 30px;
  display: flex;
  align-items: center;
  width: 360px;
}
.search-box i {
  color: var(--text-muted);
}
.search-box input {
  border: none;
  background: none;
  outline: none;
  margin-left: 10px;
  width: 100%;
  color: var(--text);
}

/* Header icons */
.header-icons i {
  font-size: 20px;
  margin-left: 18px;
  position: relative;
  cursor: pointer;
  color: var(--text);
  transition: color .3s;
}
.header-icons i:hover {
  color: var(--primary);
}

.badge {
  background: var(--primary);
  font-size: 11px;
  position: absolute;
  top: -8px;
  right: -10px;
  border-radius: 50%;
}

/* =======================
   HERO
======================= */
.hero {
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: white;
  padding: 90px 0;
}

.hero h1 {
  font-size: 42px;
  font-weight: 800;
  line-height: 1.2;
}

.hero p {
  opacity: .9;
  margin: 16px 0 26px;
}

.hero-security {
  position: relative;
  height: 520px;
  color: #fff;
  overflow: hidden;
  border-radius: 0 0 28px 28px;
}

/* Carousel background */
.hero-security-carousel {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-security-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  animation: securityFade 15s infinite;
  filter: saturate(1.1) contrast(1.05);
}

.hero-security-slide:nth-child(1) {
  background-image: url('/public/uploads/hero/smart-speaker-house-control-innovative-technology.jpg');
  animation-delay: 0s;
}

.hero-security-slide:nth-child(2) {
  background-image: url('/public/uploads/hero/cctv-security-camera.jpg');
  animation-delay: 5s;
}

@keyframes securityFade {
  0%   { opacity: 0 }
  10%  { opacity: 1 }
  30%  { opacity: 1 }
  40%  { opacity: 0 }
  100% { opacity: 0 }
}

/* Overlay sécurité */
.hero-security-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      120deg,
      rgba(5,10,25,.88),
      rgba(5,10,25,.55)
    );
  z-index: 1;
}

/* Content */
.hero-security-content {
  position: relative;
  z-index: 2;
  height: 100%;
  display: flex;
  align-items: center;
}

.hero-security h1 {
  font-size: 40px;
  font-weight: 800;
}

.hero-security p {
  max-width: 520px;
  opacity: .95;
}

/* Bouton principal */
.btn-primary {
    background: var(--primary);
    color: white;
    border-radius: 30px;
    padding: 12px 30px;
    font-weight: 600;
    border: none;
    transition: all .3s ease;
}

.btn-primary:hover {
  background: #60A5FA;
  color: var(--text);
}

/* =======================
   FILTRES
======================= */
aside {
  position: sticky;
  top: 110px;
}

.filter-card {
  background: var(--card);
  padding: 20px;
  border-radius: 18px;
  box-shadow: 0 10px 30px rgba(15,23,42,.06);
}

.filter-card h6 {
  font-weight: 700;
  margin-bottom: 12px;
}

.filter-card ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.filter-card li {
  padding: 10px 12px;
  border-radius: 10px;
  cursor: pointer;
  color: var(--text-muted);
  transition: all .3s;
}

.filter-card li:hover,
.filter-card li.active {
  background: var(--primary);
  color: white;
}

.fade-update {
  opacity: .4;
  transform: translateY(4px);
  transition: .2s ease;
}

/* =======================
   PRODUITS
======================= */
.products-header h4 {
  font-weight: 800;
}

/* Carte produit */
.product-card {
  background: var(--card);
  border-radius: 20px;
  padding: 18px;
  text-align: center;
  box-shadow: 0 15px 40px rgba(15,23,42,.08);
  transition: transform .35s ease, box-shadow .35s ease;
}

.product-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 25px 60px rgba(15,23,42,.15);
}

.product-card img {
  height: 190px;
  object-fit: cover;
  margin-bottom: 14px;
  transition: transform .4s ease;
}

.product-card:hover img {
  transform: scale(1.05);
}

.product-card h6 {
  font-weight: 600;
  margin-bottom: 6px;
}

.price {
  color: var(--primary);
  font-weight: 700;
  margin-bottom: 12px;
}

/* Bouton panier */
.product-card button {
  background: var(--primary);
  color: white;
  border: none;
  padding: 10px 22px;
  border-radius: 30px;
  font-weight: 600;
  transition: all .3s ease;
}

.product-card button:hover {
  background: var(--primary-dark);
  transform: scale(1.05);
}

/* =======================
   FOOTER
======================= */
.footer {
  background: #020617;
  color: #94A3B8;
  text-align: center;
  padding: 24px;
  margin-top: 60px;
}
.filter-card li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 500;
}

.filter-card li i {
  font-size: 16px;
  color: var(--primary);
  transition: color .3s;
}

.filter-card li.active i,
.filter-card li:hover i {
  color: white;
}
/* ==========================
   PRODUCT LIST PRO
========================== */

.product-card-pro {
  background: var(--card);
  border-radius: 22px;
  overflow: hidden;
  box-shadow: 0 12px 35px rgba(15,23,42,.08);
  transition: all .35s ease;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.product-card-pro:hover {
  transform: translateY(-10px);
  box-shadow: 0 30px 70px rgba(15,23,42,.18);
}

/* Image */
.product-image {
  position: relative;
  background: linear-gradient(135deg, #eef2ff, #f8fafc);
  padding: 20px;
}

.product-image img {
  width: 100%;
  height: 190px;
  object-fit: contain;
  transition: transform .4s ease;
}

.product-card-pro:hover img {
  transform: scale(1.08);
}

/* Badge catégorie */
.product-badge {
  position: absolute;
  top: 14px;
  left: 14px;
  background: var(--accent);
  color: var(--text);
  font-size: 11px;
  padding: 5px 10px;
  border-radius: 20px;
  font-weight: 600;
}

/* Body */
.product-body {
  padding: 18px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.product-title {
  font-weight: 600;
  margin-bottom: 4px;
}

.product-brand {
  font-size: 13px;
  color: var(--text-muted);
  margin-bottom: 14px;
}

/* Footer */
.product-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: auto;
}

.product-price {
  font-weight: 800;
  color: var(--primary);
  font-size: 15px;
}

/* Bouton panier */
.add-btn {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: none;
  background: var(--primary);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all .3s ease;
}

.add-btn:hover {
  background: var(--primary-dark);
  transform: scale(1.1);
}

/* Responsive mobile */
@media (max-width: 576px) {
  .product-image img {
    height: 160px;
  }
}
/* ============================
   PRODUCT LIST – ELITE UI
============================ */

.product-card-elite {
  background: rgba(255,255,255,0.12);
  backdrop-filter: blur(28px) saturate(180%);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 28px;
  overflow: hidden;
  box-shadow: 0 50px 150px rgba(0,0,0,0.35);
  transition: all .5s cubic-bezier(.17,.67,.83,.67);
  display: flex;
  flex-direction: column;
  height: 100%;
  cursor: pointer;
  text-decoration: none;
}

.product-card-elite:hover {
  transform: translateY(-16px) scale(1.02);
  box-shadow: 0 60px 180px rgba(0,0,0,0.45);
}

/* IMAGE */
.product-media {
  position: relative;
  width: 100%;
  overflow: hidden;
  background: radial-gradient(circle at center, #eef2ff 0%, #f8fafc 100%);
}

.product-media img {
  width: 100%;
  height: 240px;
  object-fit: cover; /* remplissage complet */
  transition: transform .6s ease, filter .5s ease;
  display: block;
}

.product-card-elite:hover img {
  transform: scale(1.18) rotate(-1.5deg);
  filter: brightness(1.1) saturate(1.2);
}

/* BADGE */
.elite-badge {
  position: absolute;
  top: 16px;
  left: 16px;
  background: linear-gradient(135deg, var(--accent), #67e8f9);
  color: var(--text);
  padding: 7px 16px;
  font-size: 10px;
  font-weight: 700;
  border-radius: 999px;
  /*text-transform: uppercase;*/
  letter-spacing: 0.5px;
  z-index: 2;
}

/* ACTIONS HOVER */
.product-actions {
  position: absolute;
  top: 16px;
  right: 16px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  opacity: 0;
  transform: translateX(20px);
  transition: all .35s ease;
  z-index: 2;
}

.product-card-elite:hover .product-actions {
  opacity: 1;
  transform: translateX(0);
}

.product-actions button {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: none;
  background: rgba(255,255,255,0.9);
  color: var(--primary);
  box-shadow: 0 8px 25px rgba(0,0,0,0.18);
  transition: all .3s ease;
}

.product-actions button:hover {
  background: var(--primary);
  color: white;
  transform: scale(1.2);
}

/* INFO */
.product-info {
  padding: 20px 22px 28px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.elite-brand {
  font-size: 11px;
  font-weight: 600;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 4px;
}

.elite-title {
  font-weight: 800;
  font-size: 16px;
  line-height: 1.3;
  margin-bottom: 16px;
  color: var(--text);
}

/* FOOTER */
.elite-footer {
  margin-top: auto;
  display: flex;
  justify-content: flex-end;
  gap: 12px;
}

.elite-price {
  font-size: 16px;
  font-weight: 800;
  color: var(--primary);
}

/* BOUTON PANIER */
.elite-cart {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 20px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: white;
  font-weight: 700;
  border: none;
  transition: all .35s ease;
}

.elite-cart:hover {
  transform: scale(1.2) rotate(-5deg);
  box-shadow: 0 12px 40px rgba(37,99,235,0.65);
}

/* MOBILE */
@media (max-width: 576px) {
  .product-media img {
    height: 180px;
  }
  .elite-title {
    font-size: 14px;
  }
}
/* ============================
   DARK MODE ULTRA LUXE
============================ */

body.dark {
  --bg: #020617;
  --card: rgba(15,23,42,.9);
  --text: #E5E7EB;
  --text-muted: #94A3B8;

  --primary: #3B82F6;
  --primary-dark: #1D4ED8;
  --accent: #22D3EE;
}

/* Background général */
body.dark {
  background: radial-gradient(circle at top, #020617, #000);
}

/* HEADER */
body.dark .header {
  background: rgba(2,6,23,.75);
}

/* Search */
body.dark .search-box {
  background: rgba(30,41,59,.8);
}
body.dark .search-box input {
  color: var(--text);
}

/* Filtres */
body.dark .filter-card {
  background: rgba(15,23,42,.8);
  border: 1px solid rgba(148,163,184,.08);
}

/* Product cards elite */
body.dark .product-card-elite {
  background: rgba(15,23,42,.75);
  box-shadow: 0 40px 120px rgba(0,0,0,.8);
}

/* Image zone */
body.dark .product-media {
  background: radial-gradient(circle at top, #020617, #020617);
}

/* Boutons actions */
body.dark .product-actions button {
  background: rgba(2,6,23,.9);
  color: var(--accent);
}

/* Footer */
body.dark .footer {
  background: #000;
  color: #64748B;
}

/* Transitions globales */
body,
.header,
.filter-card,
.product-card-elite {
  transition: background .5s ease, color .5s ease;
}
#themeToggle {
  cursor: pointer;
  transition: transform .4s ease;
}
#themeToggle:hover {
  transform: rotate(20deg) scale(1.2);
}
.product-card-elite {
  opacity: 0;
  transform: translateY(50px);
  transition: all 0.8s cubic-bezier(.17,.67,.83,.67);
}

.product-card-elite.show-on-scroll {
  opacity: 1;
  transform: translateY(0);
}
/* Cartes produits */
.product-card-elite {
  background: rgba(255,255,255,0.15);
  backdrop-filter: blur(24px) saturate(180%);
  border: 1px solid rgba(255,255,255,0.2);
  box-shadow: 0 40px 120px rgba(0,0,0,0.3);
}

/* Header glass */
.header {
  background: rgba(255,255,255,0.1);
  backdrop-filter: blur(20px) saturate(150%);
}
body.dark .header {
  background: rgba(2,6,23,0.5);
  backdrop-filter: blur(20px) saturate(180%);
}
/* ===============================
   Modal Panier – Glassmorphism
=============================== */
.cart-modal .modal-content {
  background: rgba(255,255,255,0.15);
  backdrop-filter: blur(24px) saturate(180%);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 20px;
  color: #0F172A;
  transition: all .5s ease;
}

.cart-modal .modal-header,
.cart-modal .modal-footer {
  border-color: rgba(255,255,255,0.1);
}

.cart-modal .btn-close {
  filter: invert(0);
  transition: filter .3s ease;
}

.cart-modal .btn-primary {
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: white;
  border: none;
  transition: all .3s ease;
}

.cart-modal .btn-primary:hover {
  transform: scale(1.05);
  box-shadow: 0 8px 30px rgba(37,99,235,0.5);
}

.cart-modal .btn-secondary {
  background: rgba(255,255,255,0.1);
  color: #0F172A;
  border: none;
}

body.dark .cart-modal .modal-content {
  background: rgba(15,23,42,0.85);
  color: #E5E7EB;
  backdrop-filter: blur(20px) saturate(180%);
  border: 1px solid rgba(255,255,255,0.1);
}

body.dark .cart-modal .btn-close {
  filter: invert(1);
}

body.dark .cart-modal .btn-primary {
  background: linear-gradient(135deg, #3B82F6, #1D4ED8);
  color: white;
}

body.dark .cart-modal .btn-secondary {
  background: rgba(255,255,255,0.1);
  color: #E5E7EB;
}

/* ===============================
   CONTACT – ULTIMATE PRO
=============================== */

.contact-ultimate {
  position: relative;
  background: #020617;
  overflow: hidden;
}

.contact-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 15% 30%, rgba(59,130,246,.25), transparent 40%),
    radial-gradient(circle at 85% 70%, rgba(14,165,233,.2), transparent 45%);
  z-index: 0;
}

.contact-left {
  position: relative;
  z-index: 2;
}

.contact-pill {
  display: inline-block;
  padding: 8px 20px;
  border-radius: 999px;
  background: rgba(255,255,255,.08);
  font-size: 12px;
  letter-spacing: 1px;
  margin-bottom: 28px;
}

.contact-heading {
  font-size: 64px;
  font-weight: 900;
  line-height: 1.05;
}

.contact-heading span {
  color: #60A5FA;
}

.contact-description {
  margin-top: 24px;
  max-width: 420px;
  font-size: 17px;
  opacity: .75;
}

.contact-meta {
  display: flex;
  gap: 40px;
  margin-top: 40px;
  font-size: 14px;
  opacity: .8;
}

.contact-glass {
  position: relative;
  z-index: 2;
  background: rgba(15,23,42,.85);
  backdrop-filter: blur(40px) saturate(180%);
  border-radius: 36px;
  padding: 48px;
  box-shadow: 0 80px 200px rgba(0,0,0,.7);
}

.ultimate-form input,
.ultimate-form textarea {
  width: 100%;
  background: transparent;
  border: none;
  border-bottom: 1px solid rgba(255,255,255,.25);
  padding: 14px 6px;
  color: white;
  font-size: 15px;
  transition: border-color .3s;
}

.ultimate-form input::placeholder,
.ultimate-form textarea::placeholder {
  color: rgba(255,255,255,.5);
}

.ultimate-form input:focus,
.ultimate-form textarea:focus {
  outline: none;
  border-bottom-color: #3B82F6;
}

.ultimate-btn {
  margin-top: 48px;
  width: 100%;
  padding: 18px;
  border-radius: 999px;
  background: linear-gradient(135deg, #3B82F6, #1D4ED8);
  border: none;
  color: white;
  font-weight: 800;
  letter-spacing: .6px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  transition: all .4s ease;
}

.ultimate-btn:hover {
  transform: translateY(-4px);
  box-shadow: 0 25px 80px rgba(59,130,246,.6);
}

.contact-footer {
  display: flex;
  justify-content: space-between;
  margin-top: 36px;
  font-size: 12px;
  opacity: .6;
  flex-wrap: wrap;
  gap: 12px;
}

.product-loader {
  min-height: 160px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 12px;
}

/* MOBILE */
@media (max-width: 992px) {
  .contact-heading {
    font-size: 44px;
  }
  .contact-meta {
    display: none;
  }
}
/* =======================
   HERO PRODUIT ULTRA LUXE
======================= */
.hero-product {
  position: relative;
  min-height: 80vh;
  background: url('/public/uploads/hero/shareholders.jpg') center/cover no-repeat;
  display: flex;
  align-items: center;
  padding: 0 20px;
}

.hero-product-overlay {
  position: absolute;
  inset:0;
  background: linear-gradient(120deg, rgba(2,6,23,.9), rgba(11,46,107,.6));
  z-index: 1;
}

.hero-product-content {
  position: relative;
  z-index:2;
  color:white;
  max-width:600px;
}

.hero-product h1 {
  font-size: clamp(34px,5vw,54px);
  font-weight:900;
  margin-bottom:20px;
}

.hero-description {
  font-size: clamp(16px,1.2vw,20px);
  max-width:100%;
  margin-bottom:28px;
  opacity:.95;
}

.hero-pill {
  display:inline-block;
  background:#D61F2C;
  padding:6px 20px;
  border-radius:999px;
  font-size:12px;
  font-weight:700;
  margin-right:10px;
  text-transform:uppercase;
}

.security-badge {
  display:inline-block;
  background: rgba(255,255,255,0.15);
  padding:6px 16px;
  border-radius:999px;
  font-weight:600;
  margin-bottom:20px;
}

.hero-actions {
  display:flex;
  flex-wrap:wrap;
  gap:12px;
}

.btn-primary {
  background:#0B2E6B;
  color:white;
  border-radius:30px;
  padding:12px 30px;
  font-weight:600;
  border:none;
  transition:all .3s ease, transform .3s ease;
}
.btn-primary:hover {
  background:#60A5FA;
  color:#0B1220;
  transform: translateY(-3px);
}

.btn-outline-light {
  border:2px solid white;
  color:white;
  border-radius:30px;
  padding:12px 30px;
  transition:all .3s ease, transform .3s ease;
}
.btn-outline-light:hover {
  background:white;
  color:#071C3F;
  transform: translateY(-3px);
}

/* =======================
   SECTION PRODUIT PREMIUM
======================= */
.product-premium {
  padding:120px 0;
}

.product-visual {
  position:relative;
  border-radius:40px;
  overflow:hidden;
  box-shadow:0 80px 200px rgba(11,46,107,.3);
  transition: transform .4s ease;
}
.product-visual:hover {
  transform:translateY(-5px) scale(1.02);
}
.product-visual img {
  width:100%;
  height:100%;
  object-fit:cover;
  transition: transform .5s ease;
}
.product-visual:hover img {
  transform: scale(1.05);
}

.product-visual-overlay {
  position:absolute;
  inset:0;
  background:linear-gradient(135deg, rgba(2,6,23,.35), rgba(11,46,107,.15));
}

.product-visual-badge {
  position:absolute;
  bottom:24px;
  left:24px;
  padding:12px 22px;
  border-radius:999px;
  background: rgba(255,255,255,.15);
  color:white;
  font-weight:700;
  font-size:14px;
}

/* =======================
   PRODUCT TEXT
======================= */
.product-text h2 {
  font-size:clamp(28px,4vw,38px);
  font-weight:900;
  margin-bottom:20px;
}

.product-text .lead {
  font-weight:500;
  margin-bottom:20px;
  font-size:16px;
}

.product-highlights {
  display:grid;
  gap:12px;
  margin:30px 0;
}
.product-highlights .highlight {
  display:flex;
  align-items:center;
  gap:8px;
  font-weight:500;
  font-size:15px;
}

.product-actions {
  margin-top:28px;
  display:flex;
  gap:12px;
  flex-wrap:wrap;
}

.btn-outline-primary {
  border:2px solid #0B2E6B;
  color:#0B2E6B;
  border-radius:30px;
  padding:12px 30px;
  font-weight:600;
  transition:all .3s ease, transform .3s ease;
}
.btn-outline-primary:hover {
  background:#0B2E6B;
  color:white;
  transform: translateY(-3px);
}

/* =======================
   FICHE TECHNIQUE PREMIUM
======================= */
.section-specs {
  background:#f8fafc;
  padding:80px 0;
}
.specs-card {
  background:white;
  border-radius:24px;
  padding:40px;
  box-shadow:0 40px 120px rgba(11,46,107,.15);
}
.specs-table th {
  width:40%;
  color:#020617;
  font-weight:700;
  padding:12px 15px;
}
.specs-table td {
  padding:12px 15px;
}

/* =======================
   BROCHURE
======================= */
.section-brochure {
  padding:80px 0;
  text-align:center;
}
.section-brochure .btn-outline-primary {
  border:2px solid #0B2E6B;
  color:#0B2E6B;
  border-radius:30px;
  padding:12px 30px;
  font-weight:600;
  transition:all .3s ease, transform .3s ease;
}
.section-brochure .btn-outline-primary:hover {
  background:#0B2E6B;
  color:white;
  transform: translateY(-3px);
}

/* =======================
   FADE-UP ANIMATIONS
======================= */
.fade-up {
  opacity:0;
  transform: translateY(50px);
  transition: all 0.8s cubic-bezier(.17,.67,.83,.67);
}
.fade-up.show-on-scroll {
  opacity:1;
  transform: translateY(0);
}

/* =======================
   RESPONSIVE
======================= */
@media (max-width:992px) {
  .hero-product h1 { font-size:42px; }
  .product-text h2 { font-size:32px; }
  .hero-description { max-width:100%; }
}

@media (max-width:576px) {
  .hero-product {
    min-height:60vh;
    padding:0 10px;
  }
  .hero-product h1 { font-size:28px; }
  .hero-description { font-size:14px; }
  .product-text h2 { font-size:24px; }
  .product-highlights { gap:8px; }
  .product-highlights .highlight { font-size:14px; }
  .btn-primary, .btn-outline-primary {
    width:100%;
    text-align:center;
  }
}
/* =======================
   RESPONSIVE PRO – PRODUCT SHOW
======================= */

/* Tablette */
@media (max-width: 991px) {

  .hero-product {
    min-height: 70vh;
    text-align: center;
  }

  .hero-product-content {
    max-width: 100%;
  }

  .hero-actions {
    justify-content: center;
  }

  .product-premium {
    padding: 80px 0;
  }

  .product-visual {
    border-radius: 28px;
  }

  .specs-card {
    padding: 28px;
  }
}

/* Mobile */
@media (max-width: 575px) {

  .hero-product {
    min-height: 60vh;
    padding: 0 12px;
  }

  .hero-pill,
  .security-badge {
    font-size: 10px;
    padding: 5px 14px;
  }

  .hero-product h1 {
    font-size: 26px;
    line-height: 1.15;
  }

  .hero-description {
    font-size: 14px;
  }

  .hero-actions .btn {
    width: 100%;
  }

  .product-premium {
    padding: 60px 0;
  }

  .product-text h2 {
    font-size: 24px;
  }

  .product-highlights {
    margin: 20px 0;
    gap: 10px;
  }

  .product-highlights .highlight {
    font-size: 14px;
  }

  .specs-card {
    padding: 20px;
  }

  .specs-table th,
  .specs-table td {
    font-size: 13px;
    padding: 8px 10px;
  }

  .section-brochure {
    padding: 60px 0;
  }
}
/* ======================================
   CONTACT – RESPONSIVE PRO (DESKTOP / TABLET / MOBILE)
====================================== */

/* Desktop large */
@media (min-width: 1200px) {
  .contact-ultimate {
    min-height: 100vh;
    padding: 0;
  }

  .contact-heading {
    font-size: 64px;
  }

  .contact-glass {
    padding: 56px;
    border-radius: 40px;
  }
}

/* Laptop / Desktop standard */
@media (max-width: 1199px) {
  .contact-heading {
    font-size: 56px;
  }

  .contact-glass {
    padding: 42px;
  }
}

/* Tablette */
@media (max-width: 991px) {

  .contact-ultimate {
    padding: 80px 0;
  }

  .contact-left {
    text-align: center;
    margin-bottom: 48px;
  }

  .contact-heading {
    font-size: 42px;
    line-height: 1.1;
  }

  .contact-description {
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
    font-size: 16px;
  }

  .contact-pill {
    margin-bottom: 18px;
  }

  .contact-meta {
    display: none;
  }

  .contact-glass {
    padding: 36px;
    border-radius: 28px;
  }

  .ultimate-btn {
    margin-top: 32px;
    padding: 16px;
    font-size: 15px;
  }
}

/* Mobile */
@media (max-width: 575px) {

  .contact-ultimate {
    padding: 70px 0 90px;
  }

  .contact-heading {
    font-size: 32px;
    line-height: 1.15;
  }

  .contact-description {
    font-size: 14px;
    margin-top: 14px;
  }

  .contact-pill {
    font-size: 10px;
    padding: 6px 14px;
  }

  .contact-glass {
    padding: 24px 20px 28px;
    border-radius: 22px;
  }

  .ultimate-form input,
  .ultimate-form textarea {
    font-size: 14px;
    padding: 12px 4px;
  }

  .ultimate-btn {
    padding: 14px;
    font-size: 14px;
    letter-spacing: .4px;
  }

  .contact-footer {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 6px;
    font-size: 11px;
  }
}

/* Ultra small phones */
@media (max-width: 380px) {
  .contact-heading {
    font-size: 28px;
  }

  .contact-glass {
    padding: 20px 16px;
  }
}

/* ===============================
   MODAL DEVIS – RESPONSIVE PRO
=============================== */

/* Base (desktop par défaut) */
#quoteModal .modal-dialog {
  max-width: 900px;
  padding: 0 20px;
}

#quoteModal .modal-content {
  border-radius: 28px;
}

#quoteModal .modal-body {
  padding: 32px 36px;
}

#quoteModal .modal-title {
  font-size: 26px;
}

#quoteModal .form-control,
#quoteModal textarea {
  font-size: 15px;
  border-radius: 14px;
}

/* =======================
   TABLETTE (≤ 991px)
======================= */
@media (max-width: 991px) {

  #quoteModal .modal-dialog {
    max-width: 95%;
    margin: 1rem auto;
  }

  #quoteModal .modal-content {
    border-radius: 22px;
  }

  #quoteModal .modal-body {
    padding: 24px 22px;
  }

  #quoteModal .modal-title {
    font-size: 22px;
  }

  #quoteModal .form-control,
  #quoteModal textarea {
    font-size: 14px;
  }

  #quoteModal .btn-lg {
    font-size: 15px;
    padding: 12px 18px;
  }
}

/* =======================
   MOBILE (≤ 575px)
======================= */
@media (max-width: 575px) {

  #quoteModal .modal-dialog {
    max-width: 100%;
    margin: 0;
    min-height: 100vh;
    display: flex;
    align-items: flex-end;
  }

  #quoteModal .modal-content {
    border-radius: 20px 20px 0 0;
    min-height: 85vh;
  }

  #quoteModal .modal-body {
    padding: 20px 16px 24px;
  }

  #quoteModal .modal-title {
    font-size: 20px;
    text-align: center;
    width: 100%;
  }

  #quoteModal .modal-header {
    justify-content: center;
    padding: 14px 16px;
  }

  #quoteModal .btn-close {
    position: absolute;
    right: 16px;
    top: 16px;
  }

  #quoteModal .form-floating label {
    font-size: 12px;
  }

  #quoteModal .form-control,
  #quoteModal textarea {
    font-size: 14px;
  }

  #quoteModal .btn-lg {
    width: 100%;
    font-size: 15px;
    padding: 14px;
  }
}

/* =======================
   ULTRA SMALL PHONES
======================= */
@media (max-width: 380px) {

  #quoteModal .modal-title {
    font-size: 18px;
  }

  #quoteModal .modal-body {
    padding: 16px 12px;
  }

  #quoteModal .btn-lg {
    font-size: 14px;
  }
}
