:root {
  --blue: #2563EB;
  --blue-light: #3B82F6;
  --dark: #1C1C1C;
  --cream: #EFF6FF;
  --white: #FFFFFF;
  --text: #2C2C2C;
  --text-light: #717171;
  --border: #BFDBFE;
  --shadow: 0 4px 24px rgba(37, 99, 235, 0.08);
  --shadow-lg: 0 10px 48px rgba(37, 99, 235, 0.14);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

.container {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 28px;
}

/* ══════════════════════════════════════
   NAVBAR
══════════════════════════════════════ */
.navbar {
  position: sticky;
  top: 0;
  z-index: 200;
  background: rgba(255, 255, 255, 0.97);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}

.navbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 6px;
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: 1.15rem;
  letter-spacing: 0.1em;
  text-decoration: none;
  cursor: default;
  user-select: none;
}

.logo-main { color: var(--dark); }
.logo-accent { color: var(--blue); }
.logo-footer-main { color: rgba(255,255,255,0.9); }

.nav-links {
  display: flex;
  align-items: center;
  gap: 34px;
}

.nav-links a {
  text-decoration: none;
  color: var(--text);
  font-size: 0.93rem;
  font-weight: 400;
  transition: color 0.2s;
}

.nav-links a:hover { color: var(--blue); }
.nav-links a.active { color: var(--blue); }

.btn-nav {
  background: var(--blue) !important;
  color: white !important;
  padding: 10px 24px;
  border-radius: 50px;
  font-weight: 500 !important;
  transition: background 0.2s, transform 0.15s !important;
}

.btn-nav:hover {
  background: var(--blue-light) !important;
  color: white !important;
  transform: translateY(-1px);
}

.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
}

.menu-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--dark);
  border-radius: 2px;
  transition: all 0.3s;
}

/* ══════════════════════════════════════
   SHARED SECTION STYLES
══════════════════════════════════════ */
.section-label {
  display: inline-block;
  border: 1px solid var(--blue);
  color: var(--blue);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  padding: 6px 18px;
  border-radius: 50px;
  margin-bottom: 18px;
}

.section-title {
  font-family: 'Playfair Display', serif;
  font-size: 2.55rem;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 14px;
  color: var(--dark);
}

.section-desc {
  color: var(--text-light);
  font-size: 0.97rem;
  line-height: 1.65;
  max-width: 480px;
  margin: 0 auto;
}

.text-gold { color: var(--blue); }

/* ══════════════════════════════════════
   HERO
══════════════════════════════════════ */
.hero {
  background: var(--cream);
  padding: 88px 0 108px;
  min-height: calc(100vh - 72px);
  display: flex;
  align-items: center;
}

.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.hero-content .pill {
  display: inline-block;
  border: 1.5px solid var(--blue);
  color: var(--dark);
  font-size: 0.8rem;
  font-weight: 500;
  padding: 7px 20px;
  border-radius: 50px;
  margin-bottom: 28px;
}

.hero-content h1 {
  font-family: 'Playfair Display', serif;
  font-size: 3.9rem;
  font-weight: 900;
  line-height: 1.08;
  color: var(--dark);
  margin-bottom: 26px;
}

.hero-desc {
  color: var(--text);
  font-size: 0.98rem;
  line-height: 1.72;
  margin-bottom: 38px;
  opacity: 0.82;
}

