:root {
  --primary-blue: #0F3460;
  --dark-blue: #16213E;
  --light-blue: #1A5F7A;
  --accent-red: #E94560;
  --white: #ffffff;
  --light-gray: #F8F9FA;
  --gray: #6C757D;
  --dark-gray: #343A40;
  --shadow: 0 4px 6px rgba(0, 0, 0, 0.07);
  --shadow-lg: 0 10px 25px rgba(0, 0, 0, 0.1);
  --transition-speed: 0.3s;
  --border-radius: 8px;
  --border-radius-lg: 12px;
}

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

*:focus-visible {
  outline: 2px solid var(--accent-red);
  outline-offset: 2px;
}

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  line-height: 1.6;
  color: var(--dark-gray);
  background-color: var(--white);
  overflow-x: hidden;
  min-height: 100vh;
  padding-bottom: 90px;
}

@media (min-width: 768px) {
  body {
    padding-bottom: 100px;
  }
}

/* Skip to main content link for accessibility */
.skip-to-main {
  position: absolute;
  top: -100px;
  left: 0;
  background: var(--accent-red);
  color: var(--white);
  padding: 0.75rem 1.5rem;
  text-decoration: none;
  z-index: 10000;
  font-weight: 600;
}

.skip-to-main:focus {
  top: 0;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
  width: 100%;
}

@media (min-width: 768px) {
  .container {
    padding: 0 2rem;
  }
}

@media (min-width: 1024px) {
  .container {
    padding: 0 2.5rem;
  }
}

.header {
  background-color: var(--white);
  box-shadow: var(--shadow);
  position: sticky;
  top: 0;
  z-index: 1000;
  transition: transform var(--transition-speed) ease;
  will-change: transform;
}

.header-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.75rem 0;
  gap: 1rem;
}

@media (max-width: 480px) {
  .header-content {
    gap: 0.5rem;
    padding: 0.75rem 0.5rem;
  }
}

@media (min-width: 768px) {
  .header-content {
    padding: 1rem 0;
  }
}

.logo {
  display: flex;
  align-items: center;
}

.logo-img {
  height: 40px;
  width: auto;
  object-fit: contain;
  flex-shrink: 0;
}

@media (max-width: 480px) {
  .logo-img {
    height: 35px;
  }
}

@media (min-width: 768px) {
  .logo-img {
    height: 45px;
  }
}

@media (min-width: 1024px) {
  .logo-img {
    height: 50px;
  }
}

.header-badge {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(34, 197, 94, 0.1);
  padding: 0.5rem 1rem;
  border-radius: 50px;
  font-size: 0.875rem;
  font-weight: 600;
  color: #22c55e;
  white-space: nowrap;
  flex-shrink: 0;
}

@media (max-width: 480px) {
  .header-badge {
    padding: 0.4rem 0.75rem;
    font-size: 0.75rem;
    gap: 0.35rem;
  }
}

.badge-dot {
  width: 8px;
  height: 8px;
  background: #22c55e;
  border-radius: 50%;
  animation: pulse 2s ease-in-out infinite;
}

@media (min-width: 768px) {
  .header-badge {
    font-size: 0.95rem;
  }
}

.hero {
  background: linear-gradient(135deg, var(--primary-blue) 0%, var(--dark-blue) 100%);
  color: var(--white);
  padding: 0;
  position: relative;
  overflow: hidden;
  isolation: isolate;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  opacity: 0.3;
}

.hero-top-bar {
  background: linear-gradient(135deg, #0A2A4A 0%, var(--dark-blue) 100%);
  padding: 0.75rem 0;
  border-bottom: 3px solid var(--accent-red);
  position: relative;
  z-index: 1;
}

@media (min-width: 768px) {
  .hero-top-bar {
    padding: 1rem 0;
  }
}

.hero-top-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.75rem;
}

@media (min-width: 768px) {
  .hero-top-content {
    gap: 1.5rem;
  }
}

.hero-top-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.8rem;
}

@media (min-width: 768px) {
  .hero-top-item {
    font-size: 0.95rem;
  }
}

