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

:root {
  --primary: #0066ff;
  --secondary: #00d4ff;
  --accent: #ff6b35;
  --success: #00a86b;
  --dark: #0a1428;
  --light: #f8f9fa;
  --gradient-primary: linear-gradient(135deg, #0066ff 0%, #00d4ff 100%);
  --gradient-accent: linear-gradient(135deg, #ff6b35 0%, #ff9e64 100%);
  --gradient-dark: linear-gradient(135deg, #0a1428 0%, #1a3a52 100%);
}

body {
  font-family: 'Inter', sans-serif;
  background: linear-gradient(135deg, #f8f9fa 0%, #f0f4ff 100%);
  color: #1a2c3e;
  line-height: 1.6;
}

.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 32px;
}

/* Navigation */
.navbar {
  position: sticky;
  top: 0;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(20px);
  box-shadow: 0 8px 32px rgba(0, 102, 255, 0.08);
  z-index: 1000;
  padding: 16px 0;
  border-bottom: 1px solid rgba(0, 102, 255, 0.1);
  animation: slideDown 0.3s ease;
}

.nav-flex {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}

.logo a {
  text-decoration: none;
}

.logo h1 {
  font-size: 1.8rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  animation: fadeInLeft 0.6s ease;
}

.logo p {
  font-size: 0.75rem;
  font-weight: 600;
  background: var(--gradient-accent);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.nav-links {
  display: flex;
  gap: 28px;
  list-style: none;
}

.nav-links a {
  text-decoration: none;
  font-weight: 600;
  color: #1f3b4c;
  transition: all 0.3s ease;
  font-size: 0.95rem;
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gradient-primary);
  background-size: 200% 100%;
  transition: width 0.3s ease;
}

.nav-links a:hover::after, 
.nav-links a.active::after {
  width: 100%;
}

.nav-links a:hover, 
.nav-links a.active {
  color: #0066ff;
}

.btn-contact-mobile {
  background: var(--gradient-primary);
  color: white;
  padding: 10px 24px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 700;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 102, 255, 0.3);
  border: none;
  cursor: pointer;
}

.btn-contact-mobile:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 25px rgba(0, 102, 255, 0.4);
}

.nav-toggle {
  display: none;
  border: none;
  background: transparent;
  color: #1f3b4c;
  font-size: 1.4rem;
  cursor: pointer;
  margin-left: 12px;
}

@media (max-width: 980px) {
  .nav-toggle {
    display: inline-flex;
  }

  .nav-links {
    position: absolute;
    top: 100%;
    right: 20px;
    background: rgba(255, 255, 255, 0.98);
    border-radius: 16px;
    border: 1px solid rgba(0, 102, 255, 0.18);
    backdrop-filter: blur(10px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.15);
    flex-direction: column;
    padding: 16px;
    align-items: flex-start;
    gap: 8px;
    display: none;
    width: min(84vw, 240px);
    z-index: 1200;
  }

  .nav-links.open {
    display: flex;
  }

  .nav-links li {
    width: 100%;
  }

  .nav-links a {
    width: 100%;
  }

  .btn-contact-mobile {
    display: none;
  }
}

/* Hero Section */
.hero {
  padding: 70px 0 50px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.144), rgba(75, 77, 80, 0.26)),
    url('https://images.pexels.com/photos/5439471/pexels-photo-5439471.jpeg') center/cover no-repeat,
    linear-gradient(135deg, #ffffff 0%, #f0f4ff 50%, #b7c1d3 100%);
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(0, 212, 255, 0.1) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.hero-grid {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}

.hero-text {
  margin: 20px 0;
  flex: 1.2;
  min-width: 340px;
  background: rgba(255, 255, 255, 0.45);
  border-radius: 24px;
  padding: 28px;
  backdrop-filter: blur(12px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12);
}

@media (max-width: 980px) {
  .hero-grid {
    flex-direction: column;
    text-align: center;
    align-items: center;
  }

  .hero-text,
  .hero-image {
    width: min(100%, 620px);
    margin: 0 auto;
  }

  .hero-text {
    min-width: auto;
    padding: 26px 20px;
    backdrop-filter: blur(14px);
  }

  .hero-text h2 {
    font-size: 2.4rem;
  }

  .hero-text p {
    font-size: 1rem;
  }

  .hero-stats {
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
  }

  .hero-image {
    margin-top: 20px;
    width: 100%;
    max-width: 500px;
  }
}

.badge {
  background: linear-gradient(135deg, rgba(0, 102, 255, 0.1) 0%, rgba(0, 212, 255, 0.1) 100%);
  color: #0066ff;
  padding: 8px 16px;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 700;
  display: inline-block;
  margin-bottom: 20px;
  border: 1px solid rgba(0, 102, 255, 0.3);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.hero-text h2 {
  font-size: 3.5rem;
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 20px;
  background: var(--gradient-dark);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  animation: fadeInUp 0.6s ease 0.2s backwards;
}

.hero-text p {
  font-size: 1.15rem;
  color: #3e5a6b;
  margin-bottom: 28px;
  max-width: 550px;
  font-weight: 500;
  animation: fadeInUp 0.6s ease 0.3s backwards;
}

.hero-stats {
  display: flex;
  gap: 32px;
  margin-top: 30px;
}

.stat-item h3 {
  font-size: 2rem;
  font-weight: 800;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero-image {
 
  background: linear-gradient(135deg, #f0f4ff9a 0%, #e8f0ff80 100%);
  border-radius: 40px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 20px 60px -12px rgba(0, 102, 255, 0.15);
  border: 2px solid rgba(0, 102, 255, 0.1);
  position: relative;
  overflow: hidden;
  animation: slideInRight 0.6s ease 0.4s backwards; flex: 0.9; backdrop-filter: blur(6px);
}

.hero-image::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -50%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(0, 212, 255, 0.15) 0%, transparent 70%);
  border-radius: 50%;
}

.hero-icon-group i {
  font-size: 5rem;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  margin: 0 10px;
  animation: bounce 3s ease infinite;
}

/* Buttons */
.btn-custom {
  background: var(--gradient-primary);
  border: none;
  padding: 14px 32px;
  margin: 20px 0;
  border-radius: 50px;
  font-weight: 700;
  color: white;
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 0.95rem;
  display: inline-block;
  text-decoration: none;
  box-shadow: 0 4px 15px rgba(0, 102, 255, 0.3);
  position: relative;
  overflow: hidden;
}

.btn-custom::before {
  content: '';
  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;
}

.btn-custom:hover::before {
  left: 100%;
}

.btn-custom:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(0, 102, 255, 0.4);
}

.btn-custom:active {
  transform: translateY(-1px);
}

.btn-outline {
  background: transparent;
  border: 2.5px solid #0066ff;
  padding: 12px 28px;
  border-radius: 50px;
  color: #0066ff;
  text-decoration: none;
  font-weight: 700;
  display: inline-block;
  transition: all 0.3s ease;
  cursor: pointer;
  position: relative;
  overflow: hidden;
}

.btn-outline::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: var(--gradient-primary);
  z-index: -1;
  transition: left 0.3s ease;
}

