/* ═══════════════════════════════════════════
   WE PLAY – Saint Barth
   Stylesheet
═══════════════════════════════════════════ */

/* ── CSS Variables ── */
:root {
  --orange:       #E8692A;
  --orange-light: #F5A06E;
  --orange-dark:  #C4501A;
  --orange-pale:  #FFF0E6;
  --cream:        #FFF8F0;
  --dark:         #1C1C1C;
  --dark-mid:     #3A3A3A;
  --gray:         #767676;
  --gray-light:   #F2F2F2;
  --white:        #FFFFFF;

  --font:         'Poppins', sans-serif;
  --radius:       16px;
  --radius-lg:    24px;
  --shadow:       0 4px 24px rgba(232, 105, 42, 0.12);
  --shadow-lg:    0 12px 48px rgba(232, 105, 42, 0.2);
  --transition:   0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font);
  color: var(--dark);
  background: var(--cream);
  overflow-x: hidden;
  line-height: 1.6;
}

img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ── Reveal animations ── */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.7s var(--transition), transform 0.7s var(--transition);
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 50px;
  font-family: var(--font);
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  transition: var(--transition);
  border: 2px solid transparent;
  white-space: nowrap;
}
.btn-orange {
  background: var(--orange);
  color: var(--white);
  border-color: var(--orange);
}
.btn-orange:hover {
  background: var(--orange-dark);
  border-color: var(--orange-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(232,105,42,0.35);
}
.btn-white {
  background: var(--white);
  color: var(--orange);
  border-color: var(--white);
}
.btn-white:hover {
  background: var(--orange-pale);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.12);
}
.btn-outline {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.6);
}
.btn-outline:hover {
  background: rgba(255,255,255,0.15);
  border-color: var(--white);
  transform: translateY(-2px);
}
.btn-outline-dark {
  background: transparent;
  color: var(--orange);
  border-color: var(--orange);
}
.btn-outline-dark:hover {
  background: var(--orange);
  color: var(--white);
  transform: translateY(-2px);
}

/* ── Section helpers ── */
.section-tag {
  display: inline-block;
  background: var(--orange-pale);
  color: var(--orange);
  font-weight: 600;
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: 50px;
  margin-bottom: 16px;
}
.section-title {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 16px;
  color: var(--dark);
}
.section-subtitle {
  font-size: 1.05rem;
  color: var(--gray);
  max-width: 600px;
  margin-bottom: 56px;
}

/* ══════════════════════════════════════════════
   LOGO
══════════════════════════════════════════════ */
.logo-circle {
  width: 220px;
  height: 220px;
  border-radius: 50%;
  background: var(--orange);
  border: 3px dashed rgba(255,255,255,0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  box-shadow: 0 0 0 8px rgba(255,255,255,0.15);
  animation: logoPulse 3s ease-in-out infinite;
}
@keyframes logoPulse {
  0%, 100% { box-shadow: 0 0 0 8px rgba(255,255,255,0.15); }
  50%       { box-shadow: 0 0 0 16px rgba(255,255,255,0.08); }
}
.logo-inner {
  text-align: center;
  color: var(--white);
  line-height: 1;
}
.logo-sub-top, .logo-sub-bot {
  font-size: 0.55rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  opacity: 0.85;
  font-weight: 500;
}
.logo-title-we {
  font-size: 2.8rem;
  font-weight: 900;
  letter-spacing: 0.04em;
  line-height: 1;
  margin: 2px 0;
}
.logo-title-play {
  font-size: 2rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  line-height: 1;
  margin-bottom: 6px;
}

/* Small navbar logo */
.logo-circle-sm {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--orange);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: var(--white);
  line-height: 1;
}
.logo-circle-sm .logo-we {
  font-size: 0.6rem;
  font-weight: 900;
  letter-spacing: 0.05em;
}
.logo-circle-sm .logo-play {
  font-size: 0.55rem;
  font-weight: 700;
  letter-spacing: 0.05em;
}
.logo-circle-sm--white {
  background: var(--white);
  color: var(--orange);
}

