/* =========================================
   LA BOURDONNERIE - STYLE COMPLET
   Palette: Jaune bourdon #FFC107 | Noir #0D0D0D | Anthracite #1A1A1A
   ========================================= */

/* ===== RESET & BASE ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: 'Inter', sans-serif;
  background: #0D0D0D;
  color: #fff;
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
h1, h2, h3, h4, h5, h6 { font-family: 'Montserrat', sans-serif; line-height: 1.15; }
a { text-decoration: none; color: inherit; }
img { max-width: 100%; height: auto; display: block; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
input, select, textarea { font-family: inherit; font-size: 1rem; }
ul { list-style: none; }

/* ===== UTILITAIRES ===== */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 clamp(16px, 4vw, 48px);
}
.text-center { text-align: center; }
.text-bee { color: #FFC107; }

/* ===== BOUTONS ===== */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(90deg, #FFC107 0%, #F4A300 100%);
  color: #1A1A1A;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 14px 32px;
  border-radius: 9999px;
  transition: all 0.3s ease;
}
.btn-primary:hover {
  transform: scale(1.05);
  box-shadow: 0 8px 30px rgba(255, 193, 7, 0.4);
  background: linear-gradient(90deg, #FFD60A 0%, #FFC107 100%);
}
.btn-primary svg { width: 16px; height: 16px; transition: transform 0.3s; }
.btn-primary:hover svg { transform: translateX(4px); }

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 2px solid rgba(255, 255, 255, 0.4);
  color: #fff;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 12px 30px;
  border-radius: 9999px;
  transition: all 0.3s ease;
}
.btn-secondary:hover {
  border-color: #FFC107;
  color: #FFC107;
  background: rgba(255, 193, 7, 0.08);
}

.btn-nav {
  display: none;
  background: linear-gradient(90deg, #FFC107 0%, #F4A300 100%);
  color: #1A1A1A;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 10px 24px;
  border-radius: 9999px;
  transition: all 0.3s ease;
}
.btn-nav:hover {
  transform: scale(1.05);
  box-shadow: 0 4px 20px rgba(255, 193, 7, 0.35);
}

.btn-submit {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: linear-gradient(90deg, #FFC107 0%, #F4A300 100%);
  color: #1A1A1A;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 16px;
  border-radius: 12px;
  transition: all 0.3s ease;
  position: relative;
}
.btn-submit:hover {
  transform: scale(1.02);
  box-shadow: 0 8px 30px rgba(255, 193, 7, 0.35);
}
.btn-submit:active { transform: scale(0.98); }
.btn-submit .btn-loader {
  display: none;
  width: 24px; height: 24px;
  border: 2px solid #1A1A1A;
  border-top-color: transparent;
  border-radius: 50%;
  animation: spin 1s linear infinite;
}
.btn-submit.loading .btn-text { display: none; }
.btn-submit.loading .btn-loader { display: block; }

/* ===== TITRES COMMUNS ===== */
.eyebrow {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #FFC107;
}
.section-title {
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  font-weight: 700;
  color: #fff;
  margin-top: 12px;
}
.title-bar {
  width: 60px;
  height: 4px;
  background: #FFC107;
  margin-top: 16px;
  border-radius: 2px;
}

/* ===== NAVIGATION ===== */
#navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 50;
  height: 72px;
  background: rgba(13, 13, 13, 0.85);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255, 193, 7, 0.15);
  transition: all 0.3s ease;
}
#navbar.scrolled {
  height: 64px;
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
}
.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 clamp(16px, 4vw, 48px);
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.logo {
  display: flex;
  align-items: center;
  gap: 8px;
}
.logo-icon img {
  height: 40px;
  width: auto;
}
.logo-text {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 1.1rem;
  color: #fff;
  letter-spacing: -0.02em;
}
.logo-accent {
  position: relative;
}
.logo-accent::after {
  content: '';
  position: absolute;
  bottom: -2px; left: 0;
  width: 100%; height: 2px;
  background: #FFC107;
  border-radius: 1px;
}
.nav-links {
  display: none;
  align-items: center;
  gap: 32px;
}
.nav-link {
  font-size: 0.85rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: rgba(255, 255, 255, 0.7);
  transition: color 0.3s ease;
  position: relative;
}
.nav-link:hover, .nav-link.active { color: #FFC107; }
.nav-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px; height: 40px;
  color: #fff;
}
.nav-toggle .icon-close { display: none; }
.nav-toggle.open .icon-menu { display: none; }
.nav-toggle.open .icon-close { display: block; }
.nav-toggle svg { width: 24px; height: 24px; }
.nav-mobile {
  position: absolute;
  top: 100%; left: 0; right: 0;
  background: rgba(13, 13, 13, 0.95);
  backdrop-filter: blur(12px);
  border-top: 1px solid rgba(255, 193, 7, 0.1);
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}
.nav-mobile.open { max-height: 400px; }
.nav-mobile-link {
  display: block;
  padding: 16px clamp(16px, 4vw, 48px);
  font-size: 0.9rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: rgba(255, 255, 255, 0.8);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  transition: color 0.3s;
}
.nav-mobile-link:hover { color: #FFC107; }
.btn-nav-mobile {
  display: block;
  margin: 16px clamp(16px, 4vw, 48px);
  text-align: center;
}

/* ===== HERO ===== */
#hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #0D0D0D 0%, #1A1A1A 50%, #2C2C2C 100%);
  overflow: hidden;
}
#hexCanvas {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
}
.hero-glow {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  z-index: 2;
}
.orb1 {
  width: 500px; height: 500px;
  top: 10%; left: -10%;
  background: radial-gradient(circle, rgba(255, 193, 7, 0.08) 0%, transparent 70%);
  animation: float 6s ease-in-out infinite;
}
.orb2 {
  width: 400px; height: 400px;
  bottom: 20%; right: 5%;
  background: radial-gradient(circle, rgba(244, 163, 0, 0.06) 0%, transparent 70%);
  animation: float 6s ease-in-out infinite 2s;
}
.orb3 {
  width: 300px; height: 300px;
  top: 50%; left: 50%;
  background: radial-gradient(circle, rgba(255, 214, 10, 0.05) 0%, transparent 70%);
  animation: float 6s ease-in-out infinite 4s;
}
.stripe {
  position: absolute;
  width: 200%;
  height: 4px;
  pointer-events: none;
  opacity: 0.25;
  background: repeating-linear-gradient(45deg, #FFC107 0px, #FFC107 8px, #1A1A1A 8px, #1A1A1A 16px);
  transform: rotate(-5deg);
}
.stripe-1 { top: 15%; left: -50%; }
.stripe-2 { bottom: 20%; left: -50%; }
.hero-vignette {
  position: absolute;
  inset: 0;
  z-index: 3;
  pointer-events: none;
  background: radial-gradient(ellipse at center, transparent 0%, rgba(13, 13, 13, 0.4) 100%);
}
.hero-content {
  position: relative;
  z-index: 10;
  text-align: center;
  padding: 120px 16px 80px;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 16px;
  border-radius: 9999px;
  background: rgba(255, 193, 7, 0.1);
  border: 1px solid rgba(255, 193, 7, 0.3);
  color: #FFC107;
  font-size: 0.75rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 24px;
}
.hero-badge svg { width: 14px; height: 14px; }
.hero-title {
  font-family: 'Montserrat', sans-serif;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: -0.02em;
}
.hero-line1 {
  display: block;
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  line-height: 1.05;
  color: #fff;
}
.hero-line1 .highlight {
  position: relative;
  display: inline-block;
}
.hero-line1 .highlight::after {
  content: '';
  position: absolute;
  bottom: -8px; left: 0;
  width: 100%; height: 6px;
  background: #FFC107;
  border-radius: 3px;
}
.hero-line2 {
  display: block;
  font-size: clamp(1.5rem, 3vw, 2.5rem);
  color: rgba(255, 255, 255, 0.85);
  margin-top: 12px;
}
.hero-subtitle {
  font-size: clamp(1rem, 1.5vw, 1.25rem);
  color: rgba(255, 255, 255, 0.6);
  max-width: 540px;
  margin: 20px auto 0;
}
.hero-ctas {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  margin-top: 36px;
}
.scroll-indicator {
  position: absolute;
  bottom: -50px;                   
  left: 50%;
  transform: translateX(-50%);      
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  z-index: 10;
  width: max-content;               
  text-align: center;
}

.scroll-indicator svg {
  width: 24px; height: 24px;
  color: #FFC107;
  animation: bounce 2s ease-in-out infinite;
}
.scroll-indicator span {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(255, 255, 255, 0.4);
}
.hero-bee {
  position: absolute;
  right: -5%;
  bottom: 10%;
  width: 45vw;
  max-width: 500px;
  z-index: 4;
  pointer-events: none;
  animation: float 4s ease-in-out infinite;
}

/* ===== SECTIONS GÉNÉRALES ===== */
.section-dark {
  position: relative;
  background: #0D0D0D;
  padding: clamp(80px, 10vh, 120px) 0;
  overflow: hidden;
}
.section-light {
  position: relative;
  background: #F8F8F8;
  padding: clamp(80px, 10vh, 120px) 0;
}
.section-gradient {
  position: relative;
  background: linear-gradient(180deg, #0D0D0D 0%, #1A1A1A 100%);
  padding: clamp(80px, 10vh, 120px) 0;
}
.hex-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.3;
  background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M30 5 L55 17.5 L55 42.5 L30 55 L5 42.5 L5 17.5 Z' fill='none' stroke='%23FFC107' stroke-width='0.5' opacity='0.08'/%3E%3C/svg%3E");
  background-size: 60px 60px;
}

/* ===== SERVICES ===== */
.services-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  margin-top: 48px;
}
.service-card {
  background: #1A1A1A;
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 12px;
  padding: 36px 28px;
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.service-card:hover {
  border-color: rgba(255, 193, 7, 0.3);
  transform: translateY(-6px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.4);
}
.hex-icon {
  position: relative;
  width: 72px; height: 72px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}
.hex-frame {
  position: absolute;
  inset: 0;
  transition: transform 0.5s ease;
}
.service-card:hover .hex-frame {
  animation: spin 20s linear infinite;
}
.card-icon {
  width: 32px; height: 32px;
  color: #FFC107;
  position: relative;
  z-index: 2;
}
.card-glow {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: rgba(255, 193, 7, 0);
  filter: blur(20px);
  transition: background 0.5s;
}
.service-card:hover .card-glow {
  background: rgba(255, 193, 7, 0.1);
}
.service-card h3 {
  font-size: 1.25rem;
  font-weight: 700;
  color: #fff;
}
.service-card p {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.7;
  margin-top: 12px;
}
.card-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 20px;
  font-size: 0.85rem;
  font-weight: 500;
  color: #FFC107;
  transition: gap 0.3s;
}
.card-link:hover { gap: 10px; }
.card-link svg { width: 16px; height: 16px; }