.btn-outline:hover {
  color: white;
  left: 0;
}

.btn-outline:hover::before {
  left: 0;
}

.btn-white {
  background: white;
  color: #0066ff;
  font-weight: 700;
  transition: all 0.3s ease;
}

.btn-white:hover {
  background: #f0f4ff;
  transform: translateY(-2px);
}

/* Services Grid */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
  gap: 30px;
  margin: 40px 0;
}

.service-card {
  background: white;
  border-radius: 24px;
  padding: 32px;
  transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
  border: 2px solid transparent;
  border-top: 4px solid #0066ff;
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(0, 102, 255, 0.05), transparent);
  transition: left 0.3s ease;
  pointer-events: none;
}

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

.service-card:hover {
  transform: translateY(-8px) scale(1.02);
  border-color: #0066ff;
  box-shadow: 0 16px 40px rgba(0, 102, 255, 0.2);
}

.service-icon {
  font-size: 2.8rem;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  margin-bottom: 20px;
  display: inline-block;
}

.service-card h3 {
  font-size: 1.5rem;
  margin-bottom: 12px;
  font-weight: 700;
  color: #0a1428;
}

/* Opportunity Block */
.opportunity-block {
  background: linear-gradient(135deg, rgba(0, 102, 255, 0.05) 0%, rgba(0, 212, 255, 0.05) 100%);
  border-radius: 32px;
  padding: 48px 40px;
  margin: 40px 0;
  border: 2px solid rgba(0, 102, 255, 0.15);
  position: relative;
  overflow: hidden;
}