/* ══════════════════════════════════════════════
   NAVBAR
══════════════════════════════════════════════ */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 16px 0;
  transition: background 0.3s ease, box-shadow 0.3s ease, padding 0.3s ease;
}
.navbar.scrolled {
  background: var(--white);
  box-shadow: 0 2px 20px rgba(0,0,0,0.08);
  padding: 10px 0;
}
.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
}
.nav-links a {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--white);
  transition: color 0.2s;
  position: relative;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  right: 0;
  height: 2px;
  background: currentColor;
  transform: scaleX(0);
  transition: transform 0.25s ease;
}
.nav-links a:hover::after { transform: scaleX(1); }
.navbar.scrolled .nav-links a {
  color: var(--dark);
}
.nav-cta {
  background: var(--orange) !important;
  color: var(--white) !important;
  padding: 8px 20px;
  border-radius: 50px;
  font-weight: 600 !important;
}
.nav-cta:hover { opacity: 0.9; }
.nav-cta::after { display: none !important; }
.navbar.scrolled .nav-cta { color: var(--white) !important; }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.nav-close {
  display: none;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: var(--transition);
}
.navbar.scrolled .nav-toggle span { background: var(--dark); }

/* ── Language switcher ── */
.lang-switcher {
  display: flex;
  align-items: center;
  gap: 4px;
  background: rgba(255,255,255,0.15);
  border: 1px solid rgba(255,255,255,0.3);
  border-radius: 50px;
  padding: 4px 10px;
  transition: background 0.3s ease, border-color 0.3s ease;
  flex-shrink: 0;
}
.navbar.scrolled .lang-switcher {
  background: var(--orange-pale);
  border-color: rgba(232,105,42,0.25);
}
.lang-sep {
  color: rgba(255,255,255,0.4);
  font-size: 0.75rem;
  line-height: 1;
  transition: color 0.3s ease;
}
.navbar.scrolled .lang-sep { color: rgba(232,105,42,0.4); }
.lang-btn {
  background: none;
  border: none;
  cursor: pointer;
  font-family: var(--font);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  color: rgba(255,255,255,0.55);
  padding: 2px 4px;
  border-radius: 50px;
  transition: color 0.2s, background 0.2s;
  line-height: 1;
}
.navbar.scrolled .lang-btn { color: var(--gray); }
.lang-btn.active {
  color: var(--white);
  background: rgba(255,255,255,0.2);
}
.navbar.scrolled .lang-btn.active {
  color: var(--orange);
  background: rgba(232,105,42,0.12);
}
.lang-btn:hover:not(.active) {
  color: rgba(255,255,255,0.85);
}
.navbar.scrolled .lang-btn:hover:not(.active) { color: var(--dark); }

/* ══════════════════════════════════════════════
   HERO
══════════════════════════════════════════════ */
.hero {
  min-height: 100vh;
  background: linear-gradient(145deg, var(--orange) 0%, #D4581A 60%, #B84210 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
  overflow: hidden;
  padding: 100px 24px 80px;
}

/* Decorative background blobs */
.hero::before {
  content: '';
  position: absolute;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: rgba(255,255,255,0.05);
  top: -200px;
  right: -200px;
  pointer-events: none;
}
.hero::after {
  content: '';
  position: absolute;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: rgba(255,255,255,0.04);
  bottom: -100px;
  left: -100px;
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 700px;
}
.hero-logo {
  display: flex;
  justify-content: center;
  margin-bottom: 36px;
  animation: heroLogoIn 1s ease both;
}
@keyframes heroLogoIn {
  from { opacity: 0; transform: scale(0.7) rotate(-10deg); }
  to   { opacity: 1; transform: scale(1) rotate(0); }
}
.hero-tagline {
  font-size: clamp(1.2rem, 3vw, 1.6rem);
  color: var(--white);
  font-weight: 500;
  line-height: 1.5;
  margin-bottom: 12px;
  animation: heroFadeUp 0.9s 0.3s ease both;
}
.hero-location {
  color: rgba(255,255,255,0.75);
  font-size: 1rem;
  font-weight: 500;
  margin-bottom: 40px;
  animation: heroFadeUp 0.9s 0.5s ease both;
}
.hero-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  animation: heroFadeUp 0.9s 0.7s ease both;
}
@keyframes heroFadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* Floating emojis */
.hero-floats {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 1;
}
.float {
  position: absolute;
  font-size: 2rem;
  opacity: 0.18;
  animation: floatAnim linear infinite;
  user-select: none;
}
.f1 { top: 10%; left:  8%; animation-duration: 8s;  animation-delay: 0s;   font-size: 2.5rem; }
.f2 { top: 20%; right: 6%; animation-duration: 11s; animation-delay: 1s;   font-size: 3rem; }
.f3 { top: 65%; left: 5%;  animation-duration: 9s;  animation-delay: 2s;   font-size: 2rem; }
.f4 { top: 75%; right:10%; animation-duration: 7s;  animation-delay: 0.5s; font-size: 2.5rem; }
.f5 { top: 40%; left: 3%;  animation-duration: 10s; animation-delay: 3s;   font-size: 1.8rem; }
.f6 { top: 15%; left: 50%; animation-duration: 12s; animation-delay: 1.5s; font-size: 2rem; }
.f7 { top: 80%; left: 40%; animation-duration: 9s;  animation-delay: 2.5s; font-size: 1.6rem; }
.f8 { top: 55%; right: 4%; animation-duration: 11s; animation-delay: 0.8s; font-size: 2.2rem; }