.hero-btns {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.btn-primary {
  background: var(--blue);
  color: white;
  text-decoration: none;
  padding: 14px 28px;
  border-radius: 50px;
  font-weight: 500;
  font-size: 0.93rem;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: background 0.2s, transform 0.15s;
}

.btn-primary:hover {
  background: var(--blue-light);
  transform: translateY(-2px);
}

.btn-secondary {
  background: white;
  color: var(--dark);
  text-decoration: none;
  padding: 14px 28px;
  border-radius: 50px;
  font-weight: 500;
  font-size: 0.93rem;
  border: 1.5px solid var(--border);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: border-color 0.2s, transform 0.15s;
}

.btn-secondary:hover {
  border-color: var(--blue);
  transform: translateY(-2px);
}

.hero-image-wrap {
  position: relative;
}

.hero-img {
  width: 100%;
  height: 530px;
  object-fit: cover;
  border-radius: 22px;
  display: block;
}

.rating-badge {
  position: absolute;
  bottom: -22px;
  left: -22px;
  background: white;
  border-radius: 18px;
  padding: 18px 24px;
  box-shadow: var(--shadow-lg);
  min-width: 190px;
}

.rating-badge .stars {
  color: var(--blue);
  font-size: 1.15rem;
  letter-spacing: 3px;
  margin-bottom: 6px;
}

.rating-badge .rating-num {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--blue);
  line-height: 1;
}

.rating-badge .rating-sub {
  color: var(--text-light);
  font-size: 0.78rem;
  margin-top: 4px;
}

/* ══════════════════════════════════════
   COLLECTION
══════════════════════════════════════ */
.collection {
  padding: 108px 0;
  background: var(--white);
  text-align: center;
}

.cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 52px;
}

.card {
  background: white;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1px solid rgba(37, 99, 235, 0.08);
  transition: transform 0.3s, box-shadow 0.3s;
  text-align: left;
  text-decoration: none;
  display: block;
  color: inherit;
  cursor: pointer;
}

.card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

.card-img-wrap {
  overflow: hidden;
  height: 330px;
}

.card-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.45s;
}

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

.card-body {
  padding: 22px 26px;
}

.card-body h3 {
  font-size: 1.05rem;
  font-weight: 600;
  margin-bottom: 6px;
  color: var(--dark);
}

.card-body p {
  color: var(--text-light);
  font-size: 0.88rem;
  margin-bottom: 14px;
}

.card-link {
  color: var(--blue);
  text-decoration: none;
  font-size: 0.88rem;
  font-weight: 500;
  transition: opacity 0.2s;
}

.card-link:hover { opacity: 0.7; }

/* ══════════════════════════════════════
   POURQUOI NOUS
══════════════════════════════════════ */
.why-us {
  background: var(--cream);
  padding: 108px 0;
  text-align: center;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
  margin-top: 52px;
  text-align: left;
}

.feature-card {
  background: white;
  border-radius: 18px;
  padding: 38px 34px;
  box-shadow: var(--shadow);
  border: 1px solid rgba(37, 99, 235, 0.07);
  transition: transform 0.3s;
}

.feature-card:hover { transform: translateY(-3px); }

.feature-icon {
  font-size: 2.1rem;
  margin-bottom: 18px;
}

.feature-card h3 {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 12px;
  color: var(--dark);
}

.feature-card p {
  color: var(--text-light);
  font-size: 0.89rem;
  line-height: 1.68;
}

/* ══════════════════════════════════════
   TESTIMONIALS
══════════════════════════════════════ */
.testimonials {
  padding: 108px 0;
  background: var(--white);
  text-align: center;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-top: 52px;
  align-items: start;
}

.testimonial-card {
  background: white;
  border-radius: 18px;
  padding: 34px 28px;
  text-align: left;
  box-shadow: var(--shadow);
  border: 1px solid rgba(37, 99, 235, 0.08);
}

.testimonial-card.featured {
  background: #0F2554;
  border-color: transparent;
}

.testimonial-card.featured p {
  color: rgba(255,255,255,0.87);
}

.testimonial-card.featured .t-name {
  color: white;
}

.testimonial-card.featured .t-role {
  color: rgba(255,255,255,0.5);
}

.t-stars {
  color: var(--blue);
  font-size: 1.05rem;
  letter-spacing: 3px;
  margin-bottom: 18px;
}

.testimonial-card p {
  color: var(--text);
  font-size: 0.88rem;
  line-height: 1.68;
  margin-bottom: 24px;
  font-style: italic;
}

.t-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.t-avatar {
  width: 42px;
  height: 42px;
  background: var(--blue);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: 700;
  font-size: 0.95rem;
  flex-shrink: 0;
}