.opportunity-block::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -50%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(0, 212, 255, 0.1) 0%, transparent 70%);
  border-radius: 50%;
}

.flex-opportunity {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  justify-content: space-between;
  align-items: center;
}

.opp-text {
  flex: 1.4;
}

.opp-text h3 {
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 18px;
}

.opp-list {
  list-style: none;
  margin-top: 18px;
}

.opp-list li {
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.opp-list i {
  color: #0066ff;
  font-size: 1.3rem;
}

.opp-icon {
  flex: 0.8;
  text-align: center;
}

.opp-icon i {
  font-size: 4rem;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

/* Extended Services */
.extended-cats {
  background: #ffffff;
  border-radius: 28px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
  padding: 40px;
  border: 2px solid rgba(0, 102, 255, 0.1);
  margin: 30px 0;
  transition: all 0.3s ease;
}

.extended-cats:hover {
  box-shadow: 0 12px 40px rgba(0, 102, 255, 0.12);
}

.cat-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 28px;
  margin-top: 20px;
}

.cat-item {
  background: linear-gradient(135deg, #f8f9fa 0%, #f0f4ff 100%);
  border-radius: 20px;
  padding: 24px;
  border-left: 4px solid #0066ff;
  transition: all 0.3s ease;
}

.cat-item:hover {
  transform: translateX(4px);
  box-shadow: 0 8px 20px rgba(0, 102, 255, 0.1);
}

.cat-item h4 {
  font-size: 1.3rem;
  font-weight: 700;
  color: #0066ff;
  margin-bottom: 15px;
}

.cat-item ul {
  list-style: none;
}

.cat-item li {
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  gap: 8px;
}

/* Section Titles */
.section-title {
  font-size: 2.5rem;
  font-weight: 800;
  margin-bottom: 16px;
  text-align: center;
  background: var(--gradient-dark);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.section-sub {
  text-align: center;
  color: #527a8c;
  max-width: 650px;
  margin: 0 auto 48px auto;
  font-size: 1rem;
  font-weight: 500;
}

.text-center {
  text-align: center;
}

.mt-4 {
  margin-top: 20px;
}

/* Page Header */
.page-header {
  background: var(--gradient-dark);
  color: white;
  padding: 80px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-header::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(0, 212, 255, 0.1) 0%, transparent 70%);
  border-radius: 50%;
}

.page-header h1 {
  font-size: 2.8rem;
  margin-bottom: 16px;
  font-weight: 800;
  position: relative;
  z-index: 1;
}

.about-section {
  display: grid;
  grid-template-columns: repeat(2, minmax(240px, 1fr));
  gap: 36px;
  align-items: center;
  margin: 70px 0;
}

.about-image-card,
.about-content,
.contact-info-card {
  background: white;
  border-radius: 24px;
  border: 2px solid rgba(0, 102, 255, 0.12);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
  padding: 32px;
}

.about-image-placeholder {
  width: 100%;
  height: 0;
  padding-bottom: 100%;
  background: linear-gradient(135deg, #f8f9fa, #e8f0ff);
  border-radius: 20px;
  position: relative;
  overflow: hidden;
}

.about-image-placeholder img.profile-photo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  border-radius: 20px;
}

/* Maintient la tête dans le cadre et évite dépassement */
.about-image-placeholder {
  overflow: hidden;
  border-radius: 20px;
}


.about-image-placeholder i {
  font-size: 2.2rem;
}

.about-content h2,
.about-content h3,
.contact-info-card h2 {
  color: #0a1428;
  margin-bottom: 14px;
}

.about-content p {
  margin-bottom: 20px;
  color: #2d4155;
  line-height: 1.7;
}

.about-values {
  list-style: none;
  margin-top: 12px;
  display: grid;
  gap: 12px;
}

.about-values li {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  border-radius: 12px;
  background: rgba(0, 102, 255, 0.06);
  color: #1f3b4c;
  font-weight: 600;
}

.about-values li i {
  color: #0066ff;
}

@media (max-width: 992px) {
  .about-section {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 860px) {
  .opportunity-block {
    padding: 28px 20px;
  }
  .flex-opportunity {
    flex-direction: column;
    align-items: flex-start;
    gap: 22px;
  }
  .opp-icon {
    width: 100%;
    text-align: center;
  }
  .opp-text {
    width: 100%;
  }
  .opp-icon i {
    font-size: 3rem;
  }
  .opp-icon p {
    font-size: 0.95rem;
    margin-top: 10px;
  }
}

/* Services Detailed */
.services-detailed {
  padding: 60px 0;
}

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

.service-detailed-card {
  background: white;
  border-radius: 24px;
  padding: 36px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
  border: 2px solid transparent;
  border-top: 4px solid #0066ff;
  transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  position: relative;
  overflow: hidden;
}

.service-detailed-card:hover {
  transform: translateY(-8px);
  border-color: #0066ff;
  box-shadow: 0 16px 40px rgba(0, 102, 255, 0.2);
}

.service-detailed-icon {
  font-size: 3rem;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  margin-bottom: 20px;
  display: inline-block;
}

.service-detailed-card h2 {
  font-size: 1.6rem;
  margin-bottom: 16px;
  color: #0a1428;
  font-weight: 700;
}

.service-detailed-card ul {
  margin-top: 20px;
  list-style: none;
}

.service-detailed-card ul li {
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.service-detailed-card ul li i {
  color: #0066ff;
  font-weight: 700;
}

/* Advantage Block */
.advantage-block {
  background: var(--gradient-dark);
  border-radius: 32px;
  padding: 56px;
  text-align: center;
  color: white;
  margin: 40px 0;
  position: relative;
  overflow: hidden;
}

.advantage-block::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -50%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(0, 212, 255, 0.15) 0%, transparent 70%);
  border-radius: 50%;
}

.advantage-content i {
  font-size: 3.5rem;
  margin-bottom: 20px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.8) 0%, rgba(255, 255, 255, 0.6) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.advantage-content h3 {
  font-size: 2rem;
  margin-bottom: 16px;
  font-weight: 800;
}

/* Contact CTA */
.contact-cta {
  text-align: center;
  padding: 60px;
  background: linear-gradient(135deg, rgba(0, 102, 255, 0.05) 0%, rgba(0, 212, 255, 0.05) 100%);
  border-radius: 32px;
  margin: 40px 0;
  border: 2px solid rgba(0, 102, 255, 0.15);
  position: relative;
  overflow: hidden;
}

.contact-cta::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -50%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(0, 212, 255, 0.1) 0%, transparent 70%);
  border-radius: 50%;
}