@keyframes floatAnim {
  0%   { transform: translateY(0px) rotate(0deg); }
  25%  { transform: translateY(-18px) rotate(5deg); }
  50%  { transform: translateY(-8px) rotate(-3deg); }
  75%  { transform: translateY(-22px) rotate(4deg); }
  100% { transform: translateY(0px) rotate(0deg); }
}

/* Scroll hint */
.hero-scroll-hint {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.6);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  animation: scrollHintFade 2s 1.5s ease both, scrollBounce 2s 2s ease-in-out infinite;
}
.scroll-arrow {
  width: 20px;
  height: 20px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(45deg);
}
@keyframes scrollHintFade {
  from { opacity: 0; }
  to   { opacity: 1; }
}
@keyframes scrollBounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50%       { transform: translateX(-50%) translateY(6px); }
}

/* ══════════════════════════════════════════════
   CONCEPT
══════════════════════════════════════════════ */
.concept {
  padding: 100px 0;
  background: var(--white);
}
.concept-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}
.concept-card {
  background: var(--cream);
  border-radius: var(--radius-lg);
  padding: 40px 32px;
  text-align: center;
  transition: var(--transition);
  border: 1px solid rgba(232,105,42,0.1);
}
.concept-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: var(--orange-light);
}
.concept-icon {
  font-size: 3rem;
  margin-bottom: 20px;
}
.concept-card h3 {
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 12px;
  color: var(--dark);
}
.concept-card p {
  color: var(--gray);
  font-size: 0.95rem;
  line-height: 1.7;
}

/* ══════════════════════════════════════════════
   SERVICES
══════════════════════════════════════════════ */
.services {
  padding: 100px 0;
  background: var(--cream);
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
  align-items: start;
}
.service-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 40px 32px;
  border: 2px solid transparent;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--orange-light), var(--orange));
  transform: scaleX(0);
  transition: transform 0.35s ease;
  transform-origin: left;
}
.service-card:hover::before { transform: scaleX(1); }
.service-card:hover {
  border-color: rgba(232,105,42,0.15);
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}
.service-card--featured {
  background: var(--orange);
  color: var(--white);
  transform: scale(1.03);
}
.service-card--featured:hover {
  transform: scale(1.03) translateY(-4px);
  border-color: transparent;
}
.service-card--featured::before {
  background: rgba(255,255,255,0.4);
}
.service-badge {
  display: inline-block;
  background: rgba(255,255,255,0.2);
  border-radius: 50px;
  padding: 4px 14px;
  font-size: 0.75rem;
  font-weight: 600;
  margin-bottom: 16px;
  letter-spacing: 0.05em;
}
.service-emoji {
  font-size: 2.5rem;
  margin-bottom: 20px;
}
.service-card h3 {
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 12px;
}
.service-card p {
  font-size: 0.95rem;
  line-height: 1.7;
  margin-bottom: 20px;
  opacity: 0.85;
}
.service-card ul li {
  font-size: 0.9rem;
  padding: 6px 0;
  border-bottom: 1px solid rgba(0,0,0,0.06);
  display: flex;
  align-items: center;
  gap: 8px;
  opacity: 0.9;
}
.service-card--featured ul li {
  border-bottom-color: rgba(255,255,255,0.15);
}
.service-card ul li::before {
  content: '✓';
  color: var(--orange);
  font-weight: 700;
  font-size: 0.85rem;
}
.service-card--featured ul li::before { color: var(--white); }