/* ===== POURQUOI NOUS CHOISIR ===== */
.advantages-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  margin-top: 48px;
}
.advantage {
  padding: 8px;
}
.adv-icon {
  width: 64px; height: 64px;
  border-radius: 50%;
  background: rgba(255, 193, 7, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}
.adv-icon svg { width: 28px; height: 28px; color: #1A1A1A; }
.advantage h3 {
  font-size: 1.1rem;
  font-weight: 700;
  color: #1A1A1A;
}
.advantage p {
  font-size: 0.9rem;
  color: #3D3D3D;
  margin-top: 8px;
  line-height: 1.6;
}

/* ===== À PROPOS ===== */
.about-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  align-items: center;
}
.about-photo {
  position: relative;
}
.photo-frame {
  border-radius: 16px;
  overflow: hidden;
  border: 3px solid rgba(255, 193, 7, 0.2);
}
.photo-frame img { width: 100%; aspect-ratio: 1; object-fit: cover; }
.exp-badge {
  position: absolute;
  top: -16px;
  right: -16px;
  background: #FFC107;
  color: #1A1A1A;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 0.8rem;
  padding: 16px 20px;
  line-height: 1.3;
  text-align: center;
  clip-path: polygon(25% 0%, 75% 0%, 100% 50%, 75% 100%, 25% 100%, 0% 50%);
  box-shadow: 0 4px 20px rgba(255, 193, 7, 0.3);
}
.about-text p {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.8;
  margin-top: 16px;
}

/* ===== TÉMOIGNAGES ===== */
.testimonial-carousel { margin-top: 48px; }
.testimonial-card {
  background: #1A1A1A;
  border: 1px solid rgba(255, 193, 7, 0.15);
  border-radius: 16px;
  padding: 40px;
  position: relative;
  overflow: hidden;
  min-height: 280px;
}
.quote-icon {
  position: absolute;
  top: 24px; left: 24px;
  width: 48px; height: 48px;
  color: rgba(255, 193, 7, 0.2);
}
.testimonial-slides { position: relative; }
.slide {
  transition: all 0.5s ease;
}
.slide:not(.active) {
  position: absolute;
  inset: 0;
  opacity: 0;
  transform: translateX(30px);
  pointer-events: none;
}
.slide.active {
  opacity: 1;
  transform: translateX(0);
}
.stars {
  display: flex;
  gap: 4px;
  justify-content: center;
  margin-bottom: 20px;
}
.stars svg {
  width: 20px; height: 20px;
  color: #FFC107;
}
.testimonial-card blockquote {
  font-size: 1.05rem;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.7;
  font-style: italic;
}
.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 24px;
}
.author-avatar {
  width: 48px; height: 48px;
  border-radius: 50%;
  background: rgba(255, 193, 7, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 0.9rem;
  color: #FFC107;
}
.author-name {
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  color: #fff;
}
.author-loc {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.5);
}
.carousel-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-top: 24px;
}
.carousel-btn {
  width: 40px; height: 40px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s;
}
.carousel-btn:hover {
  border-color: #FFC107;
  color: #FFC107;
}
.carousel-btn svg { width: 20px; height: 20px; }
.carousel-dots {
  display: flex;
  gap: 8px;
}
.dot {
  width: 10px; height: 10px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  transition: all 0.3s;
}
.dot:hover { background: rgba(255, 255, 255, 0.4); }
.dot.active {
  background: #FFC107;
  transform: scale(1.2);
}