.hero-top-icon {
  font-size: 1.25rem;
}

@media (min-width: 768px) {
  .hero-top-icon {
    font-size: 1.5rem;
  }
}

.hero-top-phone {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background-color: var(--accent-red);
  padding: 0.5rem 1rem;
  border-radius: 50px;
  text-decoration: none;
  color: var(--white);
  font-weight: 700;
  font-size: 0.875rem;
  transition: all var(--transition-speed) ease;
  box-shadow: 0 4px 15px rgba(233, 69, 96, 0.4);
}

@media (min-width: 768px) {
  .hero-top-phone {
    gap: 0.75rem;
    padding: 0.75rem 1.5rem;
    font-size: 1rem;
  }
}

.hero-top-phone:hover,
.hero-top-phone:focus {
  transform: scale(1.05);
  box-shadow: 0 6px 20px rgba(233, 69, 96, 0.6);
}

.hero-top-phone:active {
  transform: scale(1);
}

.phone-icon {
  font-size: 1.5rem;
  animation: ring 2s ease-in-out infinite;
}

@keyframes ring {
  0%, 100% { transform: rotate(0deg); }
  10%, 30% { transform: rotate(-15deg); }
  20%, 40% { transform: rotate(15deg); }
  50% { transform: rotate(0deg); }
}

.phone-number {
  font-size: 1rem;
  letter-spacing: 0.5px;
}

@media (min-width: 768px) {
  .phone-number {
    font-size: 1.125rem;
  }
}

.hero > .container {
  padding-top: 2rem;
  padding-bottom: 2rem;
}

@media (min-width: 768px) {
  .hero > .container {
    padding-top: 3rem;
    padding-bottom: 3rem;
  }
}

@media (min-width: 1024px) {
  .hero > .container {
    padding-top: 5rem;
    padding-bottom: 5rem;
  }
}

.hero-content {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  align-items: center;
  position: relative;
  z-index: 1;
}

@media (max-width: 390px) {
  .hero-content {
    gap: 1.5rem;
  }
}

@media (min-width: 1024px) {
  .hero-content {
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
  }
}

.hero-text {
  animation: fadeInUp 0.8s ease;
}