/* ══════════════════════════════════════════════
   PRODUITS
══════════════════════════════════════════════ */
.produits {
  padding: 100px 0;
  background: var(--dark);
  position: relative;
  overflow: hidden;
}
.produits::before {
  content: '';
  position: absolute;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: rgba(232,105,42,0.08);
  top: -100px;
  right: -100px;
  pointer-events: none;
}
.produits .section-tag {
  background: rgba(232,105,42,0.2);
  color: var(--orange-light);
}
.produits .section-title { color: var(--white); }
.produits .section-subtitle { color: rgba(255,255,255,0.5); }

.produits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 20px;
}
.produit-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius);
  padding: 32px 24px;
  text-align: center;
  transition: var(--transition);
  transition-delay: var(--delay, 0ms);
  cursor: default;
}
.produit-card:hover {
  background: rgba(232,105,42,0.15);
  border-color: rgba(232,105,42,0.4);
  transform: translateY(-6px);
  box-shadow: 0 12px 32px rgba(232,105,42,0.2);
}
.produit-icon {
  font-size: 2.5rem;
  margin-bottom: 16px;
  transition: transform 0.3s ease;
}
.produit-card:hover .produit-icon {
  transform: scale(1.2) rotate(-5deg);
}
.produit-card h3 {
  color: var(--white);
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 8px;
}
.produit-card p {
  color: rgba(255,255,255,0.45);
  font-size: 0.85rem;
  line-height: 1.6;
}