.t-name {
  font-weight: 600;
  font-size: 0.88rem;
  color: var(--dark);
}

.t-role {
  font-size: 0.78rem;
  color: var(--text-light);
  margin-top: 2px;
}

/* ══════════════════════════════════════
   FOOTER
══════════════════════════════════════ */
.footer {
  background: #0A1628;
  color: rgba(255,255,255,0.82);
  padding: 72px 0 0;
}

.footer-inner {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1.1fr;
  gap: 56px;
  padding-bottom: 64px;
}

.logo-footer {
  margin-bottom: 18px;
  cursor: default;
}

.footer-brand p {
  font-size: 0.88rem;
  line-height: 1.72;
  color: rgba(255,255,255,0.55);
  margin-bottom: 26px;
  max-width: 280px;
}

.footer-link {
  display: block;
  color: rgba(255,255,255,0.72);
  text-decoration: none;
  font-size: 0.84rem;
  padding: 11px 16px;
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: 10px;
  margin-bottom: 10px;
  transition: border-color 0.2s, color 0.2s;
}

.footer-link:hover {
  border-color: var(--blue-light);
  color: var(--blue-light);
}

.footer-link-instagram {
  background: linear-gradient(135deg, #833ab4, #c13584, #e1306c, #fd1d1d, #f77737);
  border-color: transparent;
  color: white !important;
}

.footer-link-instagram:hover {
  border-color: transparent;
  color: white !important;
  opacity: 0.88;
}

.footer-link-maps {
  background: #1a73e8;
  border-color: transparent;
  color: white !important;
}

.footer-link-maps:hover {
  background: #1557b0;
  border-color: transparent;
  color: white !important;
}

.footer-hours h4 {
  color: #93C5FD;
  font-size: 0.93rem;
  font-weight: 600;
  margin-bottom: 22px;
  letter-spacing: 0.02em;
}

.hours-table {
  width: 100%;
  border-collapse: collapse;
}

.hours-table tr {
  border-bottom: 1px solid rgba(255,255,255,0.07);
}

.hours-table tr:last-child {
  border-bottom: none;
}

.hours-table td {
  padding: 9px 0;
  font-size: 0.84rem;
  color: rgba(255,255,255,0.7);
}

.hours-table td:last-child {
  text-align: right;
  color: #93C5FD;
  font-weight: 500;
}

.footer-qr h4 {
  color: #93C5FD;
  font-size: 0.93rem;
  font-weight: 600;
  margin-bottom: 22px;
}

.qr-code {
  display: block;
  width: 136px;
  height: 136px;
  border-radius: 10px;
  background: white;
  padding: 6px;
  margin-bottom: 14px;
  transition: transform 0.2s;
}

.qr-code:hover { transform: scale(1.03); }

.footer-qr p {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.45);
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 22px 0;
  text-align: center;
}

.footer-bottom p {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.32);
}

.footer-pro-link {
  color: rgba(255,255,255,0.28);
  text-decoration: none;
  font-size: 0.76rem;
  margin-left: 14px;
  transition: color 0.2s;
}

.footer-pro-link:hover { color: rgba(255,255,255,0.6); }

/* ══════════════════════════════════════
   WHATSAPP FAB
══════════════════════════════════════ */
.whatsapp-fab {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 999;
  background: #25D366;
  color: white;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 22px 12px 16px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.88rem;
  box-shadow: 0 4px 24px rgba(37, 211, 102, 0.42);
  transition: transform 0.2s, box-shadow 0.2s;
}

.whatsapp-fab:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 32px rgba(37, 211, 102, 0.5);
}

/* ══════════════════════════════════════
   RESPONSIVE
══════════════════════════════════════ */