@media (max-width: 390px) {
  .hero-text {
    text-align: center;
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.badge {
  display: inline-block;
  background-color: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
  padding: 0.5rem 1rem;
  border-radius: 50px;
  font-size: 0.875rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
}

.hero h1 {
  font-size: 1.75rem;
  line-height: 1.2;
  margin-bottom: 1rem;
  font-weight: 800;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

@media (min-width: 640px) {
  .hero h1 {
    font-size: 2rem;
  }
}

@media (min-width: 768px) {
  .hero h1 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
  }
}

@media (min-width: 1024px) {
  .hero h1 {
    font-size: 3rem;
  }
}

.hero-subtitle {
  font-size: 1rem;
  margin-bottom: 1.5rem;
  opacity: 0.95;
  line-height: 1.6;
  max-width: 100%;
}

@media (min-width: 768px) {
  .hero-subtitle {
    font-size: 1.125rem;
    margin-bottom: 2rem;
  }
}

@media (min-width: 1024px) {
  .hero-subtitle {
    font-size: 1.25rem;
    margin-bottom: 2.5rem;
    max-width: 90%;
  }
}

.hero-cta {
  display: flex;
  gap: 1rem;
  margin-bottom: 2.5rem;
  flex-wrap: wrap;
  justify-content: center;
}

@media (max-width: 390px) {
  .hero-cta {
    flex-direction: column;
    gap: 0.75rem;
    margin-bottom: 2rem;
  }
}

.btn {
  padding: 0.875rem 1.5rem;
  border-radius: var(--border-radius);
  font-weight: 600;
  font-size: 0.95rem;
  text-decoration: none;
  transition: all var(--transition-speed) ease;
  cursor: pointer;
  border: none;
  display: inline-block;
  text-align: center;
  touch-action: manipulation;
  -webkit-tap-highlight-color: transparent;
}

@media (max-width: 390px) {
  .btn {
    padding: 0.75rem 1.25rem;
    font-size: 0.9rem;
    width: 100%;
  }
}

@media (min-width: 768px) {
  .btn {
    padding: 1rem 2rem;
    font-size: 1rem;
  }
}

.btn-large {
  padding: 1rem 2rem;
  font-size: 1rem;
  font-weight: 700;
}

@media (min-width: 768px) {
  .btn-large {
    padding: 1.25rem 2.5rem;
    font-size: 1.125rem;
  }
}

.btn-primary {
  background-color: var(--accent-red);
  color: var(--white);
  box-shadow: 0 4px 12px rgba(233, 69, 96, 0.3);
}

.btn-primary:hover,
.btn-primary:focus {
  background-color: #d63951;
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(233, 69, 96, 0.4);
}

.btn-primary:active {
  transform: translateY(0);
}

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

.btn-secondary:hover,
.btn-secondary:focus {
  background-color: var(--light-gray);
  transform: translateY(-2px);
}

.btn-secondary:active {
  transform: translateY(0);
}

.btn-emergency {
  background-color: var(--accent-red);
  color: var(--white);
  font-size: 1.125rem;
  box-shadow: 0 4px 12px rgba(233, 69, 96, 0.3);
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% {
    box-shadow: 0 4px 12px rgba(233, 69, 96, 0.3);
  }
  50% {
    box-shadow: 0 4px 20px rgba(233, 69, 96, 0.5);
  }
}

.btn-full {
  width: 100%;
}

.hero-trust {
  display: flex;
  gap: 1.5rem;
  margin-top: 1.5rem;
  flex-wrap: wrap;
}

@media (min-width: 768px) {
  .hero-trust {
    gap: 3rem;
    margin-top: 2rem;
  }
}

.trust-item {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.trust-number {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--accent-red);
  line-height: 1;
}

@media (min-width: 768px) {
  .trust-number {
    font-size: 2rem;
  }
}

.trust-label {
  font-size: 0.875rem;
  opacity: 0.9;
}

.hero-image {
  animation: fadeIn 1s ease;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

/* Vidéo Hero */
.hero-video {
  position: relative;
  width: 100%;
  max-width: 500px;
  margin: 0 auto;
}

@media (max-width: 390px) {
  .hero-video {
    max-width: 100%;
  }
}

.hero-video-player {
  width: 100%;
  height: auto;
  border-radius: var(--border-radius-lg);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
  display: block;
}

@media (min-width: 768px) {
  .hero-video {
    max-width: 600px;
  }
}

/* Animation de porte - EN COMMENTAIRE */
/*
.hero-animation {
  position: relative;
  width: 100%;
  max-width: 400px;
  margin: 0 auto;
}

.door-animation {
  width: 100%;
  height: auto;
  filter: drop-shadow(0 10px 30px rgba(0, 0, 0, 0.2));
}

.door-opening {
  transform-origin: 110px center;
  animation: doorOpen 3s ease-in-out infinite;
}

@keyframes doorOpen {
  0%, 100% {
    transform: perspective(400px) rotateY(0deg);
  }
  50% {
    transform: perspective(400px) rotateY(-75deg);
  }
}

.light-rays {
  animation: lightFade 3s ease-in-out infinite;
}

@keyframes lightFade {
  0%, 100% {
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
}

.key-icon {
  animation: keyFloat 2s ease-in-out infinite;
}

@keyframes keyFloat {
  0%, 100% {
    transform: translateY(0) rotate(0deg);
  }
  50% {
    transform: translateY(-10px) rotate(10deg);
  }
}
*/

/* Stats sous l'animation */
.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-top: 2rem;
}

@media (max-width: 390px) {
  .hero-stats {
    gap: 0.5rem;
    margin-top: 1.5rem;
  }
}

.stat-item {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  padding: 1rem;
  border-radius: var(--border-radius);
  text-align: center;
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: all 0.3s ease;
}

@media (max-width: 390px) {
  .stat-item {
    padding: 0.75rem 0.5rem;
  }
}

.stat-item:hover {
  background: rgba(255, 255, 255, 0.15);
  transform: translateY(-5px);
}

.stat-icon {
  font-size: 1.5rem;
  display: block;
  margin-bottom: 0.5rem;
}

.stat-number {
  display: block;
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 0.25rem;
}

@media (max-width: 390px) {
  .stat-number {
    font-size: 1.25rem;
  }
}

.stat-label {
  display: block;
  font-size: 0.75rem;
  opacity: 0.9;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

@media (max-width: 390px) {
  .stat-label {
    font-size: 0.65rem;
    letter-spacing: 0.3px;
  }
}

.services, .pricing, .zone, .reviews, .about, .contact {
  padding: 3rem 0;
}

@media (min-width: 768px) {
  .services, .pricing, .zone, .reviews, .about, .contact {
    padding: 4rem 0;
  }
}

@media (min-width: 1024px) {
  .services, .pricing, .zone, .reviews, .about, .contact {
    padding: 5rem 0;
  }
}

.services {
  background-color: var(--light-gray);
}

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

@media (min-width: 768px) {
  .section-header {
    margin-bottom: 3rem;
  }
}

.section-header h2 {
  font-size: 1.75rem;
  color: var(--primary-blue);
  margin-bottom: 0.75rem;
  font-weight: 800;
}

@media (min-width: 640px) {
  .section-header h2 {
    font-size: 2rem;
  }
}

@media (min-width: 768px) {
  .section-header h2 {
    font-size: 2.25rem;
    margin-bottom: 1rem;
  }
}

@media (min-width: 1024px) {
  .section-header h2 {
    font-size: 2.5rem;
  }
}

.section-header p {
  font-size: 1rem;
  color: var(--gray);
}

@media (min-width: 768px) {
  .section-header p {
    font-size: 1.125rem;
  }
}

.services-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

@media (min-width: 640px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .services-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
  }
}

.service-card {
  background-color: var(--white);
  padding: 1.5rem;
  border-radius: var(--border-radius-lg);
  box-shadow: var(--shadow);
  transition: all var(--transition-speed) ease;
}

@media (min-width: 768px) {
  .service-card {
    padding: 2rem;
  }
}

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

.service-icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

@media (min-width: 768px) {
  .service-icon {
    font-size: 3rem;
  }
}

.service-card h3 {
  color: var(--primary-blue);
  margin-bottom: 0.75rem;
  font-size: 1.25rem;
}

@media (min-width: 768px) {
  .service-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
  }
}

.service-card p {
  color: var(--gray);
  line-height: 1.8;
}

.pricing-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  margin-bottom: 2rem;
}