/* ══════════════════════════════════════════════
   LOCATION – COMMENT LOUER
══════════════════════════════════════════════ */
.location {
  padding: 100px 0;
  background: var(--white);
}
.steps-grid {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 56px;
  flex-wrap: wrap;
}
.step {
  flex: 1;
  min-width: 200px;
  text-align: center;
  padding: 40px 24px;
  background: var(--cream);
  border-radius: var(--radius-lg);
  position: relative;
  border: 1px solid rgba(232,105,42,0.1);
  transition: var(--transition);
}
.step:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
  border-color: var(--orange-light);
}
.step-number {
  position: absolute;
  top: -16px;
  left: 50%;
  transform: translateX(-50%);
  width: 36px;
  height: 36px;
  background: var(--orange);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.05em;
}
.step-icon {
  font-size: 2.5rem;
  margin-bottom: 16px;
  margin-top: 8px;
}
.step h3 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--dark);
}
.step p {
  font-size: 0.9rem;
  color: var(--gray);
  line-height: 1.7;
}
.step-arrow {
  font-size: 2rem;
  color: var(--orange-light);
  align-self: center;
  flex-shrink: 0;
  opacity: 0.5;
}
.listing-download {
  text-align: center;
  margin: 48px 0 40px;
}
.listing-title {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 24px;
}
.listing-cards {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}
.listing-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  background: var(--white);
  border: 2px solid var(--gray-light);
  border-radius: var(--radius-lg);
  padding: 28px 40px;
  text-decoration: none;
  color: var(--dark);
  transition: var(--transition);
  min-width: 180px;
}
.listing-card:hover {
  transform: translateY(-4px);
  border-color: var(--orange);
  box-shadow: 0 8px 24px rgba(232,105,42,0.18);
}
.listing-flag { font-size: 2rem; }
.listing-label { font-weight: 700; font-size: 1rem; }
.listing-season { font-size: 0.78rem; color: #999; }
.listing-btn {
  margin-top: 8px;
  background: var(--orange);
  color: var(--white);
  border-radius: 50px;
  padding: 8px 20px;
  font-size: 0.82rem;
  font-weight: 600;
}

.location-cta {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ══════════════════════════════════════════════
   CONTACT
══════════════════════════════════════════════ */
.contact {
  padding: 100px 0;
  background: linear-gradient(160deg, var(--orange) 0%, #D4581A 100%);
  color: var(--white);
  text-align: center;
}
.contact .section-tag {
  background: rgba(255,255,255,0.2);
  color: var(--white);
}
.contact .section-title { color: var(--white); }
.contact .section-subtitle {
  color: rgba(255,255,255,0.75);
  margin: 0 auto 56px;
  font-size: 1.1rem;
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
  margin-bottom: 48px;
  text-align: left;
}
.contact-card {
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  backdrop-filter: blur(8px);
  transition: var(--transition);
}
.contact-card:hover {
  background: rgba(255,255,255,0.2);
  transform: translateY(-4px);
}
.contact-icon {
  font-size: 2rem;
  margin-bottom: 14px;
}
.contact-card h3 {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  opacity: 0.7;
  margin-bottom: 8px;
}
.contact-card p {
  font-size: 1.05rem;
  font-weight: 600;
  line-height: 1.5;
}
.contact-link {
  font-size: 1rem;
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: opacity 0.2s;
}
.contact-link:hover { opacity: 0.75; }
.contact-note {
  font-size: 0.8rem !important;
  font-weight: 400 !important;
  opacity: 0.6;
  margin-top: 4px;
}

.contact-instagram {
  display: flex;
  justify-content: center;
}
.instagram-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: rgba(255,255,255,0.15);
  border: 2px solid rgba(255,255,255,0.4);
  color: var(--white);
  padding: 16px 32px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 1rem;
  transition: var(--transition);
}
.instagram-btn:hover {
  background: rgba(255,255,255,0.25);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.15);
}

/* ══════════════════════════════════════════════
   FOOTER
══════════════════════════════════════════════ */
.footer {
  background: var(--dark);
  color: rgba(255,255,255,0.7);
  padding: 60px 0 32px;
}
.footer-content {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 48px;
  align-items: start;
}
.footer-logo {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.footer-logo p {
  font-size: 0.9rem;
  line-height: 1.6;
}
.footer-links {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.footer-links a {
  font-size: 0.9rem;
  transition: color 0.2s;
}
.footer-links a:hover { color: var(--orange-light); }
.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.footer-contact a {
  font-size: 0.9rem;
  transition: color 0.2s;
}
.footer-contact a:hover { color: var(--orange-light); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 24px;
  text-align: center;
  font-size: 0.8rem;
  opacity: 0.4;
}

/* ══════════════════════════════════════════════
   RESPONSIVE
══════════════════════════════════════════════ */
@media (max-width: 768px) {
  /* Navbar */
  .nav-toggle { display: flex; }
  .lang-switcher { order: -1; } /* show before hamburger */

  /* Center logo between lang-switcher and hamburger */
  .nav-container { position: relative; }
  .nav-logo {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
  }

  .nav-links {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--white);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 32px;
    transform: translateX(-100%);
    transition: transform 0.35s ease;
    z-index: 999;
  }
  .nav-links.open { transform: translateX(0); }
  .nav-links a { color: var(--dark) !important; font-size: 1.2rem; }
  .nav-cta { color: var(--white) !important; font-size: 1.1rem !important; }

  /* Close button */
  .nav-close {
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: 20px;
    right: 24px;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 2px solid var(--gray-light);
    background: none;
    font-size: 1.1rem;
    color: var(--dark);
    cursor: pointer;
    transition: background 0.2s, border-color 0.2s;
  }
  .nav-close:hover {
    background: var(--orange-pale);
    border-color: var(--orange-light);
    color: var(--orange);
  }

  /* Hero */
  .hero { padding: 120px 24px 80px; }
  .hero-actions { flex-direction: column; align-items: center; }
  .logo-circle { width: 180px; height: 180px; }
  .logo-title-we { font-size: 2.2rem; }
  .logo-title-play { font-size: 1.6rem; }

  /* Steps */
  .step-arrow { display: none; }
  .steps-grid { flex-direction: column; }
  .step { min-width: unset; }

  /* Footer */
  .footer-content { grid-template-columns: 1fr; gap: 32px; }

  /* Services */
  .service-card--featured { transform: none; }
  .service-card--featured:hover { transform: translateY(-4px); }
}

@media (max-width: 480px) {
  .section-title { font-size: 1.7rem; }
  .hero-tagline { font-size: 1rem; }
  .produits-grid { grid-template-columns: repeat(2, 1fr); }
  .contact-grid { grid-template-columns: 1fr; }
}

/* ══════════════════════════════════════════════
   RENTAL REQUEST MODAL
══════════════════════════════════════════════ */

/* CTA block */
.rental-cta-block {
  text-align: center;
  margin: 0 0 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  width: 100%;
}
.btn-request {
  font-size: 1.05rem;
  padding: 18px 44px;
  border-radius: 50px;
  box-shadow: 0 8px 32px rgba(232,105,42,0.35);
  transition: transform 0.25s, box-shadow 0.25s;
}
.btn-request:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 40px rgba(232,105,42,0.45);
}
.rental-cta-note {
  font-size: 0.82rem;
  color: var(--gray);
  font-style: italic;
}

/* Overlay */
.rental-overlay {
  position: fixed;
  inset: 0;
  background: rgba(20,15,10,0.72);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
  backdrop-filter: blur(5px);
}
.rental-overlay.open {
  opacity: 1;
  pointer-events: all;
}

/* Dialog */
.rental-dialog {
  background: var(--white);
  border-radius: 24px;
  width: 100%;
  max-width: 680px;
  max-height: 88vh;
  display: flex;
  flex-direction: column;
  box-shadow: 0 32px 80px rgba(0,0,0,0.3);
  transform: translateY(40px) scale(0.96);
  transition: transform 0.4s cubic-bezier(0.34,1.56,0.64,1);
  overflow: hidden;
}
.rental-overlay.open .rental-dialog {
  transform: translateY(0) scale(1);
}

/* Header */
.rental-header {
  background: linear-gradient(135deg, var(--orange) 0%, #c85219 100%);
  padding: 22px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-shrink: 0;
  gap: 12px;
}
.rental-header-inner {
  display: flex;
  align-items: center;
  gap: 14px;
  min-width: 0;
}
.rental-header-logo { font-size: 1.8rem; flex-shrink: 0; }
.rental-title {
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--white);
  margin: 0;
}
.rental-subtitle {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.82);
  margin: 3px 0 0;
}
.rental-close {
  width: 34px; height: 34px;
  border-radius: 50%;
  border: 2px solid rgba(255,255,255,0.4);
  background: rgba(255,255,255,0.15);
  color: var(--white);
  font-size: 0.95rem;
  cursor: pointer;
  transition: background 0.2s;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.rental-close:hover { background: rgba(255,255,255,0.3); }

/* Scrollable body */
.rental-body {
  flex: 1;
  overflow-y: auto;
  overscroll-behavior: contain;
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 28px;
}

/* Section */
.rental-section { display: flex; flex-direction: column; gap: 12px; }
.rental-section-title {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--dark);
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0;
}
.rental-step {
  width: 24px; height: 24px;
  border-radius: 50%;
  background: var(--orange);
  color: var(--white);
  font-size: 0.72rem;
  font-weight: 800;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

/* Search */
.rental-search-wrap { position: relative; }
.rental-search {
  width: 100%;
  padding: 9px 14px 9px 38px;
  border: 2px solid var(--gray-light);
  border-radius: 10px;
  font-size: 0.88rem;
  font-family: inherit;
  outline: none;
  background: #f9f9f9;
  transition: border-color 0.2s, background 0.2s;
}
.rental-search:focus { border-color: var(--orange); background: var(--white); }
.rental-search-icon {
  position: absolute;
  left: 11px; top: 50%;
  transform: translateY(-50%);
  font-size: 0.8rem;
  pointer-events: none;
}

/* Tabs */
.rental-tabs { display: flex; gap: 6px; flex-wrap: wrap; }
.rental-tab {
  padding: 5px 14px;
  border-radius: 20px;
  border: 2px solid var(--gray-light);
  background: var(--white);
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--gray);
  cursor: pointer;
  transition: all 0.2s;
  font-family: inherit;
}
.rental-tab:hover { border-color: var(--orange-light); color: var(--orange); }
.rental-tab.active { background: var(--orange); border-color: var(--orange); color: var(--white); }

