/* ========================================
   LANDING PAGE - MODERN DESIGN
   ======================================== */

:root {
  --primary-blue: rgb(0, 121, 193);
  --lighter-blue: #dce8f6;
  --light-blue: #84b1de;
  --dark-blue: #006dac;
  --primary-red: #ee1c25;
  --dark-red: #dd1b25;
  --bg-light-gray: #f8f9fa;
  --gradient-primary: linear-gradient(135deg, rgb(0, 121, 193), rgba(238, 28, 37, 0.8));
  --acr-nord: #3470bf;
  --acr-nord-dark: rgb(24, 63, 162);
  --acr-centre: #d92929;
  --acr-centre-dark: rgb(150, 22, 22);
  --acr-idf: #ff914d;
  --acr-idf-dark: rgb(197, 101, 41);
  --acr-aquitaine: #3b568c;
  --acr-aquitaine-dark: rgb(27, 53, 105);
}

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

body {
  font-family: 'Montserrat', sans-serif;
  color: #333;
  line-height: 1.6;
  overflow-x: hidden;
}

body.menu-open {
  overflow: hidden;
}

/* ========== HEADER ========== */
.modern-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}

.modern-header.scrolled {
  box-shadow: 0 2px 30px rgba(0, 0, 0, 0.1);
}

.nav-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
}

.brand-logo img {
  height: clamp(35px, 8vw, 50px);
  width: auto;
  transition: transform 0.3s ease;
}

.brand-logo:hover img {
  transform: scale(1.05);
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 3rem;
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 2rem;
  margin: 0;
  padding: 0;
}

.nav-link {
  color: #333;
  text-decoration: none;
  font-weight: 500;
  font-size: 0.95rem;
  position: relative;
  transition: color 0.3s ease;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--primary-blue);
  transition: width 0.3s ease;
}

.nav-link:hover {
  color: var(--primary-blue);
}

.nav-link:hover::after {
  width: 100%;
}

.nav-actions {
  display: flex;
  gap: 1rem;
}

.btn-contact,
.btn-login {
  padding: 0.6rem 1.5rem;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.9rem;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 40px;
}

.btn-contact {
  background: var(--primary-red);
  color: white;
  box-shadow: 0 4px 15px rgba(238, 28, 37, 0.3);
}

.btn-contact:hover {
  background: var(--dark-red);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(238, 28, 37, 0.4);
  color: white;
}

.btn-login {
  background: transparent;
  color: var(--primary-blue);
  border: 2px solid var(--primary-blue);
}

.btn-login:hover {
  background: var(--primary-blue);
  color: white;
}

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

.mobile-toggle span {
  width: 25px;
  height: 3px;
  background: var(--primary-blue);
  border-radius: 3px;
  transition: all 0.3s ease;
}

.mobile-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(8px, 8px);
}

.mobile-toggle.active span:nth-child(2) {
  opacity: 0;
}

.mobile-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -7px);
}

/* ========== HERO ========== */
.hero-section {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  padding: 120px 2rem 80px;
  background: linear-gradient(135deg, #f8f9fa 0%, #e8f4f8 100%);
}

.hero-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: 0;
}

.gradient-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.3;
  animation: float 20s ease-in-out infinite;
}

.orb-1 {
  width: 500px;
  height: 500px;
  background: var(--primary-blue);
  top: -10%;
  left: -10%;
}

.orb-2 {
  width: 400px;
  height: 400px;
  background: var(--primary-red);
  bottom: -10%;
  right: -10%;
  animation-delay: 5s;
}

.orb-3 {
  width: 300px;
  height: 300px;
  background: var(--light-blue);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  animation-delay: 10s;
}

@keyframes float {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33% { transform: translate(30px, -30px) scale(1.1); }
  66% { transform: translate(-20px, 20px) scale(0.9); }
}

.hero-content {
  max-width: 1400px;
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero-title {
  font-family: 'Lato', sans-serif;
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 1.5rem;
  color: #000;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.hero-title .highlight-blue {
  color: var(--primary-blue);
}

.hero-title .highlight-red {
  color: var(--primary-red);
}

.hero-subtitle {
  font-size: clamp(1rem, 2.5vw, 1.3rem);
  color: #555;
  margin-bottom: 2.5rem;
  line-height: 1.8;
  word-wrap: break-word;
  overflow-wrap: break-word;
  hyphens: auto;
}

.hero-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  padding: 1rem 2.5rem;
  background: var(--primary-red);
  color: white;
  text-decoration: none;
  border-radius: 50px;
  font-weight: 600;
  font-size: clamp(0.9rem, 1.8vw, 1.05rem);
  box-shadow: 0 10px 30px rgba(238, 28, 37, 0.3);
  transition: all 0.3s ease;
}