@media (min-width: 768px) {
  .pricing-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
  }
}

.price-card {
  background-color: var(--white);
  border-radius: var(--border-radius-lg);
  padding: 1.5rem;
  box-shadow: var(--shadow);
  transition: all var(--transition-speed) ease;
  position: relative;
  border: 2px solid transparent;
}

@media (min-width: 768px) {
  .price-card {
    padding: 2.5rem;
  }
}

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

.price-card.featured {
  border-color: var(--accent-red);
  box-shadow: 0 10px 30px rgba(233, 69, 96, 0.2);
}

.popular-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background-color: var(--accent-red);
  color: var(--white);
  padding: 0.5rem 1.5rem;
  border-radius: 50px;
  font-size: 0.875rem;
  font-weight: 600;
}

.price-header {
  text-align: center;
  margin-bottom: 2rem;
}

.price-header h3 {
  color: var(--primary-blue);
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

.price {
  font-size: 1.125rem;
  color: var(--gray);
}

.price span {
  font-size: 2.5rem;
  color: var(--accent-red);
  font-weight: 800;
  display: block;
  margin-top: 0.5rem;
}

.price-features {
  list-style: none;
}

.price-features li {
  padding: 0.75rem 0;
  border-bottom: 1px solid var(--light-gray);
  color: var(--gray);
}

.price-features li:last-child {
  border-bottom: none;
}

.pricing-note {
  background-color: var(--light-blue);
  color: var(--white);
  padding: 1.5rem;
  border-radius: 12px;
  text-align: center;
  font-size: 1.125rem;
}

/* Section Assurance Redesignée */
.insurance-section {
  background: var(--white);
  padding: 3rem 0;
  border-top: 3px solid var(--accent-red);
  border-bottom: 3px solid var(--accent-red);
}

@media (min-width: 768px) {
  .insurance-section {
    padding: 4rem 0;
  }
}

.insurance-header {
  text-align: center;
  margin-bottom: 2rem;
}

.insurance-header h2 {
  font-size: 1.5rem;
  color: var(--primary-blue);
  margin-bottom: 0.5rem;
  font-weight: 800;
}

@media (min-width: 768px) {
  .insurance-header h2 {
    font-size: 2rem;
  }
}

.insurance-note {
  font-size: 0.875rem;
  color: var(--gray);
  font-style: italic;
}

.insurance-logos {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 3rem;
  flex-wrap: wrap;
  padding: 2rem 0;
}

@media (min-width: 768px) {
  .insurance-logos {
    gap: 4rem;
  }
}

.insurance-logo {
  display: flex;
  align-items: center;
  justify-content: center;
}

.insurance-logo img {
  width: 180px;
  height: auto;
  max-height: 90px;
  object-fit: contain;
  transition: all 0.3s ease;
  filter: none;
}

@media (min-width: 768px) {
  .insurance-logo img {
    width: 200px;
    max-height: 100px;
  }
}

.insurance-logo:hover img {
  transform: scale(1.1);
}

.insurance-logo span {
  display: none;
}

/* Section Certification Chambre des Métiers */
.certification-section {
  background: linear-gradient(135deg, var(--primary-blue) 0%, var(--dark-blue) 100%);
  color: var(--white);
  padding: 2rem 0;
}

@media (min-width: 768px) {
  .certification-section {
    padding: 3rem 0;
  }
}

.certification-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 1.5rem;
}