/* Equipment list */
.equipment-list {
  display: flex;
  flex-direction: column;
  gap: 4px;
  max-height: 260px;
  overflow-y: auto;
  border: 2px solid var(--gray-light);
  border-radius: 12px;
  padding: 6px;
  background: #f9f9f9;
}
.equipment-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 10px;
  border-radius: 8px;
  cursor: pointer;
  transition: background 0.15s;
  user-select: none;
}
.equipment-item:hover { background: var(--orange-pale); }
.equipment-item.selected { background: rgba(232,105,42,0.1); }
.equipment-item input[type="checkbox"] {
  width: 17px; height: 17px;
  accent-color: var(--orange);
  cursor: pointer;
  flex-shrink: 0;
}
.equipment-name {
  flex: 1;
  font-size: 0.85rem;
  color: var(--dark);
  font-weight: 500;
  line-height: 1.3;
}
.equipment-price {
  font-size: 0.76rem;
  color: var(--orange);
  font-weight: 700;
  white-space: nowrap;
  text-align: right;
}
.equipment-no-results {
  text-align: center;
  padding: 20px;
  color: var(--gray);
  font-size: 0.85rem;
}

/* Selection count */
.rental-selection-count {
  font-size: 0.8rem;
  color: var(--gray);
  font-style: italic;
  min-height: 18px;
}