.contact-cta h3 {
  font-size: 2rem;
  margin-bottom: 24px;
  font-weight: 800;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  position: relative;
  z-index: 1;
}

/* Contact Page */
.contact-page-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 40px;
  margin: 60px 0;
}

.contact-info-card, .contact-form-card {
  background: white;
  border-radius: 24px;
  padding: 40px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
  border: 2px solid rgba(0, 102, 255, 0.1);
  transition: all 0.3s ease;
}

.contact-info-card:hover, .contact-form-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0, 102, 255, 0.12);
  border-color: rgba(0, 102, 255, 0.2);
}

.contact-info-card h2, .contact-form-card h2 {
  margin-bottom: 28px;
  font-size: 1.8rem;
  font-weight: 800;
  color: #0a1428;
}

.contact-detail-list {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.contact-detail-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.contact-detail-item i {
  font-size: 1.5rem;
  color: #0066ff;
  width: 32px;
  margin-top: 2px;
}

.contact-detail-item a {
  color: #0066ff;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
}

.contact-detail-item a:hover {
  text-decoration: underline;
}

.copy-btn {
  background: linear-gradient(135deg, #f0f4ff 0%, #e8f0ff 100%);
  border: 1px solid rgba(0, 102, 255, 0.2);
  padding: 6px 14px;
  border-radius: 20px;
  margin-left: 12px;
  cursor: pointer;
  font-size: 0.8rem;
  font-weight: 600;
  color: #0066ff;
  transition: all 0.3s ease;
}

.copy-btn:hover {
  background: var(--gradient-primary);
  color: white;
  border-color: #0066ff;
}

.form-group {
  margin-bottom: 24px;
}

.form-group input, .form-group select, .form-group textarea {
  width: 100%;
  padding: 14px 18px;
  border: 2px solid rgba(0, 102, 255, 0.15);
  border-radius: 12px;
  font-family: inherit;
  font-size: 1rem;
  transition: all 0.3s ease;
  background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
}

.form-group input::placeholder,
.form-group select::placeholder,
.form-group textarea::placeholder {
  color: #999;
}

.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
  outline: none;
  border-color: #0066ff;
  background: white;
  box-shadow: 0 0 0 4px rgba(0, 102, 255, 0.1);
}

.btn-submit {
  width: 100%;
  background: var(--gradient-primary);
  color: white;
  padding: 14px 28px;
  border: none;
  border-radius: 50px;
  font-weight: 700;
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 102, 255, 0.3);
}