@media (min-width: 768px) {
  .certification-content {
    flex-direction: row;
    justify-content: center;
    gap: 2rem;
  }
}

.certification-badge {
  flex-shrink: 0;
}

.certification-badge img {
  width: 200px;
  height: auto;
  filter: drop-shadow(0 8px 20px rgba(0, 0, 0, 0.3));
  animation: badgePulse 3s ease-in-out infinite;
}

@keyframes badgePulse {
  0%, 100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
}

@media (min-width: 768px) {
  .certification-badge img {
    width: 250px;
  }
}

@media (min-width: 1024px) {
  .certification-badge img {
    width: 300px;
  }
}

.certification-text {
  max-width: 600px;
}

.certification-text h3 {
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
  font-weight: 700;
}

@media (min-width: 768px) {
  .certification-text h3 {
    font-size: 1.5rem;
    text-align: left;
  }
}

.certification-text p {
  font-size: 0.95rem;
  opacity: 0.9;
}

@media (min-width: 768px) {
  .certification-text p {
    text-align: left;
  }
}

.zone {
  background-color: var(--light-gray);
}

.zone-content {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  align-items: center;
}

@media (min-width: 1024px) {
  .zone-content {
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
  }
}

.zone-subtitle {
  font-size: 1rem;
  color: var(--gray);
  margin-bottom: 1.5rem;
}

@media (min-width: 768px) {
  .zone-subtitle {
    font-size: 1.125rem;
    margin-bottom: 2rem;
  }
}