/* Dates grid */
.rental-dates-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

/* Fields */
.rental-field { display: flex; flex-direction: column; gap: 5px; }
.rental-field--full { grid-column: 1 / -1; }
.rental-field label {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--dark);
}
.rental-field input,
.rental-field textarea {
  padding: 9px 13px;
  border: 2px solid var(--gray-light);
  border-radius: 10px;
  font-size: 0.88rem;
  font-family: inherit;
  outline: none;
  background: #f9f9f9;
  color: var(--dark);
  transition: border-color 0.2s, background 0.2s;
}
.rental-field input:focus,
.rental-field textarea:focus { border-color: var(--orange); background: var(--white); }
.rental-field input.error,
.rental-field textarea.error { border-color: #e53935; }
.rental-field textarea { resize: vertical; min-height: 72px; }

/* Radio */
.rental-radio-group { display: flex; gap: 10px; }
.rental-radio {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  padding: 9px 12px;
  border: 2px solid var(--gray-light);
  border-radius: 10px;
  cursor: pointer;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--dark);
  transition: all 0.2s;
}
.rental-radio:has(input:checked) {
  border-color: var(--orange);
  background: rgba(232,105,42,0.07);
  color: var(--orange);
}
.rental-radio input {
  accent-color: var(--orange);
  width: 14px; height: 14px;
  border: none !important;
  padding: 0 !important;
  background: transparent !important;
}

/* Contact grid */
.rental-contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

/* Disclaimer */
.rental-disclaimer {
  background: rgba(232,105,42,0.07);
  border: 1.5px solid rgba(232,105,42,0.28);
  border-radius: 10px;
  padding: 13px 15px;
  font-size: 0.8rem;
  color: var(--dark-mid);
  line-height: 1.55;
}

/* Footer */
.rental-footer {
  padding: 14px 24px 22px;
  border-top: 1.5px solid var(--gray-light);
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
  background: var(--white);
}
.rental-summary {
  font-size: 0.8rem;
  color: var(--gray);
  text-align: center;
  min-height: 18px;
}
.rental-summary strong { color: var(--orange); }
.btn-full {
  width: 100%;
  justify-content: center;
  padding: 15px;
  font-size: 1rem;
}
.rental-status {
  text-align: center;
  padding: 10px 14px;
  border-radius: 10px;
  font-size: 0.88rem;
  font-weight: 600;
  display: none;
}
.rental-status.success { display: block; background: #e8f5e9; color: #2e7d32; }
.rental-status.error   { display: block; background: #ffebee; color: #c62828; }

/* Mobile: bottom sheet */
@media (max-width: 768px) {
  .rental-overlay { padding: 0; align-items: flex-end; }
  .rental-dialog {
    max-height: 95vh;
    border-radius: 22px 22px 0 0;
    transform: translateY(100%);
  }
  .rental-overlay.open .rental-dialog { transform: translateY(0); }
  .rental-body { padding: 20px; gap: 22px; }
  .rental-header { padding: 18px 20px; }
  .rental-footer { padding: 12px 20px 28px; }
  .rental-dates-grid { grid-template-columns: 1fr; }
  .rental-contact-grid { grid-template-columns: 1fr; }
  .btn-request { font-size: 0.95rem; padding: 16px 32px; }
}