.hero-cta:hover {
  background: var(--dark-red);
  transform: translateY(-3px);
  box-shadow: 0 15px 40px rgba(238, 28, 37, 0.4);
  color: white;
}

.hero-cta:hover i {
  transform: translateX(5px);
}

.hero-visual {
  display: flex;
  justify-content: center;
  align-items: center;
}

.logo-container {
  width: 100%;
  max-width: clamp(250px, 40vw, 500px);
}

.logo-container img {
  width: 100%;
  height: auto;
  filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.1));
  transition: transform 0.3s ease;
}

.logo-container img:hover {
  transform: scale(1.05);
}

.scroll-indicator {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  width: 30px;
  height: 50px;
  border: 2px solid var(--primary-blue);
  border-radius: 20px;
  display: flex;
  justify-content: center;
  padding-top: 8px;
}

.scroll-indicator span {
  width: 6px;
  height: 10px;
  background: var(--primary-blue);
  border-radius: 3px;
  animation: scroll 2s ease-in-out infinite;
}

@keyframes scroll {
  0% { opacity: 0; transform: translateY(0); }
  50% { opacity: 1; }
  100% { opacity: 0; transform: translateY(20px); }
}

/* ========== SECTIONS COMMUNES ========== */
.section-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2rem;
}

.section-header {
  text-align: center;
  margin-bottom: 4rem;
}

.section-badge {
  display: inline-block;
  padding: 0.5rem 1.5rem;
  background: linear-gradient(135deg, var(--lighter-blue), #e8f4f8);
  color: var(--primary-blue);
  border-radius: 50px;
  font-size: clamp(0.8rem, 1.5vw, 0.95rem);
  font-weight: 600;
  margin-bottom: 1rem;
}

.section-title {
  font-family: 'Lato', sans-serif;
  font-size: clamp(2.5rem, 4vw, 3.5rem);
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 1rem;
}

.title-underline {
  width: 80px;
  height: 4px;
  background: var(--gradient-primary);
  margin: 0 auto;
  border-radius: 2px;
}

.section-intro {
  max-width: 900px;
  margin: 0 auto 4rem;
  text-align: center;
  font-size: clamp(0.95rem, 2vw, 1.1rem);
  color: #666;
  line-height: 1.8;
}

/* ========== ABOUT ========== */
.about-section {
  padding: 100px 0;
  background: white;
}

.about-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}