.zone-list {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

@media (min-width: 768px) {
  .zone-list {
    gap: 2rem;
  }
}

.zone-item {
  display: flex;
  gap: 1rem;
  align-items: start;
}

.zone-icon {
  font-size: 1.75rem;
  flex-shrink: 0;
}

@media (min-width: 768px) {
  .zone-icon {
    font-size: 2rem;
  }
}

.zone-item strong {
  display: block;
  color: var(--primary-blue);
  font-size: 1.125rem;
  margin-bottom: 0.5rem;
}

@media (min-width: 768px) {
  .zone-item strong {
    font-size: 1.25rem;
  }
}

.zone-item p {
  color: var(--gray);
}

.zone-map {
  max-width: 100%;
  margin: 0 auto;
}

@media (min-width: 768px) {
  .zone-map {
    max-width: 100%;
  }
}

@media (min-width: 1024px) {
  .zone-map {
    max-width: 100%;
  }
}

.zone-map svg,
.zone-map img {
  width: 100%;
  height: auto;
  border-radius: var(--border-radius-lg);
  box-shadow: var(--shadow-lg);
  display: block;
}

.map-idf-img {
  width: 100%;
  height: auto;
  border-radius: var(--border-radius-lg);
  box-shadow: var(--shadow-lg);
  border: 4px solid var(--primary-blue);
  display: block;
}

/* Animation SVG carte - EN COMMENTAIRE */
/*
.map-idf {
  background: white;
  border: 4px solid var(--primary-blue);
  min-height: 350px;
}

@media (min-width: 768px) {
  .map-idf {
    min-height: 450px;
  }
}

@media (min-width: 1024px) {
  .map-idf {
    min-height: 550px;
  }
}
*/

.reviews-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

@media (min-width: 640px) {
  .reviews-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .reviews-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
  }
}

.review-card {
  background-color: var(--white);
  padding: 1.5rem;
  border-radius: var(--border-radius-lg);
  box-shadow: var(--shadow);
  transition: all var(--transition-speed) ease;
}

@media (min-width: 768px) {
  .review-card {
    padding: 2rem;
  }
}

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

.review-stars {
  font-size: 1.25rem;
  margin-bottom: 1rem;
  color: #FFD700;
}

.review-text {
  color: var(--gray);
  line-height: 1.8;
  margin-bottom: 1.5rem;
  font-style: italic;
}