/* ── Laptop / tablette paysage ── */
@media (max-width: 1100px) {
  .hero-content h1 { font-size: 3.2rem; }
  .hero-inner { gap: 40px; }
  .hero-img { height: 440px; }
  .rating-badge { bottom: -12px; left: -12px; }

  .collection, .why-us, .testimonials { padding: 80px 0; }
  .testimonials-grid { grid-template-columns: repeat(2, 1fr); }

  .footer-inner { grid-template-columns: 1fr 1fr; gap: 40px; }
  .footer-qr { grid-column: 1 / -1; display: flex; align-items: center; gap: 28px; }
  .footer-qr h4 { margin-bottom: 0; }
}

/* ── Tablette portrait ── */
@media (max-width: 768px) {
  .menu-toggle { display: flex; }

  .navbar-inner { height: 60px; }

  .nav-links {
    display: none;
    position: absolute;
    top: 60px; left: 0; right: 0;
    background: white;
    flex-direction: column;
    align-items: flex-start;
    padding: 20px 28px 28px;
    gap: 18px;
    border-bottom: 1px solid var(--border);
    box-shadow: var(--shadow);
  }
  .nav-links.open { display: flex; }

  /* Hero : image de fond plein écran */
  .hero {
    padding: 60px 0 68px;
    min-height: 100svh;
    background-image: url('https://images.pexels.com/photos/5201989/pexels-photo-5201989.jpeg?auto=compress&cs=tinysrgb&w=800');
    background-size: cover;
    background-position: center;
    position: relative;
  }
  .hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(5,20,60,0.82) 0%, rgba(10,40,100,0.65) 100%);
  }
  .hero-inner {
    grid-template-columns: 1fr;
    text-align: center;
    position: relative;
    z-index: 1;
  }
  .hero-image-wrap { display: none; }
  .hero-content h1 { font-size: 2.5rem; color: white; }
  .hero-content h1 .text-gold { color: #93C5FD; }
  .hero-content .pill { border-color: rgba(255,255,255,0.45); color: white; }
  .hero-desc { color: rgba(255,255,255,0.85); opacity: 1; }
  .btn-secondary { background: rgba(255,255,255,0.12); color: white; border-color: rgba(255,255,255,0.35); }
  .hero-btns { justify-content: center; }

  /* Sections */
  .collection, .why-us, .testimonials { padding: 60px 0; }
  .section-title { font-size: 2rem; }

  /* Grilles : 2 colonnes sur tablette */
  .cards-grid { grid-template-columns: repeat(2, 1fr); }
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .testimonials-grid { grid-template-columns: 1fr; }

  /* Footer */
  .footer-inner { grid-template-columns: 1fr; gap: 40px; }
  .footer-qr { display: block; }
  .footer-qr h4 { margin-bottom: 22px; }
  .footer { padding-top: 52px; }

  /* FAB WhatsApp */
  .whatsapp-fab span { display: none; }
  .whatsapp-fab { padding: 14px; border-radius: 50%; }
}

/* ── Grand téléphone ── */
@media (max-width: 540px) {
  .container { padding: 0 18px; }
  .hero-content h1 { font-size: 2.1rem; }
  .section-title { font-size: 1.8rem; }
  .collection, .why-us, .testimonials { padding: 48px 0; }

  /* 1 colonne pour les cartes collection */
  .cards-grid { grid-template-columns: 1fr; }
  .card-img-wrap { height: 250px; }
  .features-grid { grid-template-columns: 1fr; }

  .footer { padding-top: 44px; }
  .footer-inner { padding-bottom: 44px; }
}

/* ── Petit téléphone ── */
@media (max-width: 380px) {
  .container { padding: 0 14px; }
  .hero-content h1 { font-size: 1.85rem; }
  .section-title { font-size: 1.6rem; }
  .collection, .why-us, .testimonials { padding: 40px 0; }
  .card-img-wrap { height: 210px; }
  .btn-primary, .btn-secondary { padding: 12px 20px; font-size: 0.88rem; width: 100%; justify-content: center; }
  .hero-btns { flex-direction: column; align-items: center; gap: 10px; }
  .whatsapp-fab { bottom: 18px; right: 18px; }
}