/* ===== CONTACT ===== */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
}
.contact-form { 
  /* nothing special */ 
}
.form-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  margin-bottom: 16px;
}
.form-input {
  width: 100%;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  padding: 14px 18px;
  color: #fff;
  transition: all 0.3s;
  margin-bottom: 16px;
}
.form-input::placeholder { color: rgba(255, 255, 255, 0.35); }
.form-input:focus {
  outline: none;
  border-color: #FFC107;
  box-shadow: 0 0 0 3px rgba(255, 193, 7, 0.15);
}
select.form-input {
  appearance: none;
  cursor: pointer;
  color: rgba(255, 255, 255, 0.7);
}
select.form-input option {
  background: #1A1A1A;
  color: #fff;
}
textarea.form-input {
  resize: vertical;
  min-height: 140px;
}
.form-success {
  display: none;
  align-items: center;
  gap: 8px;
  color: #4ade80;
  font-size: 0.9rem;
  padding: 12px 0;
}
.form-success.show { display: flex; }
.form-success svg { width: 20px; height: 20px; }

.info-card {
  background: #1A1A1A;
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 16px;
  padding: 32px;
}
.info-card h3 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 1.2rem;
  color: #fff;
  margin-bottom: 24px;
}
.info-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 16px;
}
.info-icon {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: rgba(255, 193, 7, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 2px;
}
.info-icon svg { width: 20px; height: 20px; color: #FFC107; }
.info-label {
  display: block;
  font-size: 0.75rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: rgba(255, 255, 255, 0.5);
}
.info-value {
  font-size: 0.95rem;
  color: #fff;
  transition: color 0.3s;
}
.info-value:hover { color: #FFC107; }
.social-links {
  display: flex;
  gap: 12px;
  margin-top: 24px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}
.social-link {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  transition: all 0.3s;
}
.social-link:hover {
  background: #FFC107;
  color: #1A1A1A;
  border-color: #FFC107;
  transform: scale(1.1);
}
.social-link svg { width: 20px; height: 20px; }
.map-container {
  margin-top: 24px;
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  aspect-ratio: 16/9;
}
.map-container img { width: 100%; height: 100%; object-fit: cover; }
.map-overlay {
  position: absolute;
  bottom: 12px; left: 12px;
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(4px);
  color: #fff;
  font-size: 0.8rem;
  font-weight: 500;
  padding: 8px 16px;
  border-radius: 8px;
}

/* ===== FOOTER ===== */
footer {
  background: #0D0D0D;
  border-top: 1px solid rgba(255, 193, 7, 0.1);
  padding: 48px 0 24px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
}
.footer-brand .logo-text { font-size: 1.1rem; }
.footer-tagline {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.5);
  margin-top: 8px;
  font-style: italic;
}
.footer-links h4 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 1rem;
  color: #fff;
  margin-bottom: 12px;
}
.footer-links a {
  display: block;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.5);
  line-height: 2.2;
  transition: color 0.3s;
}
.footer-links a:hover { color: #FFC107; }
.footer-bottom {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  margin-top: 24px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}
.footer-bottom p {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.4);
}
.footer-bottom p:last-child { font-style: italic; }