.review-author {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.review-author strong {
  color: var(--primary-blue);
  font-size: 1.125rem;
}

.review-author span {
  color: var(--gray);
  font-size: 0.875rem;
}

.about {
  background-color: var(--light-gray);
}

.about-content {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  align-items: center;
}

@media (min-width: 1024px) {
  .about-content {
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
  }
}

.about-image img {
  width: 100%;
  height: auto;
  border-radius: var(--border-radius-lg);
  box-shadow: var(--shadow-lg);
  display: block;
}

.about-text h2 {
  color: var(--primary-blue);
  font-size: 1.75rem;
  margin-bottom: 1rem;
  font-weight: 800;
}

@media (min-width: 640px) {
  .about-text h2 {
    font-size: 2rem;
  }
}

@media (min-width: 768px) {
  .about-text h2 {
    font-size: 2.25rem;
  }
}

@media (min-width: 1024px) {
  .about-text h2 {
    font-size: 2.5rem;
  }
}

.about-intro {
  font-size: 1rem;
  color: var(--gray);
  margin-bottom: 1.5rem;
  line-height: 1.7;
}

@media (min-width: 768px) {
  .about-intro {
    font-size: 1.125rem;
    margin-bottom: 2rem;
    line-height: 1.8;
  }
}

@media (min-width: 1024px) {
  .about-intro {
    font-size: 1.25rem;
  }
}

.about-features {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

@media (min-width: 768px) {
  .about-features {
    gap: 2rem;
  }
}

.about-feature {
  display: flex;
  gap: 1rem;
  align-items: start;
}

.about-icon {
  font-size: 1.75rem;
  flex-shrink: 0;
}

@media (min-width: 768px) {
  .about-icon {
    font-size: 2rem;
  }
}

.about-feature strong {
  display: block;
  color: var(--primary-blue);
  font-size: 1.125rem;
  margin-bottom: 0.5rem;
}

.about-feature p {
  color: var(--gray);
  line-height: 1.6;
}

.contact {
  background: linear-gradient(135deg, var(--primary-blue) 0%, var(--dark-blue) 100%);
  color: var(--white);
}

.contact-content {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

@media (min-width: 1024px) {
  .contact-content {
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
  }
}

.contact h2 {
  font-size: 1.75rem;
  margin-bottom: 1rem;
  font-weight: 800;
}

@media (min-width: 640px) {
  .contact h2 {
    font-size: 2rem;
  }
}

@media (min-width: 768px) {
  .contact h2 {
    font-size: 2.25rem;
  }
}

@media (min-width: 1024px) {
  .contact h2 {
    font-size: 2.5rem;
  }
}

.contact-subtitle {
  font-size: 1rem;
  margin-bottom: 1.5rem;
  opacity: 0.9;
}

@media (min-width: 768px) {
  .contact-subtitle {
    font-size: 1.125rem;
    margin-bottom: 2rem;
  }
}

.contact-methods {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 2rem;
}

.contact-method {
  display: flex;
  gap: 1rem;
  align-items: center;
  background-color: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  padding: 1.25rem;
  border-radius: 12px;
  text-decoration: none;
  color: var(--white);
  transition: all 0.3s ease;
}

.contact-method:hover {
  background-color: rgba(255, 255, 255, 0.2);
  transform: translateX(5px);
}

.contact-method-icon {
  font-size: 2rem;
  flex-shrink: 0;
}

.contact-method strong {
  display: block;
  font-size: 1rem;
  margin-bottom: 0.25rem;
}

.contact-method span {
  opacity: 0.9;
}

.emergency-cta {
  margin-top: 2rem;
}

.contact-form-wrapper {
  background-color: var(--white);
  padding: 1.5rem;
  border-radius: var(--border-radius-lg);
  box-shadow: var(--shadow-lg);
}

@media (min-width: 768px) {
  .contact-form-wrapper {
    padding: 2.5rem;
  }
}

.contact-form-wrapper h3 {
  color: var(--primary-blue);
  font-size: 1.5rem;
  margin-bottom: 1.25rem;
}

@media (min-width: 768px) {
  .contact-form-wrapper h3 {
    font-size: 1.75rem;
    margin-bottom: 1.5rem;
  }
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.form-group label {
  color: var(--primary-blue);
  font-weight: 600;
}

.form-group input,
.form-group textarea {
  padding: 0.875rem;
  border: 2px solid var(--light-gray);
  border-radius: var(--border-radius);
  font-family: inherit;
  font-size: 1rem;
  transition: border-color var(--transition-speed) ease;
  width: 100%;
}

@media (min-width: 768px) {
  .form-group input,
  .form-group textarea {
    padding: 1rem;
  }
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--primary-blue);
}

.form-group textarea {
  resize: vertical;
  min-height: 100px;
}

.footer {
  background-color: var(--dark-blue);
  color: var(--white);
  padding: 3rem 0 1.5rem;
}

@media (min-width: 768px) {
  .footer {
    padding: 4rem 0 2rem;
  }
}

.footer-content {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  margin-bottom: 2rem;
}

@media (min-width: 640px) {
  .footer-content {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .footer-content {
    grid-template-columns: repeat(4, 1fr);
    gap: 3rem;
    margin-bottom: 3rem;
  }
}

.footer-logo {
  display: flex;
  align-items: center;
  margin-bottom: 1rem;
}

.footer-logo-img {
  height: 40px;
  width: auto;
  object-fit: contain;
  opacity: 0.9;
}

@media (min-width: 768px) {
  .footer-logo-img {
    height: 50px;
  }
}

.footer-section h4 {
  font-size: 1.25rem;
  margin-bottom: 1rem;
  color: var(--white);
}

.footer-section p {
  opacity: 0.8;
  line-height: 1.8;
}

.footer-links, .footer-contact {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer-links a {
  color: var(--white);
  text-decoration: none;
  opacity: 0.8;
  transition: all 0.3s ease;
}

.footer-links a:hover {
  opacity: 1;
  padding-left: 5px;
}

.footer-contact li {
  opacity: 0.8;
}

.footer-bottom {
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
  opacity: 0.7;
}

/* Bouton d'appel sticky permanent - TOUJOURS VISIBLE */
.sticky-call-bar {
  position: fixed !important;
  bottom: 0 !important;
  left: 0 !important;
  right: 0 !important;
  width: 100vw !important;
  background: linear-gradient(135deg, var(--accent-red) 0%, #d63951 100%);
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.3);
  z-index: 999999 !important;
  padding: 1rem 0;
  animation: slideUp 0.5s ease, glow 2s ease-in-out infinite;
  transform: translateZ(0);
  will-change: transform;
  margin: 0 !important;
  min-height: 70px;
  display: flex !important;
  align-items: center;
}

@keyframes glow {
  0%, 100% {
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.3);
  }
  50% {
    box-shadow: 0 -6px 30px rgba(233, 69, 96, 0.6), 0 -2px 15px rgba(233, 69, 96, 0.4);
  }
}

@keyframes slideUp {
  from {
    transform: translateY(100%);
  }
  to {
    transform: translateY(0);
  }
}

@media (min-width: 768px) {
  .sticky-call-bar {
    padding: 1rem 0;
  }
}

.sticky-call-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}

.sticky-call-info {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: var(--white);
}

.pulse-dot {
  width: 12px;
  height: 12px;
  background: #22c55e;
  border-radius: 50%;
  animation: pulse 2s ease-in-out infinite;
  box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.7);
}

@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.7);
  }
  70% {
    box-shadow: 0 0 0 10px rgba(34, 197, 94, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(34, 197, 94, 0);
  }
}