.btn-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 25px rgba(0, 102, 255, 0.4);
}

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

.form-status {
  margin-top: 16px;
  padding: 14px 16px;
  border-radius: 12px;
  text-align: center;
  font-weight: 600;
  animation: slideIn 0.3s ease;
}

.location-card {
  background: linear-gradient(135deg, rgba(0, 102, 255, 0.05) 0%, rgba(0, 212, 255, 0.05) 100%);
  border-radius: 28px;
  padding: 40px;
  margin: 40px 0;
  text-align: center;
  border: 2px solid rgba(0, 102, 255, 0.15);
  transition: all 0.3s ease;
}

.location-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0, 102, 255, 0.12);
}

.map-simple {
  background: linear-gradient(135deg, #f0f4ff 0%, #e8f0ff 100%);
  padding: 20px;
  border-radius: 20px;
  margin: 20px 0;
  font-weight: 600;
  border: 2px dashed rgba(0, 102, 255, 0.2);
}

.map-frame {
  width: 100%;
  border-radius: 20px;
  overflow: hidden;
  border: 2px solid rgba(0, 102, 255, 0.18);
  box-shadow: inset 0 0 0 1px rgba(255,255,255,0.8), 0 8px 20px rgba(0, 0, 0, 0.08);
  margin-top: 16px;
}

.hours-info {
  margin-top: 16px;
  color: #0066ff;
  font-weight: 600;
}

.back-cta {
  text-align: center;
  margin: 40px 0;
}

/* CTA Banner */
.cta-banner {
  background: var(--gradient-dark);
  padding: 80px 0;
  margin: 50px 0;
  text-align: center;
  color: white;
  position: relative;
  overflow: hidden;
}

.cta-banner::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(0, 212, 255, 0.1) 0%, transparent 70%);
  border-radius: 50%;
}

.cta-content {
  position: relative;
  z-index: 1;
}

.cta-content h3 {
  font-size: 2.2rem;
  margin-bottom: 20px;
  font-weight: 800;
}

.cta-content p {
  margin-bottom: 28px;
  font-size: 1.2rem;
  font-weight: 500;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

/* Footer */
footer {
  background: var(--gradient-dark);
  color: #e0e0e0;
  padding: 60px 0 30px;
  margin-top: 80px;
  position: relative;
  overflow: hidden;
}

footer::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -50%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(0, 212, 255, 0.05) 0%, transparent 70%);
  border-radius: 50%;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
  margin-bottom: 40px;
  position: relative;
  z-index: 1;
}