/* ===== FLOATING BUTTONS ===== */
.floating-buttons {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 40;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.float-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: transform 0.3s;
}
.float-btn:hover { transform: scale(1.1); }
.float-btn.whatsapp {
  width: 48px; height: 48px;
  background: #25D366;
  color: #fff;
  box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
}
.float-btn.whatsapp svg { width: 22px; height: 22px; }
.float-btn.call {
  width: 56px; height: 56px;
  background: #FFC107;
  color: #1A1A1A;
  position: relative;
  box-shadow: 0 4px 20px rgba(255, 193, 7, 0.4);
}
.float-btn.call svg { width: 24px; height: 24px; }
.pulse-ring {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 2px solid #FFC107;
  animation: pulse-ring 2s ease-out infinite;
}
.pulse-ring.delay { animation-delay: 0.5s; }

/* ===== SCROLL TO TOP ===== */
.scroll-top {
  position: fixed;
  bottom: 24px;
  left: 24px;
  z-index: 40;
  width: 44px; height: 44px;
  border-radius: 50%;
  background: rgba(255, 193, 7, 0.9);
  color: #1A1A1A;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.3s;
  pointer-events: none;
}
.scroll-top.visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}
.scroll-top:hover { background: #FFC107; transform: scale(1.1); }
.scroll-top svg { width: 20px; height: 20px; }

/* ===== MODAL LEGAL ===== */
.legal-modal {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 1000;
  background: rgba(0, 0, 0, 0.85);
  backdrop-filter: blur(8px);
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  transition: opacity 0.3s ease;
}
.legal-modal.show {
  display: flex;
  opacity: 1;
}
.legal-modal-content {
  background: #1A1A1A;
  border: 1px solid rgba(255, 193, 7, 0.2);
  border-radius: 16px;
  max-width: 800px;
  width: 100%;
  max-height: 85vh;
  overflow-y: auto;
  padding: 40px;
  position: relative;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}
.legal-modal-content h2 {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.8rem;
  color: #FFC107;
  margin-bottom: 24px;
  padding-right: 40px;
}
.legal-modal-content h3 {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.1rem;
  color: #fff;
  margin-top: 24px;
  margin-bottom: 8px;
}
.legal-modal-content p, .legal-modal-content li {
  font-size: 0.92rem;
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.7;
  margin-bottom: 10px;
}
.legal-modal-content ul {
  padding-left: 20px;
  margin-bottom: 12px;
}
.legal-modal-content ul li {
  list-style: disc;
}
.legal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255, 193, 7, 0.15);
  color: #FFC107;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  cursor: pointer;
  transition: all 0.3s;
}
.legal-close:hover {
  background: #FFC107;
  color: #1A1A1A;
  transform: rotate(90deg);
}