.sticky-call-info div {
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
}

.sticky-call-info strong {
  font-size: 0.9rem;
  font-weight: 700;
}

@media (min-width: 768px) {
  .sticky-call-info strong {
    font-size: 1rem;
  }
}

.sticky-call-info span {
  font-size: 0.75rem;
  opacity: 0.9;
}

@media (min-width: 768px) {
  .sticky-call-info span {
    font-size: 0.85rem;
  }
}

.btn-call-now {
  background: var(--white);
  color: var(--accent-red);
  padding: 1rem 2rem;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  transition: all var(--transition-speed) ease;
  animation: callPulse 2s ease-in-out infinite;
  font-size: 1.1rem;
}

@keyframes callPulse {
  0%, 100% {
    transform: scale(1);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  }
  50% {
    transform: scale(1.08);
    box-shadow: 0 8px 30px rgba(233, 69, 96, 0.5);
  }
}

.btn-call-now:hover,
.btn-call-now:focus {
  transform: scale(1.1);
  box-shadow: 0 6px 25px rgba(0, 0, 0, 0.4);
}

.btn-call-now:active {
  transform: scale(1);
}

.call-icon {
  font-size: 1.5rem;
  animation: ring 2s ease-in-out infinite;
}

.call-text {
  font-size: 1.125rem;
  letter-spacing: 0.5px;
}

@media (max-width: 480px) {
  .sticky-call-bar {
    padding: 0.85rem 0;
  }
  
  .btn-call-now {
    padding: 0.85rem 1.5rem;
    font-size: 1rem;
  }
  
  .call-text {
    font-size: 1rem;
  }
  
  .sticky-call-info strong {
    font-size: 0.85rem;
  }
  
  .sticky-call-info span {
    display: none;
  }
}

/* Très petits écrans (< 360px) */
@media (max-width: 360px) {
  .sticky-call-bar {
    padding: 0.75rem 0;
  }
  
  .sticky-call-content {
    gap: 0.5rem;
  }
  
  .btn-call-now {
    padding: 0.75rem 1.25rem;
    font-size: 0.95rem;
    flex-shrink: 0;
  }
  
  .call-text {
    font-size: 0.95rem;
  }
  
  .sticky-call-info {
    gap: 0.5rem;
  }
  
  .sticky-call-info strong {
    font-size: 0.8rem;
  }
  
  .pulse-dot {
    width: 10px;
    height: 10px;
  }
}

/* Mobile-specific adjustments */
@media (max-width: 640px) {
  .hero-top-content {
    flex-direction: column;
    align-items: stretch;
  }

  .hero-top-phone {
    width: 100%;
    justify-content: center;
  }

  .hero-cta {
    flex-direction: column;
  }

  .btn {
    width: 100%;
  }

  .about-image {
    order: -1;
  }
}

/* Performance optimizations */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

/* Print styles */
@media print {
  .header,
  .floating-call-btn,
  .hero-top-bar {
    display: none;
  }

  body {
    background: white;
    color: black;
  }
}