.footer-col h4 {
  color: white;
  margin-bottom: 18px;
  font-size: 1.2rem;
  font-weight: 700;
}

.footer-col p {
  margin-bottom: 10px;
  line-height: 1.6;
  font-size: 0.95rem;
}

.footer-col i {
  margin-right: 8px;
  color: #00d4ff;
  font-weight: 600;
}

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

.footer-col a:hover {
  color: #00d4ff;
}

.footer-social a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #e0e0e0;
  text-decoration: none;
  font-weight: 600;
}

.footer-social a:hover {
  color: #ffffff;
}

.footer-social i {
  color: #00d4ff;
}

.footer-bottom {
  text-align: center;
  padding-top: 30px;
  border-top: 1px solid rgba(0, 212, 255, 0.2);
  font-size: 0.9rem;
  color: #b0b0b0;
  position: relative;
  z-index: 1;
}

/* ============================================ */
/* BOUTON WHATSAPP FLOTTANT */
/* ============================================ */
.whatsapp-float {
  position: fixed;
  bottom: 30px;
  right: 30px;
  background: linear-gradient(135deg, #25D366, #20b859);
  color: white;
  width: 70px;
  height: 70px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.2rem;
  box-shadow: 0 8px 24px rgba(37, 211, 102, 0.35);
  transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  z-index: 1000;
  text-decoration: none;
  animation: floatPulse 2.5s ease-in-out infinite;
  border: 2px solid rgba(255, 255, 255, 0.3);
}

.whatsapp-float:hover {
  transform: scale(1.12) translateY(-4px);
  background: linear-gradient(135deg, #20b859, #1aa84d);
  box-shadow: 0 12px 32px rgba(37, 211, 102, 0.5);
  border-color: rgba(255, 255, 255, 0.5);
}

.whatsapp-float i {
  font-size: 2.5rem;
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
}

/* Tooltip pour le bouton WhatsApp */
.whatsapp-tooltip {
  position: absolute;
  right: 85px;
  background: rgba(31, 47, 58, 0.95);
  color: white;
  padding: 10px 18px;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 700;
  white-space: nowrap;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
  pointer-events: none;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.whatsapp-float:hover .whatsapp-tooltip {
  opacity: 1;
  visibility: visible;
  right: 90px;
}

/* Animation de flottaison */
@keyframes floatPulse {
  0%, 100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-12px);
  }
}

/* Version mobile : bouton légèrement plus petit */
@media (max-width: 768px) {
  .whatsapp-float {
    width: 60px;
    height: 60px;
    bottom: 20px;
    right: 20px;
    font-size: 1.8rem;
  }
  
  .whatsapp-float i {
    font-size: 2rem;
  }
  
  .whatsapp-tooltip {
    display: none;
  }
}

/* ============================================ */
/* ANIMATIONS & KEYFRAMES */
/* ============================================ */

@keyframes slideDown {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

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

@keyframes fadeInLeft {
  from {
    opacity: 0;
    transform: translateX(-30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes slideInRight {
  from {
    opacity: 0;
    transform: translateX(40px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes bounce {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-15px);
  }
}

@keyframes slideIn {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Responsive */
@media (max-width: 800px) {
  .hero-text h2 { 
    font-size: 2.2rem; 
  }
  
  .page-header h1 {
    font-size: 2rem;
  }
  
  .section-title { 
    font-size: 2rem; 
  }
  
  .nav-flex { 
    flex-direction: column; 
  }
  
  .nav-links { 
    flex-wrap: wrap; 
    justify-content: center; 
  }
  
  .container { 
    padding: 0 20px; 
  }
  
  .hero-stats { 
    flex-wrap: wrap; 
    justify-content: center; 
  }
  
  .cta-content h3 {
    font-size: 1.8rem;
  }
  
  .contact-cta,
  .advantage-block {
    padding: 40px;
  }
}