/* ===== FOOTER SIMBA CREDIT ===== */
.footer-simba {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.8rem;
  transition: color 0.3s;
}
.footer-simba a {
  color: #FFC107;
  font-weight: 600;
  transition: opacity 0.3s;
}
.footer-simba a:hover {
  opacity: 0.8;
  text-decoration: underline;
}

/* ===== ANIMATIONS ===== */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ===== KEYFRAMES ===== */
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-15px); }
}
@keyframes bounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(8px); }
}
@keyframes spin {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}
@keyframes pulse-ring {
  0% { transform: scale(1); opacity: 0.8; }
  100% { transform: scale(1.5); opacity: 0; }
}

/* ===== RESPONSIVE ===== */
@media (min-width: 768px) {
  .nav-links { display: flex; }
  .btn-nav { display: inline-flex; }
  .nav-toggle { display: none; }
  .hero-ctas { flex-direction: row; justify-content: center; }
  .hero-bee { display: block; }
  .services-grid { grid-template-columns: repeat(3, 1fr); }
  .advantages-grid { grid-template-columns: repeat(2, 1fr); }
  .about-grid { grid-template-columns: 45% 55%; }
  .contact-grid { grid-template-columns: 1fr 1fr; }
  .form-row { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: repeat(3, 1fr); }
  .footer-bottom { flex-direction: row; justify-content: space-between; }
  .floating-buttons { display: none; }
}

@media (max-width: 767px) {
  .hero-bee {
    display: block;
    width: 60vw;
    opacity: 0.3;
    z-index: 0;
  }
}

@media (min-width: 1024px) {
  .advantages-grid { grid-template-columns: repeat(4, 1fr); }
}