.about-card {
  background: linear-gradient(135deg, #f8f9fa 0%, white 100%);
  padding: 2.5rem;
  border-radius: 20px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.about-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: var(--gradient-primary);
  transform: scaleY(0);
  transition: transform 0.3s ease;
}

.about-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.about-card:hover::before {
  transform: scaleY(1);
}

.card-icon {
  width: 70px;
  height: 70px;
  background: var(--gradient-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  transition: transform 0.3s ease;
}

.about-card:hover .card-icon {
  transform: scale(1.1) rotate(5deg);
}

.card-icon i {
  font-size: 2rem;
  color: white;
}

.about-card p {
  color: #555;
  line-height: 1.8;
  margin: 0;
}

/* ========== SERVICES ========== */
.services-section {
  padding: 100px 0;
  background: linear-gradient(135deg, #f8f9fa 0%, #e8f4f8 100%);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2.5rem;
}

.service-card {
  background: white;
  padding: 3rem 2rem;
  border-radius: 20px;
  text-align: center;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 5px;
  background: var(--gradient-primary);
  transform: scaleX(0);
  transition: transform 0.4s ease;
}

.service-card:hover {
  transform: translateY(-15px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

.service-card:hover::before {
  transform: scaleX(1);
}

.service-icon-wrapper {
  width: 90px;
  height: 90px;
  background: var(--gradient-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 2rem;
  transition: all 0.4s ease;
}

.service-card:hover .service-icon-wrapper {
  transform: rotateY(180deg);
}

.service-icon-wrapper i {
  font-size: 2.5rem;
  color: white;
}

.service-card h3 {
  font-family: 'Lato', sans-serif;
  font-size: clamp(1.2rem, 2.5vw, 1.4rem);
  font-weight: 600;
  color: var(--primary-blue);
  margin-bottom: 1rem;
}

.service-card p {
  color: #666;
  line-height: 1.7;
  margin: 0;
  font-size: clamp(0.9rem, 1.8vw, 1rem);
}

.card-shine {
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
  transition: left 0.5s ease;
}

.service-card:hover .card-shine {
  left: 100%;
}

/* ========== AGENCIES ========== */
.agencies-section {
  padding: 100px 0;
  background: white;
}

.interactive-map-container {
  max-width: 1200px;
  margin: 0 auto;
}

.map-wrapper {
  display: grid;
  grid-template-columns: 1fr 400px;
  gap: 3rem;
  align-items: center;
  margin-bottom: 3rem;
}

.map-svg-container {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 2rem;
  background: linear-gradient(135deg, #f8f9fa 0%, white 100%);
  border-radius: 20px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
}

.map-svg-container svg {
  width: 100%;
  max-width: 500px;
  height: auto;
  filter: drop-shadow(0 5px 15px rgba(0, 0, 0, 0.1));
}

.map-svg-container .map-icon {
  cursor: pointer;
  transition: filter 0.3s ease, transform 0.3s ease;
  transform-box: fill-box;
  transform-origin: center bottom;
  transform: scale(1.2);
}

.map-svg-container .map-icon:hover {
  filter: brightness(1.15) drop-shadow(0 3px 8px rgba(0, 0, 0, 0.3));
}

.map-svg-container .map-icon.active-pin {
  animation: pulse 1.5s ease-in-out infinite;
  filter: drop-shadow(0 4px 10px rgba(0, 0, 0, 0.4));
}

@keyframes pulse {
  0%, 100% { 
    transform: scale(1);
    filter: drop-shadow(0 4px 10px rgba(0, 0, 0, 0.4));
  }
  50% { 
    transform: scale(1.15);
    filter: drop-shadow(0 6px 15px rgba(0, 0, 0, 0.5)) brightness(1.15);
  }
}

/* Style pour les différentes agences dans le SVG */
.map-svg-container .nord path:first-child {
  fill: var(--acr-nord);
}

.map-svg-container .centre path:first-child {
  fill: var(--acr-centre);
}

.map-svg-container .idf path:first-child {
  fill: var(--acr-idf);
}

.map-svg-container .aquitaine path:first-child {
  fill: var(--acr-aquitaine);
}

.map-info-panel {
  background: white;
  border-radius: 20px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
  padding: 2.5rem;
  min-height: 350px;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.info-panel-content {
  width: 100%;
}

.info-welcome {
  text-align: center;
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.5s ease;
}

.info-welcome.active {
  opacity: 1;
  transform: translateY(0);
}

.info-welcome i {
  font-size: 3rem;
  color: var(--primary-blue);
  margin-bottom: 1rem;
}

.info-welcome h3 {
  font-family: 'Lato', sans-serif;
  font-size: 1.5rem;
  color: #1a1a1a;
  margin-bottom: 1rem;
}

.info-welcome p {
  color: #666;
  line-height: 1.6;
}

.info-agency {
  opacity: 0;
  transform: translateX(20px);
  transition: all 0.5s ease;
}

.info-agency.active {
  opacity: 1;
  transform: translateX(0);
}

.info-header {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  margin-bottom: 2rem;
  padding-bottom: 1.5rem;
  border-bottom: 2px solid #f0f0f0;
}

.info-header img {
  height: 50px;
  width: auto;
}

.info-header h3 {
  font-family: 'Lato', sans-serif;
  font-size: 1.5rem;
  color: #1a1a1a;
  margin: 0;
}

.info-body {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.info-address {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1rem;
  background: #f8f9fa;
  border-radius: 12px;
}

.info-address i {
  font-size: 1.3rem;
  margin-top: 0.2rem;
  flex-shrink: 0;
}

.info-agency.acr-nord .info-address i { color: var(--acr-nord); }
.info-agency.acr-centre .info-address i { color: var(--acr-centre); }
.info-agency.acr-idf .info-address i { color: var(--acr-idf); }
.info-agency.acr-aquitaine .info-address i { color: var(--acr-aquitaine); }

.info-address span {
  line-height: 1.6;
  color: #333;
  font-size: 0.95rem;
}

.info-link {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  padding: 0.8rem 1.5rem;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  color: white;
  transition: all 0.3s ease;
  align-self: flex-start;
}

.info-agency.acr-nord .info-link { background: var(--acr-nord); }
.info-agency.acr-nord .info-link:hover { background: var(--acr-nord-dark); transform: translateY(-2px); box-shadow: 0 5px 15px rgba(52, 112, 191, 0.3); }

.info-agency.acr-centre .info-link { background: var(--acr-centre); }
.info-agency.acr-centre .info-link:hover { background: var(--acr-centre-dark); transform: translateY(-2px); box-shadow: 0 5px 15px rgba(217, 41, 41, 0.3); }

.info-agency.acr-idf .info-link { background: var(--acr-idf); }
.info-agency.acr-idf .info-link:hover { background: var(--acr-idf-dark); transform: translateY(-2px); box-shadow: 0 5px 15px rgba(255, 145, 77, 0.3); }

.info-agency.acr-aquitaine .info-link { background: var(--acr-aquitaine); }
.info-agency.acr-aquitaine .info-link:hover { background: var(--acr-aquitaine-dark); transform: translateY(-2px); box-shadow: 0 5px 15px rgba(59, 86, 140, 0.3); }

.map-legend {
  display: flex;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
  padding: 2rem;
  background: linear-gradient(135deg, #f8f9fa 0%, white 100%);
  border-radius: 15px;
}

.legend-item {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  font-weight: 500;
  color: #333;
}

.legend-dot {
  width: 16px;
  height: 16px;
  border-radius: 50%;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.legend-dot.acr-nord { background: var(--acr-nord); }
.legend-dot.acr-centre { background: var(--acr-centre); }
.legend-dot.acr-idf { background: var(--acr-idf); }
.legend-dot.acr-aquitaine { background: var(--acr-aquitaine); }

/* ========== CTA ========== */
.cta-section {
  padding: 120px 2rem;
  background: var(--gradient-primary);
  position: relative;
  overflow: hidden;
}

.cta-wrapper {
  max-width: 1400px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.cta-content {
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

.cta-content h2 {
  font-family: 'Lato', sans-serif;
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 700;
  color: white;
  margin-bottom: 1.5rem;
  text-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.cta-content p {
  font-size: clamp(0.95rem, 2.2vw, 1.3rem);
  color: rgba(255, 255, 255, 0.95);
  margin-bottom: 3rem;
  text-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.cta-button {
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  padding: 1.2rem 3rem;
  background: white;
  color: var(--primary-red);
  text-decoration: none;
  border-radius: 50px;
  font-weight: 700;
  font-size: clamp(0.95rem, 2vw, 1.1rem);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
  transition: all 0.3s ease;
}

.cta-button:hover {
  transform: translateY(-5px) scale(1.05);
  box-shadow: 0 15px 50px rgba(0, 0, 0, 0.4);
  color: var(--primary-red);
}

.cta-button:hover i {
  transform: translateX(5px);
}

.cta-decoration {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.decoration-circle {
  position: absolute;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  animation: float 15s ease-in-out infinite;
}

.circle-1 { width: 300px; height: 300px; top: -100px; left: -100px; }
.circle-2 { width: 200px; height: 200px; bottom: -50px; right: 10%; animation-delay: 5s; }
.circle-3 { width: 150px; height: 150px; top: 50%; right: -75px; animation-delay: 10s; }

/* ========== FOOTER ========== */
.modern-footer {
  background: #1a1a1a;
  color: #ccc;
}

.footer-content {
  max-width: 1400px;
  margin: 0 auto;
}

.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 4rem;
  padding: 4rem 2rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-logo {
  height: 60px;
  width: auto;
  margin-bottom: 1rem;
}

.footer-slogan {
  font-style: italic;
  color: #999;
  margin: 0 0 1.5rem 0;
}

.algorel-badge {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.algorel-badge span {
  font-weight: 600;
  color: #fff;
}

.algorel-badge img {
  height: 40px;
}

.footer-nav h3,
.footer-social h3 {
  font-family: 'Lato', sans-serif;
  font-size: 1.2rem;
  color: white;
  margin-bottom: 1.5rem;
  font-weight: 600;
}

.footer-nav ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.footer-nav a {
  color: #ccc;
  text-decoration: none;
  transition: all 0.3s ease;
}

.footer-nav a:hover {
  color: var(--primary-blue);
  transform: translateX(5px);
}

.social-links {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.social-link {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  text-decoration: none;
  transition: all 0.3s ease;
}

.social-link:hover {
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.social-link.acr-nord { background: var(--acr-nord); }
.social-link.acr-centre { background: var(--acr-centre); }
.social-link.acr-idf { background: var(--acr-idf); }
.social-link.acr-aquitaine { background: var(--acr-aquitaine); }

.footer-bottom {
  padding: 1.5rem 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.copyright {
  margin: 0;
  color: #999;
}

.legal-links {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  gap: 2rem;
}

.legal-links a {
  color: #999;
  text-decoration: none;
  transition: color 0.3s ease;
}

.legal-links a:hover {
  color: var(--primary-blue);
}

/* ========== RESPONSIVE ========== */
@media (max-width: 1200px) {
  .map-wrapper {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .map-info-panel {
    min-height: 300px;
  }
}

@media (max-width: 992px) {
  .nav-container {
    padding: 0 1.5rem;
    height: 70px;
  }
  
  .brand-logo img {
    height: 40px;
  }
  
  .mobile-toggle {
    display: flex;
  }
  
  .nav-menu {
    position: fixed;
    top: 70px;
    left: 0;
    width: 100%;
    height: calc(100vh - 70px);
    background: white;
    flex-direction: column;
    justify-content: center;
    gap: 2rem;
    transform: translateX(-100%);
    transition: transform 0.3s ease;
  }
  
  .nav-menu.active {
    transform: translateX(0);
  }
  
  .nav-links {
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
  }
  
  .nav-link {
    font-size: 1.2rem;
  }
  
  .nav-actions {
    flex-direction: column;
    width: 80%;
    max-width: 300px;
  }
  
  .btn-contact,
  .btn-login {
    width: 100%;
    text-align: center;
    padding: 0.8rem 2rem;
  }
  
  .hero-section {
    min-height: 100vh;
    padding: 100px 1.5rem 80px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
  }
  
  .hero-content {
    grid-template-columns: 1fr;
    gap: 2rem;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }
  
  .hero-visual {
    order: -1;
  }
  
  .logo-container {
    max-width: 250px;
    margin: 0 auto;
  }
  
  .hero-text {
    text-align: center;
  }
  
  .hero-title {
    font-size: clamp(2rem, 6vw, 2.5rem);
    margin-bottom: 1rem;
  }
  
  .hero-subtitle {
    font-size: clamp(1rem, 3vw, 1.1rem);
    margin-bottom: 1.5rem;
  }
  
  .hero-cta {
    margin: 0 auto;
    width: fit-content;
  }
  
  .scroll-indicator {
    position: relative;
    bottom: auto;
    left: auto;
    transform: none;
    margin: 1.5rem auto 0;
  }
  
  .footer-top {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  
  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
  
  .legal-links {
    flex-direction: column;
    gap: 0.5rem;
  }
}

@media (max-width: 768px) {
  .hero-section {
    min-height: 100vh;
    padding: 90px 1rem 60px;
  }
  
  .hero-content {
    gap: 1.5rem;
  }
  
  .logo-container {
    max-width: 200px;
  }
  
  .hero-title {
    font-size: clamp(1.8rem, 5vw, 2.2rem);
  }
  
  .hero-subtitle {
    font-size: clamp(0.95rem, 2.5vw, 1.05rem);
  }
  
  .hero-cta {
    padding: 0.9rem 2rem;
    font-size: 1rem;
  }
  
  .scroll-indicator {
    margin: 1.2rem auto 0;
  }
  
  .about-section,
  .services-section,
  .agencies-section {
    padding: 60px 0;
  }
  
  .about-grid,
  .services-grid {
    grid-template-columns: 1fr;
  }
  
  .map-svg-container {
    padding: 1rem;
  }
  
  .map-svg-container svg {
    max-width: 100%;
  }
  
  /* Augmenter la taille des pins sur mobile */
  .map-svg-container .map-icon {
    transform: scale(1.5);
  }
  
  .map-info-panel {
    padding: 1.5rem;
    min-height: 280px;
  }
  
  .info-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
  }
  
  .info-header img {
    height: 40px;
  }
  
  .map-legend {
    gap: 1rem;
    padding: 1.5rem;
  }
  
  .legend-item {
    font-size: 0.9rem;
  }
  
  .cta-section {
    padding: 80px 1.5rem;
  }
}
